19.03/7.08 YES 21.67/7.83 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 21.67/7.83 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 21.67/7.83 21.67/7.83 21.67/7.83 H-Termination with start terms of the given HASKELL could be proven: 21.67/7.83 21.67/7.83 (0) HASKELL 21.67/7.83 (1) CR [EQUIVALENT, 0 ms] 21.67/7.83 (2) HASKELL 21.67/7.83 (3) IFR [EQUIVALENT, 0 ms] 21.67/7.83 (4) HASKELL 21.67/7.83 (5) BR [EQUIVALENT, 6 ms] 21.67/7.83 (6) HASKELL 21.67/7.83 (7) COR [EQUIVALENT, 0 ms] 21.67/7.83 (8) HASKELL 21.67/7.83 (9) LetRed [EQUIVALENT, 0 ms] 21.67/7.83 (10) HASKELL 21.67/7.83 (11) NumRed [SOUND, 0 ms] 21.67/7.83 (12) HASKELL 21.67/7.83 (13) Narrow [SOUND, 0 ms] 21.67/7.83 (14) AND 21.67/7.83 (15) QDP 21.67/7.83 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.67/7.83 (17) YES 21.67/7.83 (18) QDP 21.67/7.83 (19) QDPSizeChangeProof [EQUIVALENT, 2 ms] 21.67/7.83 (20) YES 21.67/7.83 (21) QDP 21.67/7.83 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.67/7.83 (23) YES 21.67/7.83 (24) QDP 21.67/7.83 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.67/7.83 (26) YES 21.67/7.83 (27) QDP 21.67/7.83 (28) DependencyGraphProof [EQUIVALENT, 0 ms] 21.67/7.83 (29) QDP 21.67/7.83 (30) QDPSizeChangeProof [EQUIVALENT, 243 ms] 21.67/7.83 (31) YES 21.67/7.83 (32) QDP 21.67/7.83 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.67/7.83 (34) YES 21.67/7.83 (35) QDP 21.67/7.83 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.67/7.83 (37) YES 21.67/7.83 21.67/7.83 21.67/7.83 ---------------------------------------- 21.67/7.83 21.67/7.83 (0) 21.67/7.83 Obligation: 21.67/7.83 mainModule Main 21.67/7.83 module Maybe where { 21.67/7.83 import qualified List; 21.67/7.83 import qualified Main; 21.67/7.83 import qualified Prelude; 21.67/7.83 } 21.67/7.83 module List where { 21.67/7.83 import qualified Main; 21.67/7.83 import qualified Maybe; 21.67/7.83 import qualified Prelude; 21.67/7.83 insert :: Ord a => a -> [a] -> [a]; 21.67/7.83 insert e ls = insertBy compare e ls; 21.67/7.83 21.67/7.83 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 21.67/7.83 insertBy _ x [] = x : []; 21.67/7.83 insertBy cmp x ys@(y : ys') = case cmp x y of { 21.67/7.83 GT-> y : insertBy cmp x ys'; 21.67/7.83 _-> x : ys; 21.67/7.83 } ; 21.67/7.83 21.67/7.83 } 21.67/7.83 module Main where { 21.67/7.83 import qualified List; 21.67/7.83 import qualified Maybe; 21.67/7.83 import qualified Prelude; 21.67/7.83 } 21.67/7.83 21.67/7.83 ---------------------------------------- 21.67/7.83 21.67/7.83 (1) CR (EQUIVALENT) 21.67/7.83 Case Reductions: 21.67/7.83 The following Case expression 21.67/7.83 "case compare x y of { 21.67/7.83 EQ -> o; 21.67/7.83 LT -> LT; 21.67/7.83 GT -> GT} 21.67/7.83 " 21.67/7.83 is transformed to 21.67/7.83 "primCompAux0 o EQ = o; 21.67/7.83 primCompAux0 o LT = LT; 21.67/7.83 primCompAux0 o GT = GT; 21.67/7.83 " 21.67/7.83 The following Case expression 21.67/7.83 "case cmp x y of { 21.67/7.83 GT -> y : insertBy cmp x ys'; 21.67/7.83 _ -> x : ys} 21.67/7.83 " 21.67/7.83 is transformed to 21.67/7.83 "insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 21.67/7.83 insertBy0 y cmp x ys' ys _ = x : ys; 21.67/7.83 " 21.67/7.83 21.67/7.83 ---------------------------------------- 21.67/7.83 21.67/7.83 (2) 21.67/7.83 Obligation: 21.67/7.83 mainModule Main 21.67/7.83 module Maybe where { 21.67/7.83 import qualified List; 21.67/7.83 import qualified Main; 21.67/7.83 import qualified Prelude; 21.67/7.83 } 21.67/7.83 module List where { 21.67/7.83 import qualified Main; 21.67/7.83 import qualified Maybe; 21.67/7.83 import qualified Prelude; 21.67/7.83 insert :: Ord a => a -> [a] -> [a]; 21.67/7.83 insert e ls = insertBy compare e ls; 21.67/7.83 21.67/7.83 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 21.67/7.83 insertBy _ x [] = x : []; 21.67/7.83 insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); 21.67/7.83 21.67/7.83 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 21.67/7.83 insertBy0 y cmp x ys' ys _ = x : ys; 21.67/7.83 21.67/7.83 } 21.67/7.83 module Main where { 21.67/7.83 import qualified List; 21.67/7.83 import qualified Maybe; 21.67/7.83 import qualified Prelude; 21.67/7.83 } 21.67/7.83 21.67/7.83 ---------------------------------------- 21.67/7.83 21.67/7.83 (3) IFR (EQUIVALENT) 21.67/7.83 If Reductions: 21.67/7.83 The following If expression 21.67/7.83 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 21.67/7.83 is transformed to 21.67/7.83 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 21.67/7.83 primDivNatS0 x y False = Zero; 21.67/7.83 " 21.67/7.83 The following If expression 21.67/7.83 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 21.67/7.83 is transformed to 21.67/7.83 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 21.67/7.83 primModNatS0 x y False = Succ x; 21.67/7.83 " 21.67/7.83 21.67/7.83 ---------------------------------------- 21.67/7.83 21.67/7.83 (4) 21.67/7.83 Obligation: 21.67/7.83 mainModule Main 21.67/7.83 module Maybe where { 21.67/7.83 import qualified List; 21.67/7.83 import qualified Main; 21.67/7.83 import qualified Prelude; 21.67/7.83 } 21.67/7.83 module List where { 21.67/7.83 import qualified Main; 21.67/7.83 import qualified Maybe; 21.67/7.83 import qualified Prelude; 21.67/7.83 insert :: Ord a => a -> [a] -> [a]; 21.67/7.83 insert e ls = insertBy compare e ls; 21.67/7.83 21.67/7.83 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 21.67/7.83 insertBy _ x [] = x : []; 21.67/7.83 insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); 21.67/7.83 21.67/7.83 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 21.67/7.83 insertBy0 y cmp x ys' ys _ = x : ys; 21.67/7.83 21.67/7.83 } 21.67/7.83 module Main where { 21.67/7.83 import qualified List; 21.67/7.83 import qualified Maybe; 21.67/7.83 import qualified Prelude; 21.67/7.83 } 21.67/7.83 21.67/7.83 ---------------------------------------- 21.67/7.83 21.67/7.83 (5) BR (EQUIVALENT) 21.67/7.83 Replaced joker patterns by fresh variables and removed binding patterns. 21.67/7.83 21.67/7.83 Binding Reductions: 21.67/7.83 The bind variable of the following binding Pattern 21.67/7.83 "ys@(vuu : vuv)" 21.67/7.83 is replaced by the following term 21.67/7.83 "vuu : vuv" 21.67/7.83 21.67/7.83 ---------------------------------------- 21.67/7.83 21.67/7.83 (6) 21.67/7.83 Obligation: 21.67/7.83 mainModule Main 21.67/7.83 module Maybe where { 21.67/7.83 import qualified List; 21.67/7.83 import qualified Main; 21.67/7.83 import qualified Prelude; 21.67/7.83 } 21.67/7.83 module List where { 21.67/7.83 import qualified Main; 21.67/7.83 import qualified Maybe; 21.67/7.83 import qualified Prelude; 21.67/7.83 insert :: Ord a => a -> [a] -> [a]; 21.67/7.83 insert e ls = insertBy compare e ls; 21.67/7.83 21.67/7.83 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 21.67/7.83 insertBy zz x [] = x : []; 21.67/7.83 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 21.67/7.83 21.67/7.83 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 21.67/7.83 insertBy0 y cmp x ys' ys zy = x : ys; 21.67/7.83 21.67/7.83 } 21.67/7.83 module Main where { 21.67/7.83 import qualified List; 21.67/7.83 import qualified Maybe; 21.67/7.83 import qualified Prelude; 21.67/7.83 } 21.67/7.83 21.67/7.83 ---------------------------------------- 21.67/7.83 21.67/7.83 (7) COR (EQUIVALENT) 21.67/7.83 Cond Reductions: 21.67/7.83 The following Function with conditions 21.67/7.83 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 21.67/7.83 " 21.67/7.83 is transformed to 21.67/7.83 "compare x y = compare3 x y; 21.67/7.83 " 21.67/7.83 "compare1 x y True = LT; 21.67/7.83 compare1 x y False = compare0 x y otherwise; 21.67/7.83 " 21.67/7.83 "compare0 x y True = GT; 21.67/7.83 " 21.67/7.83 "compare2 x y True = EQ; 21.67/7.83 compare2 x y False = compare1 x y (x <= y); 21.67/7.83 " 21.67/7.83 "compare3 x y = compare2 x y (x == y); 21.67/7.83 " 21.67/7.83 The following Function with conditions 21.67/7.83 "absReal x|x >= 0x|otherwise`negate` x; 21.67/7.83 " 21.67/7.83 is transformed to 21.67/7.83 "absReal x = absReal2 x; 21.67/7.83 " 21.67/7.83 "absReal0 x True = `negate` x; 21.67/7.83 " 21.67/7.83 "absReal1 x True = x; 21.67/7.83 absReal1 x False = absReal0 x otherwise; 21.67/7.83 " 21.67/7.83 "absReal2 x = absReal1 x (x >= 0); 21.67/7.83 " 21.67/7.83 The following Function with conditions 21.67/7.83 "gcd' x 0 = x; 21.67/7.83 gcd' x y = gcd' y (x `rem` y); 21.67/7.83 " 21.67/7.83 is transformed to 21.67/7.83 "gcd' x vuw = gcd'2 x vuw; 21.67/7.83 gcd' x y = gcd'0 x y; 21.67/7.83 " 21.67/7.83 "gcd'0 x y = gcd' y (x `rem` y); 21.67/7.83 " 21.67/7.83 "gcd'1 True x vuw = x; 21.67/7.83 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 21.67/7.83 " 21.67/7.83 "gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 21.67/7.83 gcd'2 vvu vvv = gcd'0 vvu vvv; 21.67/7.83 " 21.67/7.83 The following Function with conditions 21.67/7.83 "gcd 0 0 = error []; 21.67/7.83 gcd x y = gcd' (abs x) (abs y) where { 21.67/7.83 gcd' x 0 = x; 21.67/7.83 gcd' x y = gcd' y (x `rem` y); 21.67/7.83 } 21.67/7.83 ; 21.67/7.83 " 21.67/7.83 is transformed to 21.67/7.83 "gcd vvw vvx = gcd3 vvw vvx; 21.67/7.83 gcd x y = gcd0 x y; 21.67/7.83 " 21.67/7.83 "gcd0 x y = gcd' (abs x) (abs y) where { 21.67/7.83 gcd' x vuw = gcd'2 x vuw; 21.67/7.83 gcd' x y = gcd'0 x y; 21.67/7.83 ; 21.67/7.83 gcd'0 x y = gcd' y (x `rem` y); 21.67/7.83 ; 21.67/7.83 gcd'1 True x vuw = x; 21.67/7.83 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 21.67/7.83 ; 21.67/7.83 gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 21.67/7.83 gcd'2 vvu vvv = gcd'0 vvu vvv; 21.67/7.83 } 21.67/7.83 ; 21.67/7.83 " 21.67/7.83 "gcd1 True vvw vvx = error []; 21.67/7.83 gcd1 vvy vvz vwu = gcd0 vvz vwu; 21.67/7.83 " 21.67/7.83 "gcd2 True vvw vvx = gcd1 (vvx == 0) vvw vvx; 21.67/7.83 gcd2 vwv vww vwx = gcd0 vww vwx; 21.67/7.83 " 21.67/7.83 "gcd3 vvw vvx = gcd2 (vvw == 0) vvw vvx; 21.67/7.83 gcd3 vwy vwz = gcd0 vwy vwz; 21.67/7.83 " 21.67/7.83 The following Function with conditions 21.67/7.83 "undefined |Falseundefined; 21.67/7.83 " 21.67/7.83 is transformed to 21.67/7.83 "undefined = undefined1; 21.67/7.83 " 21.67/7.83 "undefined0 True = undefined; 21.67/7.83 " 21.67/7.83 "undefined1 = undefined0 False; 21.67/7.83 " 21.67/7.83 The following Function with conditions 21.67/7.83 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 21.67/7.83 d = gcd x y; 21.67/7.83 } 21.67/7.83 ; 21.67/7.83 " 21.67/7.83 is transformed to 21.67/7.84 "reduce x y = reduce2 x y; 21.67/7.84 " 21.67/7.84 "reduce2 x y = reduce1 x y (y == 0) where { 21.67/7.84 d = gcd x y; 21.67/7.84 ; 21.67/7.84 reduce0 x y True = x `quot` d :% (y `quot` d); 21.67/7.84 ; 21.67/7.84 reduce1 x y True = error []; 21.67/7.84 reduce1 x y False = reduce0 x y otherwise; 21.67/7.84 } 21.67/7.84 ; 21.67/7.84 " 21.67/7.84 21.67/7.84 ---------------------------------------- 21.67/7.84 21.67/7.84 (8) 21.67/7.84 Obligation: 21.67/7.84 mainModule Main 21.67/7.84 module Maybe where { 21.67/7.84 import qualified List; 21.67/7.84 import qualified Main; 21.67/7.84 import qualified Prelude; 21.67/7.84 } 21.67/7.84 module List where { 21.67/7.84 import qualified Main; 21.67/7.84 import qualified Maybe; 21.67/7.84 import qualified Prelude; 21.67/7.84 insert :: Ord a => a -> [a] -> [a]; 21.67/7.84 insert e ls = insertBy compare e ls; 21.67/7.84 21.67/7.84 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 21.67/7.84 insertBy zz x [] = x : []; 21.67/7.84 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 21.67/7.84 21.67/7.84 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 21.67/7.84 insertBy0 y cmp x ys' ys zy = x : ys; 21.67/7.84 21.67/7.84 } 21.67/7.84 module Main where { 21.67/7.84 import qualified List; 21.67/7.84 import qualified Maybe; 21.67/7.84 import qualified Prelude; 21.67/7.84 } 21.67/7.84 21.67/7.84 ---------------------------------------- 21.67/7.84 21.67/7.84 (9) LetRed (EQUIVALENT) 21.67/7.84 Let/Where Reductions: 21.67/7.84 The bindings of the following Let/Where expression 21.67/7.84 "gcd' (abs x) (abs y) where { 21.67/7.84 gcd' x vuw = gcd'2 x vuw; 21.67/7.84 gcd' x y = gcd'0 x y; 21.67/7.84 ; 21.67/7.84 gcd'0 x y = gcd' y (x `rem` y); 21.67/7.84 ; 21.67/7.84 gcd'1 True x vuw = x; 21.67/7.84 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 21.67/7.84 ; 21.67/7.84 gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 21.67/7.84 gcd'2 vvu vvv = gcd'0 vvu vvv; 21.67/7.84 } 21.67/7.84 " 21.67/7.84 are unpacked to the following functions on top level 21.67/7.84 "gcd0Gcd' x vuw = gcd0Gcd'2 x vuw; 21.67/7.84 gcd0Gcd' x y = gcd0Gcd'0 x y; 21.67/7.84 " 21.67/7.84 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 21.67/7.84 " 21.67/7.84 "gcd0Gcd'1 True x vuw = x; 21.67/7.84 gcd0Gcd'1 vux vuy vuz = gcd0Gcd'0 vuy vuz; 21.67/7.84 " 21.67/7.84 "gcd0Gcd'2 x vuw = gcd0Gcd'1 (vuw == 0) x vuw; 21.67/7.84 gcd0Gcd'2 vvu vvv = gcd0Gcd'0 vvu vvv; 21.67/7.84 " 21.67/7.84 The bindings of the following Let/Where expression 21.67/7.84 "reduce1 x y (y == 0) where { 21.67/7.84 d = gcd x y; 21.67/7.84 ; 21.67/7.84 reduce0 x y True = x `quot` d :% (y `quot` d); 21.67/7.84 ; 21.67/7.84 reduce1 x y True = error []; 21.67/7.84 reduce1 x y False = reduce0 x y otherwise; 21.67/7.84 } 21.67/7.84 " 21.67/7.84 are unpacked to the following functions on top level 21.67/7.84 "reduce2Reduce1 vxu vxv x y True = error []; 21.67/7.84 reduce2Reduce1 vxu vxv x y False = reduce2Reduce0 vxu vxv x y otherwise; 21.67/7.84 " 21.67/7.84 "reduce2D vxu vxv = gcd vxu vxv; 21.67/7.84 " 21.67/7.84 "reduce2Reduce0 vxu vxv x y True = x `quot` reduce2D vxu vxv :% (y `quot` reduce2D vxu vxv); 21.67/7.84 " 21.67/7.84 21.67/7.84 ---------------------------------------- 21.67/7.84 21.67/7.84 (10) 21.67/7.84 Obligation: 21.67/7.84 mainModule Main 21.67/7.84 module Maybe where { 21.67/7.84 import qualified List; 21.67/7.84 import qualified Main; 21.67/7.84 import qualified Prelude; 21.67/7.84 } 21.67/7.84 module List where { 21.67/7.84 import qualified Main; 21.67/7.84 import qualified Maybe; 21.67/7.84 import qualified Prelude; 21.67/7.84 insert :: Ord a => a -> [a] -> [a]; 21.67/7.84 insert e ls = insertBy compare e ls; 21.67/7.84 21.67/7.84 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 21.67/7.84 insertBy zz x [] = x : []; 21.67/7.84 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 21.67/7.84 21.67/7.84 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 21.67/7.84 insertBy0 y cmp x ys' ys zy = x : ys; 21.67/7.84 21.67/7.84 } 21.67/7.84 module Main where { 21.67/7.84 import qualified List; 21.67/7.84 import qualified Maybe; 21.67/7.84 import qualified Prelude; 21.67/7.84 } 21.67/7.84 21.67/7.84 ---------------------------------------- 21.67/7.84 21.67/7.84 (11) NumRed (SOUND) 21.67/7.84 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 21.67/7.84 ---------------------------------------- 21.67/7.84 21.67/7.84 (12) 21.67/7.84 Obligation: 21.67/7.84 mainModule Main 21.67/7.84 module Maybe where { 21.67/7.84 import qualified List; 21.67/7.84 import qualified Main; 21.67/7.84 import qualified Prelude; 21.67/7.84 } 21.67/7.84 module List where { 21.67/7.84 import qualified Main; 21.67/7.84 import qualified Maybe; 21.67/7.84 import qualified Prelude; 21.67/7.84 insert :: Ord a => a -> [a] -> [a]; 21.67/7.84 insert e ls = insertBy compare e ls; 21.67/7.84 21.67/7.84 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 21.67/7.84 insertBy zz x [] = x : []; 21.67/7.84 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 21.67/7.84 21.67/7.84 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 21.67/7.84 insertBy0 y cmp x ys' ys zy = x : ys; 21.67/7.84 21.67/7.84 } 21.67/7.84 module Main where { 21.67/7.84 import qualified List; 21.67/7.84 import qualified Maybe; 21.67/7.84 import qualified Prelude; 21.67/7.84 } 21.67/7.84 21.67/7.84 ---------------------------------------- 21.67/7.84 21.67/7.84 (13) Narrow (SOUND) 21.67/7.84 Haskell To QDPs 21.67/7.84 21.67/7.84 digraph dp_graph { 21.67/7.84 node [outthreshold=100, inthreshold=100];1[label="List.insert",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 21.67/7.84 3[label="List.insert vxw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 21.67/7.84 4[label="List.insert vxw3 vxw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 21.67/7.84 5[label="List.insertBy compare vxw3 vxw4",fontsize=16,color="burlywood",shape="triangle"];2773[label="vxw4/vxw40 : vxw41",fontsize=10,color="white",style="solid",shape="box"];5 -> 2773[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2773 -> 6[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2774[label="vxw4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 2774[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2774 -> 7[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 6[label="List.insertBy compare vxw3 (vxw40 : vxw41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 21.67/7.84 7[label="List.insertBy compare vxw3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 21.67/7.84 8[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare vxw3 vxw40)",fontsize=16,color="burlywood",shape="box"];2775[label="vxw3/vxw30 : vxw31",fontsize=10,color="white",style="solid",shape="box"];8 -> 2775[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2775 -> 10[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2776[label="vxw3/[]",fontsize=10,color="white",style="solid",shape="box"];8 -> 2776[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2776 -> 11[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 9[label="vxw3 : []",fontsize=16,color="green",shape="box"];10[label="List.insertBy0 vxw40 compare (vxw30 : vxw31) vxw41 (vxw40 : vxw41) (compare (vxw30 : vxw31) vxw40)",fontsize=16,color="burlywood",shape="box"];2777[label="vxw40/vxw400 : vxw401",fontsize=10,color="white",style="solid",shape="box"];10 -> 2777[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2777 -> 12[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2778[label="vxw40/[]",fontsize=10,color="white",style="solid",shape="box"];10 -> 2778[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2778 -> 13[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 11[label="List.insertBy0 vxw40 compare [] vxw41 (vxw40 : vxw41) (compare [] vxw40)",fontsize=16,color="burlywood",shape="box"];2779[label="vxw40/vxw400 : vxw401",fontsize=10,color="white",style="solid",shape="box"];11 -> 2779[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2779 -> 14[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2780[label="vxw40/[]",fontsize=10,color="white",style="solid",shape="box"];11 -> 2780[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2780 -> 15[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 12[label="List.insertBy0 (vxw400 : vxw401) compare (vxw30 : vxw31) vxw41 ((vxw400 : vxw401) : vxw41) (compare (vxw30 : vxw31) (vxw400 : vxw401))",fontsize=16,color="black",shape="box"];12 -> 16[label="",style="solid", color="black", weight=3]; 21.67/7.84 13[label="List.insertBy0 [] compare (vxw30 : vxw31) vxw41 ([] : vxw41) (compare (vxw30 : vxw31) [])",fontsize=16,color="black",shape="box"];13 -> 17[label="",style="solid", color="black", weight=3]; 21.67/7.84 14[label="List.insertBy0 (vxw400 : vxw401) compare [] vxw41 ((vxw400 : vxw401) : vxw41) (compare [] (vxw400 : vxw401))",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 21.67/7.84 15[label="List.insertBy0 [] compare [] vxw41 ([] : vxw41) (compare [] [])",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 21.67/7.84 16 -> 88[label="",style="dashed", color="red", weight=0]; 21.67/7.84 16[label="List.insertBy0 (vxw400 : vxw401) compare (vxw30 : vxw31) vxw41 ((vxw400 : vxw401) : vxw41) (primCompAux vxw30 vxw400 (compare vxw31 vxw401))",fontsize=16,color="magenta"];16 -> 89[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 16 -> 90[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 16 -> 91[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 16 -> 92[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 16 -> 93[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 16 -> 94[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 17[label="List.insertBy0 [] compare (vxw30 : vxw31) vxw41 ([] : vxw41) GT",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 21.67/7.84 18[label="List.insertBy0 (vxw400 : vxw401) compare [] vxw41 ((vxw400 : vxw401) : vxw41) LT",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 21.67/7.84 19[label="List.insertBy0 [] compare [] vxw41 ([] : vxw41) EQ",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 21.67/7.84 89[label="vxw30",fontsize=16,color="green",shape="box"];90[label="vxw41",fontsize=16,color="green",shape="box"];91[label="vxw401",fontsize=16,color="green",shape="box"];92[label="vxw400",fontsize=16,color="green",shape="box"];93[label="primCompAux vxw30 vxw400 (compare vxw31 vxw401)",fontsize=16,color="black",shape="triangle"];93 -> 105[label="",style="solid", color="black", weight=3]; 21.67/7.84 94[label="vxw31",fontsize=16,color="green",shape="box"];88[label="List.insertBy0 (vxw12 : vxw13) compare (vxw14 : vxw15) vxw16 ((vxw12 : vxw13) : vxw16) vxw18",fontsize=16,color="burlywood",shape="triangle"];2781[label="vxw18/LT",fontsize=10,color="white",style="solid",shape="box"];88 -> 2781[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2781 -> 106[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2782[label="vxw18/EQ",fontsize=10,color="white",style="solid",shape="box"];88 -> 2782[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2782 -> 107[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2783[label="vxw18/GT",fontsize=10,color="white",style="solid",shape="box"];88 -> 2783[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2783 -> 108[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 21[label="[] : List.insertBy compare (vxw30 : vxw31) vxw41",fontsize=16,color="green",shape="box"];21 -> 31[label="",style="dashed", color="green", weight=3]; 21.67/7.84 22[label="[] : (vxw400 : vxw401) : vxw41",fontsize=16,color="green",shape="box"];23[label="[] : [] : vxw41",fontsize=16,color="green",shape="box"];105 -> 109[label="",style="dashed", color="red", weight=0]; 21.67/7.84 105[label="primCompAux0 (compare vxw31 vxw401) (compare vxw30 vxw400)",fontsize=16,color="magenta"];105 -> 110[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 105 -> 111[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 105 -> 112[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 106[label="List.insertBy0 (vxw12 : vxw13) compare (vxw14 : vxw15) vxw16 ((vxw12 : vxw13) : vxw16) LT",fontsize=16,color="black",shape="box"];106 -> 113[label="",style="solid", color="black", weight=3]; 21.67/7.84 107[label="List.insertBy0 (vxw12 : vxw13) compare (vxw14 : vxw15) vxw16 ((vxw12 : vxw13) : vxw16) EQ",fontsize=16,color="black",shape="box"];107 -> 114[label="",style="solid", color="black", weight=3]; 21.67/7.84 108[label="List.insertBy0 (vxw12 : vxw13) compare (vxw14 : vxw15) vxw16 ((vxw12 : vxw13) : vxw16) GT",fontsize=16,color="black",shape="box"];108 -> 115[label="",style="solid", color="black", weight=3]; 21.67/7.84 31 -> 5[label="",style="dashed", color="red", weight=0]; 21.67/7.84 31[label="List.insertBy compare (vxw30 : vxw31) vxw41",fontsize=16,color="magenta"];31 -> 49[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 31 -> 50[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 110[label="compare vxw30 vxw400",fontsize=16,color="blue",shape="box"];2784[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2784[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2784 -> 116[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2785[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2785[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2785 -> 117[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2786[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2786[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2786 -> 118[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2787[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2787[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2787 -> 119[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2788[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2788[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2788 -> 120[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2789[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2789[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2789 -> 121[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2790[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2790[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2790 -> 122[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2791[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2791[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2791 -> 123[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2792[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2792[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2792 -> 124[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2793[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2793[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2793 -> 125[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2794[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2794[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2794 -> 126[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2795[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2795[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2795 -> 127[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2796[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2796[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2796 -> 128[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2797[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2797[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2797 -> 129[label="",style="solid", color="blue", weight=3]; 21.67/7.84 111[label="vxw401",fontsize=16,color="green",shape="box"];112[label="vxw31",fontsize=16,color="green",shape="box"];109[label="primCompAux0 (compare vxw23 vxw24) vxw25",fontsize=16,color="burlywood",shape="triangle"];2798[label="vxw25/LT",fontsize=10,color="white",style="solid",shape="box"];109 -> 2798[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2798 -> 130[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2799[label="vxw25/EQ",fontsize=10,color="white",style="solid",shape="box"];109 -> 2799[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2799 -> 131[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2800[label="vxw25/GT",fontsize=10,color="white",style="solid",shape="box"];109 -> 2800[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2800 -> 132[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 113[label="(vxw14 : vxw15) : (vxw12 : vxw13) : vxw16",fontsize=16,color="green",shape="box"];114[label="(vxw14 : vxw15) : (vxw12 : vxw13) : vxw16",fontsize=16,color="green",shape="box"];115[label="(vxw12 : vxw13) : List.insertBy compare (vxw14 : vxw15) vxw16",fontsize=16,color="green",shape="box"];115 -> 133[label="",style="dashed", color="green", weight=3]; 21.67/7.84 49[label="vxw30 : vxw31",fontsize=16,color="green",shape="box"];50[label="vxw41",fontsize=16,color="green",shape="box"];116[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];116 -> 134[label="",style="solid", color="black", weight=3]; 21.67/7.84 117[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];117 -> 135[label="",style="solid", color="black", weight=3]; 21.67/7.84 118[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];118 -> 136[label="",style="solid", color="black", weight=3]; 21.67/7.84 119[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];119 -> 137[label="",style="solid", color="black", weight=3]; 21.67/7.84 120[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];120 -> 138[label="",style="solid", color="black", weight=3]; 21.67/7.84 121[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];121 -> 139[label="",style="solid", color="black", weight=3]; 21.67/7.84 122[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];122 -> 140[label="",style="solid", color="black", weight=3]; 21.67/7.84 123[label="compare vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2801[label="vxw30/vxw300 :% vxw301",fontsize=10,color="white",style="solid",shape="box"];123 -> 2801[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2801 -> 141[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 124[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];124 -> 142[label="",style="solid", color="black", weight=3]; 21.67/7.84 125[label="compare vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2802[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];125 -> 2802[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2802 -> 143[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 126[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];126 -> 144[label="",style="solid", color="black", weight=3]; 21.67/7.84 127[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];127 -> 145[label="",style="solid", color="black", weight=3]; 21.67/7.84 128[label="compare vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2803[label="vxw30/()",fontsize=10,color="white",style="solid",shape="box"];128 -> 2803[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2803 -> 146[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 129[label="compare vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2804[label="vxw30/vxw300 : vxw301",fontsize=10,color="white",style="solid",shape="box"];129 -> 2804[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2804 -> 147[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2805[label="vxw30/[]",fontsize=10,color="white",style="solid",shape="box"];129 -> 2805[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2805 -> 148[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 130[label="primCompAux0 (compare vxw23 vxw24) LT",fontsize=16,color="black",shape="box"];130 -> 149[label="",style="solid", color="black", weight=3]; 21.67/7.84 131[label="primCompAux0 (compare vxw23 vxw24) EQ",fontsize=16,color="black",shape="box"];131 -> 150[label="",style="solid", color="black", weight=3]; 21.67/7.84 132[label="primCompAux0 (compare vxw23 vxw24) GT",fontsize=16,color="black",shape="box"];132 -> 151[label="",style="solid", color="black", weight=3]; 21.67/7.84 133 -> 5[label="",style="dashed", color="red", weight=0]; 21.67/7.84 133[label="List.insertBy compare (vxw14 : vxw15) vxw16",fontsize=16,color="magenta"];133 -> 152[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 133 -> 153[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 134[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];134 -> 154[label="",style="solid", color="black", weight=3]; 21.67/7.84 135[label="primCmpInt vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2806[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];135 -> 2806[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2806 -> 155[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2807[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];135 -> 2807[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2807 -> 156[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 136[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];136 -> 157[label="",style="solid", color="black", weight=3]; 21.67/7.84 137[label="primCmpDouble vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2808[label="vxw30/Double vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];137 -> 2808[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2808 -> 158[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 138[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];138 -> 159[label="",style="solid", color="black", weight=3]; 21.67/7.84 139[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];139 -> 160[label="",style="solid", color="black", weight=3]; 21.67/7.84 140[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];140 -> 161[label="",style="solid", color="black", weight=3]; 21.67/7.84 141[label="compare (vxw300 :% vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];2809[label="vxw400/vxw4000 :% vxw4001",fontsize=10,color="white",style="solid",shape="box"];141 -> 2809[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2809 -> 162[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 142[label="primCmpFloat vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2810[label="vxw30/Float vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];142 -> 2810[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2810 -> 163[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 143[label="compare (Integer vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2811[label="vxw400/Integer vxw4000",fontsize=10,color="white",style="solid",shape="box"];143 -> 2811[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2811 -> 164[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 144[label="primCmpChar vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2812[label="vxw30/Char vxw300",fontsize=10,color="white",style="solid",shape="box"];144 -> 2812[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2812 -> 165[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 145[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];145 -> 166[label="",style="solid", color="black", weight=3]; 21.67/7.84 146[label="compare () vxw400",fontsize=16,color="burlywood",shape="box"];2813[label="vxw400/()",fontsize=10,color="white",style="solid",shape="box"];146 -> 2813[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2813 -> 167[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 147[label="compare (vxw300 : vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];2814[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];147 -> 2814[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2814 -> 168[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2815[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];147 -> 2815[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2815 -> 169[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 148[label="compare [] vxw400",fontsize=16,color="burlywood",shape="box"];2816[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];148 -> 2816[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2816 -> 170[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2817[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];148 -> 2817[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2817 -> 171[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 149[label="LT",fontsize=16,color="green",shape="box"];150[label="compare vxw23 vxw24",fontsize=16,color="blue",shape="box"];2818[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2818[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2818 -> 172[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2819[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2819[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2819 -> 173[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2820[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2820[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2820 -> 174[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2821[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2821[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2821 -> 175[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2822[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2822[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2822 -> 176[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2823[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2823[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2823 -> 177[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2824[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2824[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2824 -> 178[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2825[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2825[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2825 -> 179[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2826[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2826[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2826 -> 180[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2827[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2827[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2827 -> 181[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2828[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2828[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2828 -> 182[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2829[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2829[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2829 -> 183[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2830[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2830[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2830 -> 184[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2831[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2831[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2831 -> 185[label="",style="solid", color="blue", weight=3]; 21.67/7.84 151[label="GT",fontsize=16,color="green",shape="box"];152[label="vxw14 : vxw15",fontsize=16,color="green",shape="box"];153[label="vxw16",fontsize=16,color="green",shape="box"];154[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2832[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];154 -> 2832[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2832 -> 186[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2833[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];154 -> 2833[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2833 -> 187[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 155[label="primCmpInt (Pos vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2834[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];155 -> 2834[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2834 -> 188[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2835[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];155 -> 2835[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2835 -> 189[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 156[label="primCmpInt (Neg vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2836[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];156 -> 2836[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2836 -> 190[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2837[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];156 -> 2837[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2837 -> 191[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 157[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2838[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];157 -> 2838[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2838 -> 192[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2839[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];157 -> 2839[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2839 -> 193[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2840[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];157 -> 2840[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2840 -> 194[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 158[label="primCmpDouble (Double vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];2841[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];158 -> 2841[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2841 -> 195[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2842[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];158 -> 2842[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2842 -> 196[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 159[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2843[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];159 -> 2843[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2843 -> 197[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 160[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2844[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];160 -> 2844[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2844 -> 198[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2845[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];160 -> 2845[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2845 -> 199[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 161[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2846[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];161 -> 2846[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2846 -> 200[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 162[label="compare (vxw300 :% vxw301) (vxw4000 :% vxw4001)",fontsize=16,color="black",shape="box"];162 -> 201[label="",style="solid", color="black", weight=3]; 21.67/7.84 163[label="primCmpFloat (Float vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];2847[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];163 -> 2847[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2847 -> 202[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2848[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];163 -> 2848[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2848 -> 203[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 164[label="compare (Integer vxw300) (Integer vxw4000)",fontsize=16,color="black",shape="box"];164 -> 204[label="",style="solid", color="black", weight=3]; 21.67/7.84 165[label="primCmpChar (Char vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2849[label="vxw400/Char vxw4000",fontsize=10,color="white",style="solid",shape="box"];165 -> 2849[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2849 -> 205[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 166[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2850[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];166 -> 2850[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2850 -> 206[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2851[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];166 -> 2851[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2851 -> 207[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 167[label="compare () ()",fontsize=16,color="black",shape="box"];167 -> 208[label="",style="solid", color="black", weight=3]; 21.67/7.84 168[label="compare (vxw300 : vxw301) (vxw4000 : vxw4001)",fontsize=16,color="black",shape="box"];168 -> 209[label="",style="solid", color="black", weight=3]; 21.67/7.84 169[label="compare (vxw300 : vxw301) []",fontsize=16,color="black",shape="box"];169 -> 210[label="",style="solid", color="black", weight=3]; 21.67/7.84 170[label="compare [] (vxw4000 : vxw4001)",fontsize=16,color="black",shape="box"];170 -> 211[label="",style="solid", color="black", weight=3]; 21.67/7.84 171[label="compare [] []",fontsize=16,color="black",shape="box"];171 -> 212[label="",style="solid", color="black", weight=3]; 21.67/7.84 172 -> 116[label="",style="dashed", color="red", weight=0]; 21.67/7.84 172[label="compare vxw23 vxw24",fontsize=16,color="magenta"];172 -> 213[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 172 -> 214[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 173 -> 117[label="",style="dashed", color="red", weight=0]; 21.67/7.84 173[label="compare vxw23 vxw24",fontsize=16,color="magenta"];173 -> 215[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 173 -> 216[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 174 -> 118[label="",style="dashed", color="red", weight=0]; 21.67/7.84 174[label="compare vxw23 vxw24",fontsize=16,color="magenta"];174 -> 217[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 174 -> 218[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 175 -> 119[label="",style="dashed", color="red", weight=0]; 21.67/7.84 175[label="compare vxw23 vxw24",fontsize=16,color="magenta"];175 -> 219[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 175 -> 220[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 176 -> 120[label="",style="dashed", color="red", weight=0]; 21.67/7.84 176[label="compare vxw23 vxw24",fontsize=16,color="magenta"];176 -> 221[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 176 -> 222[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 177 -> 121[label="",style="dashed", color="red", weight=0]; 21.67/7.84 177[label="compare vxw23 vxw24",fontsize=16,color="magenta"];177 -> 223[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 177 -> 224[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 178 -> 122[label="",style="dashed", color="red", weight=0]; 21.67/7.84 178[label="compare vxw23 vxw24",fontsize=16,color="magenta"];178 -> 225[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 178 -> 226[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 179 -> 123[label="",style="dashed", color="red", weight=0]; 21.67/7.84 179[label="compare vxw23 vxw24",fontsize=16,color="magenta"];179 -> 227[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 179 -> 228[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 180 -> 124[label="",style="dashed", color="red", weight=0]; 21.67/7.84 180[label="compare vxw23 vxw24",fontsize=16,color="magenta"];180 -> 229[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 180 -> 230[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 181 -> 125[label="",style="dashed", color="red", weight=0]; 21.67/7.84 181[label="compare vxw23 vxw24",fontsize=16,color="magenta"];181 -> 231[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 181 -> 232[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 182 -> 126[label="",style="dashed", color="red", weight=0]; 21.67/7.84 182[label="compare vxw23 vxw24",fontsize=16,color="magenta"];182 -> 233[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 182 -> 234[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 183 -> 127[label="",style="dashed", color="red", weight=0]; 21.67/7.84 183[label="compare vxw23 vxw24",fontsize=16,color="magenta"];183 -> 235[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 183 -> 236[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 184 -> 128[label="",style="dashed", color="red", weight=0]; 21.67/7.84 184[label="compare vxw23 vxw24",fontsize=16,color="magenta"];184 -> 237[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 184 -> 238[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 185 -> 129[label="",style="dashed", color="red", weight=0]; 21.67/7.84 185[label="compare vxw23 vxw24",fontsize=16,color="magenta"];185 -> 239[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 185 -> 240[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 186[label="compare2 False vxw400 (False == vxw400)",fontsize=16,color="burlywood",shape="box"];2852[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];186 -> 2852[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2852 -> 241[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2853[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];186 -> 2853[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2853 -> 242[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 187[label="compare2 True vxw400 (True == vxw400)",fontsize=16,color="burlywood",shape="box"];2854[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];187 -> 2854[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2854 -> 243[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2855[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];187 -> 2855[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2855 -> 244[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 188[label="primCmpInt (Pos (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];2856[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];188 -> 2856[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2856 -> 245[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2857[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];188 -> 2857[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2857 -> 246[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 189[label="primCmpInt (Pos Zero) vxw400",fontsize=16,color="burlywood",shape="box"];2858[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];189 -> 2858[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2858 -> 247[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2859[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];189 -> 2859[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2859 -> 248[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 190[label="primCmpInt (Neg (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];2860[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];190 -> 2860[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2860 -> 249[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2861[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];190 -> 2861[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2861 -> 250[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 191[label="primCmpInt (Neg Zero) vxw400",fontsize=16,color="burlywood",shape="box"];2862[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];191 -> 2862[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2862 -> 251[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2863[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];191 -> 2863[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2863 -> 252[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 192[label="compare2 LT vxw400 (LT == vxw400)",fontsize=16,color="burlywood",shape="box"];2864[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];192 -> 2864[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2864 -> 253[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2865[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];192 -> 2865[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2865 -> 254[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2866[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];192 -> 2866[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2866 -> 255[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 193[label="compare2 EQ vxw400 (EQ == vxw400)",fontsize=16,color="burlywood",shape="box"];2867[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];193 -> 2867[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2867 -> 256[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2868[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];193 -> 2868[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2868 -> 257[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2869[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];193 -> 2869[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2869 -> 258[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 194[label="compare2 GT vxw400 (GT == vxw400)",fontsize=16,color="burlywood",shape="box"];2870[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];194 -> 2870[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2870 -> 259[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2871[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];194 -> 2871[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2871 -> 260[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2872[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];194 -> 2872[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2872 -> 261[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 195[label="primCmpDouble (Double vxw300 (Pos vxw3010)) vxw400",fontsize=16,color="burlywood",shape="box"];2873[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];195 -> 2873[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2873 -> 262[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 196[label="primCmpDouble (Double vxw300 (Neg vxw3010)) vxw400",fontsize=16,color="burlywood",shape="box"];2874[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];196 -> 2874[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2874 -> 263[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 197[label="compare2 (vxw300,vxw301) vxw400 ((vxw300,vxw301) == vxw400)",fontsize=16,color="burlywood",shape="box"];2875[label="vxw400/(vxw4000,vxw4001)",fontsize=10,color="white",style="solid",shape="box"];197 -> 2875[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2875 -> 264[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 198[label="compare2 (Left vxw300) vxw400 (Left vxw300 == vxw400)",fontsize=16,color="burlywood",shape="box"];2876[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];198 -> 2876[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2876 -> 265[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2877[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];198 -> 2877[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2877 -> 266[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 199[label="compare2 (Right vxw300) vxw400 (Right vxw300 == vxw400)",fontsize=16,color="burlywood",shape="box"];2878[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];199 -> 2878[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2878 -> 267[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2879[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];199 -> 2879[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2879 -> 268[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 200[label="compare2 (vxw300,vxw301,vxw302) vxw400 ((vxw300,vxw301,vxw302) == vxw400)",fontsize=16,color="burlywood",shape="box"];2880[label="vxw400/(vxw4000,vxw4001,vxw4002)",fontsize=10,color="white",style="solid",shape="box"];200 -> 2880[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2880 -> 269[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 201[label="compare (vxw300 * vxw4001) (vxw4000 * vxw301)",fontsize=16,color="blue",shape="box"];2881[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];201 -> 2881[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2881 -> 270[label="",style="solid", color="blue", weight=3]; 21.67/7.84 2882[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];201 -> 2882[label="",style="solid", color="blue", weight=9]; 21.67/7.84 2882 -> 271[label="",style="solid", color="blue", weight=3]; 21.67/7.84 202[label="primCmpFloat (Float vxw300 (Pos vxw3010)) vxw400",fontsize=16,color="burlywood",shape="box"];2883[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];202 -> 2883[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2883 -> 272[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 203[label="primCmpFloat (Float vxw300 (Neg vxw3010)) vxw400",fontsize=16,color="burlywood",shape="box"];2884[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];203 -> 2884[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2884 -> 273[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 204 -> 135[label="",style="dashed", color="red", weight=0]; 21.67/7.84 204[label="primCmpInt vxw300 vxw4000",fontsize=16,color="magenta"];204 -> 274[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 204 -> 275[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 205[label="primCmpChar (Char vxw300) (Char vxw4000)",fontsize=16,color="black",shape="box"];205 -> 276[label="",style="solid", color="black", weight=3]; 21.67/7.84 206[label="compare2 Nothing vxw400 (Nothing == vxw400)",fontsize=16,color="burlywood",shape="box"];2885[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];206 -> 2885[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2885 -> 277[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2886[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];206 -> 2886[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2886 -> 278[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 207[label="compare2 (Just vxw300) vxw400 (Just vxw300 == vxw400)",fontsize=16,color="burlywood",shape="box"];2887[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];207 -> 2887[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2887 -> 279[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2888[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];207 -> 2888[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2888 -> 280[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 208[label="EQ",fontsize=16,color="green",shape="box"];209 -> 93[label="",style="dashed", color="red", weight=0]; 21.67/7.84 209[label="primCompAux vxw300 vxw4000 (compare vxw301 vxw4001)",fontsize=16,color="magenta"];209 -> 281[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 209 -> 282[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 209 -> 283[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 209 -> 284[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 210[label="GT",fontsize=16,color="green",shape="box"];211[label="LT",fontsize=16,color="green",shape="box"];212[label="EQ",fontsize=16,color="green",shape="box"];213[label="vxw24",fontsize=16,color="green",shape="box"];214[label="vxw23",fontsize=16,color="green",shape="box"];215[label="vxw24",fontsize=16,color="green",shape="box"];216[label="vxw23",fontsize=16,color="green",shape="box"];217[label="vxw24",fontsize=16,color="green",shape="box"];218[label="vxw23",fontsize=16,color="green",shape="box"];219[label="vxw24",fontsize=16,color="green",shape="box"];220[label="vxw23",fontsize=16,color="green",shape="box"];221[label="vxw24",fontsize=16,color="green",shape="box"];222[label="vxw23",fontsize=16,color="green",shape="box"];223[label="vxw24",fontsize=16,color="green",shape="box"];224[label="vxw23",fontsize=16,color="green",shape="box"];225[label="vxw24",fontsize=16,color="green",shape="box"];226[label="vxw23",fontsize=16,color="green",shape="box"];227[label="vxw24",fontsize=16,color="green",shape="box"];228[label="vxw23",fontsize=16,color="green",shape="box"];229[label="vxw24",fontsize=16,color="green",shape="box"];230[label="vxw23",fontsize=16,color="green",shape="box"];231[label="vxw24",fontsize=16,color="green",shape="box"];232[label="vxw23",fontsize=16,color="green",shape="box"];233[label="vxw24",fontsize=16,color="green",shape="box"];234[label="vxw23",fontsize=16,color="green",shape="box"];235[label="vxw24",fontsize=16,color="green",shape="box"];236[label="vxw23",fontsize=16,color="green",shape="box"];237[label="vxw24",fontsize=16,color="green",shape="box"];238[label="vxw23",fontsize=16,color="green",shape="box"];239[label="vxw24",fontsize=16,color="green",shape="box"];240[label="vxw23",fontsize=16,color="green",shape="box"];241[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];241 -> 285[label="",style="solid", color="black", weight=3]; 21.67/7.84 242[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];242 -> 286[label="",style="solid", color="black", weight=3]; 21.67/7.84 243[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];243 -> 287[label="",style="solid", color="black", weight=3]; 21.67/7.84 244[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];244 -> 288[label="",style="solid", color="black", weight=3]; 21.67/7.84 245[label="primCmpInt (Pos (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];245 -> 289[label="",style="solid", color="black", weight=3]; 21.67/7.84 246[label="primCmpInt (Pos (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];246 -> 290[label="",style="solid", color="black", weight=3]; 21.67/7.84 247[label="primCmpInt (Pos Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2889[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];247 -> 2889[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2889 -> 291[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2890[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];247 -> 2890[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2890 -> 292[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 248[label="primCmpInt (Pos Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2891[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];248 -> 2891[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2891 -> 293[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2892[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];248 -> 2892[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2892 -> 294[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 249[label="primCmpInt (Neg (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];249 -> 295[label="",style="solid", color="black", weight=3]; 21.67/7.84 250[label="primCmpInt (Neg (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];250 -> 296[label="",style="solid", color="black", weight=3]; 21.67/7.84 251[label="primCmpInt (Neg Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2893[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];251 -> 2893[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2893 -> 297[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2894[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];251 -> 2894[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2894 -> 298[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 252[label="primCmpInt (Neg Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2895[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];252 -> 2895[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2895 -> 299[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2896[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];252 -> 2896[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2896 -> 300[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 253[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];253 -> 301[label="",style="solid", color="black", weight=3]; 21.67/7.84 254[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];254 -> 302[label="",style="solid", color="black", weight=3]; 21.67/7.84 255[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];255 -> 303[label="",style="solid", color="black", weight=3]; 21.67/7.84 256[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];256 -> 304[label="",style="solid", color="black", weight=3]; 21.67/7.84 257[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];257 -> 305[label="",style="solid", color="black", weight=3]; 21.67/7.84 258[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];258 -> 306[label="",style="solid", color="black", weight=3]; 21.67/7.84 259[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];259 -> 307[label="",style="solid", color="black", weight=3]; 21.67/7.84 260[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];260 -> 308[label="",style="solid", color="black", weight=3]; 21.67/7.84 261[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];261 -> 309[label="",style="solid", color="black", weight=3]; 21.67/7.84 262[label="primCmpDouble (Double vxw300 (Pos vxw3010)) (Double vxw4000 vxw4001)",fontsize=16,color="burlywood",shape="box"];2897[label="vxw4001/Pos vxw40010",fontsize=10,color="white",style="solid",shape="box"];262 -> 2897[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2897 -> 310[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2898[label="vxw4001/Neg vxw40010",fontsize=10,color="white",style="solid",shape="box"];262 -> 2898[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2898 -> 311[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 263[label="primCmpDouble (Double vxw300 (Neg vxw3010)) (Double vxw4000 vxw4001)",fontsize=16,color="burlywood",shape="box"];2899[label="vxw4001/Pos vxw40010",fontsize=10,color="white",style="solid",shape="box"];263 -> 2899[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2899 -> 312[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2900[label="vxw4001/Neg vxw40010",fontsize=10,color="white",style="solid",shape="box"];263 -> 2900[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2900 -> 313[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 264[label="compare2 (vxw300,vxw301) (vxw4000,vxw4001) ((vxw300,vxw301) == (vxw4000,vxw4001))",fontsize=16,color="black",shape="box"];264 -> 314[label="",style="solid", color="black", weight=3]; 21.67/7.84 265[label="compare2 (Left vxw300) (Left vxw4000) (Left vxw300 == Left vxw4000)",fontsize=16,color="black",shape="box"];265 -> 315[label="",style="solid", color="black", weight=3]; 21.67/7.84 266[label="compare2 (Left vxw300) (Right vxw4000) (Left vxw300 == Right vxw4000)",fontsize=16,color="black",shape="box"];266 -> 316[label="",style="solid", color="black", weight=3]; 21.67/7.84 267[label="compare2 (Right vxw300) (Left vxw4000) (Right vxw300 == Left vxw4000)",fontsize=16,color="black",shape="box"];267 -> 317[label="",style="solid", color="black", weight=3]; 21.67/7.84 268[label="compare2 (Right vxw300) (Right vxw4000) (Right vxw300 == Right vxw4000)",fontsize=16,color="black",shape="box"];268 -> 318[label="",style="solid", color="black", weight=3]; 21.67/7.84 269[label="compare2 (vxw300,vxw301,vxw302) (vxw4000,vxw4001,vxw4002) ((vxw300,vxw301,vxw302) == (vxw4000,vxw4001,vxw4002))",fontsize=16,color="black",shape="box"];269 -> 319[label="",style="solid", color="black", weight=3]; 21.67/7.84 270 -> 117[label="",style="dashed", color="red", weight=0]; 21.67/7.84 270[label="compare (vxw300 * vxw4001) (vxw4000 * vxw301)",fontsize=16,color="magenta"];270 -> 320[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 270 -> 321[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 271 -> 125[label="",style="dashed", color="red", weight=0]; 21.67/7.84 271[label="compare (vxw300 * vxw4001) (vxw4000 * vxw301)",fontsize=16,color="magenta"];271 -> 322[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 271 -> 323[label="",style="dashed", color="magenta", weight=3]; 21.67/7.84 272[label="primCmpFloat (Float vxw300 (Pos vxw3010)) (Float vxw4000 vxw4001)",fontsize=16,color="burlywood",shape="box"];2901[label="vxw4001/Pos vxw40010",fontsize=10,color="white",style="solid",shape="box"];272 -> 2901[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2901 -> 324[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2902[label="vxw4001/Neg vxw40010",fontsize=10,color="white",style="solid",shape="box"];272 -> 2902[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2902 -> 325[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 273[label="primCmpFloat (Float vxw300 (Neg vxw3010)) (Float vxw4000 vxw4001)",fontsize=16,color="burlywood",shape="box"];2903[label="vxw4001/Pos vxw40010",fontsize=10,color="white",style="solid",shape="box"];273 -> 2903[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2903 -> 326[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 2904[label="vxw4001/Neg vxw40010",fontsize=10,color="white",style="solid",shape="box"];273 -> 2904[label="",style="solid", color="burlywood", weight=9]; 21.67/7.84 2904 -> 327[label="",style="solid", color="burlywood", weight=3]; 21.67/7.84 274[label="vxw4000",fontsize=16,color="green",shape="box"];275[label="vxw300",fontsize=16,color="green",shape="box"];276[label="primCmpNat vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];2905[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];276 -> 2905[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2905 -> 328[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 2906[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];276 -> 2906[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2906 -> 329[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 277[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];277 -> 330[label="",style="solid", color="black", weight=3]; 21.85/7.84 278[label="compare2 Nothing (Just vxw4000) (Nothing == Just vxw4000)",fontsize=16,color="black",shape="box"];278 -> 331[label="",style="solid", color="black", weight=3]; 21.85/7.84 279[label="compare2 (Just vxw300) Nothing (Just vxw300 == Nothing)",fontsize=16,color="black",shape="box"];279 -> 332[label="",style="solid", color="black", weight=3]; 21.85/7.84 280[label="compare2 (Just vxw300) (Just vxw4000) (Just vxw300 == Just vxw4000)",fontsize=16,color="black",shape="box"];280 -> 333[label="",style="solid", color="black", weight=3]; 21.85/7.84 281[label="vxw4001",fontsize=16,color="green",shape="box"];282[label="vxw4000",fontsize=16,color="green",shape="box"];283[label="vxw301",fontsize=16,color="green",shape="box"];284[label="vxw300",fontsize=16,color="green",shape="box"];285[label="compare2 False False True",fontsize=16,color="black",shape="box"];285 -> 334[label="",style="solid", color="black", weight=3]; 21.85/7.84 286[label="compare2 False True False",fontsize=16,color="black",shape="box"];286 -> 335[label="",style="solid", color="black", weight=3]; 21.85/7.84 287[label="compare2 True False False",fontsize=16,color="black",shape="box"];287 -> 336[label="",style="solid", color="black", weight=3]; 21.85/7.84 288[label="compare2 True True True",fontsize=16,color="black",shape="box"];288 -> 337[label="",style="solid", color="black", weight=3]; 21.85/7.84 289 -> 276[label="",style="dashed", color="red", weight=0]; 21.85/7.84 289[label="primCmpNat (Succ vxw3000) vxw4000",fontsize=16,color="magenta"];289 -> 338[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 289 -> 339[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 290[label="GT",fontsize=16,color="green",shape="box"];291[label="primCmpInt (Pos Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];291 -> 340[label="",style="solid", color="black", weight=3]; 21.85/7.84 292[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];292 -> 341[label="",style="solid", color="black", weight=3]; 21.85/7.84 293[label="primCmpInt (Pos Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];293 -> 342[label="",style="solid", color="black", weight=3]; 21.85/7.84 294[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];294 -> 343[label="",style="solid", color="black", weight=3]; 21.85/7.84 295[label="LT",fontsize=16,color="green",shape="box"];296 -> 276[label="",style="dashed", color="red", weight=0]; 21.85/7.84 296[label="primCmpNat vxw4000 (Succ vxw3000)",fontsize=16,color="magenta"];296 -> 344[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 296 -> 345[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 297[label="primCmpInt (Neg Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];297 -> 346[label="",style="solid", color="black", weight=3]; 21.85/7.84 298[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];298 -> 347[label="",style="solid", color="black", weight=3]; 21.85/7.84 299[label="primCmpInt (Neg Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];299 -> 348[label="",style="solid", color="black", weight=3]; 21.85/7.84 300[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];300 -> 349[label="",style="solid", color="black", weight=3]; 21.85/7.84 301[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];301 -> 350[label="",style="solid", color="black", weight=3]; 21.85/7.84 302[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];302 -> 351[label="",style="solid", color="black", weight=3]; 21.85/7.84 303[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];303 -> 352[label="",style="solid", color="black", weight=3]; 21.85/7.84 304[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];304 -> 353[label="",style="solid", color="black", weight=3]; 21.85/7.84 305[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];305 -> 354[label="",style="solid", color="black", weight=3]; 21.85/7.84 306[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];306 -> 355[label="",style="solid", color="black", weight=3]; 21.85/7.84 307[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];307 -> 356[label="",style="solid", color="black", weight=3]; 21.85/7.84 308[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];308 -> 357[label="",style="solid", color="black", weight=3]; 21.85/7.84 309[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];309 -> 358[label="",style="solid", color="black", weight=3]; 21.85/7.84 310[label="primCmpDouble (Double vxw300 (Pos vxw3010)) (Double vxw4000 (Pos vxw40010))",fontsize=16,color="black",shape="box"];310 -> 359[label="",style="solid", color="black", weight=3]; 21.85/7.84 311[label="primCmpDouble (Double vxw300 (Pos vxw3010)) (Double vxw4000 (Neg vxw40010))",fontsize=16,color="black",shape="box"];311 -> 360[label="",style="solid", color="black", weight=3]; 21.85/7.84 312[label="primCmpDouble (Double vxw300 (Neg vxw3010)) (Double vxw4000 (Pos vxw40010))",fontsize=16,color="black",shape="box"];312 -> 361[label="",style="solid", color="black", weight=3]; 21.85/7.84 313[label="primCmpDouble (Double vxw300 (Neg vxw3010)) (Double vxw4000 (Neg vxw40010))",fontsize=16,color="black",shape="box"];313 -> 362[label="",style="solid", color="black", weight=3]; 21.85/7.84 314 -> 760[label="",style="dashed", color="red", weight=0]; 21.85/7.84 314[label="compare2 (vxw300,vxw301) (vxw4000,vxw4001) (vxw300 == vxw4000 && vxw301 == vxw4001)",fontsize=16,color="magenta"];314 -> 761[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 314 -> 762[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 314 -> 763[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 314 -> 764[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 314 -> 765[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 315 -> 369[label="",style="dashed", color="red", weight=0]; 21.85/7.84 315[label="compare2 (Left vxw300) (Left vxw4000) (vxw300 == vxw4000)",fontsize=16,color="magenta"];315 -> 370[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 315 -> 371[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 315 -> 372[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 316[label="compare2 (Left vxw300) (Right vxw4000) False",fontsize=16,color="black",shape="box"];316 -> 373[label="",style="solid", color="black", weight=3]; 21.85/7.84 317[label="compare2 (Right vxw300) (Left vxw4000) False",fontsize=16,color="black",shape="box"];317 -> 374[label="",style="solid", color="black", weight=3]; 21.85/7.84 318 -> 375[label="",style="dashed", color="red", weight=0]; 21.85/7.84 318[label="compare2 (Right vxw300) (Right vxw4000) (vxw300 == vxw4000)",fontsize=16,color="magenta"];318 -> 376[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 318 -> 377[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 318 -> 378[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 319 -> 807[label="",style="dashed", color="red", weight=0]; 21.85/7.84 319[label="compare2 (vxw300,vxw301,vxw302) (vxw4000,vxw4001,vxw4002) (vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002)",fontsize=16,color="magenta"];319 -> 808[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 319 -> 809[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 319 -> 810[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 319 -> 811[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 319 -> 812[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 319 -> 813[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 319 -> 814[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 320[label="vxw4000 * vxw301",fontsize=16,color="black",shape="triangle"];320 -> 387[label="",style="solid", color="black", weight=3]; 21.85/7.84 321 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 321[label="vxw300 * vxw4001",fontsize=16,color="magenta"];321 -> 388[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 321 -> 389[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 322[label="vxw4000 * vxw301",fontsize=16,color="burlywood",shape="triangle"];2907[label="vxw4000/Integer vxw40000",fontsize=10,color="white",style="solid",shape="box"];322 -> 2907[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2907 -> 390[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 323 -> 322[label="",style="dashed", color="red", weight=0]; 21.85/7.84 323[label="vxw300 * vxw4001",fontsize=16,color="magenta"];323 -> 391[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 323 -> 392[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 324[label="primCmpFloat (Float vxw300 (Pos vxw3010)) (Float vxw4000 (Pos vxw40010))",fontsize=16,color="black",shape="box"];324 -> 393[label="",style="solid", color="black", weight=3]; 21.85/7.84 325[label="primCmpFloat (Float vxw300 (Pos vxw3010)) (Float vxw4000 (Neg vxw40010))",fontsize=16,color="black",shape="box"];325 -> 394[label="",style="solid", color="black", weight=3]; 21.85/7.84 326[label="primCmpFloat (Float vxw300 (Neg vxw3010)) (Float vxw4000 (Pos vxw40010))",fontsize=16,color="black",shape="box"];326 -> 395[label="",style="solid", color="black", weight=3]; 21.85/7.84 327[label="primCmpFloat (Float vxw300 (Neg vxw3010)) (Float vxw4000 (Neg vxw40010))",fontsize=16,color="black",shape="box"];327 -> 396[label="",style="solid", color="black", weight=3]; 21.85/7.84 328[label="primCmpNat (Succ vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];2908[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];328 -> 2908[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2908 -> 397[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 2909[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];328 -> 2909[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2909 -> 398[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 329[label="primCmpNat Zero vxw4000",fontsize=16,color="burlywood",shape="box"];2910[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];329 -> 2910[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2910 -> 399[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 2911[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];329 -> 2911[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2911 -> 400[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 330[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];330 -> 401[label="",style="solid", color="black", weight=3]; 21.85/7.84 331[label="compare2 Nothing (Just vxw4000) False",fontsize=16,color="black",shape="box"];331 -> 402[label="",style="solid", color="black", weight=3]; 21.85/7.84 332[label="compare2 (Just vxw300) Nothing False",fontsize=16,color="black",shape="box"];332 -> 403[label="",style="solid", color="black", weight=3]; 21.85/7.84 333 -> 404[label="",style="dashed", color="red", weight=0]; 21.85/7.84 333[label="compare2 (Just vxw300) (Just vxw4000) (vxw300 == vxw4000)",fontsize=16,color="magenta"];333 -> 405[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 333 -> 406[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 333 -> 407[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 334[label="EQ",fontsize=16,color="green",shape="box"];335[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];335 -> 408[label="",style="solid", color="black", weight=3]; 21.85/7.84 336[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];336 -> 409[label="",style="solid", color="black", weight=3]; 21.85/7.84 337[label="EQ",fontsize=16,color="green",shape="box"];338[label="Succ vxw3000",fontsize=16,color="green",shape="box"];339[label="vxw4000",fontsize=16,color="green",shape="box"];340 -> 276[label="",style="dashed", color="red", weight=0]; 21.85/7.84 340[label="primCmpNat Zero (Succ vxw40000)",fontsize=16,color="magenta"];340 -> 410[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 340 -> 411[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 341[label="EQ",fontsize=16,color="green",shape="box"];342[label="GT",fontsize=16,color="green",shape="box"];343[label="EQ",fontsize=16,color="green",shape="box"];344[label="vxw4000",fontsize=16,color="green",shape="box"];345[label="Succ vxw3000",fontsize=16,color="green",shape="box"];346[label="LT",fontsize=16,color="green",shape="box"];347[label="EQ",fontsize=16,color="green",shape="box"];348 -> 276[label="",style="dashed", color="red", weight=0]; 21.85/7.84 348[label="primCmpNat (Succ vxw40000) Zero",fontsize=16,color="magenta"];348 -> 412[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 348 -> 413[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 349[label="EQ",fontsize=16,color="green",shape="box"];350[label="EQ",fontsize=16,color="green",shape="box"];351[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];351 -> 414[label="",style="solid", color="black", weight=3]; 21.85/7.84 352[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];352 -> 415[label="",style="solid", color="black", weight=3]; 21.85/7.84 353[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];353 -> 416[label="",style="solid", color="black", weight=3]; 21.85/7.84 354[label="EQ",fontsize=16,color="green",shape="box"];355[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];355 -> 417[label="",style="solid", color="black", weight=3]; 21.85/7.84 356[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];356 -> 418[label="",style="solid", color="black", weight=3]; 21.85/7.84 357[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];357 -> 419[label="",style="solid", color="black", weight=3]; 21.85/7.84 358[label="EQ",fontsize=16,color="green",shape="box"];359 -> 117[label="",style="dashed", color="red", weight=0]; 21.85/7.84 359[label="compare (vxw300 * Pos vxw40010) (Pos vxw3010 * vxw4000)",fontsize=16,color="magenta"];359 -> 420[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 359 -> 421[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 360 -> 117[label="",style="dashed", color="red", weight=0]; 21.85/7.84 360[label="compare (vxw300 * Pos vxw40010) (Neg vxw3010 * vxw4000)",fontsize=16,color="magenta"];360 -> 422[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 360 -> 423[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 361 -> 117[label="",style="dashed", color="red", weight=0]; 21.85/7.84 361[label="compare (vxw300 * Neg vxw40010) (Pos vxw3010 * vxw4000)",fontsize=16,color="magenta"];361 -> 424[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 361 -> 425[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 362 -> 117[label="",style="dashed", color="red", weight=0]; 21.85/7.84 362[label="compare (vxw300 * Neg vxw40010) (Neg vxw3010 * vxw4000)",fontsize=16,color="magenta"];362 -> 426[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 362 -> 427[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 761[label="vxw301",fontsize=16,color="green",shape="box"];762[label="vxw4000",fontsize=16,color="green",shape="box"];763[label="vxw4001",fontsize=16,color="green",shape="box"];764[label="vxw300",fontsize=16,color="green",shape="box"];765 -> 839[label="",style="dashed", color="red", weight=0]; 21.85/7.84 765[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];765 -> 840[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 765 -> 841[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 760[label="compare2 (vxw79,vxw80) (vxw81,vxw82) vxw83",fontsize=16,color="burlywood",shape="triangle"];2912[label="vxw83/False",fontsize=10,color="white",style="solid",shape="box"];760 -> 2912[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2912 -> 785[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 2913[label="vxw83/True",fontsize=10,color="white",style="solid",shape="box"];760 -> 2913[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2913 -> 786[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 370[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2914[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2914[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2914 -> 444[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2915[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2915[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2915 -> 445[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2916[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2916[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2916 -> 446[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2917[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2917[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2917 -> 447[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2918[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2918[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2918 -> 448[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2919[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2919[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2919 -> 449[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2920[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2920[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2920 -> 450[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2921[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2921[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2921 -> 451[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2922[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2922[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2922 -> 452[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2923[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2923[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2923 -> 453[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2924[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2924[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2924 -> 454[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2925[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2925[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2925 -> 455[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2926[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2926[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2926 -> 456[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2927[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2927[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2927 -> 457[label="",style="solid", color="blue", weight=3]; 21.85/7.84 371[label="vxw300",fontsize=16,color="green",shape="box"];372[label="vxw4000",fontsize=16,color="green",shape="box"];369[label="compare2 (Left vxw41) (Left vxw42) vxw43",fontsize=16,color="burlywood",shape="triangle"];2928[label="vxw43/False",fontsize=10,color="white",style="solid",shape="box"];369 -> 2928[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2928 -> 458[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 2929[label="vxw43/True",fontsize=10,color="white",style="solid",shape="box"];369 -> 2929[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2929 -> 459[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 373[label="compare1 (Left vxw300) (Right vxw4000) (Left vxw300 <= Right vxw4000)",fontsize=16,color="black",shape="box"];373 -> 460[label="",style="solid", color="black", weight=3]; 21.85/7.84 374[label="compare1 (Right vxw300) (Left vxw4000) (Right vxw300 <= Left vxw4000)",fontsize=16,color="black",shape="box"];374 -> 461[label="",style="solid", color="black", weight=3]; 21.85/7.84 376[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2930[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2930[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2930 -> 462[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2931[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2931[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2931 -> 463[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2932[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2932[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2932 -> 464[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2933[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2933[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2933 -> 465[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2934[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2934[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2934 -> 466[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2935[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2935[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2935 -> 467[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2936[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2936[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2936 -> 468[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2937[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2937[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2937 -> 469[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2938[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2938[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2938 -> 470[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2939[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2939[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2939 -> 471[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2940[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2940[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2940 -> 472[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2941[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2941[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2941 -> 473[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2942[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2942[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2942 -> 474[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2943[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2943[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2943 -> 475[label="",style="solid", color="blue", weight=3]; 21.85/7.84 377[label="vxw4000",fontsize=16,color="green",shape="box"];378[label="vxw300",fontsize=16,color="green",shape="box"];375[label="compare2 (Right vxw48) (Right vxw49) vxw50",fontsize=16,color="burlywood",shape="triangle"];2944[label="vxw50/False",fontsize=10,color="white",style="solid",shape="box"];375 -> 2944[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2944 -> 476[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 2945[label="vxw50/True",fontsize=10,color="white",style="solid",shape="box"];375 -> 2945[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2945 -> 477[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 808[label="vxw302",fontsize=16,color="green",shape="box"];809[label="vxw300",fontsize=16,color="green",shape="box"];810[label="vxw301",fontsize=16,color="green",shape="box"];811[label="vxw4002",fontsize=16,color="green",shape="box"];812[label="vxw4000",fontsize=16,color="green",shape="box"];813[label="vxw4001",fontsize=16,color="green",shape="box"];814 -> 839[label="",style="dashed", color="red", weight=0]; 21.85/7.84 814[label="vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];814 -> 842[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 814 -> 843[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 807[label="compare2 (vxw59,vxw60,vxw61) (vxw62,vxw63,vxw64) vxw91",fontsize=16,color="burlywood",shape="triangle"];2946[label="vxw91/False",fontsize=10,color="white",style="solid",shape="box"];807 -> 2946[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2946 -> 823[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 2947[label="vxw91/True",fontsize=10,color="white",style="solid",shape="box"];807 -> 2947[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2947 -> 824[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 387[label="primMulInt vxw4000 vxw301",fontsize=16,color="burlywood",shape="triangle"];2948[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];387 -> 2948[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2948 -> 494[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 2949[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];387 -> 2949[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2949 -> 495[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 388[label="vxw4001",fontsize=16,color="green",shape="box"];389[label="vxw300",fontsize=16,color="green",shape="box"];390[label="Integer vxw40000 * vxw301",fontsize=16,color="burlywood",shape="box"];2950[label="vxw301/Integer vxw3010",fontsize=10,color="white",style="solid",shape="box"];390 -> 2950[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2950 -> 496[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 391[label="vxw4001",fontsize=16,color="green",shape="box"];392[label="vxw300",fontsize=16,color="green",shape="box"];393 -> 117[label="",style="dashed", color="red", weight=0]; 21.85/7.84 393[label="compare (vxw300 * Pos vxw40010) (Pos vxw3010 * vxw4000)",fontsize=16,color="magenta"];393 -> 497[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 393 -> 498[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 394 -> 117[label="",style="dashed", color="red", weight=0]; 21.85/7.84 394[label="compare (vxw300 * Pos vxw40010) (Neg vxw3010 * vxw4000)",fontsize=16,color="magenta"];394 -> 499[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 394 -> 500[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 395 -> 117[label="",style="dashed", color="red", weight=0]; 21.85/7.84 395[label="compare (vxw300 * Neg vxw40010) (Pos vxw3010 * vxw4000)",fontsize=16,color="magenta"];395 -> 501[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 395 -> 502[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 396 -> 117[label="",style="dashed", color="red", weight=0]; 21.85/7.84 396[label="compare (vxw300 * Neg vxw40010) (Neg vxw3010 * vxw4000)",fontsize=16,color="magenta"];396 -> 503[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 396 -> 504[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 397[label="primCmpNat (Succ vxw3000) (Succ vxw40000)",fontsize=16,color="black",shape="box"];397 -> 505[label="",style="solid", color="black", weight=3]; 21.85/7.84 398[label="primCmpNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];398 -> 506[label="",style="solid", color="black", weight=3]; 21.85/7.84 399[label="primCmpNat Zero (Succ vxw40000)",fontsize=16,color="black",shape="box"];399 -> 507[label="",style="solid", color="black", weight=3]; 21.85/7.84 400[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];400 -> 508[label="",style="solid", color="black", weight=3]; 21.85/7.84 401[label="EQ",fontsize=16,color="green",shape="box"];402[label="compare1 Nothing (Just vxw4000) (Nothing <= Just vxw4000)",fontsize=16,color="black",shape="box"];402 -> 509[label="",style="solid", color="black", weight=3]; 21.85/7.84 403[label="compare1 (Just vxw300) Nothing (Just vxw300 <= Nothing)",fontsize=16,color="black",shape="box"];403 -> 510[label="",style="solid", color="black", weight=3]; 21.85/7.84 405[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2951[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2951[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2951 -> 511[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2952[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2952[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2952 -> 512[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2953[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2953[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2953 -> 513[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2954[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2954[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2954 -> 514[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2955[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2955[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2955 -> 515[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2956[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2956[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2956 -> 516[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2957[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2957[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2957 -> 517[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2958[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2958[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2958 -> 518[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2959[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2959[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2959 -> 519[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2960[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2960[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2960 -> 520[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2961[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2961[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2961 -> 521[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2962[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2962[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2962 -> 522[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2963[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2963[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2963 -> 523[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2964[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2964[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2964 -> 524[label="",style="solid", color="blue", weight=3]; 21.85/7.84 406[label="vxw300",fontsize=16,color="green",shape="box"];407[label="vxw4000",fontsize=16,color="green",shape="box"];404[label="compare2 (Just vxw70) (Just vxw71) vxw72",fontsize=16,color="burlywood",shape="triangle"];2965[label="vxw72/False",fontsize=10,color="white",style="solid",shape="box"];404 -> 2965[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2965 -> 525[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 2966[label="vxw72/True",fontsize=10,color="white",style="solid",shape="box"];404 -> 2966[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2966 -> 526[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 408[label="compare1 False True True",fontsize=16,color="black",shape="box"];408 -> 527[label="",style="solid", color="black", weight=3]; 21.85/7.84 409[label="compare1 True False False",fontsize=16,color="black",shape="box"];409 -> 528[label="",style="solid", color="black", weight=3]; 21.85/7.84 410[label="Zero",fontsize=16,color="green",shape="box"];411[label="Succ vxw40000",fontsize=16,color="green",shape="box"];412[label="Succ vxw40000",fontsize=16,color="green",shape="box"];413[label="Zero",fontsize=16,color="green",shape="box"];414[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];414 -> 529[label="",style="solid", color="black", weight=3]; 21.85/7.84 415[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];415 -> 530[label="",style="solid", color="black", weight=3]; 21.85/7.84 416[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];416 -> 531[label="",style="solid", color="black", weight=3]; 21.85/7.84 417[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];417 -> 532[label="",style="solid", color="black", weight=3]; 21.85/7.84 418[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];418 -> 533[label="",style="solid", color="black", weight=3]; 21.85/7.84 419[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];419 -> 534[label="",style="solid", color="black", weight=3]; 21.85/7.84 420 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 420[label="Pos vxw3010 * vxw4000",fontsize=16,color="magenta"];420 -> 535[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 420 -> 536[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 421 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 421[label="vxw300 * Pos vxw40010",fontsize=16,color="magenta"];421 -> 537[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 421 -> 538[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 422 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 422[label="Neg vxw3010 * vxw4000",fontsize=16,color="magenta"];422 -> 539[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 422 -> 540[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 423 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 423[label="vxw300 * Pos vxw40010",fontsize=16,color="magenta"];423 -> 541[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 423 -> 542[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 424 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 424[label="Pos vxw3010 * vxw4000",fontsize=16,color="magenta"];424 -> 543[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 424 -> 544[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 425 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 425[label="vxw300 * Neg vxw40010",fontsize=16,color="magenta"];425 -> 545[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 425 -> 546[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 426 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 426[label="Neg vxw3010 * vxw4000",fontsize=16,color="magenta"];426 -> 547[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 426 -> 548[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 427 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 427[label="vxw300 * Neg vxw40010",fontsize=16,color="magenta"];427 -> 549[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 427 -> 550[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 840[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2967[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2967[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2967 -> 848[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2968[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2968[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2968 -> 849[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2969[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2969[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2969 -> 850[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2970[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2970[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2970 -> 851[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2971[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2971[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2971 -> 852[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2972[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2972[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2972 -> 853[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2973[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2973[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2973 -> 854[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2974[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2974[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2974 -> 855[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2975[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2975[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2975 -> 856[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2976[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2976[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2976 -> 857[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2977[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2977[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2977 -> 858[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2978[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2978[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2978 -> 859[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2979[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2979[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2979 -> 860[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2980[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 2980[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2980 -> 861[label="",style="solid", color="blue", weight=3]; 21.85/7.84 841[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];2981[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2981[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2981 -> 862[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2982[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2982[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2982 -> 863[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2983[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2983[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2983 -> 864[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2984[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2984[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2984 -> 865[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2985[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2985[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2985 -> 866[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2986[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2986[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2986 -> 867[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2987[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2987[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2987 -> 868[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2988[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2988[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2988 -> 869[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2989[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2989[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2989 -> 870[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2990[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2990[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2990 -> 871[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2991[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2991[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2991 -> 872[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2992[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2992[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2992 -> 873[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2993[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2993[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2993 -> 874[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2994[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 2994[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2994 -> 875[label="",style="solid", color="blue", weight=3]; 21.85/7.84 839[label="vxw96 && vxw97",fontsize=16,color="burlywood",shape="triangle"];2995[label="vxw96/False",fontsize=10,color="white",style="solid",shape="box"];839 -> 2995[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2995 -> 876[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 2996[label="vxw96/True",fontsize=10,color="white",style="solid",shape="box"];839 -> 2996[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 2996 -> 877[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 785[label="compare2 (vxw79,vxw80) (vxw81,vxw82) False",fontsize=16,color="black",shape="box"];785 -> 878[label="",style="solid", color="black", weight=3]; 21.85/7.84 786[label="compare2 (vxw79,vxw80) (vxw81,vxw82) True",fontsize=16,color="black",shape="box"];786 -> 879[label="",style="solid", color="black", weight=3]; 21.85/7.84 444 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.84 444[label="vxw300 == vxw4000",fontsize=16,color="magenta"];444 -> 573[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 444 -> 574[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 445 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.84 445[label="vxw300 == vxw4000",fontsize=16,color="magenta"];445 -> 575[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 445 -> 576[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 446 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.84 446[label="vxw300 == vxw4000",fontsize=16,color="magenta"];446 -> 577[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 446 -> 578[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 447 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.84 447[label="vxw300 == vxw4000",fontsize=16,color="magenta"];447 -> 579[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 447 -> 580[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 448 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.84 448[label="vxw300 == vxw4000",fontsize=16,color="magenta"];448 -> 581[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 448 -> 582[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 449 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.84 449[label="vxw300 == vxw4000",fontsize=16,color="magenta"];449 -> 583[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 449 -> 584[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 450 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.84 450[label="vxw300 == vxw4000",fontsize=16,color="magenta"];450 -> 585[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 450 -> 586[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 451 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.84 451[label="vxw300 == vxw4000",fontsize=16,color="magenta"];451 -> 587[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 451 -> 588[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 452 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.84 452[label="vxw300 == vxw4000",fontsize=16,color="magenta"];452 -> 589[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 452 -> 590[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 453 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.84 453[label="vxw300 == vxw4000",fontsize=16,color="magenta"];453 -> 591[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 453 -> 592[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 454 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.84 454[label="vxw300 == vxw4000",fontsize=16,color="magenta"];454 -> 593[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 454 -> 594[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 455 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.84 455[label="vxw300 == vxw4000",fontsize=16,color="magenta"];455 -> 595[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 455 -> 596[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 456 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.84 456[label="vxw300 == vxw4000",fontsize=16,color="magenta"];456 -> 597[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 456 -> 598[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 457 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.84 457[label="vxw300 == vxw4000",fontsize=16,color="magenta"];457 -> 599[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 457 -> 600[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 458[label="compare2 (Left vxw41) (Left vxw42) False",fontsize=16,color="black",shape="box"];458 -> 601[label="",style="solid", color="black", weight=3]; 21.85/7.84 459[label="compare2 (Left vxw41) (Left vxw42) True",fontsize=16,color="black",shape="box"];459 -> 602[label="",style="solid", color="black", weight=3]; 21.85/7.84 460[label="compare1 (Left vxw300) (Right vxw4000) True",fontsize=16,color="black",shape="box"];460 -> 603[label="",style="solid", color="black", weight=3]; 21.85/7.84 461[label="compare1 (Right vxw300) (Left vxw4000) False",fontsize=16,color="black",shape="box"];461 -> 604[label="",style="solid", color="black", weight=3]; 21.85/7.84 462 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.84 462[label="vxw300 == vxw4000",fontsize=16,color="magenta"];462 -> 605[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 462 -> 606[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 463 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.84 463[label="vxw300 == vxw4000",fontsize=16,color="magenta"];463 -> 607[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 463 -> 608[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 464 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.84 464[label="vxw300 == vxw4000",fontsize=16,color="magenta"];464 -> 609[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 464 -> 610[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 465 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.84 465[label="vxw300 == vxw4000",fontsize=16,color="magenta"];465 -> 611[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 465 -> 612[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 466 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.84 466[label="vxw300 == vxw4000",fontsize=16,color="magenta"];466 -> 613[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 466 -> 614[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 467 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.84 467[label="vxw300 == vxw4000",fontsize=16,color="magenta"];467 -> 615[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 467 -> 616[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 468 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.84 468[label="vxw300 == vxw4000",fontsize=16,color="magenta"];468 -> 617[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 468 -> 618[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 469 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.84 469[label="vxw300 == vxw4000",fontsize=16,color="magenta"];469 -> 619[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 469 -> 620[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 470 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.84 470[label="vxw300 == vxw4000",fontsize=16,color="magenta"];470 -> 621[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 470 -> 622[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 471 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.84 471[label="vxw300 == vxw4000",fontsize=16,color="magenta"];471 -> 623[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 471 -> 624[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 472 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.84 472[label="vxw300 == vxw4000",fontsize=16,color="magenta"];472 -> 625[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 472 -> 626[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 473 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.84 473[label="vxw300 == vxw4000",fontsize=16,color="magenta"];473 -> 627[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 473 -> 628[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 474 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.84 474[label="vxw300 == vxw4000",fontsize=16,color="magenta"];474 -> 629[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 474 -> 630[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 475 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.84 475[label="vxw300 == vxw4000",fontsize=16,color="magenta"];475 -> 631[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 475 -> 632[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 476[label="compare2 (Right vxw48) (Right vxw49) False",fontsize=16,color="black",shape="box"];476 -> 633[label="",style="solid", color="black", weight=3]; 21.85/7.84 477[label="compare2 (Right vxw48) (Right vxw49) True",fontsize=16,color="black",shape="box"];477 -> 634[label="",style="solid", color="black", weight=3]; 21.85/7.84 842[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2997[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2997[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2997 -> 880[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2998[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2998[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2998 -> 881[label="",style="solid", color="blue", weight=3]; 21.85/7.84 2999[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2999[label="",style="solid", color="blue", weight=9]; 21.85/7.84 2999 -> 882[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3000[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3000[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3000 -> 883[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3001[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3001[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3001 -> 884[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3002[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3002[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3002 -> 885[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3003[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3003[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3003 -> 886[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3004[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3004[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3004 -> 887[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3005[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3005[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3005 -> 888[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3006[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3006[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3006 -> 889[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3007[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3007[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3007 -> 890[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3008[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3008[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3008 -> 891[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3009[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3009[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3009 -> 892[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3010[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 3010[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3010 -> 893[label="",style="solid", color="blue", weight=3]; 21.85/7.84 843 -> 839[label="",style="dashed", color="red", weight=0]; 21.85/7.84 843[label="vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];843 -> 894[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 843 -> 895[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 823[label="compare2 (vxw59,vxw60,vxw61) (vxw62,vxw63,vxw64) False",fontsize=16,color="black",shape="box"];823 -> 896[label="",style="solid", color="black", weight=3]; 21.85/7.84 824[label="compare2 (vxw59,vxw60,vxw61) (vxw62,vxw63,vxw64) True",fontsize=16,color="black",shape="box"];824 -> 897[label="",style="solid", color="black", weight=3]; 21.85/7.84 494[label="primMulInt (Pos vxw40000) vxw301",fontsize=16,color="burlywood",shape="box"];3011[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];494 -> 3011[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3011 -> 665[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3012[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];494 -> 3012[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3012 -> 666[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 495[label="primMulInt (Neg vxw40000) vxw301",fontsize=16,color="burlywood",shape="box"];3013[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];495 -> 3013[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3013 -> 667[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3014[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];495 -> 3014[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3014 -> 668[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 496[label="Integer vxw40000 * Integer vxw3010",fontsize=16,color="black",shape="box"];496 -> 669[label="",style="solid", color="black", weight=3]; 21.85/7.84 497 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 497[label="Pos vxw3010 * vxw4000",fontsize=16,color="magenta"];497 -> 670[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 497 -> 671[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 498 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 498[label="vxw300 * Pos vxw40010",fontsize=16,color="magenta"];498 -> 672[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 498 -> 673[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 499 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 499[label="Neg vxw3010 * vxw4000",fontsize=16,color="magenta"];499 -> 674[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 499 -> 675[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 500 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 500[label="vxw300 * Pos vxw40010",fontsize=16,color="magenta"];500 -> 676[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 500 -> 677[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 501 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 501[label="Pos vxw3010 * vxw4000",fontsize=16,color="magenta"];501 -> 678[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 501 -> 679[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 502 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 502[label="vxw300 * Neg vxw40010",fontsize=16,color="magenta"];502 -> 680[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 502 -> 681[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 503 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 503[label="Neg vxw3010 * vxw4000",fontsize=16,color="magenta"];503 -> 682[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 503 -> 683[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 504 -> 320[label="",style="dashed", color="red", weight=0]; 21.85/7.84 504[label="vxw300 * Neg vxw40010",fontsize=16,color="magenta"];504 -> 684[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 504 -> 685[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 505 -> 276[label="",style="dashed", color="red", weight=0]; 21.85/7.84 505[label="primCmpNat vxw3000 vxw40000",fontsize=16,color="magenta"];505 -> 686[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 505 -> 687[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 506[label="GT",fontsize=16,color="green",shape="box"];507[label="LT",fontsize=16,color="green",shape="box"];508[label="EQ",fontsize=16,color="green",shape="box"];509[label="compare1 Nothing (Just vxw4000) True",fontsize=16,color="black",shape="box"];509 -> 688[label="",style="solid", color="black", weight=3]; 21.85/7.84 510[label="compare1 (Just vxw300) Nothing False",fontsize=16,color="black",shape="box"];510 -> 689[label="",style="solid", color="black", weight=3]; 21.85/7.84 511 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.84 511[label="vxw300 == vxw4000",fontsize=16,color="magenta"];511 -> 690[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 511 -> 691[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 512 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.84 512[label="vxw300 == vxw4000",fontsize=16,color="magenta"];512 -> 692[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 512 -> 693[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 513 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.84 513[label="vxw300 == vxw4000",fontsize=16,color="magenta"];513 -> 694[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 513 -> 695[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 514 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.84 514[label="vxw300 == vxw4000",fontsize=16,color="magenta"];514 -> 696[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 514 -> 697[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 515 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.84 515[label="vxw300 == vxw4000",fontsize=16,color="magenta"];515 -> 698[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 515 -> 699[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 516 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.84 516[label="vxw300 == vxw4000",fontsize=16,color="magenta"];516 -> 700[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 516 -> 701[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 517 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.84 517[label="vxw300 == vxw4000",fontsize=16,color="magenta"];517 -> 702[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 517 -> 703[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 518 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.84 518[label="vxw300 == vxw4000",fontsize=16,color="magenta"];518 -> 704[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 518 -> 705[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 519 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.84 519[label="vxw300 == vxw4000",fontsize=16,color="magenta"];519 -> 706[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 519 -> 707[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 520 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.84 520[label="vxw300 == vxw4000",fontsize=16,color="magenta"];520 -> 708[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 520 -> 709[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 521 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.84 521[label="vxw300 == vxw4000",fontsize=16,color="magenta"];521 -> 710[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 521 -> 711[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 522 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.84 522[label="vxw300 == vxw4000",fontsize=16,color="magenta"];522 -> 712[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 522 -> 713[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 523 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.84 523[label="vxw300 == vxw4000",fontsize=16,color="magenta"];523 -> 714[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 523 -> 715[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 524 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.84 524[label="vxw300 == vxw4000",fontsize=16,color="magenta"];524 -> 716[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 524 -> 717[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 525[label="compare2 (Just vxw70) (Just vxw71) False",fontsize=16,color="black",shape="box"];525 -> 718[label="",style="solid", color="black", weight=3]; 21.85/7.84 526[label="compare2 (Just vxw70) (Just vxw71) True",fontsize=16,color="black",shape="box"];526 -> 719[label="",style="solid", color="black", weight=3]; 21.85/7.84 527[label="LT",fontsize=16,color="green",shape="box"];528[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];528 -> 720[label="",style="solid", color="black", weight=3]; 21.85/7.84 529[label="LT",fontsize=16,color="green",shape="box"];530[label="LT",fontsize=16,color="green",shape="box"];531[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];531 -> 721[label="",style="solid", color="black", weight=3]; 21.85/7.84 532[label="LT",fontsize=16,color="green",shape="box"];533[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];533 -> 722[label="",style="solid", color="black", weight=3]; 21.85/7.84 534[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];534 -> 723[label="",style="solid", color="black", weight=3]; 21.85/7.84 535[label="vxw4000",fontsize=16,color="green",shape="box"];536[label="Pos vxw3010",fontsize=16,color="green",shape="box"];537[label="Pos vxw40010",fontsize=16,color="green",shape="box"];538[label="vxw300",fontsize=16,color="green",shape="box"];539[label="vxw4000",fontsize=16,color="green",shape="box"];540[label="Neg vxw3010",fontsize=16,color="green",shape="box"];541[label="Pos vxw40010",fontsize=16,color="green",shape="box"];542[label="vxw300",fontsize=16,color="green",shape="box"];543[label="vxw4000",fontsize=16,color="green",shape="box"];544[label="Pos vxw3010",fontsize=16,color="green",shape="box"];545[label="Neg vxw40010",fontsize=16,color="green",shape="box"];546[label="vxw300",fontsize=16,color="green",shape="box"];547[label="vxw4000",fontsize=16,color="green",shape="box"];548[label="Neg vxw3010",fontsize=16,color="green",shape="box"];549[label="Neg vxw40010",fontsize=16,color="green",shape="box"];550[label="vxw300",fontsize=16,color="green",shape="box"];848 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.84 848[label="vxw300 == vxw4000",fontsize=16,color="magenta"];849 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.84 849[label="vxw300 == vxw4000",fontsize=16,color="magenta"];850 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.84 850[label="vxw300 == vxw4000",fontsize=16,color="magenta"];851 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.84 851[label="vxw300 == vxw4000",fontsize=16,color="magenta"];852 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.84 852[label="vxw300 == vxw4000",fontsize=16,color="magenta"];853 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.84 853[label="vxw300 == vxw4000",fontsize=16,color="magenta"];854 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.84 854[label="vxw300 == vxw4000",fontsize=16,color="magenta"];855 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.84 855[label="vxw300 == vxw4000",fontsize=16,color="magenta"];856 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.84 856[label="vxw300 == vxw4000",fontsize=16,color="magenta"];857 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.84 857[label="vxw300 == vxw4000",fontsize=16,color="magenta"];858 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.84 858[label="vxw300 == vxw4000",fontsize=16,color="magenta"];859 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.84 859[label="vxw300 == vxw4000",fontsize=16,color="magenta"];860 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.84 860[label="vxw300 == vxw4000",fontsize=16,color="magenta"];861 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.84 861[label="vxw300 == vxw4000",fontsize=16,color="magenta"];862 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.84 862[label="vxw301 == vxw4001",fontsize=16,color="magenta"];862 -> 916[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 862 -> 917[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 863 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.84 863[label="vxw301 == vxw4001",fontsize=16,color="magenta"];863 -> 918[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 863 -> 919[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 864 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.84 864[label="vxw301 == vxw4001",fontsize=16,color="magenta"];864 -> 920[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 864 -> 921[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 865 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.84 865[label="vxw301 == vxw4001",fontsize=16,color="magenta"];865 -> 922[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 865 -> 923[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 866 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.84 866[label="vxw301 == vxw4001",fontsize=16,color="magenta"];866 -> 924[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 866 -> 925[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 867 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.84 867[label="vxw301 == vxw4001",fontsize=16,color="magenta"];867 -> 926[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 867 -> 927[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 868 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.84 868[label="vxw301 == vxw4001",fontsize=16,color="magenta"];868 -> 928[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 868 -> 929[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 869 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.84 869[label="vxw301 == vxw4001",fontsize=16,color="magenta"];869 -> 930[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 869 -> 931[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 870 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.84 870[label="vxw301 == vxw4001",fontsize=16,color="magenta"];870 -> 932[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 870 -> 933[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 871 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.84 871[label="vxw301 == vxw4001",fontsize=16,color="magenta"];871 -> 934[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 871 -> 935[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 872 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.84 872[label="vxw301 == vxw4001",fontsize=16,color="magenta"];872 -> 936[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 872 -> 937[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 873 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.84 873[label="vxw301 == vxw4001",fontsize=16,color="magenta"];873 -> 938[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 873 -> 939[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 874 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.84 874[label="vxw301 == vxw4001",fontsize=16,color="magenta"];874 -> 940[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 874 -> 941[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 875 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.84 875[label="vxw301 == vxw4001",fontsize=16,color="magenta"];875 -> 942[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 875 -> 943[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 876[label="False && vxw97",fontsize=16,color="black",shape="box"];876 -> 944[label="",style="solid", color="black", weight=3]; 21.85/7.84 877[label="True && vxw97",fontsize=16,color="black",shape="box"];877 -> 945[label="",style="solid", color="black", weight=3]; 21.85/7.84 878[label="compare1 (vxw79,vxw80) (vxw81,vxw82) ((vxw79,vxw80) <= (vxw81,vxw82))",fontsize=16,color="black",shape="box"];878 -> 946[label="",style="solid", color="black", weight=3]; 21.85/7.84 879[label="EQ",fontsize=16,color="green",shape="box"];573[label="vxw300",fontsize=16,color="green",shape="box"];574[label="vxw4000",fontsize=16,color="green",shape="box"];428[label="vxw300 == vxw4000",fontsize=16,color="black",shape="triangle"];428 -> 551[label="",style="solid", color="black", weight=3]; 21.85/7.84 575[label="vxw300",fontsize=16,color="green",shape="box"];576[label="vxw4000",fontsize=16,color="green",shape="box"];429[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3015[label="vxw300/vxw3000 :% vxw3001",fontsize=10,color="white",style="solid",shape="box"];429 -> 3015[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3015 -> 552[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 577[label="vxw300",fontsize=16,color="green",shape="box"];578[label="vxw4000",fontsize=16,color="green",shape="box"];430[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3016[label="vxw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];430 -> 3016[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3016 -> 553[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3017[label="vxw300/Just vxw3000",fontsize=10,color="white",style="solid",shape="box"];430 -> 3017[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3017 -> 554[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 579[label="vxw300",fontsize=16,color="green",shape="box"];580[label="vxw4000",fontsize=16,color="green",shape="box"];431[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3018[label="vxw300/(vxw3000,vxw3001)",fontsize=10,color="white",style="solid",shape="box"];431 -> 3018[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3018 -> 555[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 581[label="vxw300",fontsize=16,color="green",shape="box"];582[label="vxw4000",fontsize=16,color="green",shape="box"];432[label="vxw300 == vxw4000",fontsize=16,color="black",shape="triangle"];432 -> 556[label="",style="solid", color="black", weight=3]; 21.85/7.84 583[label="vxw300",fontsize=16,color="green",shape="box"];584[label="vxw4000",fontsize=16,color="green",shape="box"];433[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3019[label="vxw300/(vxw3000,vxw3001,vxw3002)",fontsize=10,color="white",style="solid",shape="box"];433 -> 3019[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3019 -> 557[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 585[label="vxw300",fontsize=16,color="green",shape="box"];586[label="vxw4000",fontsize=16,color="green",shape="box"];434[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3020[label="vxw300/vxw3000 : vxw3001",fontsize=10,color="white",style="solid",shape="box"];434 -> 3020[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3020 -> 558[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3021[label="vxw300/[]",fontsize=10,color="white",style="solid",shape="box"];434 -> 3021[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3021 -> 559[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 587[label="vxw300",fontsize=16,color="green",shape="box"];588[label="vxw4000",fontsize=16,color="green",shape="box"];435[label="vxw300 == vxw4000",fontsize=16,color="black",shape="triangle"];435 -> 560[label="",style="solid", color="black", weight=3]; 21.85/7.84 589[label="vxw300",fontsize=16,color="green",shape="box"];590[label="vxw4000",fontsize=16,color="green",shape="box"];436[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3022[label="vxw300/Integer vxw3000",fontsize=10,color="white",style="solid",shape="box"];436 -> 3022[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3022 -> 561[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 591[label="vxw300",fontsize=16,color="green",shape="box"];592[label="vxw4000",fontsize=16,color="green",shape="box"];437[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3023[label="vxw300/()",fontsize=10,color="white",style="solid",shape="box"];437 -> 3023[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3023 -> 562[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 593[label="vxw300",fontsize=16,color="green",shape="box"];594[label="vxw4000",fontsize=16,color="green",shape="box"];438[label="vxw300 == vxw4000",fontsize=16,color="black",shape="triangle"];438 -> 563[label="",style="solid", color="black", weight=3]; 21.85/7.84 595[label="vxw300",fontsize=16,color="green",shape="box"];596[label="vxw4000",fontsize=16,color="green",shape="box"];439[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3024[label="vxw300/Left vxw3000",fontsize=10,color="white",style="solid",shape="box"];439 -> 3024[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3024 -> 564[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3025[label="vxw300/Right vxw3000",fontsize=10,color="white",style="solid",shape="box"];439 -> 3025[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3025 -> 565[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 597[label="vxw300",fontsize=16,color="green",shape="box"];598[label="vxw4000",fontsize=16,color="green",shape="box"];440[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3026[label="vxw300/LT",fontsize=10,color="white",style="solid",shape="box"];440 -> 3026[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3026 -> 566[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3027[label="vxw300/EQ",fontsize=10,color="white",style="solid",shape="box"];440 -> 3027[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3027 -> 567[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3028[label="vxw300/GT",fontsize=10,color="white",style="solid",shape="box"];440 -> 3028[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3028 -> 568[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 599[label="vxw300",fontsize=16,color="green",shape="box"];600[label="vxw4000",fontsize=16,color="green",shape="box"];441[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3029[label="vxw300/False",fontsize=10,color="white",style="solid",shape="box"];441 -> 3029[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3029 -> 569[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3030[label="vxw300/True",fontsize=10,color="white",style="solid",shape="box"];441 -> 3030[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3030 -> 570[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 601 -> 909[label="",style="dashed", color="red", weight=0]; 21.85/7.84 601[label="compare1 (Left vxw41) (Left vxw42) (Left vxw41 <= Left vxw42)",fontsize=16,color="magenta"];601 -> 910[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 601 -> 911[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 601 -> 912[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 602[label="EQ",fontsize=16,color="green",shape="box"];603[label="LT",fontsize=16,color="green",shape="box"];604[label="compare0 (Right vxw300) (Left vxw4000) otherwise",fontsize=16,color="black",shape="box"];604 -> 804[label="",style="solid", color="black", weight=3]; 21.85/7.84 605[label="vxw300",fontsize=16,color="green",shape="box"];606[label="vxw4000",fontsize=16,color="green",shape="box"];607[label="vxw300",fontsize=16,color="green",shape="box"];608[label="vxw4000",fontsize=16,color="green",shape="box"];609[label="vxw300",fontsize=16,color="green",shape="box"];610[label="vxw4000",fontsize=16,color="green",shape="box"];611[label="vxw300",fontsize=16,color="green",shape="box"];612[label="vxw4000",fontsize=16,color="green",shape="box"];613[label="vxw300",fontsize=16,color="green",shape="box"];614[label="vxw4000",fontsize=16,color="green",shape="box"];615[label="vxw300",fontsize=16,color="green",shape="box"];616[label="vxw4000",fontsize=16,color="green",shape="box"];617[label="vxw300",fontsize=16,color="green",shape="box"];618[label="vxw4000",fontsize=16,color="green",shape="box"];619[label="vxw300",fontsize=16,color="green",shape="box"];620[label="vxw4000",fontsize=16,color="green",shape="box"];621[label="vxw300",fontsize=16,color="green",shape="box"];622[label="vxw4000",fontsize=16,color="green",shape="box"];623[label="vxw300",fontsize=16,color="green",shape="box"];624[label="vxw4000",fontsize=16,color="green",shape="box"];625[label="vxw300",fontsize=16,color="green",shape="box"];626[label="vxw4000",fontsize=16,color="green",shape="box"];627[label="vxw300",fontsize=16,color="green",shape="box"];628[label="vxw4000",fontsize=16,color="green",shape="box"];629[label="vxw300",fontsize=16,color="green",shape="box"];630[label="vxw4000",fontsize=16,color="green",shape="box"];631[label="vxw300",fontsize=16,color="green",shape="box"];632[label="vxw4000",fontsize=16,color="green",shape="box"];633 -> 1008[label="",style="dashed", color="red", weight=0]; 21.85/7.84 633[label="compare1 (Right vxw48) (Right vxw49) (Right vxw48 <= Right vxw49)",fontsize=16,color="magenta"];633 -> 1009[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 633 -> 1010[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 633 -> 1011[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 634[label="EQ",fontsize=16,color="green",shape="box"];880 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.84 880[label="vxw300 == vxw4000",fontsize=16,color="magenta"];880 -> 947[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 880 -> 948[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 881 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.84 881[label="vxw300 == vxw4000",fontsize=16,color="magenta"];881 -> 949[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 881 -> 950[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 882 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.84 882[label="vxw300 == vxw4000",fontsize=16,color="magenta"];882 -> 951[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 882 -> 952[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 883 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.84 883[label="vxw300 == vxw4000",fontsize=16,color="magenta"];883 -> 953[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 883 -> 954[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 884 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.84 884[label="vxw300 == vxw4000",fontsize=16,color="magenta"];884 -> 955[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 884 -> 956[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 885 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.84 885[label="vxw300 == vxw4000",fontsize=16,color="magenta"];885 -> 957[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 885 -> 958[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 886 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.84 886[label="vxw300 == vxw4000",fontsize=16,color="magenta"];886 -> 959[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 886 -> 960[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 887 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.84 887[label="vxw300 == vxw4000",fontsize=16,color="magenta"];887 -> 961[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 887 -> 962[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 888 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.84 888[label="vxw300 == vxw4000",fontsize=16,color="magenta"];888 -> 963[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 888 -> 964[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 889 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.84 889[label="vxw300 == vxw4000",fontsize=16,color="magenta"];889 -> 965[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 889 -> 966[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 890 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.84 890[label="vxw300 == vxw4000",fontsize=16,color="magenta"];890 -> 967[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 890 -> 968[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 891 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.84 891[label="vxw300 == vxw4000",fontsize=16,color="magenta"];891 -> 969[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 891 -> 970[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 892 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.84 892[label="vxw300 == vxw4000",fontsize=16,color="magenta"];892 -> 971[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 892 -> 972[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 893 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.84 893[label="vxw300 == vxw4000",fontsize=16,color="magenta"];893 -> 973[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 893 -> 974[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 894[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];3031[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3031[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3031 -> 975[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3032[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3032[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3032 -> 976[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3033[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3033[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3033 -> 977[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3034[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3034[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3034 -> 978[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3035[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3035[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3035 -> 979[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3036[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3036[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3036 -> 980[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3037[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3037[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3037 -> 981[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3038[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3038[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3038 -> 982[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3039[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3039[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3039 -> 983[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3040[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3040[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3040 -> 984[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3041[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3041[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3041 -> 985[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3042[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3042[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3042 -> 986[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3043[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3043[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3043 -> 987[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3044[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];894 -> 3044[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3044 -> 988[label="",style="solid", color="blue", weight=3]; 21.85/7.84 895[label="vxw302 == vxw4002",fontsize=16,color="blue",shape="box"];3045[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3045[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3045 -> 989[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3046[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3046[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3046 -> 990[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3047[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3047[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3047 -> 991[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3048[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3048[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3048 -> 992[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3049[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3049[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3049 -> 993[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3050[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3050[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3050 -> 994[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3051[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3051[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3051 -> 995[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3052[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3052[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3052 -> 996[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3053[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3053[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3053 -> 997[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3054[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3054[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3054 -> 998[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3055[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3055[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3055 -> 999[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3056[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3056[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3056 -> 1000[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3057[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3057[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3057 -> 1001[label="",style="solid", color="blue", weight=3]; 21.85/7.84 3058[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];895 -> 3058[label="",style="solid", color="blue", weight=9]; 21.85/7.84 3058 -> 1002[label="",style="solid", color="blue", weight=3]; 21.85/7.84 896[label="compare1 (vxw59,vxw60,vxw61) (vxw62,vxw63,vxw64) ((vxw59,vxw60,vxw61) <= (vxw62,vxw63,vxw64))",fontsize=16,color="black",shape="box"];896 -> 1003[label="",style="solid", color="black", weight=3]; 21.85/7.84 897[label="EQ",fontsize=16,color="green",shape="box"];665[label="primMulInt (Pos vxw40000) (Pos vxw3010)",fontsize=16,color="black",shape="box"];665 -> 898[label="",style="solid", color="black", weight=3]; 21.85/7.84 666[label="primMulInt (Pos vxw40000) (Neg vxw3010)",fontsize=16,color="black",shape="box"];666 -> 899[label="",style="solid", color="black", weight=3]; 21.85/7.84 667[label="primMulInt (Neg vxw40000) (Pos vxw3010)",fontsize=16,color="black",shape="box"];667 -> 900[label="",style="solid", color="black", weight=3]; 21.85/7.84 668[label="primMulInt (Neg vxw40000) (Neg vxw3010)",fontsize=16,color="black",shape="box"];668 -> 901[label="",style="solid", color="black", weight=3]; 21.85/7.84 669[label="Integer (primMulInt vxw40000 vxw3010)",fontsize=16,color="green",shape="box"];669 -> 902[label="",style="dashed", color="green", weight=3]; 21.85/7.84 670[label="vxw4000",fontsize=16,color="green",shape="box"];671[label="Pos vxw3010",fontsize=16,color="green",shape="box"];672[label="Pos vxw40010",fontsize=16,color="green",shape="box"];673[label="vxw300",fontsize=16,color="green",shape="box"];674[label="vxw4000",fontsize=16,color="green",shape="box"];675[label="Neg vxw3010",fontsize=16,color="green",shape="box"];676[label="Pos vxw40010",fontsize=16,color="green",shape="box"];677[label="vxw300",fontsize=16,color="green",shape="box"];678[label="vxw4000",fontsize=16,color="green",shape="box"];679[label="Pos vxw3010",fontsize=16,color="green",shape="box"];680[label="Neg vxw40010",fontsize=16,color="green",shape="box"];681[label="vxw300",fontsize=16,color="green",shape="box"];682[label="vxw4000",fontsize=16,color="green",shape="box"];683[label="Neg vxw3010",fontsize=16,color="green",shape="box"];684[label="Neg vxw40010",fontsize=16,color="green",shape="box"];685[label="vxw300",fontsize=16,color="green",shape="box"];686[label="vxw3000",fontsize=16,color="green",shape="box"];687[label="vxw40000",fontsize=16,color="green",shape="box"];688[label="LT",fontsize=16,color="green",shape="box"];689[label="compare0 (Just vxw300) Nothing otherwise",fontsize=16,color="black",shape="box"];689 -> 903[label="",style="solid", color="black", weight=3]; 21.85/7.84 690[label="vxw300",fontsize=16,color="green",shape="box"];691[label="vxw4000",fontsize=16,color="green",shape="box"];692[label="vxw300",fontsize=16,color="green",shape="box"];693[label="vxw4000",fontsize=16,color="green",shape="box"];694[label="vxw300",fontsize=16,color="green",shape="box"];695[label="vxw4000",fontsize=16,color="green",shape="box"];696[label="vxw300",fontsize=16,color="green",shape="box"];697[label="vxw4000",fontsize=16,color="green",shape="box"];698[label="vxw300",fontsize=16,color="green",shape="box"];699[label="vxw4000",fontsize=16,color="green",shape="box"];700[label="vxw300",fontsize=16,color="green",shape="box"];701[label="vxw4000",fontsize=16,color="green",shape="box"];702[label="vxw300",fontsize=16,color="green",shape="box"];703[label="vxw4000",fontsize=16,color="green",shape="box"];704[label="vxw300",fontsize=16,color="green",shape="box"];705[label="vxw4000",fontsize=16,color="green",shape="box"];706[label="vxw300",fontsize=16,color="green",shape="box"];707[label="vxw4000",fontsize=16,color="green",shape="box"];708[label="vxw300",fontsize=16,color="green",shape="box"];709[label="vxw4000",fontsize=16,color="green",shape="box"];710[label="vxw300",fontsize=16,color="green",shape="box"];711[label="vxw4000",fontsize=16,color="green",shape="box"];712[label="vxw300",fontsize=16,color="green",shape="box"];713[label="vxw4000",fontsize=16,color="green",shape="box"];714[label="vxw300",fontsize=16,color="green",shape="box"];715[label="vxw4000",fontsize=16,color="green",shape="box"];716[label="vxw300",fontsize=16,color="green",shape="box"];717[label="vxw4000",fontsize=16,color="green",shape="box"];718 -> 1085[label="",style="dashed", color="red", weight=0]; 21.85/7.84 718[label="compare1 (Just vxw70) (Just vxw71) (Just vxw70 <= Just vxw71)",fontsize=16,color="magenta"];718 -> 1086[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 718 -> 1087[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 718 -> 1088[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 719[label="EQ",fontsize=16,color="green",shape="box"];720[label="compare0 True False True",fontsize=16,color="black",shape="box"];720 -> 905[label="",style="solid", color="black", weight=3]; 21.85/7.84 721[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];721 -> 906[label="",style="solid", color="black", weight=3]; 21.85/7.84 722[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];722 -> 907[label="",style="solid", color="black", weight=3]; 21.85/7.84 723[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];723 -> 908[label="",style="solid", color="black", weight=3]; 21.85/7.84 916[label="vxw301",fontsize=16,color="green",shape="box"];917[label="vxw4001",fontsize=16,color="green",shape="box"];918[label="vxw301",fontsize=16,color="green",shape="box"];919[label="vxw4001",fontsize=16,color="green",shape="box"];920[label="vxw301",fontsize=16,color="green",shape="box"];921[label="vxw4001",fontsize=16,color="green",shape="box"];922[label="vxw301",fontsize=16,color="green",shape="box"];923[label="vxw4001",fontsize=16,color="green",shape="box"];924[label="vxw301",fontsize=16,color="green",shape="box"];925[label="vxw4001",fontsize=16,color="green",shape="box"];926[label="vxw301",fontsize=16,color="green",shape="box"];927[label="vxw4001",fontsize=16,color="green",shape="box"];928[label="vxw301",fontsize=16,color="green",shape="box"];929[label="vxw4001",fontsize=16,color="green",shape="box"];930[label="vxw301",fontsize=16,color="green",shape="box"];931[label="vxw4001",fontsize=16,color="green",shape="box"];932[label="vxw301",fontsize=16,color="green",shape="box"];933[label="vxw4001",fontsize=16,color="green",shape="box"];934[label="vxw301",fontsize=16,color="green",shape="box"];935[label="vxw4001",fontsize=16,color="green",shape="box"];936[label="vxw301",fontsize=16,color="green",shape="box"];937[label="vxw4001",fontsize=16,color="green",shape="box"];938[label="vxw301",fontsize=16,color="green",shape="box"];939[label="vxw4001",fontsize=16,color="green",shape="box"];940[label="vxw301",fontsize=16,color="green",shape="box"];941[label="vxw4001",fontsize=16,color="green",shape="box"];942[label="vxw301",fontsize=16,color="green",shape="box"];943[label="vxw4001",fontsize=16,color="green",shape="box"];944[label="False",fontsize=16,color="green",shape="box"];945[label="vxw97",fontsize=16,color="green",shape="box"];946 -> 1097[label="",style="dashed", color="red", weight=0]; 21.85/7.84 946[label="compare1 (vxw79,vxw80) (vxw81,vxw82) (vxw79 < vxw81 || vxw79 == vxw81 && vxw80 <= vxw82)",fontsize=16,color="magenta"];946 -> 1098[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 946 -> 1099[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 946 -> 1100[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 946 -> 1101[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 946 -> 1102[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 946 -> 1103[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 551[label="primEqInt vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];3059[label="vxw300/Pos vxw3000",fontsize=10,color="white",style="solid",shape="box"];551 -> 3059[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3059 -> 724[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3060[label="vxw300/Neg vxw3000",fontsize=10,color="white",style="solid",shape="box"];551 -> 3060[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3060 -> 725[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 552[label="vxw3000 :% vxw3001 == vxw4000",fontsize=16,color="burlywood",shape="box"];3061[label="vxw4000/vxw40000 :% vxw40001",fontsize=10,color="white",style="solid",shape="box"];552 -> 3061[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3061 -> 726[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 553[label="Nothing == vxw4000",fontsize=16,color="burlywood",shape="box"];3062[label="vxw4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];553 -> 3062[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3062 -> 727[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3063[label="vxw4000/Just vxw40000",fontsize=10,color="white",style="solid",shape="box"];553 -> 3063[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3063 -> 728[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 554[label="Just vxw3000 == vxw4000",fontsize=16,color="burlywood",shape="box"];3064[label="vxw4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];554 -> 3064[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3064 -> 729[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3065[label="vxw4000/Just vxw40000",fontsize=10,color="white",style="solid",shape="box"];554 -> 3065[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3065 -> 730[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 555[label="(vxw3000,vxw3001) == vxw4000",fontsize=16,color="burlywood",shape="box"];3066[label="vxw4000/(vxw40000,vxw40001)",fontsize=10,color="white",style="solid",shape="box"];555 -> 3066[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3066 -> 731[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 556[label="primEqFloat vxw300 vxw4000",fontsize=16,color="burlywood",shape="box"];3067[label="vxw300/Float vxw3000 vxw3001",fontsize=10,color="white",style="solid",shape="box"];556 -> 3067[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3067 -> 732[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 557[label="(vxw3000,vxw3001,vxw3002) == vxw4000",fontsize=16,color="burlywood",shape="box"];3068[label="vxw4000/(vxw40000,vxw40001,vxw40002)",fontsize=10,color="white",style="solid",shape="box"];557 -> 3068[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3068 -> 733[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 558[label="vxw3000 : vxw3001 == vxw4000",fontsize=16,color="burlywood",shape="box"];3069[label="vxw4000/vxw40000 : vxw40001",fontsize=10,color="white",style="solid",shape="box"];558 -> 3069[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3069 -> 734[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3070[label="vxw4000/[]",fontsize=10,color="white",style="solid",shape="box"];558 -> 3070[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3070 -> 735[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 559[label="[] == vxw4000",fontsize=16,color="burlywood",shape="box"];3071[label="vxw4000/vxw40000 : vxw40001",fontsize=10,color="white",style="solid",shape="box"];559 -> 3071[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3071 -> 736[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3072[label="vxw4000/[]",fontsize=10,color="white",style="solid",shape="box"];559 -> 3072[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3072 -> 737[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 560[label="primEqDouble vxw300 vxw4000",fontsize=16,color="burlywood",shape="box"];3073[label="vxw300/Double vxw3000 vxw3001",fontsize=10,color="white",style="solid",shape="box"];560 -> 3073[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3073 -> 738[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 561[label="Integer vxw3000 == vxw4000",fontsize=16,color="burlywood",shape="box"];3074[label="vxw4000/Integer vxw40000",fontsize=10,color="white",style="solid",shape="box"];561 -> 3074[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3074 -> 739[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 562[label="() == vxw4000",fontsize=16,color="burlywood",shape="box"];3075[label="vxw4000/()",fontsize=10,color="white",style="solid",shape="box"];562 -> 3075[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3075 -> 740[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 563[label="primEqChar vxw300 vxw4000",fontsize=16,color="burlywood",shape="box"];3076[label="vxw300/Char vxw3000",fontsize=10,color="white",style="solid",shape="box"];563 -> 3076[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3076 -> 741[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 564[label="Left vxw3000 == vxw4000",fontsize=16,color="burlywood",shape="box"];3077[label="vxw4000/Left vxw40000",fontsize=10,color="white",style="solid",shape="box"];564 -> 3077[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3077 -> 742[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3078[label="vxw4000/Right vxw40000",fontsize=10,color="white",style="solid",shape="box"];564 -> 3078[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3078 -> 743[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 565[label="Right vxw3000 == vxw4000",fontsize=16,color="burlywood",shape="box"];3079[label="vxw4000/Left vxw40000",fontsize=10,color="white",style="solid",shape="box"];565 -> 3079[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3079 -> 744[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3080[label="vxw4000/Right vxw40000",fontsize=10,color="white",style="solid",shape="box"];565 -> 3080[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3080 -> 745[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 566[label="LT == vxw4000",fontsize=16,color="burlywood",shape="box"];3081[label="vxw4000/LT",fontsize=10,color="white",style="solid",shape="box"];566 -> 3081[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3081 -> 746[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3082[label="vxw4000/EQ",fontsize=10,color="white",style="solid",shape="box"];566 -> 3082[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3082 -> 747[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3083[label="vxw4000/GT",fontsize=10,color="white",style="solid",shape="box"];566 -> 3083[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3083 -> 748[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 567[label="EQ == vxw4000",fontsize=16,color="burlywood",shape="box"];3084[label="vxw4000/LT",fontsize=10,color="white",style="solid",shape="box"];567 -> 3084[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3084 -> 749[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3085[label="vxw4000/EQ",fontsize=10,color="white",style="solid",shape="box"];567 -> 3085[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3085 -> 750[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3086[label="vxw4000/GT",fontsize=10,color="white",style="solid",shape="box"];567 -> 3086[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3086 -> 751[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 568[label="GT == vxw4000",fontsize=16,color="burlywood",shape="box"];3087[label="vxw4000/LT",fontsize=10,color="white",style="solid",shape="box"];568 -> 3087[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3087 -> 752[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3088[label="vxw4000/EQ",fontsize=10,color="white",style="solid",shape="box"];568 -> 3088[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3088 -> 753[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3089[label="vxw4000/GT",fontsize=10,color="white",style="solid",shape="box"];568 -> 3089[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3089 -> 754[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 569[label="False == vxw4000",fontsize=16,color="burlywood",shape="box"];3090[label="vxw4000/False",fontsize=10,color="white",style="solid",shape="box"];569 -> 3090[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3090 -> 755[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3091[label="vxw4000/True",fontsize=10,color="white",style="solid",shape="box"];569 -> 3091[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3091 -> 756[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 570[label="True == vxw4000",fontsize=16,color="burlywood",shape="box"];3092[label="vxw4000/False",fontsize=10,color="white",style="solid",shape="box"];570 -> 3092[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3092 -> 757[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3093[label="vxw4000/True",fontsize=10,color="white",style="solid",shape="box"];570 -> 3093[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3093 -> 758[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 910[label="Left vxw41 <= Left vxw42",fontsize=16,color="black",shape="box"];910 -> 1004[label="",style="solid", color="black", weight=3]; 21.85/7.84 911[label="vxw41",fontsize=16,color="green",shape="box"];912[label="vxw42",fontsize=16,color="green",shape="box"];909[label="compare1 (Left vxw102) (Left vxw103) vxw104",fontsize=16,color="burlywood",shape="triangle"];3094[label="vxw104/False",fontsize=10,color="white",style="solid",shape="box"];909 -> 3094[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3094 -> 1005[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3095[label="vxw104/True",fontsize=10,color="white",style="solid",shape="box"];909 -> 3095[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3095 -> 1006[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 804[label="compare0 (Right vxw300) (Left vxw4000) True",fontsize=16,color="black",shape="box"];804 -> 1007[label="",style="solid", color="black", weight=3]; 21.85/7.84 1009[label="vxw49",fontsize=16,color="green",shape="box"];1010[label="vxw48",fontsize=16,color="green",shape="box"];1011[label="Right vxw48 <= Right vxw49",fontsize=16,color="black",shape="box"];1011 -> 1017[label="",style="solid", color="black", weight=3]; 21.85/7.84 1008[label="compare1 (Right vxw109) (Right vxw110) vxw111",fontsize=16,color="burlywood",shape="triangle"];3096[label="vxw111/False",fontsize=10,color="white",style="solid",shape="box"];1008 -> 3096[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3096 -> 1018[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 3097[label="vxw111/True",fontsize=10,color="white",style="solid",shape="box"];1008 -> 3097[label="",style="solid", color="burlywood", weight=9]; 21.85/7.84 3097 -> 1019[label="",style="solid", color="burlywood", weight=3]; 21.85/7.84 947[label="vxw300",fontsize=16,color="green",shape="box"];948[label="vxw4000",fontsize=16,color="green",shape="box"];949[label="vxw300",fontsize=16,color="green",shape="box"];950[label="vxw4000",fontsize=16,color="green",shape="box"];951[label="vxw300",fontsize=16,color="green",shape="box"];952[label="vxw4000",fontsize=16,color="green",shape="box"];953[label="vxw300",fontsize=16,color="green",shape="box"];954[label="vxw4000",fontsize=16,color="green",shape="box"];955[label="vxw300",fontsize=16,color="green",shape="box"];956[label="vxw4000",fontsize=16,color="green",shape="box"];957[label="vxw300",fontsize=16,color="green",shape="box"];958[label="vxw4000",fontsize=16,color="green",shape="box"];959[label="vxw300",fontsize=16,color="green",shape="box"];960[label="vxw4000",fontsize=16,color="green",shape="box"];961[label="vxw300",fontsize=16,color="green",shape="box"];962[label="vxw4000",fontsize=16,color="green",shape="box"];963[label="vxw300",fontsize=16,color="green",shape="box"];964[label="vxw4000",fontsize=16,color="green",shape="box"];965[label="vxw300",fontsize=16,color="green",shape="box"];966[label="vxw4000",fontsize=16,color="green",shape="box"];967[label="vxw300",fontsize=16,color="green",shape="box"];968[label="vxw4000",fontsize=16,color="green",shape="box"];969[label="vxw300",fontsize=16,color="green",shape="box"];970[label="vxw4000",fontsize=16,color="green",shape="box"];971[label="vxw300",fontsize=16,color="green",shape="box"];972[label="vxw4000",fontsize=16,color="green",shape="box"];973[label="vxw300",fontsize=16,color="green",shape="box"];974[label="vxw4000",fontsize=16,color="green",shape="box"];975 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.84 975[label="vxw301 == vxw4001",fontsize=16,color="magenta"];975 -> 1020[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 975 -> 1021[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 976 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.84 976[label="vxw301 == vxw4001",fontsize=16,color="magenta"];976 -> 1022[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 976 -> 1023[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 977 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.84 977[label="vxw301 == vxw4001",fontsize=16,color="magenta"];977 -> 1024[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 977 -> 1025[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 978 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.84 978[label="vxw301 == vxw4001",fontsize=16,color="magenta"];978 -> 1026[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 978 -> 1027[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 979 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.84 979[label="vxw301 == vxw4001",fontsize=16,color="magenta"];979 -> 1028[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 979 -> 1029[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 980 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.84 980[label="vxw301 == vxw4001",fontsize=16,color="magenta"];980 -> 1030[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 980 -> 1031[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 981 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.84 981[label="vxw301 == vxw4001",fontsize=16,color="magenta"];981 -> 1032[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 981 -> 1033[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 982 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.84 982[label="vxw301 == vxw4001",fontsize=16,color="magenta"];982 -> 1034[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 982 -> 1035[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 983 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.84 983[label="vxw301 == vxw4001",fontsize=16,color="magenta"];983 -> 1036[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 983 -> 1037[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 984 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.84 984[label="vxw301 == vxw4001",fontsize=16,color="magenta"];984 -> 1038[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 984 -> 1039[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 985 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.84 985[label="vxw301 == vxw4001",fontsize=16,color="magenta"];985 -> 1040[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 985 -> 1041[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 986 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.84 986[label="vxw301 == vxw4001",fontsize=16,color="magenta"];986 -> 1042[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 986 -> 1043[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 987 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.84 987[label="vxw301 == vxw4001",fontsize=16,color="magenta"];987 -> 1044[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 987 -> 1045[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 988 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.84 988[label="vxw301 == vxw4001",fontsize=16,color="magenta"];988 -> 1046[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 988 -> 1047[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 989 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.84 989[label="vxw302 == vxw4002",fontsize=16,color="magenta"];989 -> 1048[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 989 -> 1049[label="",style="dashed", color="magenta", weight=3]; 21.85/7.84 990 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.84 990[label="vxw302 == vxw4002",fontsize=16,color="magenta"];990 -> 1050[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 990 -> 1051[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 991 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.85 991[label="vxw302 == vxw4002",fontsize=16,color="magenta"];991 -> 1052[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 991 -> 1053[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 992 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.85 992[label="vxw302 == vxw4002",fontsize=16,color="magenta"];992 -> 1054[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 992 -> 1055[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 993 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.85 993[label="vxw302 == vxw4002",fontsize=16,color="magenta"];993 -> 1056[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 993 -> 1057[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 994 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.85 994[label="vxw302 == vxw4002",fontsize=16,color="magenta"];994 -> 1058[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 994 -> 1059[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 995 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.85 995[label="vxw302 == vxw4002",fontsize=16,color="magenta"];995 -> 1060[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 995 -> 1061[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 996 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.85 996[label="vxw302 == vxw4002",fontsize=16,color="magenta"];996 -> 1062[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 996 -> 1063[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 997 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.85 997[label="vxw302 == vxw4002",fontsize=16,color="magenta"];997 -> 1064[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 997 -> 1065[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 998 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.85 998[label="vxw302 == vxw4002",fontsize=16,color="magenta"];998 -> 1066[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 998 -> 1067[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 999 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.85 999[label="vxw302 == vxw4002",fontsize=16,color="magenta"];999 -> 1068[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 999 -> 1069[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1000 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1000[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1000 -> 1070[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1000 -> 1071[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1001 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1001[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1001 -> 1072[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1001 -> 1073[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1002 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1002[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1002 -> 1074[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1002 -> 1075[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1003 -> 1199[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1003[label="compare1 (vxw59,vxw60,vxw61) (vxw62,vxw63,vxw64) (vxw59 < vxw62 || vxw59 == vxw62 && (vxw60 < vxw63 || vxw60 == vxw63 && vxw61 <= vxw64))",fontsize=16,color="magenta"];1003 -> 1200[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1003 -> 1201[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1003 -> 1202[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1003 -> 1203[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1003 -> 1204[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1003 -> 1205[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1003 -> 1206[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1003 -> 1207[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 898[label="Pos (primMulNat vxw40000 vxw3010)",fontsize=16,color="green",shape="box"];898 -> 1078[label="",style="dashed", color="green", weight=3]; 21.85/7.85 899[label="Neg (primMulNat vxw40000 vxw3010)",fontsize=16,color="green",shape="box"];899 -> 1079[label="",style="dashed", color="green", weight=3]; 21.85/7.85 900[label="Neg (primMulNat vxw40000 vxw3010)",fontsize=16,color="green",shape="box"];900 -> 1080[label="",style="dashed", color="green", weight=3]; 21.85/7.85 901[label="Pos (primMulNat vxw40000 vxw3010)",fontsize=16,color="green",shape="box"];901 -> 1081[label="",style="dashed", color="green", weight=3]; 21.85/7.85 902 -> 387[label="",style="dashed", color="red", weight=0]; 21.85/7.85 902[label="primMulInt vxw40000 vxw3010",fontsize=16,color="magenta"];902 -> 1082[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 902 -> 1083[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 903[label="compare0 (Just vxw300) Nothing True",fontsize=16,color="black",shape="box"];903 -> 1084[label="",style="solid", color="black", weight=3]; 21.85/7.85 1086[label="Just vxw70 <= Just vxw71",fontsize=16,color="black",shape="box"];1086 -> 1092[label="",style="solid", color="black", weight=3]; 21.85/7.85 1087[label="vxw70",fontsize=16,color="green",shape="box"];1088[label="vxw71",fontsize=16,color="green",shape="box"];1085[label="compare1 (Just vxw119) (Just vxw120) vxw121",fontsize=16,color="burlywood",shape="triangle"];3098[label="vxw121/False",fontsize=10,color="white",style="solid",shape="box"];1085 -> 3098[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3098 -> 1093[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3099[label="vxw121/True",fontsize=10,color="white",style="solid",shape="box"];1085 -> 3099[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3099 -> 1094[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 905[label="GT",fontsize=16,color="green",shape="box"];906[label="GT",fontsize=16,color="green",shape="box"];907[label="GT",fontsize=16,color="green",shape="box"];908[label="GT",fontsize=16,color="green",shape="box"];1098[label="vxw82",fontsize=16,color="green",shape="box"];1099 -> 839[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1099[label="vxw79 == vxw81 && vxw80 <= vxw82",fontsize=16,color="magenta"];1099 -> 1110[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1099 -> 1111[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1100[label="vxw79 < vxw81",fontsize=16,color="blue",shape="box"];3100[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3100[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3100 -> 1112[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3101[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3101[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3101 -> 1113[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3102[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3102[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3102 -> 1114[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3103[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3103[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3103 -> 1115[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3104[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3104[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3104 -> 1116[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3105[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3105[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3105 -> 1117[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3106[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3106[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3106 -> 1118[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3107[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3107[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3107 -> 1119[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3108[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3108[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3108 -> 1120[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3109[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3109[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3109 -> 1121[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3110[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3110[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3110 -> 1122[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3111[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3111[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3111 -> 1123[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3112[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3112[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3112 -> 1124[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3113[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3113[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3113 -> 1125[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1101[label="vxw80",fontsize=16,color="green",shape="box"];1102[label="vxw79",fontsize=16,color="green",shape="box"];1103[label="vxw81",fontsize=16,color="green",shape="box"];1097[label="compare1 (vxw129,vxw130) (vxw131,vxw132) (vxw133 || vxw134)",fontsize=16,color="burlywood",shape="triangle"];3114[label="vxw133/False",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3114[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3114 -> 1126[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3115[label="vxw133/True",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3115[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3115 -> 1127[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 724[label="primEqInt (Pos vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];3116[label="vxw3000/Succ vxw30000",fontsize=10,color="white",style="solid",shape="box"];724 -> 3116[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3116 -> 1128[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3117[label="vxw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];724 -> 3117[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3117 -> 1129[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 725[label="primEqInt (Neg vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];3118[label="vxw3000/Succ vxw30000",fontsize=10,color="white",style="solid",shape="box"];725 -> 3118[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3118 -> 1130[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3119[label="vxw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];725 -> 3119[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3119 -> 1131[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 726[label="vxw3000 :% vxw3001 == vxw40000 :% vxw40001",fontsize=16,color="black",shape="box"];726 -> 1132[label="",style="solid", color="black", weight=3]; 21.85/7.85 727[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];727 -> 1133[label="",style="solid", color="black", weight=3]; 21.85/7.85 728[label="Nothing == Just vxw40000",fontsize=16,color="black",shape="box"];728 -> 1134[label="",style="solid", color="black", weight=3]; 21.85/7.85 729[label="Just vxw3000 == Nothing",fontsize=16,color="black",shape="box"];729 -> 1135[label="",style="solid", color="black", weight=3]; 21.85/7.85 730[label="Just vxw3000 == Just vxw40000",fontsize=16,color="black",shape="box"];730 -> 1136[label="",style="solid", color="black", weight=3]; 21.85/7.85 731[label="(vxw3000,vxw3001) == (vxw40000,vxw40001)",fontsize=16,color="black",shape="box"];731 -> 1137[label="",style="solid", color="black", weight=3]; 21.85/7.85 732[label="primEqFloat (Float vxw3000 vxw3001) vxw4000",fontsize=16,color="burlywood",shape="box"];3120[label="vxw4000/Float vxw40000 vxw40001",fontsize=10,color="white",style="solid",shape="box"];732 -> 3120[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3120 -> 1138[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 733[label="(vxw3000,vxw3001,vxw3002) == (vxw40000,vxw40001,vxw40002)",fontsize=16,color="black",shape="box"];733 -> 1139[label="",style="solid", color="black", weight=3]; 21.85/7.85 734[label="vxw3000 : vxw3001 == vxw40000 : vxw40001",fontsize=16,color="black",shape="box"];734 -> 1140[label="",style="solid", color="black", weight=3]; 21.85/7.85 735[label="vxw3000 : vxw3001 == []",fontsize=16,color="black",shape="box"];735 -> 1141[label="",style="solid", color="black", weight=3]; 21.85/7.85 736[label="[] == vxw40000 : vxw40001",fontsize=16,color="black",shape="box"];736 -> 1142[label="",style="solid", color="black", weight=3]; 21.85/7.85 737[label="[] == []",fontsize=16,color="black",shape="box"];737 -> 1143[label="",style="solid", color="black", weight=3]; 21.85/7.85 738[label="primEqDouble (Double vxw3000 vxw3001) vxw4000",fontsize=16,color="burlywood",shape="box"];3121[label="vxw4000/Double vxw40000 vxw40001",fontsize=10,color="white",style="solid",shape="box"];738 -> 3121[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3121 -> 1144[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 739[label="Integer vxw3000 == Integer vxw40000",fontsize=16,color="black",shape="box"];739 -> 1145[label="",style="solid", color="black", weight=3]; 21.85/7.85 740[label="() == ()",fontsize=16,color="black",shape="box"];740 -> 1146[label="",style="solid", color="black", weight=3]; 21.85/7.85 741[label="primEqChar (Char vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];3122[label="vxw4000/Char vxw40000",fontsize=10,color="white",style="solid",shape="box"];741 -> 3122[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3122 -> 1147[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 742[label="Left vxw3000 == Left vxw40000",fontsize=16,color="black",shape="box"];742 -> 1148[label="",style="solid", color="black", weight=3]; 21.85/7.85 743[label="Left vxw3000 == Right vxw40000",fontsize=16,color="black",shape="box"];743 -> 1149[label="",style="solid", color="black", weight=3]; 21.85/7.85 744[label="Right vxw3000 == Left vxw40000",fontsize=16,color="black",shape="box"];744 -> 1150[label="",style="solid", color="black", weight=3]; 21.85/7.85 745[label="Right vxw3000 == Right vxw40000",fontsize=16,color="black",shape="box"];745 -> 1151[label="",style="solid", color="black", weight=3]; 21.85/7.85 746[label="LT == LT",fontsize=16,color="black",shape="box"];746 -> 1152[label="",style="solid", color="black", weight=3]; 21.85/7.85 747[label="LT == EQ",fontsize=16,color="black",shape="box"];747 -> 1153[label="",style="solid", color="black", weight=3]; 21.85/7.85 748[label="LT == GT",fontsize=16,color="black",shape="box"];748 -> 1154[label="",style="solid", color="black", weight=3]; 21.85/7.85 749[label="EQ == LT",fontsize=16,color="black",shape="box"];749 -> 1155[label="",style="solid", color="black", weight=3]; 21.85/7.85 750[label="EQ == EQ",fontsize=16,color="black",shape="box"];750 -> 1156[label="",style="solid", color="black", weight=3]; 21.85/7.85 751[label="EQ == GT",fontsize=16,color="black",shape="box"];751 -> 1157[label="",style="solid", color="black", weight=3]; 21.85/7.85 752[label="GT == LT",fontsize=16,color="black",shape="box"];752 -> 1158[label="",style="solid", color="black", weight=3]; 21.85/7.85 753[label="GT == EQ",fontsize=16,color="black",shape="box"];753 -> 1159[label="",style="solid", color="black", weight=3]; 21.85/7.85 754[label="GT == GT",fontsize=16,color="black",shape="box"];754 -> 1160[label="",style="solid", color="black", weight=3]; 21.85/7.85 755[label="False == False",fontsize=16,color="black",shape="box"];755 -> 1161[label="",style="solid", color="black", weight=3]; 21.85/7.85 756[label="False == True",fontsize=16,color="black",shape="box"];756 -> 1162[label="",style="solid", color="black", weight=3]; 21.85/7.85 757[label="True == False",fontsize=16,color="black",shape="box"];757 -> 1163[label="",style="solid", color="black", weight=3]; 21.85/7.85 758[label="True == True",fontsize=16,color="black",shape="box"];758 -> 1164[label="",style="solid", color="black", weight=3]; 21.85/7.85 1004[label="vxw41 <= vxw42",fontsize=16,color="blue",shape="box"];3123[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3123[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3123 -> 1165[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3124[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3124[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3124 -> 1166[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3125[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3125[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3125 -> 1167[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3126[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3126[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3126 -> 1168[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3127[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3127[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3127 -> 1169[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3128[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3128[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3128 -> 1170[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3129[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3129[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3129 -> 1171[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3130[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3130[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3130 -> 1172[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3131[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3131[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3131 -> 1173[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3132[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3132[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3132 -> 1174[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3133[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3133[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3133 -> 1175[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3134[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3134[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3134 -> 1176[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3135[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3135[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3135 -> 1177[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3136[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3136[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3136 -> 1178[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1005[label="compare1 (Left vxw102) (Left vxw103) False",fontsize=16,color="black",shape="box"];1005 -> 1179[label="",style="solid", color="black", weight=3]; 21.85/7.85 1006[label="compare1 (Left vxw102) (Left vxw103) True",fontsize=16,color="black",shape="box"];1006 -> 1180[label="",style="solid", color="black", weight=3]; 21.85/7.85 1007[label="GT",fontsize=16,color="green",shape="box"];1017[label="vxw48 <= vxw49",fontsize=16,color="blue",shape="box"];3137[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3137[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3137 -> 1181[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3138[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3138[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3138 -> 1182[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3139[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3139[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3139 -> 1183[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3140[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3140[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3140 -> 1184[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3141[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3141[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3141 -> 1185[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3142[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3142[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3142 -> 1186[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3143[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3143[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3143 -> 1187[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3144[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3144[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3144 -> 1188[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3145[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3145[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3145 -> 1189[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3146[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3146[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3146 -> 1190[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3147[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3147[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3147 -> 1191[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3148[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3148[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3148 -> 1192[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3149[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3149[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3149 -> 1193[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3150[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3150[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3150 -> 1194[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1018[label="compare1 (Right vxw109) (Right vxw110) False",fontsize=16,color="black",shape="box"];1018 -> 1195[label="",style="solid", color="black", weight=3]; 21.85/7.85 1019[label="compare1 (Right vxw109) (Right vxw110) True",fontsize=16,color="black",shape="box"];1019 -> 1196[label="",style="solid", color="black", weight=3]; 21.85/7.85 1020[label="vxw301",fontsize=16,color="green",shape="box"];1021[label="vxw4001",fontsize=16,color="green",shape="box"];1022[label="vxw301",fontsize=16,color="green",shape="box"];1023[label="vxw4001",fontsize=16,color="green",shape="box"];1024[label="vxw301",fontsize=16,color="green",shape="box"];1025[label="vxw4001",fontsize=16,color="green",shape="box"];1026[label="vxw301",fontsize=16,color="green",shape="box"];1027[label="vxw4001",fontsize=16,color="green",shape="box"];1028[label="vxw301",fontsize=16,color="green",shape="box"];1029[label="vxw4001",fontsize=16,color="green",shape="box"];1030[label="vxw301",fontsize=16,color="green",shape="box"];1031[label="vxw4001",fontsize=16,color="green",shape="box"];1032[label="vxw301",fontsize=16,color="green",shape="box"];1033[label="vxw4001",fontsize=16,color="green",shape="box"];1034[label="vxw301",fontsize=16,color="green",shape="box"];1035[label="vxw4001",fontsize=16,color="green",shape="box"];1036[label="vxw301",fontsize=16,color="green",shape="box"];1037[label="vxw4001",fontsize=16,color="green",shape="box"];1038[label="vxw301",fontsize=16,color="green",shape="box"];1039[label="vxw4001",fontsize=16,color="green",shape="box"];1040[label="vxw301",fontsize=16,color="green",shape="box"];1041[label="vxw4001",fontsize=16,color="green",shape="box"];1042[label="vxw301",fontsize=16,color="green",shape="box"];1043[label="vxw4001",fontsize=16,color="green",shape="box"];1044[label="vxw301",fontsize=16,color="green",shape="box"];1045[label="vxw4001",fontsize=16,color="green",shape="box"];1046[label="vxw301",fontsize=16,color="green",shape="box"];1047[label="vxw4001",fontsize=16,color="green",shape="box"];1048[label="vxw302",fontsize=16,color="green",shape="box"];1049[label="vxw4002",fontsize=16,color="green",shape="box"];1050[label="vxw302",fontsize=16,color="green",shape="box"];1051[label="vxw4002",fontsize=16,color="green",shape="box"];1052[label="vxw302",fontsize=16,color="green",shape="box"];1053[label="vxw4002",fontsize=16,color="green",shape="box"];1054[label="vxw302",fontsize=16,color="green",shape="box"];1055[label="vxw4002",fontsize=16,color="green",shape="box"];1056[label="vxw302",fontsize=16,color="green",shape="box"];1057[label="vxw4002",fontsize=16,color="green",shape="box"];1058[label="vxw302",fontsize=16,color="green",shape="box"];1059[label="vxw4002",fontsize=16,color="green",shape="box"];1060[label="vxw302",fontsize=16,color="green",shape="box"];1061[label="vxw4002",fontsize=16,color="green",shape="box"];1062[label="vxw302",fontsize=16,color="green",shape="box"];1063[label="vxw4002",fontsize=16,color="green",shape="box"];1064[label="vxw302",fontsize=16,color="green",shape="box"];1065[label="vxw4002",fontsize=16,color="green",shape="box"];1066[label="vxw302",fontsize=16,color="green",shape="box"];1067[label="vxw4002",fontsize=16,color="green",shape="box"];1068[label="vxw302",fontsize=16,color="green",shape="box"];1069[label="vxw4002",fontsize=16,color="green",shape="box"];1070[label="vxw302",fontsize=16,color="green",shape="box"];1071[label="vxw4002",fontsize=16,color="green",shape="box"];1072[label="vxw302",fontsize=16,color="green",shape="box"];1073[label="vxw4002",fontsize=16,color="green",shape="box"];1074[label="vxw302",fontsize=16,color="green",shape="box"];1075[label="vxw4002",fontsize=16,color="green",shape="box"];1200[label="vxw63",fontsize=16,color="green",shape="box"];1201[label="vxw61",fontsize=16,color="green",shape="box"];1202[label="vxw64",fontsize=16,color="green",shape="box"];1203[label="vxw59",fontsize=16,color="green",shape="box"];1204[label="vxw59 < vxw62",fontsize=16,color="blue",shape="box"];3151[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3151[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3151 -> 1216[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3152[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3152[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3152 -> 1217[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3153[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3153[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3153 -> 1218[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3154[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3154[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3154 -> 1219[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3155[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3155[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3155 -> 1220[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3156[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3156[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3156 -> 1221[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3157[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3157[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3157 -> 1222[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3158[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3158[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3158 -> 1223[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3159[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3159[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3159 -> 1224[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3160[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3160[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3160 -> 1225[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3161[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3161[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3161 -> 1226[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3162[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3162[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3162 -> 1227[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3163[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3163[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3163 -> 1228[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3164[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 3164[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3164 -> 1229[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1205 -> 839[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1205[label="vxw59 == vxw62 && (vxw60 < vxw63 || vxw60 == vxw63 && vxw61 <= vxw64)",fontsize=16,color="magenta"];1205 -> 1230[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1205 -> 1231[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1206[label="vxw60",fontsize=16,color="green",shape="box"];1207[label="vxw62",fontsize=16,color="green",shape="box"];1199[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) (vxw150 || vxw151)",fontsize=16,color="burlywood",shape="triangle"];3165[label="vxw150/False",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3165[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3165 -> 1232[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3166[label="vxw150/True",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3166[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3166 -> 1233[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1078[label="primMulNat vxw40000 vxw3010",fontsize=16,color="burlywood",shape="triangle"];3167[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1078 -> 3167[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3167 -> 1234[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3168[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1078 -> 3168[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3168 -> 1235[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1079 -> 1078[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1079[label="primMulNat vxw40000 vxw3010",fontsize=16,color="magenta"];1079 -> 1236[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1080 -> 1078[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1080[label="primMulNat vxw40000 vxw3010",fontsize=16,color="magenta"];1080 -> 1237[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1081 -> 1078[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1081[label="primMulNat vxw40000 vxw3010",fontsize=16,color="magenta"];1081 -> 1238[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1081 -> 1239[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1082[label="vxw3010",fontsize=16,color="green",shape="box"];1083[label="vxw40000",fontsize=16,color="green",shape="box"];1084[label="GT",fontsize=16,color="green",shape="box"];1092[label="vxw70 <= vxw71",fontsize=16,color="blue",shape="box"];3169[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3169[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3169 -> 1240[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3170[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3170[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3170 -> 1241[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3171[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3171[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3171 -> 1242[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3172[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3172[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3172 -> 1243[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3173[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3173[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3173 -> 1244[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3174[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3174[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3174 -> 1245[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3175[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3175[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3175 -> 1246[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3176[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3176[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3176 -> 1247[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3177[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3177[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3177 -> 1248[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3178[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3178[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3178 -> 1249[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3179[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3179[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3179 -> 1250[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3180[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3180[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3180 -> 1251[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3181[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3181[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3181 -> 1252[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3182[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3182[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3182 -> 1253[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1093[label="compare1 (Just vxw119) (Just vxw120) False",fontsize=16,color="black",shape="box"];1093 -> 1254[label="",style="solid", color="black", weight=3]; 21.85/7.85 1094[label="compare1 (Just vxw119) (Just vxw120) True",fontsize=16,color="black",shape="box"];1094 -> 1255[label="",style="solid", color="black", weight=3]; 21.85/7.85 1110[label="vxw79 == vxw81",fontsize=16,color="blue",shape="box"];3183[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3183[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3183 -> 1256[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3184[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3184[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3184 -> 1257[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3185[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3185[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3185 -> 1258[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3186[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3186[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3186 -> 1259[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3187[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3187[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3187 -> 1260[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3188[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3188[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3188 -> 1261[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3189[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3189[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3189 -> 1262[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3190[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3190[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3190 -> 1263[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3191[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3191[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3191 -> 1264[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3192[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3192[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3192 -> 1265[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3193[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3193[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3193 -> 1266[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3194[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3194[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3194 -> 1267[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3195[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3195[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3195 -> 1268[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3196[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1110 -> 3196[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3196 -> 1269[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1111[label="vxw80 <= vxw82",fontsize=16,color="blue",shape="box"];3197[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3197[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3197 -> 1270[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3198[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3198[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3198 -> 1271[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3199[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3199[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3199 -> 1272[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3200[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3200[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3200 -> 1273[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3201[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3201[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3201 -> 1274[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3202[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3202[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3202 -> 1275[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3203[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3203[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3203 -> 1276[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3204[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3204[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3204 -> 1277[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3205[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3205[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3205 -> 1278[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3206[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3206[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3206 -> 1279[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3207[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3207[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3207 -> 1280[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3208[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3208[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3208 -> 1281[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3209[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3209[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3209 -> 1282[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3210[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3210[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3210 -> 1283[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1112[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1112 -> 1284[label="",style="solid", color="black", weight=3]; 21.85/7.85 1113[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1113 -> 1285[label="",style="solid", color="black", weight=3]; 21.85/7.85 1114[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1114 -> 1286[label="",style="solid", color="black", weight=3]; 21.85/7.85 1115[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1115 -> 1287[label="",style="solid", color="black", weight=3]; 21.85/7.85 1116[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1116 -> 1288[label="",style="solid", color="black", weight=3]; 21.85/7.85 1117[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1117 -> 1289[label="",style="solid", color="black", weight=3]; 21.85/7.85 1118[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1118 -> 1290[label="",style="solid", color="black", weight=3]; 21.85/7.85 1119[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1119 -> 1291[label="",style="solid", color="black", weight=3]; 21.85/7.85 1120[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1120 -> 1292[label="",style="solid", color="black", weight=3]; 21.85/7.85 1121[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1121 -> 1293[label="",style="solid", color="black", weight=3]; 21.85/7.85 1122[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1122 -> 1294[label="",style="solid", color="black", weight=3]; 21.85/7.85 1123[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1123 -> 1295[label="",style="solid", color="black", weight=3]; 21.85/7.85 1124[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1124 -> 1296[label="",style="solid", color="black", weight=3]; 21.85/7.85 1125[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1125 -> 1297[label="",style="solid", color="black", weight=3]; 21.85/7.85 1126[label="compare1 (vxw129,vxw130) (vxw131,vxw132) (False || vxw134)",fontsize=16,color="black",shape="box"];1126 -> 1298[label="",style="solid", color="black", weight=3]; 21.85/7.85 1127[label="compare1 (vxw129,vxw130) (vxw131,vxw132) (True || vxw134)",fontsize=16,color="black",shape="box"];1127 -> 1299[label="",style="solid", color="black", weight=3]; 21.85/7.85 1128[label="primEqInt (Pos (Succ vxw30000)) vxw4000",fontsize=16,color="burlywood",shape="box"];3211[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];1128 -> 3211[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3211 -> 1300[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3212[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];1128 -> 3212[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3212 -> 1301[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1129[label="primEqInt (Pos Zero) vxw4000",fontsize=16,color="burlywood",shape="box"];3213[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];1129 -> 3213[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3213 -> 1302[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3214[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];1129 -> 3214[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3214 -> 1303[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1130[label="primEqInt (Neg (Succ vxw30000)) vxw4000",fontsize=16,color="burlywood",shape="box"];3215[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3215[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3215 -> 1304[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3216[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3216[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3216 -> 1305[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1131[label="primEqInt (Neg Zero) vxw4000",fontsize=16,color="burlywood",shape="box"];3217[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3217[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3217 -> 1306[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3218[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3218[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3218 -> 1307[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1132 -> 839[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1132[label="vxw3000 == vxw40000 && vxw3001 == vxw40001",fontsize=16,color="magenta"];1132 -> 1308[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1132 -> 1309[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1133[label="True",fontsize=16,color="green",shape="box"];1134[label="False",fontsize=16,color="green",shape="box"];1135[label="False",fontsize=16,color="green",shape="box"];1136[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3219[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3219[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3219 -> 1310[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3220[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3220[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3220 -> 1311[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3221[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3221[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3221 -> 1312[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3222[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3222[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3222 -> 1313[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3223[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3223[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3223 -> 1314[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3224[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3224[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3224 -> 1315[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3225[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3225[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3225 -> 1316[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3226[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3226[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3226 -> 1317[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3227[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3227[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3227 -> 1318[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3228[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3228[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3228 -> 1319[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3229[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3229[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3229 -> 1320[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3230[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3230[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3230 -> 1321[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3231[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3231[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3231 -> 1322[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3232[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3232[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3232 -> 1323[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1137 -> 839[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1137[label="vxw3000 == vxw40000 && vxw3001 == vxw40001",fontsize=16,color="magenta"];1137 -> 1324[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1137 -> 1325[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1138[label="primEqFloat (Float vxw3000 vxw3001) (Float vxw40000 vxw40001)",fontsize=16,color="black",shape="box"];1138 -> 1326[label="",style="solid", color="black", weight=3]; 21.85/7.85 1139 -> 839[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1139[label="vxw3000 == vxw40000 && vxw3001 == vxw40001 && vxw3002 == vxw40002",fontsize=16,color="magenta"];1139 -> 1327[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1139 -> 1328[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1140 -> 839[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1140[label="vxw3000 == vxw40000 && vxw3001 == vxw40001",fontsize=16,color="magenta"];1140 -> 1329[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1140 -> 1330[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1141[label="False",fontsize=16,color="green",shape="box"];1142[label="False",fontsize=16,color="green",shape="box"];1143[label="True",fontsize=16,color="green",shape="box"];1144[label="primEqDouble (Double vxw3000 vxw3001) (Double vxw40000 vxw40001)",fontsize=16,color="black",shape="box"];1144 -> 1331[label="",style="solid", color="black", weight=3]; 21.85/7.85 1145 -> 551[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1145[label="primEqInt vxw3000 vxw40000",fontsize=16,color="magenta"];1145 -> 1332[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1145 -> 1333[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1146[label="True",fontsize=16,color="green",shape="box"];1147[label="primEqChar (Char vxw3000) (Char vxw40000)",fontsize=16,color="black",shape="box"];1147 -> 1334[label="",style="solid", color="black", weight=3]; 21.85/7.85 1148[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3233[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3233[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3233 -> 1335[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3234[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3234[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3234 -> 1336[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3235[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3235[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3235 -> 1337[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3236[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3236[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3236 -> 1338[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3237[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3237[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3237 -> 1339[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3238[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3238[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3238 -> 1340[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3239[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3239[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3239 -> 1341[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3240[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3240[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3240 -> 1342[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3241[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3241[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3241 -> 1343[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3242[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3242[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3242 -> 1344[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3243[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3243[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3243 -> 1345[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3244[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3244[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3244 -> 1346[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3245[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3245[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3245 -> 1347[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3246[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 3246[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3246 -> 1348[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1149[label="False",fontsize=16,color="green",shape="box"];1150[label="False",fontsize=16,color="green",shape="box"];1151[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3247[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3247[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3247 -> 1349[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3248[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3248[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3248 -> 1350[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3249[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3249[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3249 -> 1351[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3250[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3250[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3250 -> 1352[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3251[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3251[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3251 -> 1353[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3252[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3252[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3252 -> 1354[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3253[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3253[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3253 -> 1355[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3254[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3254[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3254 -> 1356[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3255[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3255[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3255 -> 1357[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3256[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3256[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3256 -> 1358[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3257[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3257[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3257 -> 1359[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3258[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3258[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3258 -> 1360[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3259[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3259[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3259 -> 1361[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3260[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3260[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3260 -> 1362[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1152[label="True",fontsize=16,color="green",shape="box"];1153[label="False",fontsize=16,color="green",shape="box"];1154[label="False",fontsize=16,color="green",shape="box"];1155[label="False",fontsize=16,color="green",shape="box"];1156[label="True",fontsize=16,color="green",shape="box"];1157[label="False",fontsize=16,color="green",shape="box"];1158[label="False",fontsize=16,color="green",shape="box"];1159[label="False",fontsize=16,color="green",shape="box"];1160[label="True",fontsize=16,color="green",shape="box"];1161[label="True",fontsize=16,color="green",shape="box"];1162[label="False",fontsize=16,color="green",shape="box"];1163[label="False",fontsize=16,color="green",shape="box"];1164[label="True",fontsize=16,color="green",shape="box"];1165[label="vxw41 <= vxw42",fontsize=16,color="burlywood",shape="triangle"];3261[label="vxw41/False",fontsize=10,color="white",style="solid",shape="box"];1165 -> 3261[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3261 -> 1363[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3262[label="vxw41/True",fontsize=10,color="white",style="solid",shape="box"];1165 -> 3262[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3262 -> 1364[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1166[label="vxw41 <= vxw42",fontsize=16,color="black",shape="triangle"];1166 -> 1365[label="",style="solid", color="black", weight=3]; 21.85/7.85 1167[label="vxw41 <= vxw42",fontsize=16,color="burlywood",shape="triangle"];3263[label="vxw41/LT",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3263[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3263 -> 1366[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3264[label="vxw41/EQ",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3264[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3264 -> 1367[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3265[label="vxw41/GT",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3265[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3265 -> 1368[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1168[label="vxw41 <= vxw42",fontsize=16,color="black",shape="triangle"];1168 -> 1369[label="",style="solid", color="black", weight=3]; 21.85/7.85 1169[label="vxw41 <= vxw42",fontsize=16,color="burlywood",shape="triangle"];3266[label="vxw41/(vxw410,vxw411)",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3266[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3266 -> 1370[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1170[label="vxw41 <= vxw42",fontsize=16,color="burlywood",shape="triangle"];3267[label="vxw41/Left vxw410",fontsize=10,color="white",style="solid",shape="box"];1170 -> 3267[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3267 -> 1371[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3268[label="vxw41/Right vxw410",fontsize=10,color="white",style="solid",shape="box"];1170 -> 3268[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3268 -> 1372[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1171[label="vxw41 <= vxw42",fontsize=16,color="burlywood",shape="triangle"];3269[label="vxw41/(vxw410,vxw411,vxw412)",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3269[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3269 -> 1373[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1172[label="vxw41 <= vxw42",fontsize=16,color="black",shape="triangle"];1172 -> 1374[label="",style="solid", color="black", weight=3]; 21.85/7.85 1173[label="vxw41 <= vxw42",fontsize=16,color="black",shape="triangle"];1173 -> 1375[label="",style="solid", color="black", weight=3]; 21.85/7.85 1174[label="vxw41 <= vxw42",fontsize=16,color="black",shape="triangle"];1174 -> 1376[label="",style="solid", color="black", weight=3]; 21.85/7.85 1175[label="vxw41 <= vxw42",fontsize=16,color="black",shape="triangle"];1175 -> 1377[label="",style="solid", color="black", weight=3]; 21.85/7.85 1176[label="vxw41 <= vxw42",fontsize=16,color="burlywood",shape="triangle"];3270[label="vxw41/Nothing",fontsize=10,color="white",style="solid",shape="box"];1176 -> 3270[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3270 -> 1378[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3271[label="vxw41/Just vxw410",fontsize=10,color="white",style="solid",shape="box"];1176 -> 3271[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3271 -> 1379[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1177[label="vxw41 <= vxw42",fontsize=16,color="black",shape="triangle"];1177 -> 1380[label="",style="solid", color="black", weight=3]; 21.85/7.85 1178[label="vxw41 <= vxw42",fontsize=16,color="black",shape="triangle"];1178 -> 1381[label="",style="solid", color="black", weight=3]; 21.85/7.85 1179[label="compare0 (Left vxw102) (Left vxw103) otherwise",fontsize=16,color="black",shape="box"];1179 -> 1382[label="",style="solid", color="black", weight=3]; 21.85/7.85 1180[label="LT",fontsize=16,color="green",shape="box"];1181 -> 1165[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1181[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1181 -> 1383[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1181 -> 1384[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1182 -> 1166[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1182[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1182 -> 1385[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1182 -> 1386[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1183 -> 1167[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1183[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1183 -> 1387[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1183 -> 1388[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1184 -> 1168[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1184[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1184 -> 1389[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1184 -> 1390[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1185 -> 1169[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1185[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1185 -> 1391[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1185 -> 1392[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1186 -> 1170[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1186[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1186 -> 1393[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1186 -> 1394[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1187 -> 1171[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1187[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1187 -> 1395[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1187 -> 1396[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1188 -> 1172[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1188[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1188 -> 1397[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1188 -> 1398[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1189 -> 1173[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1189[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1189 -> 1399[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1189 -> 1400[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1190 -> 1174[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1190[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1190 -> 1401[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1190 -> 1402[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1191 -> 1175[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1191[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1191 -> 1403[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1191 -> 1404[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1192 -> 1176[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1192[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1192 -> 1405[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1192 -> 1406[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1193 -> 1177[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1193[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1193 -> 1407[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1193 -> 1408[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1194 -> 1178[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1194[label="vxw48 <= vxw49",fontsize=16,color="magenta"];1194 -> 1409[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1194 -> 1410[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1195[label="compare0 (Right vxw109) (Right vxw110) otherwise",fontsize=16,color="black",shape="box"];1195 -> 1411[label="",style="solid", color="black", weight=3]; 21.85/7.85 1196[label="LT",fontsize=16,color="green",shape="box"];1216 -> 1112[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1216[label="vxw59 < vxw62",fontsize=16,color="magenta"];1216 -> 1412[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1216 -> 1413[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1217 -> 1113[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1217[label="vxw59 < vxw62",fontsize=16,color="magenta"];1217 -> 1414[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1217 -> 1415[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1218 -> 1114[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1218[label="vxw59 < vxw62",fontsize=16,color="magenta"];1218 -> 1416[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1218 -> 1417[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1219 -> 1115[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1219[label="vxw59 < vxw62",fontsize=16,color="magenta"];1219 -> 1418[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1219 -> 1419[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1220 -> 1116[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1220[label="vxw59 < vxw62",fontsize=16,color="magenta"];1220 -> 1420[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1220 -> 1421[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1221 -> 1117[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1221[label="vxw59 < vxw62",fontsize=16,color="magenta"];1221 -> 1422[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1221 -> 1423[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1222 -> 1118[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1222[label="vxw59 < vxw62",fontsize=16,color="magenta"];1222 -> 1424[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1222 -> 1425[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1223 -> 1119[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1223[label="vxw59 < vxw62",fontsize=16,color="magenta"];1223 -> 1426[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1223 -> 1427[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1224 -> 1120[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1224[label="vxw59 < vxw62",fontsize=16,color="magenta"];1224 -> 1428[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1224 -> 1429[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1225 -> 1121[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1225[label="vxw59 < vxw62",fontsize=16,color="magenta"];1225 -> 1430[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1225 -> 1431[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1226 -> 1122[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1226[label="vxw59 < vxw62",fontsize=16,color="magenta"];1226 -> 1432[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1226 -> 1433[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1227 -> 1123[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1227[label="vxw59 < vxw62",fontsize=16,color="magenta"];1227 -> 1434[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1227 -> 1435[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1228 -> 1124[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1228[label="vxw59 < vxw62",fontsize=16,color="magenta"];1228 -> 1436[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1228 -> 1437[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1229 -> 1125[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1229[label="vxw59 < vxw62",fontsize=16,color="magenta"];1229 -> 1438[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1229 -> 1439[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1230[label="vxw59 == vxw62",fontsize=16,color="blue",shape="box"];3272[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3272[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3272 -> 1440[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3273[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3273[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3273 -> 1441[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3274[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3274[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3274 -> 1442[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3275[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3275[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3275 -> 1443[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3276[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3276[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3276 -> 1444[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3277[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3277[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3277 -> 1445[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3278[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3278[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3278 -> 1446[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3279[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3279[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3279 -> 1447[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3280[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3280[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3280 -> 1448[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3281[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3281[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3281 -> 1449[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3282[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3282[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3282 -> 1450[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3283[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3283[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3283 -> 1451[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3284[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3284[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3284 -> 1452[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3285[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3285[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3285 -> 1453[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1231 -> 1810[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1231[label="vxw60 < vxw63 || vxw60 == vxw63 && vxw61 <= vxw64",fontsize=16,color="magenta"];1231 -> 1811[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1231 -> 1812[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1232[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) (False || vxw151)",fontsize=16,color="black",shape="box"];1232 -> 1456[label="",style="solid", color="black", weight=3]; 21.85/7.85 1233[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) (True || vxw151)",fontsize=16,color="black",shape="box"];1233 -> 1457[label="",style="solid", color="black", weight=3]; 21.85/7.85 1234[label="primMulNat (Succ vxw400000) vxw3010",fontsize=16,color="burlywood",shape="box"];3286[label="vxw3010/Succ vxw30100",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3286[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3286 -> 1458[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3287[label="vxw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3287[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3287 -> 1459[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1235[label="primMulNat Zero vxw3010",fontsize=16,color="burlywood",shape="box"];3288[label="vxw3010/Succ vxw30100",fontsize=10,color="white",style="solid",shape="box"];1235 -> 3288[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3288 -> 1460[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3289[label="vxw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1235 -> 3289[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3289 -> 1461[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1236[label="vxw3010",fontsize=16,color="green",shape="box"];1237[label="vxw40000",fontsize=16,color="green",shape="box"];1238[label="vxw3010",fontsize=16,color="green",shape="box"];1239[label="vxw40000",fontsize=16,color="green",shape="box"];1240 -> 1165[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1240[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1240 -> 1462[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1240 -> 1463[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1241 -> 1166[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1241[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1241 -> 1464[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1241 -> 1465[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1242 -> 1167[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1242[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1242 -> 1466[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1242 -> 1467[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1243 -> 1168[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1243[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1243 -> 1468[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1243 -> 1469[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1244 -> 1169[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1244[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1244 -> 1470[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1244 -> 1471[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1245 -> 1170[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1245[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1245 -> 1472[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1245 -> 1473[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1246 -> 1171[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1246[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1246 -> 1474[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1246 -> 1475[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1247 -> 1172[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1247[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1247 -> 1476[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1247 -> 1477[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1248 -> 1173[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1248[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1248 -> 1478[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1248 -> 1479[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1249 -> 1174[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1249[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1249 -> 1480[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1249 -> 1481[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1250 -> 1175[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1250[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1250 -> 1482[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1250 -> 1483[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1251 -> 1176[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1251[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1251 -> 1484[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1251 -> 1485[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1252 -> 1177[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1252[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1252 -> 1486[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1252 -> 1487[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1253 -> 1178[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1253[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1253 -> 1488[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1253 -> 1489[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1254[label="compare0 (Just vxw119) (Just vxw120) otherwise",fontsize=16,color="black",shape="box"];1254 -> 1490[label="",style="solid", color="black", weight=3]; 21.85/7.85 1255[label="LT",fontsize=16,color="green",shape="box"];1256 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1256[label="vxw79 == vxw81",fontsize=16,color="magenta"];1256 -> 1491[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1256 -> 1492[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1257 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1257[label="vxw79 == vxw81",fontsize=16,color="magenta"];1257 -> 1493[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1257 -> 1494[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1258 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1258[label="vxw79 == vxw81",fontsize=16,color="magenta"];1258 -> 1495[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1258 -> 1496[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1259 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1259[label="vxw79 == vxw81",fontsize=16,color="magenta"];1259 -> 1497[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1259 -> 1498[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1260 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1260[label="vxw79 == vxw81",fontsize=16,color="magenta"];1260 -> 1499[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1260 -> 1500[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1261 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1261[label="vxw79 == vxw81",fontsize=16,color="magenta"];1261 -> 1501[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1261 -> 1502[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1262 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1262[label="vxw79 == vxw81",fontsize=16,color="magenta"];1262 -> 1503[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1262 -> 1504[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1263 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1263[label="vxw79 == vxw81",fontsize=16,color="magenta"];1263 -> 1505[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1263 -> 1506[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1264 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1264[label="vxw79 == vxw81",fontsize=16,color="magenta"];1264 -> 1507[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1264 -> 1508[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1265 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1265[label="vxw79 == vxw81",fontsize=16,color="magenta"];1265 -> 1509[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1265 -> 1510[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1266 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1266[label="vxw79 == vxw81",fontsize=16,color="magenta"];1266 -> 1511[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1266 -> 1512[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1267 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1267[label="vxw79 == vxw81",fontsize=16,color="magenta"];1267 -> 1513[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1267 -> 1514[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1268 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1268[label="vxw79 == vxw81",fontsize=16,color="magenta"];1268 -> 1515[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1268 -> 1516[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1269 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1269[label="vxw79 == vxw81",fontsize=16,color="magenta"];1269 -> 1517[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1269 -> 1518[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1270 -> 1165[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1270[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1270 -> 1519[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1270 -> 1520[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1271 -> 1166[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1271[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1271 -> 1521[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1271 -> 1522[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1272 -> 1167[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1272[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1272 -> 1523[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1272 -> 1524[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1273 -> 1168[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1273[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1273 -> 1525[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1273 -> 1526[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1274 -> 1169[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1274[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1274 -> 1527[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1274 -> 1528[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1275 -> 1170[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1275[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1275 -> 1529[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1275 -> 1530[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1276 -> 1171[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1276[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1276 -> 1531[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1276 -> 1532[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1277 -> 1172[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1277[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1277 -> 1533[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1277 -> 1534[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1278 -> 1173[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1278[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1278 -> 1535[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1278 -> 1536[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1279 -> 1174[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1279[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1279 -> 1537[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1279 -> 1538[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1280 -> 1175[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1280[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1280 -> 1539[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1280 -> 1540[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1281 -> 1176[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1281[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1281 -> 1541[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1281 -> 1542[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1282 -> 1177[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1282[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1282 -> 1543[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1282 -> 1544[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1283 -> 1178[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1283[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1283 -> 1545[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1283 -> 1546[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1284 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1284[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1284 -> 1547[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1284 -> 1548[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1285 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1285[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1285 -> 1549[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1285 -> 1550[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1286 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1286[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1286 -> 1551[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1286 -> 1552[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1287 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1287[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1287 -> 1553[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1287 -> 1554[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1288 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1288[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1288 -> 1555[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1288 -> 1556[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1289 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1289[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1289 -> 1557[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1289 -> 1558[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1290 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1290[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1290 -> 1559[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1290 -> 1560[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1291 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1291[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1291 -> 1561[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1291 -> 1562[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1292 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1292[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1292 -> 1563[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1292 -> 1564[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1293 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1293[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1293 -> 1565[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1293 -> 1566[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1294 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1294[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1294 -> 1567[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1294 -> 1568[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1295 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1295[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1295 -> 1569[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1295 -> 1570[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1296 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1296[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1296 -> 1571[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1296 -> 1572[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1297 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1297[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1297 -> 1573[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1297 -> 1574[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1298[label="compare1 (vxw129,vxw130) (vxw131,vxw132) vxw134",fontsize=16,color="burlywood",shape="triangle"];3290[label="vxw134/False",fontsize=10,color="white",style="solid",shape="box"];1298 -> 3290[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3290 -> 1575[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3291[label="vxw134/True",fontsize=10,color="white",style="solid",shape="box"];1298 -> 3291[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3291 -> 1576[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1299 -> 1298[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1299[label="compare1 (vxw129,vxw130) (vxw131,vxw132) True",fontsize=16,color="magenta"];1299 -> 1577[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1300[label="primEqInt (Pos (Succ vxw30000)) (Pos vxw40000)",fontsize=16,color="burlywood",shape="box"];3292[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1300 -> 3292[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3292 -> 1578[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3293[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1300 -> 3293[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3293 -> 1579[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1301[label="primEqInt (Pos (Succ vxw30000)) (Neg vxw40000)",fontsize=16,color="black",shape="box"];1301 -> 1580[label="",style="solid", color="black", weight=3]; 21.85/7.85 1302[label="primEqInt (Pos Zero) (Pos vxw40000)",fontsize=16,color="burlywood",shape="box"];3294[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1302 -> 3294[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3294 -> 1581[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3295[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1302 -> 3295[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3295 -> 1582[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1303[label="primEqInt (Pos Zero) (Neg vxw40000)",fontsize=16,color="burlywood",shape="box"];3296[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3296[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3296 -> 1583[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3297[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3297[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3297 -> 1584[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1304[label="primEqInt (Neg (Succ vxw30000)) (Pos vxw40000)",fontsize=16,color="black",shape="box"];1304 -> 1585[label="",style="solid", color="black", weight=3]; 21.85/7.85 1305[label="primEqInt (Neg (Succ vxw30000)) (Neg vxw40000)",fontsize=16,color="burlywood",shape="box"];3298[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3298[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3298 -> 1586[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3299[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3299[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3299 -> 1587[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1306[label="primEqInt (Neg Zero) (Pos vxw40000)",fontsize=16,color="burlywood",shape="box"];3300[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3300[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3300 -> 1588[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3301[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3301[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3301 -> 1589[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1307[label="primEqInt (Neg Zero) (Neg vxw40000)",fontsize=16,color="burlywood",shape="box"];3302[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3302[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3302 -> 1590[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3303[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3303[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3303 -> 1591[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1308[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3304[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1308 -> 3304[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3304 -> 1592[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3305[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1308 -> 3305[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3305 -> 1593[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1309[label="vxw3001 == vxw40001",fontsize=16,color="blue",shape="box"];3306[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1309 -> 3306[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3306 -> 1594[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3307[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1309 -> 3307[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3307 -> 1595[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1310 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1310[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1310 -> 1596[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1310 -> 1597[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1311 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1311[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1311 -> 1598[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1311 -> 1599[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1312 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1312[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1312 -> 1600[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1312 -> 1601[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1313 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1313[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1313 -> 1602[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1313 -> 1603[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1314 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1314[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1314 -> 1604[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1314 -> 1605[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1315 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1315[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1315 -> 1606[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1315 -> 1607[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1316 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1316[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1316 -> 1608[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1316 -> 1609[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1317 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1317[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1317 -> 1610[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1317 -> 1611[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1318 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1318[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1318 -> 1612[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1318 -> 1613[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1319 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1319[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1319 -> 1614[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1319 -> 1615[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1320 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1320[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1320 -> 1616[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1320 -> 1617[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1321 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1321[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1321 -> 1618[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1321 -> 1619[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1322 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1322[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1322 -> 1620[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1322 -> 1621[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1323 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1323[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1323 -> 1622[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1323 -> 1623[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1324[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3308[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3308[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3308 -> 1624[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3309[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3309[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3309 -> 1625[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3310[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3310[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3310 -> 1626[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3311[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3311[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3311 -> 1627[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3312[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3312[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3312 -> 1628[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3313[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3313[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3313 -> 1629[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3314[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3314[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3314 -> 1630[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3315[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3315[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3315 -> 1631[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3316[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3316[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3316 -> 1632[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3317[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3317[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3317 -> 1633[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3318[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3318[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3318 -> 1634[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3319[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3319[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3319 -> 1635[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3320[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3320[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3320 -> 1636[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3321[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3321[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3321 -> 1637[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1325[label="vxw3001 == vxw40001",fontsize=16,color="blue",shape="box"];3322[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3322[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3322 -> 1638[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3323[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3323[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3323 -> 1639[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3324[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3324[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3324 -> 1640[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3325[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3325[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3325 -> 1641[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3326[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3326[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3326 -> 1642[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3327[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3327[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3327 -> 1643[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3328[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3328[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3328 -> 1644[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3329[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3329[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3329 -> 1645[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3330[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3330[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3330 -> 1646[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3331[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3331[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3331 -> 1647[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3332[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3332[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3332 -> 1648[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3333[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3333[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3333 -> 1649[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3334[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3334[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3334 -> 1650[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3335[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3335[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3335 -> 1651[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1326 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1326[label="vxw3000 * vxw40001 == vxw3001 * vxw40000",fontsize=16,color="magenta"];1326 -> 1652[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1326 -> 1653[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1327[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3336[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3336[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3336 -> 1654[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3337[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3337[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3337 -> 1655[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3338[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3338[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3338 -> 1656[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3339[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3339[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3339 -> 1657[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3340[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3340[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3340 -> 1658[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3341[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3341[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3341 -> 1659[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3342[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3342[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3342 -> 1660[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3343[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3343[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3343 -> 1661[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3344[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3344[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3344 -> 1662[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3345[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3345[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3345 -> 1663[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3346[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3346[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3346 -> 1664[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3347[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3347[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3347 -> 1665[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3348[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3348[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3348 -> 1666[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3349[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 3349[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3349 -> 1667[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1328 -> 839[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1328[label="vxw3001 == vxw40001 && vxw3002 == vxw40002",fontsize=16,color="magenta"];1328 -> 1668[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1328 -> 1669[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1329[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3350[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3350[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3350 -> 1670[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3351[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3351[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3351 -> 1671[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3352[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3352[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3352 -> 1672[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3353[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3353[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3353 -> 1673[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3354[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3354[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3354 -> 1674[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3355[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3355[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3355 -> 1675[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3356[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3356[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3356 -> 1676[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3357[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3357[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3357 -> 1677[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3358[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3358[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3358 -> 1678[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3359[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3359[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3359 -> 1679[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3360[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3360[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3360 -> 1680[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3361[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3361[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3361 -> 1681[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3362[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3362[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3362 -> 1682[label="",style="solid", color="blue", weight=3]; 21.85/7.85 3363[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3363[label="",style="solid", color="blue", weight=9]; 21.85/7.85 3363 -> 1683[label="",style="solid", color="blue", weight=3]; 21.85/7.85 1330 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1330[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1330 -> 1684[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1330 -> 1685[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1331 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1331[label="vxw3000 * vxw40001 == vxw3001 * vxw40000",fontsize=16,color="magenta"];1331 -> 1686[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1331 -> 1687[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1332[label="vxw3000",fontsize=16,color="green",shape="box"];1333[label="vxw40000",fontsize=16,color="green",shape="box"];1334[label="primEqNat vxw3000 vxw40000",fontsize=16,color="burlywood",shape="triangle"];3364[label="vxw3000/Succ vxw30000",fontsize=10,color="white",style="solid",shape="box"];1334 -> 3364[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3364 -> 1688[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3365[label="vxw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1334 -> 3365[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3365 -> 1689[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1335 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1335[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1335 -> 1690[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1335 -> 1691[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1336 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1336[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1336 -> 1692[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1336 -> 1693[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1337 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1337[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1337 -> 1694[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1337 -> 1695[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1338 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1338[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1338 -> 1696[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1338 -> 1697[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1339 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1339[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1339 -> 1698[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1339 -> 1699[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1340 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1340[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1340 -> 1700[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1340 -> 1701[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1341 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1341[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1341 -> 1702[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1341 -> 1703[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1342 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1342[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1342 -> 1704[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1342 -> 1705[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1343 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1343[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1343 -> 1706[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1343 -> 1707[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1344 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1344[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1344 -> 1708[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1344 -> 1709[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1345 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1345[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1345 -> 1710[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1345 -> 1711[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1346 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1346[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1346 -> 1712[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1346 -> 1713[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1347 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1347[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1347 -> 1714[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1347 -> 1715[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1348 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1348[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1348 -> 1716[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1348 -> 1717[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1349 -> 428[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1349[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1349 -> 1718[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1349 -> 1719[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1350 -> 429[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1350[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1350 -> 1720[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1350 -> 1721[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1351 -> 430[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1351[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1351 -> 1722[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1351 -> 1723[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1352 -> 431[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1352[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1352 -> 1724[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1352 -> 1725[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1353 -> 432[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1353[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1353 -> 1726[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1353 -> 1727[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1354 -> 433[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1354[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1354 -> 1728[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1354 -> 1729[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1355 -> 434[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1355[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1355 -> 1730[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1355 -> 1731[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1356 -> 435[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1356[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1356 -> 1732[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1356 -> 1733[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1357 -> 436[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1357[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1357 -> 1734[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1357 -> 1735[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1358 -> 437[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1358[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1358 -> 1736[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1358 -> 1737[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1359 -> 438[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1359[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1359 -> 1738[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1359 -> 1739[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1360 -> 439[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1360[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1360 -> 1740[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1360 -> 1741[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1361 -> 440[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1361[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1361 -> 1742[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1361 -> 1743[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1362 -> 441[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1362[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1362 -> 1744[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1362 -> 1745[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1363[label="False <= vxw42",fontsize=16,color="burlywood",shape="box"];3366[label="vxw42/False",fontsize=10,color="white",style="solid",shape="box"];1363 -> 3366[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3366 -> 1746[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3367[label="vxw42/True",fontsize=10,color="white",style="solid",shape="box"];1363 -> 3367[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3367 -> 1747[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1364[label="True <= vxw42",fontsize=16,color="burlywood",shape="box"];3368[label="vxw42/False",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3368[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3368 -> 1748[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3369[label="vxw42/True",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3369[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3369 -> 1749[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1365 -> 1750[label="",style="dashed", color="red", weight=0]; 21.85/7.85 1365[label="compare vxw41 vxw42 /= GT",fontsize=16,color="magenta"];1365 -> 1751[label="",style="dashed", color="magenta", weight=3]; 21.85/7.85 1366[label="LT <= vxw42",fontsize=16,color="burlywood",shape="box"];3370[label="vxw42/LT",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3370[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3370 -> 1759[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3371[label="vxw42/EQ",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3371[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3371 -> 1760[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3372[label="vxw42/GT",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3372[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3372 -> 1761[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 1367[label="EQ <= vxw42",fontsize=16,color="burlywood",shape="box"];3373[label="vxw42/LT",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3373[label="",style="solid", color="burlywood", weight=9]; 21.85/7.85 3373 -> 1762[label="",style="solid", color="burlywood", weight=3]; 21.85/7.85 3374[label="vxw42/EQ",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3374[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3374 -> 1763[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3375[label="vxw42/GT",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3375[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3375 -> 1764[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1368[label="GT <= vxw42",fontsize=16,color="burlywood",shape="box"];3376[label="vxw42/LT",fontsize=10,color="white",style="solid",shape="box"];1368 -> 3376[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3376 -> 1765[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3377[label="vxw42/EQ",fontsize=10,color="white",style="solid",shape="box"];1368 -> 3377[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3377 -> 1766[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3378[label="vxw42/GT",fontsize=10,color="white",style="solid",shape="box"];1368 -> 3378[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3378 -> 1767[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1369 -> 1750[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1369[label="compare vxw41 vxw42 /= GT",fontsize=16,color="magenta"];1369 -> 1752[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1370[label="(vxw410,vxw411) <= vxw42",fontsize=16,color="burlywood",shape="box"];3379[label="vxw42/(vxw420,vxw421)",fontsize=10,color="white",style="solid",shape="box"];1370 -> 3379[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3379 -> 1768[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1371[label="Left vxw410 <= vxw42",fontsize=16,color="burlywood",shape="box"];3380[label="vxw42/Left vxw420",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3380[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3380 -> 1769[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3381[label="vxw42/Right vxw420",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3381[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3381 -> 1770[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1372[label="Right vxw410 <= vxw42",fontsize=16,color="burlywood",shape="box"];3382[label="vxw42/Left vxw420",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3382[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3382 -> 1771[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3383[label="vxw42/Right vxw420",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3383[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3383 -> 1772[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1373[label="(vxw410,vxw411,vxw412) <= vxw42",fontsize=16,color="burlywood",shape="box"];3384[label="vxw42/(vxw420,vxw421,vxw422)",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3384[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3384 -> 1773[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1374 -> 1750[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1374[label="compare vxw41 vxw42 /= GT",fontsize=16,color="magenta"];1374 -> 1753[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1375 -> 1750[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1375[label="compare vxw41 vxw42 /= GT",fontsize=16,color="magenta"];1375 -> 1754[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1376 -> 1750[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1376[label="compare vxw41 vxw42 /= GT",fontsize=16,color="magenta"];1376 -> 1755[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1377 -> 1750[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1377[label="compare vxw41 vxw42 /= GT",fontsize=16,color="magenta"];1377 -> 1756[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1378[label="Nothing <= vxw42",fontsize=16,color="burlywood",shape="box"];3385[label="vxw42/Nothing",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3385[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3385 -> 1774[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3386[label="vxw42/Just vxw420",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3386[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3386 -> 1775[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1379[label="Just vxw410 <= vxw42",fontsize=16,color="burlywood",shape="box"];3387[label="vxw42/Nothing",fontsize=10,color="white",style="solid",shape="box"];1379 -> 3387[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3387 -> 1776[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3388[label="vxw42/Just vxw420",fontsize=10,color="white",style="solid",shape="box"];1379 -> 3388[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3388 -> 1777[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1380 -> 1750[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1380[label="compare vxw41 vxw42 /= GT",fontsize=16,color="magenta"];1380 -> 1757[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1381 -> 1750[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1381[label="compare vxw41 vxw42 /= GT",fontsize=16,color="magenta"];1381 -> 1758[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1382[label="compare0 (Left vxw102) (Left vxw103) True",fontsize=16,color="black",shape="box"];1382 -> 1778[label="",style="solid", color="black", weight=3]; 21.88/7.85 1383[label="vxw48",fontsize=16,color="green",shape="box"];1384[label="vxw49",fontsize=16,color="green",shape="box"];1385[label="vxw48",fontsize=16,color="green",shape="box"];1386[label="vxw49",fontsize=16,color="green",shape="box"];1387[label="vxw48",fontsize=16,color="green",shape="box"];1388[label="vxw49",fontsize=16,color="green",shape="box"];1389[label="vxw48",fontsize=16,color="green",shape="box"];1390[label="vxw49",fontsize=16,color="green",shape="box"];1391[label="vxw48",fontsize=16,color="green",shape="box"];1392[label="vxw49",fontsize=16,color="green",shape="box"];1393[label="vxw48",fontsize=16,color="green",shape="box"];1394[label="vxw49",fontsize=16,color="green",shape="box"];1395[label="vxw48",fontsize=16,color="green",shape="box"];1396[label="vxw49",fontsize=16,color="green",shape="box"];1397[label="vxw48",fontsize=16,color="green",shape="box"];1398[label="vxw49",fontsize=16,color="green",shape="box"];1399[label="vxw48",fontsize=16,color="green",shape="box"];1400[label="vxw49",fontsize=16,color="green",shape="box"];1401[label="vxw48",fontsize=16,color="green",shape="box"];1402[label="vxw49",fontsize=16,color="green",shape="box"];1403[label="vxw48",fontsize=16,color="green",shape="box"];1404[label="vxw49",fontsize=16,color="green",shape="box"];1405[label="vxw48",fontsize=16,color="green",shape="box"];1406[label="vxw49",fontsize=16,color="green",shape="box"];1407[label="vxw48",fontsize=16,color="green",shape="box"];1408[label="vxw49",fontsize=16,color="green",shape="box"];1409[label="vxw48",fontsize=16,color="green",shape="box"];1410[label="vxw49",fontsize=16,color="green",shape="box"];1411[label="compare0 (Right vxw109) (Right vxw110) True",fontsize=16,color="black",shape="box"];1411 -> 1779[label="",style="solid", color="black", weight=3]; 21.88/7.85 1412[label="vxw62",fontsize=16,color="green",shape="box"];1413[label="vxw59",fontsize=16,color="green",shape="box"];1414[label="vxw62",fontsize=16,color="green",shape="box"];1415[label="vxw59",fontsize=16,color="green",shape="box"];1416[label="vxw62",fontsize=16,color="green",shape="box"];1417[label="vxw59",fontsize=16,color="green",shape="box"];1418[label="vxw62",fontsize=16,color="green",shape="box"];1419[label="vxw59",fontsize=16,color="green",shape="box"];1420[label="vxw62",fontsize=16,color="green",shape="box"];1421[label="vxw59",fontsize=16,color="green",shape="box"];1422[label="vxw62",fontsize=16,color="green",shape="box"];1423[label="vxw59",fontsize=16,color="green",shape="box"];1424[label="vxw62",fontsize=16,color="green",shape="box"];1425[label="vxw59",fontsize=16,color="green",shape="box"];1426[label="vxw62",fontsize=16,color="green",shape="box"];1427[label="vxw59",fontsize=16,color="green",shape="box"];1428[label="vxw62",fontsize=16,color="green",shape="box"];1429[label="vxw59",fontsize=16,color="green",shape="box"];1430[label="vxw62",fontsize=16,color="green",shape="box"];1431[label="vxw59",fontsize=16,color="green",shape="box"];1432[label="vxw62",fontsize=16,color="green",shape="box"];1433[label="vxw59",fontsize=16,color="green",shape="box"];1434[label="vxw62",fontsize=16,color="green",shape="box"];1435[label="vxw59",fontsize=16,color="green",shape="box"];1436[label="vxw62",fontsize=16,color="green",shape="box"];1437[label="vxw59",fontsize=16,color="green",shape="box"];1438[label="vxw62",fontsize=16,color="green",shape="box"];1439[label="vxw59",fontsize=16,color="green",shape="box"];1440 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1440[label="vxw59 == vxw62",fontsize=16,color="magenta"];1440 -> 1780[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1440 -> 1781[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1441 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1441[label="vxw59 == vxw62",fontsize=16,color="magenta"];1441 -> 1782[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1441 -> 1783[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1442 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1442[label="vxw59 == vxw62",fontsize=16,color="magenta"];1442 -> 1784[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1442 -> 1785[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1443 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1443[label="vxw59 == vxw62",fontsize=16,color="magenta"];1443 -> 1786[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1443 -> 1787[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1444 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1444[label="vxw59 == vxw62",fontsize=16,color="magenta"];1444 -> 1788[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1444 -> 1789[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1445 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1445[label="vxw59 == vxw62",fontsize=16,color="magenta"];1445 -> 1790[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1445 -> 1791[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1446 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1446[label="vxw59 == vxw62",fontsize=16,color="magenta"];1446 -> 1792[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1446 -> 1793[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1447 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1447[label="vxw59 == vxw62",fontsize=16,color="magenta"];1447 -> 1794[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1447 -> 1795[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1448 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1448[label="vxw59 == vxw62",fontsize=16,color="magenta"];1448 -> 1796[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1448 -> 1797[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1449 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1449[label="vxw59 == vxw62",fontsize=16,color="magenta"];1449 -> 1798[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1449 -> 1799[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1450 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1450[label="vxw59 == vxw62",fontsize=16,color="magenta"];1450 -> 1800[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1450 -> 1801[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1451 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1451[label="vxw59 == vxw62",fontsize=16,color="magenta"];1451 -> 1802[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1451 -> 1803[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1452 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1452[label="vxw59 == vxw62",fontsize=16,color="magenta"];1452 -> 1804[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1452 -> 1805[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1453 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1453[label="vxw59 == vxw62",fontsize=16,color="magenta"];1453 -> 1806[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1453 -> 1807[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1811[label="vxw60 < vxw63",fontsize=16,color="blue",shape="box"];3389[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3389[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3389 -> 1815[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3390[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3390[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3390 -> 1816[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3391[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3391[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3391 -> 1817[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3392[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3392[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3392 -> 1818[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3393[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3393[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3393 -> 1819[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3394[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3394[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3394 -> 1820[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3395[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3395[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3395 -> 1821[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3396[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3396[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3396 -> 1822[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3397[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3397[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3397 -> 1823[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3398[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3398[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3398 -> 1824[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3399[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3399[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3399 -> 1825[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3400[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3400[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3400 -> 1826[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3401[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3401[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3401 -> 1827[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3402[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1811 -> 3402[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3402 -> 1828[label="",style="solid", color="blue", weight=3]; 21.88/7.85 1812 -> 839[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1812[label="vxw60 == vxw63 && vxw61 <= vxw64",fontsize=16,color="magenta"];1812 -> 1829[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1812 -> 1830[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1810[label="vxw157 || vxw158",fontsize=16,color="burlywood",shape="triangle"];3403[label="vxw157/False",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3403[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3403 -> 1831[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3404[label="vxw157/True",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3404[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3404 -> 1832[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1456[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) vxw151",fontsize=16,color="burlywood",shape="triangle"];3405[label="vxw151/False",fontsize=10,color="white",style="solid",shape="box"];1456 -> 3405[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3405 -> 1833[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3406[label="vxw151/True",fontsize=10,color="white",style="solid",shape="box"];1456 -> 3406[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3406 -> 1834[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1457 -> 1456[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1457[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) True",fontsize=16,color="magenta"];1457 -> 1835[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1458[label="primMulNat (Succ vxw400000) (Succ vxw30100)",fontsize=16,color="black",shape="box"];1458 -> 1836[label="",style="solid", color="black", weight=3]; 21.88/7.85 1459[label="primMulNat (Succ vxw400000) Zero",fontsize=16,color="black",shape="box"];1459 -> 1837[label="",style="solid", color="black", weight=3]; 21.88/7.85 1460[label="primMulNat Zero (Succ vxw30100)",fontsize=16,color="black",shape="box"];1460 -> 1838[label="",style="solid", color="black", weight=3]; 21.88/7.85 1461[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1461 -> 1839[label="",style="solid", color="black", weight=3]; 21.88/7.85 1462[label="vxw70",fontsize=16,color="green",shape="box"];1463[label="vxw71",fontsize=16,color="green",shape="box"];1464[label="vxw70",fontsize=16,color="green",shape="box"];1465[label="vxw71",fontsize=16,color="green",shape="box"];1466[label="vxw70",fontsize=16,color="green",shape="box"];1467[label="vxw71",fontsize=16,color="green",shape="box"];1468[label="vxw70",fontsize=16,color="green",shape="box"];1469[label="vxw71",fontsize=16,color="green",shape="box"];1470[label="vxw70",fontsize=16,color="green",shape="box"];1471[label="vxw71",fontsize=16,color="green",shape="box"];1472[label="vxw70",fontsize=16,color="green",shape="box"];1473[label="vxw71",fontsize=16,color="green",shape="box"];1474[label="vxw70",fontsize=16,color="green",shape="box"];1475[label="vxw71",fontsize=16,color="green",shape="box"];1476[label="vxw70",fontsize=16,color="green",shape="box"];1477[label="vxw71",fontsize=16,color="green",shape="box"];1478[label="vxw70",fontsize=16,color="green",shape="box"];1479[label="vxw71",fontsize=16,color="green",shape="box"];1480[label="vxw70",fontsize=16,color="green",shape="box"];1481[label="vxw71",fontsize=16,color="green",shape="box"];1482[label="vxw70",fontsize=16,color="green",shape="box"];1483[label="vxw71",fontsize=16,color="green",shape="box"];1484[label="vxw70",fontsize=16,color="green",shape="box"];1485[label="vxw71",fontsize=16,color="green",shape="box"];1486[label="vxw70",fontsize=16,color="green",shape="box"];1487[label="vxw71",fontsize=16,color="green",shape="box"];1488[label="vxw70",fontsize=16,color="green",shape="box"];1489[label="vxw71",fontsize=16,color="green",shape="box"];1490[label="compare0 (Just vxw119) (Just vxw120) True",fontsize=16,color="black",shape="box"];1490 -> 1840[label="",style="solid", color="black", weight=3]; 21.88/7.85 1491[label="vxw79",fontsize=16,color="green",shape="box"];1492[label="vxw81",fontsize=16,color="green",shape="box"];1493[label="vxw79",fontsize=16,color="green",shape="box"];1494[label="vxw81",fontsize=16,color="green",shape="box"];1495[label="vxw79",fontsize=16,color="green",shape="box"];1496[label="vxw81",fontsize=16,color="green",shape="box"];1497[label="vxw79",fontsize=16,color="green",shape="box"];1498[label="vxw81",fontsize=16,color="green",shape="box"];1499[label="vxw79",fontsize=16,color="green",shape="box"];1500[label="vxw81",fontsize=16,color="green",shape="box"];1501[label="vxw79",fontsize=16,color="green",shape="box"];1502[label="vxw81",fontsize=16,color="green",shape="box"];1503[label="vxw79",fontsize=16,color="green",shape="box"];1504[label="vxw81",fontsize=16,color="green",shape="box"];1505[label="vxw79",fontsize=16,color="green",shape="box"];1506[label="vxw81",fontsize=16,color="green",shape="box"];1507[label="vxw79",fontsize=16,color="green",shape="box"];1508[label="vxw81",fontsize=16,color="green",shape="box"];1509[label="vxw79",fontsize=16,color="green",shape="box"];1510[label="vxw81",fontsize=16,color="green",shape="box"];1511[label="vxw79",fontsize=16,color="green",shape="box"];1512[label="vxw81",fontsize=16,color="green",shape="box"];1513[label="vxw79",fontsize=16,color="green",shape="box"];1514[label="vxw81",fontsize=16,color="green",shape="box"];1515[label="vxw79",fontsize=16,color="green",shape="box"];1516[label="vxw81",fontsize=16,color="green",shape="box"];1517[label="vxw79",fontsize=16,color="green",shape="box"];1518[label="vxw81",fontsize=16,color="green",shape="box"];1519[label="vxw80",fontsize=16,color="green",shape="box"];1520[label="vxw82",fontsize=16,color="green",shape="box"];1521[label="vxw80",fontsize=16,color="green",shape="box"];1522[label="vxw82",fontsize=16,color="green",shape="box"];1523[label="vxw80",fontsize=16,color="green",shape="box"];1524[label="vxw82",fontsize=16,color="green",shape="box"];1525[label="vxw80",fontsize=16,color="green",shape="box"];1526[label="vxw82",fontsize=16,color="green",shape="box"];1527[label="vxw80",fontsize=16,color="green",shape="box"];1528[label="vxw82",fontsize=16,color="green",shape="box"];1529[label="vxw80",fontsize=16,color="green",shape="box"];1530[label="vxw82",fontsize=16,color="green",shape="box"];1531[label="vxw80",fontsize=16,color="green",shape="box"];1532[label="vxw82",fontsize=16,color="green",shape="box"];1533[label="vxw80",fontsize=16,color="green",shape="box"];1534[label="vxw82",fontsize=16,color="green",shape="box"];1535[label="vxw80",fontsize=16,color="green",shape="box"];1536[label="vxw82",fontsize=16,color="green",shape="box"];1537[label="vxw80",fontsize=16,color="green",shape="box"];1538[label="vxw82",fontsize=16,color="green",shape="box"];1539[label="vxw80",fontsize=16,color="green",shape="box"];1540[label="vxw82",fontsize=16,color="green",shape="box"];1541[label="vxw80",fontsize=16,color="green",shape="box"];1542[label="vxw82",fontsize=16,color="green",shape="box"];1543[label="vxw80",fontsize=16,color="green",shape="box"];1544[label="vxw82",fontsize=16,color="green",shape="box"];1545[label="vxw80",fontsize=16,color="green",shape="box"];1546[label="vxw82",fontsize=16,color="green",shape="box"];1547 -> 116[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1547[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1547 -> 1841[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1547 -> 1842[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1548[label="LT",fontsize=16,color="green",shape="box"];1549 -> 117[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1549[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1549 -> 1843[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1549 -> 1844[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1550[label="LT",fontsize=16,color="green",shape="box"];1551 -> 118[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1551[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1551 -> 1845[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1551 -> 1846[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1552[label="LT",fontsize=16,color="green",shape="box"];1553 -> 119[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1553[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1553 -> 1847[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1553 -> 1848[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1554[label="LT",fontsize=16,color="green",shape="box"];1555 -> 120[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1555[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1555 -> 1849[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1555 -> 1850[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1556[label="LT",fontsize=16,color="green",shape="box"];1557 -> 121[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1557[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1557 -> 1851[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1557 -> 1852[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1558[label="LT",fontsize=16,color="green",shape="box"];1559 -> 122[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1559[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1559 -> 1853[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1559 -> 1854[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1560[label="LT",fontsize=16,color="green",shape="box"];1561 -> 123[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1561[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1561 -> 1855[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1561 -> 1856[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1562[label="LT",fontsize=16,color="green",shape="box"];1563 -> 124[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1563[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1563 -> 1857[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1563 -> 1858[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1564[label="LT",fontsize=16,color="green",shape="box"];1565 -> 125[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1565[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1565 -> 1859[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1565 -> 1860[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1566[label="LT",fontsize=16,color="green",shape="box"];1567 -> 126[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1567[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1567 -> 1861[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1567 -> 1862[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1568[label="LT",fontsize=16,color="green",shape="box"];1569 -> 127[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1569[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1569 -> 1863[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1569 -> 1864[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1570[label="LT",fontsize=16,color="green",shape="box"];1571 -> 128[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1571[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1571 -> 1865[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1571 -> 1866[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1572[label="LT",fontsize=16,color="green",shape="box"];1573 -> 129[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1573[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1573 -> 1867[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1573 -> 1868[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1574[label="LT",fontsize=16,color="green",shape="box"];1575[label="compare1 (vxw129,vxw130) (vxw131,vxw132) False",fontsize=16,color="black",shape="box"];1575 -> 1869[label="",style="solid", color="black", weight=3]; 21.88/7.85 1576[label="compare1 (vxw129,vxw130) (vxw131,vxw132) True",fontsize=16,color="black",shape="box"];1576 -> 1870[label="",style="solid", color="black", weight=3]; 21.88/7.85 1577[label="True",fontsize=16,color="green",shape="box"];1578[label="primEqInt (Pos (Succ vxw30000)) (Pos (Succ vxw400000))",fontsize=16,color="black",shape="box"];1578 -> 1871[label="",style="solid", color="black", weight=3]; 21.88/7.85 1579[label="primEqInt (Pos (Succ vxw30000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1579 -> 1872[label="",style="solid", color="black", weight=3]; 21.88/7.85 1580[label="False",fontsize=16,color="green",shape="box"];1581[label="primEqInt (Pos Zero) (Pos (Succ vxw400000))",fontsize=16,color="black",shape="box"];1581 -> 1873[label="",style="solid", color="black", weight=3]; 21.88/7.85 1582[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1582 -> 1874[label="",style="solid", color="black", weight=3]; 21.88/7.85 1583[label="primEqInt (Pos Zero) (Neg (Succ vxw400000))",fontsize=16,color="black",shape="box"];1583 -> 1875[label="",style="solid", color="black", weight=3]; 21.88/7.85 1584[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1584 -> 1876[label="",style="solid", color="black", weight=3]; 21.88/7.85 1585[label="False",fontsize=16,color="green",shape="box"];1586[label="primEqInt (Neg (Succ vxw30000)) (Neg (Succ vxw400000))",fontsize=16,color="black",shape="box"];1586 -> 1877[label="",style="solid", color="black", weight=3]; 21.88/7.85 1587[label="primEqInt (Neg (Succ vxw30000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1587 -> 1878[label="",style="solid", color="black", weight=3]; 21.88/7.85 1588[label="primEqInt (Neg Zero) (Pos (Succ vxw400000))",fontsize=16,color="black",shape="box"];1588 -> 1879[label="",style="solid", color="black", weight=3]; 21.88/7.85 1589[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1589 -> 1880[label="",style="solid", color="black", weight=3]; 21.88/7.85 1590[label="primEqInt (Neg Zero) (Neg (Succ vxw400000))",fontsize=16,color="black",shape="box"];1590 -> 1881[label="",style="solid", color="black", weight=3]; 21.88/7.85 1591[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1591 -> 1882[label="",style="solid", color="black", weight=3]; 21.88/7.85 1592 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1592[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1592 -> 1883[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1592 -> 1884[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1593 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1593[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1593 -> 1885[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1593 -> 1886[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1594 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1594[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1594 -> 1887[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1594 -> 1888[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1595 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1595[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1595 -> 1889[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1595 -> 1890[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1596[label="vxw3000",fontsize=16,color="green",shape="box"];1597[label="vxw40000",fontsize=16,color="green",shape="box"];1598[label="vxw3000",fontsize=16,color="green",shape="box"];1599[label="vxw40000",fontsize=16,color="green",shape="box"];1600[label="vxw3000",fontsize=16,color="green",shape="box"];1601[label="vxw40000",fontsize=16,color="green",shape="box"];1602[label="vxw3000",fontsize=16,color="green",shape="box"];1603[label="vxw40000",fontsize=16,color="green",shape="box"];1604[label="vxw3000",fontsize=16,color="green",shape="box"];1605[label="vxw40000",fontsize=16,color="green",shape="box"];1606[label="vxw3000",fontsize=16,color="green",shape="box"];1607[label="vxw40000",fontsize=16,color="green",shape="box"];1608[label="vxw3000",fontsize=16,color="green",shape="box"];1609[label="vxw40000",fontsize=16,color="green",shape="box"];1610[label="vxw3000",fontsize=16,color="green",shape="box"];1611[label="vxw40000",fontsize=16,color="green",shape="box"];1612[label="vxw3000",fontsize=16,color="green",shape="box"];1613[label="vxw40000",fontsize=16,color="green",shape="box"];1614[label="vxw3000",fontsize=16,color="green",shape="box"];1615[label="vxw40000",fontsize=16,color="green",shape="box"];1616[label="vxw3000",fontsize=16,color="green",shape="box"];1617[label="vxw40000",fontsize=16,color="green",shape="box"];1618[label="vxw3000",fontsize=16,color="green",shape="box"];1619[label="vxw40000",fontsize=16,color="green",shape="box"];1620[label="vxw3000",fontsize=16,color="green",shape="box"];1621[label="vxw40000",fontsize=16,color="green",shape="box"];1622[label="vxw3000",fontsize=16,color="green",shape="box"];1623[label="vxw40000",fontsize=16,color="green",shape="box"];1624 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1624[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1624 -> 1891[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1624 -> 1892[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1625 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1625[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1625 -> 1893[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1625 -> 1894[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1626 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1626[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1626 -> 1895[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1626 -> 1896[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1627 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1627[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1627 -> 1897[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1627 -> 1898[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1628 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1628[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1628 -> 1899[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1628 -> 1900[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1629 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1629[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1629 -> 1901[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1629 -> 1902[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1630 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1630[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1630 -> 1903[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1630 -> 1904[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1631 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1631[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1631 -> 1905[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1631 -> 1906[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1632 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1632[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1632 -> 1907[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1632 -> 1908[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1633 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1633[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1633 -> 1909[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1633 -> 1910[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1634 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1634[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1634 -> 1911[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1634 -> 1912[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1635 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1635[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1635 -> 1913[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1635 -> 1914[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1636 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1636[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1636 -> 1915[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1636 -> 1916[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1637 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1637[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1637 -> 1917[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1637 -> 1918[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1638 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1638[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1638 -> 1919[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1638 -> 1920[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1639 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1639[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1639 -> 1921[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1639 -> 1922[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1640 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1640[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1640 -> 1923[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1640 -> 1924[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1641 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1641[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1641 -> 1925[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1641 -> 1926[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1642 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1642[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1642 -> 1927[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1642 -> 1928[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1643 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1643[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1643 -> 1929[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1643 -> 1930[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1644 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1644[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1644 -> 1931[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1644 -> 1932[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1645 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1645[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1645 -> 1933[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1645 -> 1934[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1646 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1646[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1646 -> 1935[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1646 -> 1936[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1647 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1647[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1647 -> 1937[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1647 -> 1938[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1648 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1648[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1648 -> 1939[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1648 -> 1940[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1649 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1649[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1649 -> 1941[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1649 -> 1942[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1650 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1650[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1650 -> 1943[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1650 -> 1944[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1651 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1651[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1651 -> 1945[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1651 -> 1946[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1652 -> 320[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1652[label="vxw3000 * vxw40001",fontsize=16,color="magenta"];1652 -> 1947[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1652 -> 1948[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1653 -> 320[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1653[label="vxw3001 * vxw40000",fontsize=16,color="magenta"];1653 -> 1949[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1653 -> 1950[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1654 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1654[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1654 -> 1951[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1654 -> 1952[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1655 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1655[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1655 -> 1953[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1655 -> 1954[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1656 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1656[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1656 -> 1955[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1656 -> 1956[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1657 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1657[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1657 -> 1957[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1657 -> 1958[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1658 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1658[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1658 -> 1959[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1658 -> 1960[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1659 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1659[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1659 -> 1961[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1659 -> 1962[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1660 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1660[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1660 -> 1963[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1660 -> 1964[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1661 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1661[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1661 -> 1965[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1661 -> 1966[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1662 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1662[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1662 -> 1967[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1662 -> 1968[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1663 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1663[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1663 -> 1969[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1663 -> 1970[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1664 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1664[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1664 -> 1971[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1664 -> 1972[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1665 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1665[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1665 -> 1973[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1665 -> 1974[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1666 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1666[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1666 -> 1975[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1666 -> 1976[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1667 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1667[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1667 -> 1977[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1667 -> 1978[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1668[label="vxw3001 == vxw40001",fontsize=16,color="blue",shape="box"];3407[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3407[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3407 -> 1979[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3408[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3408[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3408 -> 1980[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3409[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3409[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3409 -> 1981[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3410[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3410[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3410 -> 1982[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3411[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3411[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3411 -> 1983[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3412[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3412[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3412 -> 1984[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3413[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3413[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3413 -> 1985[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3414[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3414[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3414 -> 1986[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3415[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3415[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3415 -> 1987[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3416[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3416[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3416 -> 1988[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3417[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3417[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3417 -> 1989[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3418[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3418[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3418 -> 1990[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3419[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3419[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3419 -> 1991[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3420[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1668 -> 3420[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3420 -> 1992[label="",style="solid", color="blue", weight=3]; 21.88/7.85 1669[label="vxw3002 == vxw40002",fontsize=16,color="blue",shape="box"];3421[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3421[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3421 -> 1993[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3422[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3422[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3422 -> 1994[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3423[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3423[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3423 -> 1995[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3424[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3424[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3424 -> 1996[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3425[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3425[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3425 -> 1997[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3426[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3426[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3426 -> 1998[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3427[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3427[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3427 -> 1999[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3428[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3428[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3428 -> 2000[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3429[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3429[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3429 -> 2001[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3430[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3430[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3430 -> 2002[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3431[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3431[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3431 -> 2003[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3432[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3432[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3432 -> 2004[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3433[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3433[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3433 -> 2005[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3434[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3434[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3434 -> 2006[label="",style="solid", color="blue", weight=3]; 21.88/7.85 1670 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1670[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1670 -> 2007[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1670 -> 2008[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1671 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1671[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1671 -> 2009[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1671 -> 2010[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1672 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1672[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1672 -> 2011[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1672 -> 2012[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1673 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1673[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1673 -> 2013[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1673 -> 2014[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1674 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1674[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1674 -> 2015[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1674 -> 2016[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1675 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1675[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1675 -> 2017[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1675 -> 2018[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1676 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1676[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1676 -> 2019[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1676 -> 2020[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1677 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1677[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1677 -> 2021[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1677 -> 2022[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1678 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1678[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1678 -> 2023[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1678 -> 2024[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1679 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1679[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1679 -> 2025[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1679 -> 2026[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1680 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1680[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1680 -> 2027[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1680 -> 2028[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1681 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1681[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1681 -> 2029[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1681 -> 2030[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1682 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1682[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1682 -> 2031[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1682 -> 2032[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1683 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1683[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1683 -> 2033[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1683 -> 2034[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1684[label="vxw3001",fontsize=16,color="green",shape="box"];1685[label="vxw40001",fontsize=16,color="green",shape="box"];1686 -> 320[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1686[label="vxw3000 * vxw40001",fontsize=16,color="magenta"];1686 -> 2035[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1686 -> 2036[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1687 -> 320[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1687[label="vxw3001 * vxw40000",fontsize=16,color="magenta"];1687 -> 2037[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1687 -> 2038[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1688[label="primEqNat (Succ vxw30000) vxw40000",fontsize=16,color="burlywood",shape="box"];3435[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1688 -> 3435[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3435 -> 2039[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3436[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1688 -> 3436[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3436 -> 2040[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1689[label="primEqNat Zero vxw40000",fontsize=16,color="burlywood",shape="box"];3437[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1689 -> 3437[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3437 -> 2041[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 3438[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1689 -> 3438[label="",style="solid", color="burlywood", weight=9]; 21.88/7.85 3438 -> 2042[label="",style="solid", color="burlywood", weight=3]; 21.88/7.85 1690[label="vxw3000",fontsize=16,color="green",shape="box"];1691[label="vxw40000",fontsize=16,color="green",shape="box"];1692[label="vxw3000",fontsize=16,color="green",shape="box"];1693[label="vxw40000",fontsize=16,color="green",shape="box"];1694[label="vxw3000",fontsize=16,color="green",shape="box"];1695[label="vxw40000",fontsize=16,color="green",shape="box"];1696[label="vxw3000",fontsize=16,color="green",shape="box"];1697[label="vxw40000",fontsize=16,color="green",shape="box"];1698[label="vxw3000",fontsize=16,color="green",shape="box"];1699[label="vxw40000",fontsize=16,color="green",shape="box"];1700[label="vxw3000",fontsize=16,color="green",shape="box"];1701[label="vxw40000",fontsize=16,color="green",shape="box"];1702[label="vxw3000",fontsize=16,color="green",shape="box"];1703[label="vxw40000",fontsize=16,color="green",shape="box"];1704[label="vxw3000",fontsize=16,color="green",shape="box"];1705[label="vxw40000",fontsize=16,color="green",shape="box"];1706[label="vxw3000",fontsize=16,color="green",shape="box"];1707[label="vxw40000",fontsize=16,color="green",shape="box"];1708[label="vxw3000",fontsize=16,color="green",shape="box"];1709[label="vxw40000",fontsize=16,color="green",shape="box"];1710[label="vxw3000",fontsize=16,color="green",shape="box"];1711[label="vxw40000",fontsize=16,color="green",shape="box"];1712[label="vxw3000",fontsize=16,color="green",shape="box"];1713[label="vxw40000",fontsize=16,color="green",shape="box"];1714[label="vxw3000",fontsize=16,color="green",shape="box"];1715[label="vxw40000",fontsize=16,color="green",shape="box"];1716[label="vxw3000",fontsize=16,color="green",shape="box"];1717[label="vxw40000",fontsize=16,color="green",shape="box"];1718[label="vxw3000",fontsize=16,color="green",shape="box"];1719[label="vxw40000",fontsize=16,color="green",shape="box"];1720[label="vxw3000",fontsize=16,color="green",shape="box"];1721[label="vxw40000",fontsize=16,color="green",shape="box"];1722[label="vxw3000",fontsize=16,color="green",shape="box"];1723[label="vxw40000",fontsize=16,color="green",shape="box"];1724[label="vxw3000",fontsize=16,color="green",shape="box"];1725[label="vxw40000",fontsize=16,color="green",shape="box"];1726[label="vxw3000",fontsize=16,color="green",shape="box"];1727[label="vxw40000",fontsize=16,color="green",shape="box"];1728[label="vxw3000",fontsize=16,color="green",shape="box"];1729[label="vxw40000",fontsize=16,color="green",shape="box"];1730[label="vxw3000",fontsize=16,color="green",shape="box"];1731[label="vxw40000",fontsize=16,color="green",shape="box"];1732[label="vxw3000",fontsize=16,color="green",shape="box"];1733[label="vxw40000",fontsize=16,color="green",shape="box"];1734[label="vxw3000",fontsize=16,color="green",shape="box"];1735[label="vxw40000",fontsize=16,color="green",shape="box"];1736[label="vxw3000",fontsize=16,color="green",shape="box"];1737[label="vxw40000",fontsize=16,color="green",shape="box"];1738[label="vxw3000",fontsize=16,color="green",shape="box"];1739[label="vxw40000",fontsize=16,color="green",shape="box"];1740[label="vxw3000",fontsize=16,color="green",shape="box"];1741[label="vxw40000",fontsize=16,color="green",shape="box"];1742[label="vxw3000",fontsize=16,color="green",shape="box"];1743[label="vxw40000",fontsize=16,color="green",shape="box"];1744[label="vxw3000",fontsize=16,color="green",shape="box"];1745[label="vxw40000",fontsize=16,color="green",shape="box"];1746[label="False <= False",fontsize=16,color="black",shape="box"];1746 -> 2043[label="",style="solid", color="black", weight=3]; 21.88/7.85 1747[label="False <= True",fontsize=16,color="black",shape="box"];1747 -> 2044[label="",style="solid", color="black", weight=3]; 21.88/7.85 1748[label="True <= False",fontsize=16,color="black",shape="box"];1748 -> 2045[label="",style="solid", color="black", weight=3]; 21.88/7.85 1749[label="True <= True",fontsize=16,color="black",shape="box"];1749 -> 2046[label="",style="solid", color="black", weight=3]; 21.88/7.85 1751 -> 117[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1751[label="compare vxw41 vxw42",fontsize=16,color="magenta"];1751 -> 2047[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1751 -> 2048[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1750[label="vxw153 /= GT",fontsize=16,color="black",shape="triangle"];1750 -> 2049[label="",style="solid", color="black", weight=3]; 21.88/7.85 1759[label="LT <= LT",fontsize=16,color="black",shape="box"];1759 -> 2050[label="",style="solid", color="black", weight=3]; 21.88/7.85 1760[label="LT <= EQ",fontsize=16,color="black",shape="box"];1760 -> 2051[label="",style="solid", color="black", weight=3]; 21.88/7.85 1761[label="LT <= GT",fontsize=16,color="black",shape="box"];1761 -> 2052[label="",style="solid", color="black", weight=3]; 21.88/7.85 1762[label="EQ <= LT",fontsize=16,color="black",shape="box"];1762 -> 2053[label="",style="solid", color="black", weight=3]; 21.88/7.85 1763[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1763 -> 2054[label="",style="solid", color="black", weight=3]; 21.88/7.85 1764[label="EQ <= GT",fontsize=16,color="black",shape="box"];1764 -> 2055[label="",style="solid", color="black", weight=3]; 21.88/7.85 1765[label="GT <= LT",fontsize=16,color="black",shape="box"];1765 -> 2056[label="",style="solid", color="black", weight=3]; 21.88/7.85 1766[label="GT <= EQ",fontsize=16,color="black",shape="box"];1766 -> 2057[label="",style="solid", color="black", weight=3]; 21.88/7.85 1767[label="GT <= GT",fontsize=16,color="black",shape="box"];1767 -> 2058[label="",style="solid", color="black", weight=3]; 21.88/7.85 1752 -> 119[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1752[label="compare vxw41 vxw42",fontsize=16,color="magenta"];1752 -> 2059[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1752 -> 2060[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1768[label="(vxw410,vxw411) <= (vxw420,vxw421)",fontsize=16,color="black",shape="box"];1768 -> 2061[label="",style="solid", color="black", weight=3]; 21.88/7.85 1769[label="Left vxw410 <= Left vxw420",fontsize=16,color="black",shape="box"];1769 -> 2062[label="",style="solid", color="black", weight=3]; 21.88/7.85 1770[label="Left vxw410 <= Right vxw420",fontsize=16,color="black",shape="box"];1770 -> 2063[label="",style="solid", color="black", weight=3]; 21.88/7.85 1771[label="Right vxw410 <= Left vxw420",fontsize=16,color="black",shape="box"];1771 -> 2064[label="",style="solid", color="black", weight=3]; 21.88/7.85 1772[label="Right vxw410 <= Right vxw420",fontsize=16,color="black",shape="box"];1772 -> 2065[label="",style="solid", color="black", weight=3]; 21.88/7.85 1773[label="(vxw410,vxw411,vxw412) <= (vxw420,vxw421,vxw422)",fontsize=16,color="black",shape="box"];1773 -> 2066[label="",style="solid", color="black", weight=3]; 21.88/7.85 1753 -> 123[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1753[label="compare vxw41 vxw42",fontsize=16,color="magenta"];1753 -> 2067[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1753 -> 2068[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1754 -> 124[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1754[label="compare vxw41 vxw42",fontsize=16,color="magenta"];1754 -> 2069[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1754 -> 2070[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1755 -> 125[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1755[label="compare vxw41 vxw42",fontsize=16,color="magenta"];1755 -> 2071[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1755 -> 2072[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1756 -> 126[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1756[label="compare vxw41 vxw42",fontsize=16,color="magenta"];1756 -> 2073[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1756 -> 2074[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1774[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1774 -> 2075[label="",style="solid", color="black", weight=3]; 21.88/7.85 1775[label="Nothing <= Just vxw420",fontsize=16,color="black",shape="box"];1775 -> 2076[label="",style="solid", color="black", weight=3]; 21.88/7.85 1776[label="Just vxw410 <= Nothing",fontsize=16,color="black",shape="box"];1776 -> 2077[label="",style="solid", color="black", weight=3]; 21.88/7.85 1777[label="Just vxw410 <= Just vxw420",fontsize=16,color="black",shape="box"];1777 -> 2078[label="",style="solid", color="black", weight=3]; 21.88/7.85 1757 -> 128[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1757[label="compare vxw41 vxw42",fontsize=16,color="magenta"];1757 -> 2079[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1757 -> 2080[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1758 -> 129[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1758[label="compare vxw41 vxw42",fontsize=16,color="magenta"];1758 -> 2081[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1758 -> 2082[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1778[label="GT",fontsize=16,color="green",shape="box"];1779[label="GT",fontsize=16,color="green",shape="box"];1780[label="vxw59",fontsize=16,color="green",shape="box"];1781[label="vxw62",fontsize=16,color="green",shape="box"];1782[label="vxw59",fontsize=16,color="green",shape="box"];1783[label="vxw62",fontsize=16,color="green",shape="box"];1784[label="vxw59",fontsize=16,color="green",shape="box"];1785[label="vxw62",fontsize=16,color="green",shape="box"];1786[label="vxw59",fontsize=16,color="green",shape="box"];1787[label="vxw62",fontsize=16,color="green",shape="box"];1788[label="vxw59",fontsize=16,color="green",shape="box"];1789[label="vxw62",fontsize=16,color="green",shape="box"];1790[label="vxw59",fontsize=16,color="green",shape="box"];1791[label="vxw62",fontsize=16,color="green",shape="box"];1792[label="vxw59",fontsize=16,color="green",shape="box"];1793[label="vxw62",fontsize=16,color="green",shape="box"];1794[label="vxw59",fontsize=16,color="green",shape="box"];1795[label="vxw62",fontsize=16,color="green",shape="box"];1796[label="vxw59",fontsize=16,color="green",shape="box"];1797[label="vxw62",fontsize=16,color="green",shape="box"];1798[label="vxw59",fontsize=16,color="green",shape="box"];1799[label="vxw62",fontsize=16,color="green",shape="box"];1800[label="vxw59",fontsize=16,color="green",shape="box"];1801[label="vxw62",fontsize=16,color="green",shape="box"];1802[label="vxw59",fontsize=16,color="green",shape="box"];1803[label="vxw62",fontsize=16,color="green",shape="box"];1804[label="vxw59",fontsize=16,color="green",shape="box"];1805[label="vxw62",fontsize=16,color="green",shape="box"];1806[label="vxw59",fontsize=16,color="green",shape="box"];1807[label="vxw62",fontsize=16,color="green",shape="box"];1815 -> 1112[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1815[label="vxw60 < vxw63",fontsize=16,color="magenta"];1815 -> 2083[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1815 -> 2084[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1816 -> 1113[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1816[label="vxw60 < vxw63",fontsize=16,color="magenta"];1816 -> 2085[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1816 -> 2086[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1817 -> 1114[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1817[label="vxw60 < vxw63",fontsize=16,color="magenta"];1817 -> 2087[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1817 -> 2088[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1818 -> 1115[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1818[label="vxw60 < vxw63",fontsize=16,color="magenta"];1818 -> 2089[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1818 -> 2090[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1819 -> 1116[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1819[label="vxw60 < vxw63",fontsize=16,color="magenta"];1819 -> 2091[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1819 -> 2092[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1820 -> 1117[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1820[label="vxw60 < vxw63",fontsize=16,color="magenta"];1820 -> 2093[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1820 -> 2094[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1821 -> 1118[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1821[label="vxw60 < vxw63",fontsize=16,color="magenta"];1821 -> 2095[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1821 -> 2096[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1822 -> 1119[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1822[label="vxw60 < vxw63",fontsize=16,color="magenta"];1822 -> 2097[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1822 -> 2098[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1823 -> 1120[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1823[label="vxw60 < vxw63",fontsize=16,color="magenta"];1823 -> 2099[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1823 -> 2100[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1824 -> 1121[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1824[label="vxw60 < vxw63",fontsize=16,color="magenta"];1824 -> 2101[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1824 -> 2102[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1825 -> 1122[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1825[label="vxw60 < vxw63",fontsize=16,color="magenta"];1825 -> 2103[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1825 -> 2104[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1826 -> 1123[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1826[label="vxw60 < vxw63",fontsize=16,color="magenta"];1826 -> 2105[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1826 -> 2106[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1827 -> 1124[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1827[label="vxw60 < vxw63",fontsize=16,color="magenta"];1827 -> 2107[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1827 -> 2108[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1828 -> 1125[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1828[label="vxw60 < vxw63",fontsize=16,color="magenta"];1828 -> 2109[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1828 -> 2110[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1829[label="vxw60 == vxw63",fontsize=16,color="blue",shape="box"];3439[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3439[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3439 -> 2111[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3440[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3440[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3440 -> 2112[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3441[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3441[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3441 -> 2113[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3442[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3442[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3442 -> 2114[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3443[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3443[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3443 -> 2115[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3444[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3444[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3444 -> 2116[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3445[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3445[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3445 -> 2117[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3446[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3446[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3446 -> 2118[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3447[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3447[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3447 -> 2119[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3448[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3448[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3448 -> 2120[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3449[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3449[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3449 -> 2121[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3450[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3450[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3450 -> 2122[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3451[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3451[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3451 -> 2123[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3452[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3452[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3452 -> 2124[label="",style="solid", color="blue", weight=3]; 21.88/7.85 1830[label="vxw61 <= vxw64",fontsize=16,color="blue",shape="box"];3453[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3453[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3453 -> 2125[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3454[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3454[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3454 -> 2126[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3455[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3455[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3455 -> 2127[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3456[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3456[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3456 -> 2128[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3457[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3457[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3457 -> 2129[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3458[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3458[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3458 -> 2130[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3459[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3459[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3459 -> 2131[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3460[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3460[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3460 -> 2132[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3461[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3461[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3461 -> 2133[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3462[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3462[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3462 -> 2134[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3463[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3463[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3463 -> 2135[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3464[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3464[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3464 -> 2136[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3465[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3465[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3465 -> 2137[label="",style="solid", color="blue", weight=3]; 21.88/7.85 3466[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 3466[label="",style="solid", color="blue", weight=9]; 21.88/7.85 3466 -> 2138[label="",style="solid", color="blue", weight=3]; 21.88/7.85 1831[label="False || vxw158",fontsize=16,color="black",shape="box"];1831 -> 2139[label="",style="solid", color="black", weight=3]; 21.88/7.85 1832[label="True || vxw158",fontsize=16,color="black",shape="box"];1832 -> 2140[label="",style="solid", color="black", weight=3]; 21.88/7.85 1833[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) False",fontsize=16,color="black",shape="box"];1833 -> 2141[label="",style="solid", color="black", weight=3]; 21.88/7.85 1834[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) True",fontsize=16,color="black",shape="box"];1834 -> 2142[label="",style="solid", color="black", weight=3]; 21.88/7.85 1835[label="True",fontsize=16,color="green",shape="box"];1836 -> 2143[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1836[label="primPlusNat (primMulNat vxw400000 (Succ vxw30100)) (Succ vxw30100)",fontsize=16,color="magenta"];1836 -> 2144[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1837[label="Zero",fontsize=16,color="green",shape="box"];1838[label="Zero",fontsize=16,color="green",shape="box"];1839[label="Zero",fontsize=16,color="green",shape="box"];1840[label="GT",fontsize=16,color="green",shape="box"];1841[label="vxw81",fontsize=16,color="green",shape="box"];1842[label="vxw79",fontsize=16,color="green",shape="box"];1843[label="vxw81",fontsize=16,color="green",shape="box"];1844[label="vxw79",fontsize=16,color="green",shape="box"];1845[label="vxw81",fontsize=16,color="green",shape="box"];1846[label="vxw79",fontsize=16,color="green",shape="box"];1847[label="vxw81",fontsize=16,color="green",shape="box"];1848[label="vxw79",fontsize=16,color="green",shape="box"];1849[label="vxw81",fontsize=16,color="green",shape="box"];1850[label="vxw79",fontsize=16,color="green",shape="box"];1851[label="vxw81",fontsize=16,color="green",shape="box"];1852[label="vxw79",fontsize=16,color="green",shape="box"];1853[label="vxw81",fontsize=16,color="green",shape="box"];1854[label="vxw79",fontsize=16,color="green",shape="box"];1855[label="vxw81",fontsize=16,color="green",shape="box"];1856[label="vxw79",fontsize=16,color="green",shape="box"];1857[label="vxw81",fontsize=16,color="green",shape="box"];1858[label="vxw79",fontsize=16,color="green",shape="box"];1859[label="vxw81",fontsize=16,color="green",shape="box"];1860[label="vxw79",fontsize=16,color="green",shape="box"];1861[label="vxw81",fontsize=16,color="green",shape="box"];1862[label="vxw79",fontsize=16,color="green",shape="box"];1863[label="vxw81",fontsize=16,color="green",shape="box"];1864[label="vxw79",fontsize=16,color="green",shape="box"];1865[label="vxw81",fontsize=16,color="green",shape="box"];1866[label="vxw79",fontsize=16,color="green",shape="box"];1867[label="vxw81",fontsize=16,color="green",shape="box"];1868[label="vxw79",fontsize=16,color="green",shape="box"];1869[label="compare0 (vxw129,vxw130) (vxw131,vxw132) otherwise",fontsize=16,color="black",shape="box"];1869 -> 2145[label="",style="solid", color="black", weight=3]; 21.88/7.85 1870[label="LT",fontsize=16,color="green",shape="box"];1871 -> 1334[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1871[label="primEqNat vxw30000 vxw400000",fontsize=16,color="magenta"];1871 -> 2146[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1871 -> 2147[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1872[label="False",fontsize=16,color="green",shape="box"];1873[label="False",fontsize=16,color="green",shape="box"];1874[label="True",fontsize=16,color="green",shape="box"];1875[label="False",fontsize=16,color="green",shape="box"];1876[label="True",fontsize=16,color="green",shape="box"];1877 -> 1334[label="",style="dashed", color="red", weight=0]; 21.88/7.85 1877[label="primEqNat vxw30000 vxw400000",fontsize=16,color="magenta"];1877 -> 2148[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1877 -> 2149[label="",style="dashed", color="magenta", weight=3]; 21.88/7.85 1878[label="False",fontsize=16,color="green",shape="box"];1879[label="False",fontsize=16,color="green",shape="box"];1880[label="True",fontsize=16,color="green",shape="box"];1881[label="False",fontsize=16,color="green",shape="box"];1882[label="True",fontsize=16,color="green",shape="box"];1883[label="vxw3000",fontsize=16,color="green",shape="box"];1884[label="vxw40000",fontsize=16,color="green",shape="box"];1885[label="vxw3000",fontsize=16,color="green",shape="box"];1886[label="vxw40000",fontsize=16,color="green",shape="box"];1887[label="vxw3001",fontsize=16,color="green",shape="box"];1888[label="vxw40001",fontsize=16,color="green",shape="box"];1889[label="vxw3001",fontsize=16,color="green",shape="box"];1890[label="vxw40001",fontsize=16,color="green",shape="box"];1891[label="vxw3000",fontsize=16,color="green",shape="box"];1892[label="vxw40000",fontsize=16,color="green",shape="box"];1893[label="vxw3000",fontsize=16,color="green",shape="box"];1894[label="vxw40000",fontsize=16,color="green",shape="box"];1895[label="vxw3000",fontsize=16,color="green",shape="box"];1896[label="vxw40000",fontsize=16,color="green",shape="box"];1897[label="vxw3000",fontsize=16,color="green",shape="box"];1898[label="vxw40000",fontsize=16,color="green",shape="box"];1899[label="vxw3000",fontsize=16,color="green",shape="box"];1900[label="vxw40000",fontsize=16,color="green",shape="box"];1901[label="vxw3000",fontsize=16,color="green",shape="box"];1902[label="vxw40000",fontsize=16,color="green",shape="box"];1903[label="vxw3000",fontsize=16,color="green",shape="box"];1904[label="vxw40000",fontsize=16,color="green",shape="box"];1905[label="vxw3000",fontsize=16,color="green",shape="box"];1906[label="vxw40000",fontsize=16,color="green",shape="box"];1907[label="vxw3000",fontsize=16,color="green",shape="box"];1908[label="vxw40000",fontsize=16,color="green",shape="box"];1909[label="vxw3000",fontsize=16,color="green",shape="box"];1910[label="vxw40000",fontsize=16,color="green",shape="box"];1911[label="vxw3000",fontsize=16,color="green",shape="box"];1912[label="vxw40000",fontsize=16,color="green",shape="box"];1913[label="vxw3000",fontsize=16,color="green",shape="box"];1914[label="vxw40000",fontsize=16,color="green",shape="box"];1915[label="vxw3000",fontsize=16,color="green",shape="box"];1916[label="vxw40000",fontsize=16,color="green",shape="box"];1917[label="vxw3000",fontsize=16,color="green",shape="box"];1918[label="vxw40000",fontsize=16,color="green",shape="box"];1919[label="vxw3001",fontsize=16,color="green",shape="box"];1920[label="vxw40001",fontsize=16,color="green",shape="box"];1921[label="vxw3001",fontsize=16,color="green",shape="box"];1922[label="vxw40001",fontsize=16,color="green",shape="box"];1923[label="vxw3001",fontsize=16,color="green",shape="box"];1924[label="vxw40001",fontsize=16,color="green",shape="box"];1925[label="vxw3001",fontsize=16,color="green",shape="box"];1926[label="vxw40001",fontsize=16,color="green",shape="box"];1927[label="vxw3001",fontsize=16,color="green",shape="box"];1928[label="vxw40001",fontsize=16,color="green",shape="box"];1929[label="vxw3001",fontsize=16,color="green",shape="box"];1930[label="vxw40001",fontsize=16,color="green",shape="box"];1931[label="vxw3001",fontsize=16,color="green",shape="box"];1932[label="vxw40001",fontsize=16,color="green",shape="box"];1933[label="vxw3001",fontsize=16,color="green",shape="box"];1934[label="vxw40001",fontsize=16,color="green",shape="box"];1935[label="vxw3001",fontsize=16,color="green",shape="box"];1936[label="vxw40001",fontsize=16,color="green",shape="box"];1937[label="vxw3001",fontsize=16,color="green",shape="box"];1938[label="vxw40001",fontsize=16,color="green",shape="box"];1939[label="vxw3001",fontsize=16,color="green",shape="box"];1940[label="vxw40001",fontsize=16,color="green",shape="box"];1941[label="vxw3001",fontsize=16,color="green",shape="box"];1942[label="vxw40001",fontsize=16,color="green",shape="box"];1943[label="vxw3001",fontsize=16,color="green",shape="box"];1944[label="vxw40001",fontsize=16,color="green",shape="box"];1945[label="vxw3001",fontsize=16,color="green",shape="box"];1946[label="vxw40001",fontsize=16,color="green",shape="box"];1947[label="vxw40001",fontsize=16,color="green",shape="box"];1948[label="vxw3000",fontsize=16,color="green",shape="box"];1949[label="vxw40000",fontsize=16,color="green",shape="box"];1950[label="vxw3001",fontsize=16,color="green",shape="box"];1951[label="vxw3000",fontsize=16,color="green",shape="box"];1952[label="vxw40000",fontsize=16,color="green",shape="box"];1953[label="vxw3000",fontsize=16,color="green",shape="box"];1954[label="vxw40000",fontsize=16,color="green",shape="box"];1955[label="vxw3000",fontsize=16,color="green",shape="box"];1956[label="vxw40000",fontsize=16,color="green",shape="box"];1957[label="vxw3000",fontsize=16,color="green",shape="box"];1958[label="vxw40000",fontsize=16,color="green",shape="box"];1959[label="vxw3000",fontsize=16,color="green",shape="box"];1960[label="vxw40000",fontsize=16,color="green",shape="box"];1961[label="vxw3000",fontsize=16,color="green",shape="box"];1962[label="vxw40000",fontsize=16,color="green",shape="box"];1963[label="vxw3000",fontsize=16,color="green",shape="box"];1964[label="vxw40000",fontsize=16,color="green",shape="box"];1965[label="vxw3000",fontsize=16,color="green",shape="box"];1966[label="vxw40000",fontsize=16,color="green",shape="box"];1967[label="vxw3000",fontsize=16,color="green",shape="box"];1968[label="vxw40000",fontsize=16,color="green",shape="box"];1969[label="vxw3000",fontsize=16,color="green",shape="box"];1970[label="vxw40000",fontsize=16,color="green",shape="box"];1971[label="vxw3000",fontsize=16,color="green",shape="box"];1972[label="vxw40000",fontsize=16,color="green",shape="box"];1973[label="vxw3000",fontsize=16,color="green",shape="box"];1974[label="vxw40000",fontsize=16,color="green",shape="box"];1975[label="vxw3000",fontsize=16,color="green",shape="box"];1976[label="vxw40000",fontsize=16,color="green",shape="box"];1977[label="vxw3000",fontsize=16,color="green",shape="box"];1978[label="vxw40000",fontsize=16,color="green",shape="box"];1979 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1979[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1979 -> 2150[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1979 -> 2151[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1980 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1980[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1980 -> 2152[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1980 -> 2153[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1981 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1981[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1981 -> 2154[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1981 -> 2155[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1982 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1982[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1982 -> 2156[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1982 -> 2157[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1983 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1983[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1983 -> 2158[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1983 -> 2159[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1984 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1984[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1984 -> 2160[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1984 -> 2161[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1985 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1985[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1985 -> 2162[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1985 -> 2163[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1986 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1986[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1986 -> 2164[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1986 -> 2165[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1987 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1987[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1987 -> 2166[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1987 -> 2167[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1988 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1988[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1988 -> 2168[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1988 -> 2169[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1989 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1989[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1989 -> 2170[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1989 -> 2171[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1990 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1990[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1990 -> 2172[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1990 -> 2173[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1991 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1991[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1991 -> 2174[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1991 -> 2175[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1992 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1992[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1992 -> 2176[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1992 -> 2177[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1993 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1993[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1993 -> 2178[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1993 -> 2179[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1994 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1994[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1994 -> 2180[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1994 -> 2181[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1995 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1995[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1995 -> 2182[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1995 -> 2183[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1996 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1996[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1996 -> 2184[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1996 -> 2185[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1997 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1997[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1997 -> 2186[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1997 -> 2187[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1998 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1998[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1998 -> 2188[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1998 -> 2189[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1999 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.86 1999[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1999 -> 2190[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 1999 -> 2191[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2000 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2000[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];2000 -> 2192[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2000 -> 2193[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2001 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2001[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];2001 -> 2194[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2001 -> 2195[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2002 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2002[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];2002 -> 2196[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2002 -> 2197[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2003 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2003[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];2003 -> 2198[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2003 -> 2199[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2004 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2004[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];2004 -> 2200[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2004 -> 2201[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2005 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2005[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];2005 -> 2202[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2005 -> 2203[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2006 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2006[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];2006 -> 2204[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2006 -> 2205[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2007[label="vxw3000",fontsize=16,color="green",shape="box"];2008[label="vxw40000",fontsize=16,color="green",shape="box"];2009[label="vxw3000",fontsize=16,color="green",shape="box"];2010[label="vxw40000",fontsize=16,color="green",shape="box"];2011[label="vxw3000",fontsize=16,color="green",shape="box"];2012[label="vxw40000",fontsize=16,color="green",shape="box"];2013[label="vxw3000",fontsize=16,color="green",shape="box"];2014[label="vxw40000",fontsize=16,color="green",shape="box"];2015[label="vxw3000",fontsize=16,color="green",shape="box"];2016[label="vxw40000",fontsize=16,color="green",shape="box"];2017[label="vxw3000",fontsize=16,color="green",shape="box"];2018[label="vxw40000",fontsize=16,color="green",shape="box"];2019[label="vxw3000",fontsize=16,color="green",shape="box"];2020[label="vxw40000",fontsize=16,color="green",shape="box"];2021[label="vxw3000",fontsize=16,color="green",shape="box"];2022[label="vxw40000",fontsize=16,color="green",shape="box"];2023[label="vxw3000",fontsize=16,color="green",shape="box"];2024[label="vxw40000",fontsize=16,color="green",shape="box"];2025[label="vxw3000",fontsize=16,color="green",shape="box"];2026[label="vxw40000",fontsize=16,color="green",shape="box"];2027[label="vxw3000",fontsize=16,color="green",shape="box"];2028[label="vxw40000",fontsize=16,color="green",shape="box"];2029[label="vxw3000",fontsize=16,color="green",shape="box"];2030[label="vxw40000",fontsize=16,color="green",shape="box"];2031[label="vxw3000",fontsize=16,color="green",shape="box"];2032[label="vxw40000",fontsize=16,color="green",shape="box"];2033[label="vxw3000",fontsize=16,color="green",shape="box"];2034[label="vxw40000",fontsize=16,color="green",shape="box"];2035[label="vxw40001",fontsize=16,color="green",shape="box"];2036[label="vxw3000",fontsize=16,color="green",shape="box"];2037[label="vxw40000",fontsize=16,color="green",shape="box"];2038[label="vxw3001",fontsize=16,color="green",shape="box"];2039[label="primEqNat (Succ vxw30000) (Succ vxw400000)",fontsize=16,color="black",shape="box"];2039 -> 2206[label="",style="solid", color="black", weight=3]; 21.88/7.86 2040[label="primEqNat (Succ vxw30000) Zero",fontsize=16,color="black",shape="box"];2040 -> 2207[label="",style="solid", color="black", weight=3]; 21.88/7.86 2041[label="primEqNat Zero (Succ vxw400000)",fontsize=16,color="black",shape="box"];2041 -> 2208[label="",style="solid", color="black", weight=3]; 21.88/7.86 2042[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2042 -> 2209[label="",style="solid", color="black", weight=3]; 21.88/7.86 2043[label="True",fontsize=16,color="green",shape="box"];2044[label="True",fontsize=16,color="green",shape="box"];2045[label="False",fontsize=16,color="green",shape="box"];2046[label="True",fontsize=16,color="green",shape="box"];2047[label="vxw42",fontsize=16,color="green",shape="box"];2048[label="vxw41",fontsize=16,color="green",shape="box"];2049 -> 2210[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2049[label="not (vxw153 == GT)",fontsize=16,color="magenta"];2049 -> 2211[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2050[label="True",fontsize=16,color="green",shape="box"];2051[label="True",fontsize=16,color="green",shape="box"];2052[label="True",fontsize=16,color="green",shape="box"];2053[label="False",fontsize=16,color="green",shape="box"];2054[label="True",fontsize=16,color="green",shape="box"];2055[label="True",fontsize=16,color="green",shape="box"];2056[label="False",fontsize=16,color="green",shape="box"];2057[label="False",fontsize=16,color="green",shape="box"];2058[label="True",fontsize=16,color="green",shape="box"];2059[label="vxw42",fontsize=16,color="green",shape="box"];2060[label="vxw41",fontsize=16,color="green",shape="box"];2061 -> 1810[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2061[label="vxw410 < vxw420 || vxw410 == vxw420 && vxw411 <= vxw421",fontsize=16,color="magenta"];2061 -> 2212[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2061 -> 2213[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2062[label="vxw410 <= vxw420",fontsize=16,color="blue",shape="box"];3467[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3467[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3467 -> 2214[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3468[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3468[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3468 -> 2215[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3469[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3469[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3469 -> 2216[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3470[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3470[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3470 -> 2217[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3471[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3471[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3471 -> 2218[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3472[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3472[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3472 -> 2219[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3473[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3473[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3473 -> 2220[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3474[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3474[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3474 -> 2221[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3475[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3475[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3475 -> 2222[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3476[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3476[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3476 -> 2223[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3477[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3477[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3477 -> 2224[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3478[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3478[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3478 -> 2225[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3479[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3479[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3479 -> 2226[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3480[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2062 -> 3480[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3480 -> 2227[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2063[label="True",fontsize=16,color="green",shape="box"];2064[label="False",fontsize=16,color="green",shape="box"];2065[label="vxw410 <= vxw420",fontsize=16,color="blue",shape="box"];3481[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3481[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3481 -> 2228[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3482[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3482[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3482 -> 2229[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3483[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3483[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3483 -> 2230[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3484[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3484[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3484 -> 2231[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3485[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3485[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3485 -> 2232[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3486[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3486[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3486 -> 2233[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3487[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3487[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3487 -> 2234[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3488[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3488[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3488 -> 2235[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3489[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3489[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3489 -> 2236[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3490[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3490[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3490 -> 2237[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3491[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3491[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3491 -> 2238[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3492[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3492[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3492 -> 2239[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3493[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3493[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3493 -> 2240[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3494[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2065 -> 3494[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3494 -> 2241[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2066 -> 1810[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2066[label="vxw410 < vxw420 || vxw410 == vxw420 && (vxw411 < vxw421 || vxw411 == vxw421 && vxw412 <= vxw422)",fontsize=16,color="magenta"];2066 -> 2242[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2066 -> 2243[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2067[label="vxw42",fontsize=16,color="green",shape="box"];2068[label="vxw41",fontsize=16,color="green",shape="box"];2069[label="vxw42",fontsize=16,color="green",shape="box"];2070[label="vxw41",fontsize=16,color="green",shape="box"];2071[label="vxw42",fontsize=16,color="green",shape="box"];2072[label="vxw41",fontsize=16,color="green",shape="box"];2073[label="vxw42",fontsize=16,color="green",shape="box"];2074[label="vxw41",fontsize=16,color="green",shape="box"];2075[label="True",fontsize=16,color="green",shape="box"];2076[label="True",fontsize=16,color="green",shape="box"];2077[label="False",fontsize=16,color="green",shape="box"];2078[label="vxw410 <= vxw420",fontsize=16,color="blue",shape="box"];3495[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3495[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3495 -> 2244[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3496[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3496[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3496 -> 2245[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3497[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3497[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3497 -> 2246[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3498[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3498[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3498 -> 2247[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3499[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3499[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3499 -> 2248[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3500[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3500[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3500 -> 2249[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3501[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3501[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3501 -> 2250[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3502[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3502[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3502 -> 2251[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3503[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3503[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3503 -> 2252[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3504[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3504[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3504 -> 2253[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3505[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3505[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3505 -> 2254[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3506[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3506[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3506 -> 2255[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3507[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3507[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3507 -> 2256[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3508[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2078 -> 3508[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3508 -> 2257[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2079[label="vxw42",fontsize=16,color="green",shape="box"];2080[label="vxw41",fontsize=16,color="green",shape="box"];2081[label="vxw42",fontsize=16,color="green",shape="box"];2082[label="vxw41",fontsize=16,color="green",shape="box"];2083[label="vxw63",fontsize=16,color="green",shape="box"];2084[label="vxw60",fontsize=16,color="green",shape="box"];2085[label="vxw63",fontsize=16,color="green",shape="box"];2086[label="vxw60",fontsize=16,color="green",shape="box"];2087[label="vxw63",fontsize=16,color="green",shape="box"];2088[label="vxw60",fontsize=16,color="green",shape="box"];2089[label="vxw63",fontsize=16,color="green",shape="box"];2090[label="vxw60",fontsize=16,color="green",shape="box"];2091[label="vxw63",fontsize=16,color="green",shape="box"];2092[label="vxw60",fontsize=16,color="green",shape="box"];2093[label="vxw63",fontsize=16,color="green",shape="box"];2094[label="vxw60",fontsize=16,color="green",shape="box"];2095[label="vxw63",fontsize=16,color="green",shape="box"];2096[label="vxw60",fontsize=16,color="green",shape="box"];2097[label="vxw63",fontsize=16,color="green",shape="box"];2098[label="vxw60",fontsize=16,color="green",shape="box"];2099[label="vxw63",fontsize=16,color="green",shape="box"];2100[label="vxw60",fontsize=16,color="green",shape="box"];2101[label="vxw63",fontsize=16,color="green",shape="box"];2102[label="vxw60",fontsize=16,color="green",shape="box"];2103[label="vxw63",fontsize=16,color="green",shape="box"];2104[label="vxw60",fontsize=16,color="green",shape="box"];2105[label="vxw63",fontsize=16,color="green",shape="box"];2106[label="vxw60",fontsize=16,color="green",shape="box"];2107[label="vxw63",fontsize=16,color="green",shape="box"];2108[label="vxw60",fontsize=16,color="green",shape="box"];2109[label="vxw63",fontsize=16,color="green",shape="box"];2110[label="vxw60",fontsize=16,color="green",shape="box"];2111 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2111[label="vxw60 == vxw63",fontsize=16,color="magenta"];2111 -> 2258[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2111 -> 2259[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2112 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2112[label="vxw60 == vxw63",fontsize=16,color="magenta"];2112 -> 2260[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2112 -> 2261[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2113 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2113[label="vxw60 == vxw63",fontsize=16,color="magenta"];2113 -> 2262[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2113 -> 2263[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2114 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2114[label="vxw60 == vxw63",fontsize=16,color="magenta"];2114 -> 2264[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2114 -> 2265[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2115 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2115[label="vxw60 == vxw63",fontsize=16,color="magenta"];2115 -> 2266[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2115 -> 2267[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2116 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2116[label="vxw60 == vxw63",fontsize=16,color="magenta"];2116 -> 2268[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2116 -> 2269[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2117 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2117[label="vxw60 == vxw63",fontsize=16,color="magenta"];2117 -> 2270[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2117 -> 2271[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2118 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2118[label="vxw60 == vxw63",fontsize=16,color="magenta"];2118 -> 2272[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2118 -> 2273[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2119 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2119[label="vxw60 == vxw63",fontsize=16,color="magenta"];2119 -> 2274[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2119 -> 2275[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2120 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2120[label="vxw60 == vxw63",fontsize=16,color="magenta"];2120 -> 2276[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2120 -> 2277[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2121 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2121[label="vxw60 == vxw63",fontsize=16,color="magenta"];2121 -> 2278[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2121 -> 2279[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2122 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2122[label="vxw60 == vxw63",fontsize=16,color="magenta"];2122 -> 2280[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2122 -> 2281[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2123 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2123[label="vxw60 == vxw63",fontsize=16,color="magenta"];2123 -> 2282[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2123 -> 2283[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2124 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2124[label="vxw60 == vxw63",fontsize=16,color="magenta"];2124 -> 2284[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2124 -> 2285[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2125 -> 1165[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2125[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2125 -> 2286[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2125 -> 2287[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2126 -> 1166[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2126[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2126 -> 2288[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2126 -> 2289[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2127 -> 1167[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2127[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2127 -> 2290[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2127 -> 2291[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2128 -> 1168[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2128[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2128 -> 2292[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2128 -> 2293[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2129 -> 1169[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2129[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2129 -> 2294[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2129 -> 2295[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2130 -> 1170[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2130[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2130 -> 2296[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2130 -> 2297[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2131 -> 1171[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2131[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2131 -> 2298[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2131 -> 2299[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2132 -> 1172[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2132[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2132 -> 2300[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2132 -> 2301[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2133 -> 1173[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2133[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2133 -> 2302[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2133 -> 2303[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2134 -> 1174[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2134[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2134 -> 2304[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2134 -> 2305[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2135 -> 1175[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2135[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2135 -> 2306[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2135 -> 2307[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2136 -> 1176[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2136[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2136 -> 2308[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2136 -> 2309[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2137 -> 1177[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2137[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2137 -> 2310[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2137 -> 2311[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2138 -> 1178[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2138[label="vxw61 <= vxw64",fontsize=16,color="magenta"];2138 -> 2312[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2138 -> 2313[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2139[label="vxw158",fontsize=16,color="green",shape="box"];2140[label="True",fontsize=16,color="green",shape="box"];2141[label="compare0 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) otherwise",fontsize=16,color="black",shape="box"];2141 -> 2314[label="",style="solid", color="black", weight=3]; 21.88/7.86 2142[label="LT",fontsize=16,color="green",shape="box"];2144 -> 1078[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2144[label="primMulNat vxw400000 (Succ vxw30100)",fontsize=16,color="magenta"];2144 -> 2315[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2144 -> 2316[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2143[label="primPlusNat vxw159 (Succ vxw30100)",fontsize=16,color="burlywood",shape="triangle"];3509[label="vxw159/Succ vxw1590",fontsize=10,color="white",style="solid",shape="box"];2143 -> 3509[label="",style="solid", color="burlywood", weight=9]; 21.88/7.86 3509 -> 2317[label="",style="solid", color="burlywood", weight=3]; 21.88/7.86 3510[label="vxw159/Zero",fontsize=10,color="white",style="solid",shape="box"];2143 -> 3510[label="",style="solid", color="burlywood", weight=9]; 21.88/7.86 3510 -> 2318[label="",style="solid", color="burlywood", weight=3]; 21.88/7.86 2145[label="compare0 (vxw129,vxw130) (vxw131,vxw132) True",fontsize=16,color="black",shape="box"];2145 -> 2319[label="",style="solid", color="black", weight=3]; 21.88/7.86 2146[label="vxw400000",fontsize=16,color="green",shape="box"];2147[label="vxw30000",fontsize=16,color="green",shape="box"];2148[label="vxw400000",fontsize=16,color="green",shape="box"];2149[label="vxw30000",fontsize=16,color="green",shape="box"];2150[label="vxw3001",fontsize=16,color="green",shape="box"];2151[label="vxw40001",fontsize=16,color="green",shape="box"];2152[label="vxw3001",fontsize=16,color="green",shape="box"];2153[label="vxw40001",fontsize=16,color="green",shape="box"];2154[label="vxw3001",fontsize=16,color="green",shape="box"];2155[label="vxw40001",fontsize=16,color="green",shape="box"];2156[label="vxw3001",fontsize=16,color="green",shape="box"];2157[label="vxw40001",fontsize=16,color="green",shape="box"];2158[label="vxw3001",fontsize=16,color="green",shape="box"];2159[label="vxw40001",fontsize=16,color="green",shape="box"];2160[label="vxw3001",fontsize=16,color="green",shape="box"];2161[label="vxw40001",fontsize=16,color="green",shape="box"];2162[label="vxw3001",fontsize=16,color="green",shape="box"];2163[label="vxw40001",fontsize=16,color="green",shape="box"];2164[label="vxw3001",fontsize=16,color="green",shape="box"];2165[label="vxw40001",fontsize=16,color="green",shape="box"];2166[label="vxw3001",fontsize=16,color="green",shape="box"];2167[label="vxw40001",fontsize=16,color="green",shape="box"];2168[label="vxw3001",fontsize=16,color="green",shape="box"];2169[label="vxw40001",fontsize=16,color="green",shape="box"];2170[label="vxw3001",fontsize=16,color="green",shape="box"];2171[label="vxw40001",fontsize=16,color="green",shape="box"];2172[label="vxw3001",fontsize=16,color="green",shape="box"];2173[label="vxw40001",fontsize=16,color="green",shape="box"];2174[label="vxw3001",fontsize=16,color="green",shape="box"];2175[label="vxw40001",fontsize=16,color="green",shape="box"];2176[label="vxw3001",fontsize=16,color="green",shape="box"];2177[label="vxw40001",fontsize=16,color="green",shape="box"];2178[label="vxw3002",fontsize=16,color="green",shape="box"];2179[label="vxw40002",fontsize=16,color="green",shape="box"];2180[label="vxw3002",fontsize=16,color="green",shape="box"];2181[label="vxw40002",fontsize=16,color="green",shape="box"];2182[label="vxw3002",fontsize=16,color="green",shape="box"];2183[label="vxw40002",fontsize=16,color="green",shape="box"];2184[label="vxw3002",fontsize=16,color="green",shape="box"];2185[label="vxw40002",fontsize=16,color="green",shape="box"];2186[label="vxw3002",fontsize=16,color="green",shape="box"];2187[label="vxw40002",fontsize=16,color="green",shape="box"];2188[label="vxw3002",fontsize=16,color="green",shape="box"];2189[label="vxw40002",fontsize=16,color="green",shape="box"];2190[label="vxw3002",fontsize=16,color="green",shape="box"];2191[label="vxw40002",fontsize=16,color="green",shape="box"];2192[label="vxw3002",fontsize=16,color="green",shape="box"];2193[label="vxw40002",fontsize=16,color="green",shape="box"];2194[label="vxw3002",fontsize=16,color="green",shape="box"];2195[label="vxw40002",fontsize=16,color="green",shape="box"];2196[label="vxw3002",fontsize=16,color="green",shape="box"];2197[label="vxw40002",fontsize=16,color="green",shape="box"];2198[label="vxw3002",fontsize=16,color="green",shape="box"];2199[label="vxw40002",fontsize=16,color="green",shape="box"];2200[label="vxw3002",fontsize=16,color="green",shape="box"];2201[label="vxw40002",fontsize=16,color="green",shape="box"];2202[label="vxw3002",fontsize=16,color="green",shape="box"];2203[label="vxw40002",fontsize=16,color="green",shape="box"];2204[label="vxw3002",fontsize=16,color="green",shape="box"];2205[label="vxw40002",fontsize=16,color="green",shape="box"];2206 -> 1334[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2206[label="primEqNat vxw30000 vxw400000",fontsize=16,color="magenta"];2206 -> 2320[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2206 -> 2321[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2207[label="False",fontsize=16,color="green",shape="box"];2208[label="False",fontsize=16,color="green",shape="box"];2209[label="True",fontsize=16,color="green",shape="box"];2211 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2211[label="vxw153 == GT",fontsize=16,color="magenta"];2211 -> 2322[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2211 -> 2323[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2210[label="not vxw160",fontsize=16,color="burlywood",shape="triangle"];3511[label="vxw160/False",fontsize=10,color="white",style="solid",shape="box"];2210 -> 3511[label="",style="solid", color="burlywood", weight=9]; 21.88/7.86 3511 -> 2324[label="",style="solid", color="burlywood", weight=3]; 21.88/7.86 3512[label="vxw160/True",fontsize=10,color="white",style="solid",shape="box"];2210 -> 3512[label="",style="solid", color="burlywood", weight=9]; 21.88/7.86 3512 -> 2325[label="",style="solid", color="burlywood", weight=3]; 21.88/7.86 2212[label="vxw410 < vxw420",fontsize=16,color="blue",shape="box"];3513[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3513[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3513 -> 2326[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3514[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3514[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3514 -> 2327[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3515[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3515[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3515 -> 2328[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3516[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3516[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3516 -> 2329[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3517[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3517[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3517 -> 2330[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3518[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3518[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3518 -> 2331[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3519[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3519[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3519 -> 2332[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3520[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3520[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3520 -> 2333[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3521[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3521[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3521 -> 2334[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3522[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3522[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3522 -> 2335[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3523[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3523[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3523 -> 2336[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3524[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3524[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3524 -> 2337[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3525[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3525[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3525 -> 2338[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3526[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3526[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3526 -> 2339[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2213 -> 839[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2213[label="vxw410 == vxw420 && vxw411 <= vxw421",fontsize=16,color="magenta"];2213 -> 2340[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2213 -> 2341[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2214 -> 1165[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2214[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2214 -> 2342[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2214 -> 2343[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2215 -> 1166[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2215[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2215 -> 2344[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2215 -> 2345[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2216 -> 1167[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2216[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2216 -> 2346[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2216 -> 2347[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2217 -> 1168[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2217[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2217 -> 2348[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2217 -> 2349[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2218 -> 1169[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2218[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2218 -> 2350[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2218 -> 2351[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2219 -> 1170[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2219[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2219 -> 2352[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2219 -> 2353[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2220 -> 1171[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2220[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2220 -> 2354[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2220 -> 2355[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2221 -> 1172[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2221[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2221 -> 2356[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2221 -> 2357[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2222 -> 1173[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2222[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2222 -> 2358[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2222 -> 2359[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2223 -> 1174[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2223[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2223 -> 2360[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2223 -> 2361[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2224 -> 1175[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2224[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2224 -> 2362[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2224 -> 2363[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2225 -> 1176[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2225[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2225 -> 2364[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2225 -> 2365[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2226 -> 1177[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2226[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2226 -> 2366[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2226 -> 2367[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2227 -> 1178[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2227[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2227 -> 2368[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2227 -> 2369[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2228 -> 1165[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2228[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2228 -> 2370[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2228 -> 2371[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2229 -> 1166[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2229[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2229 -> 2372[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2229 -> 2373[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2230 -> 1167[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2230[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2230 -> 2374[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2230 -> 2375[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2231 -> 1168[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2231[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2231 -> 2376[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2231 -> 2377[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2232 -> 1169[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2232[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2232 -> 2378[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2232 -> 2379[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2233 -> 1170[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2233[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2233 -> 2380[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2233 -> 2381[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2234 -> 1171[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2234[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2234 -> 2382[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2234 -> 2383[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2235 -> 1172[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2235[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2235 -> 2384[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2235 -> 2385[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2236 -> 1173[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2236[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2236 -> 2386[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2236 -> 2387[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2237 -> 1174[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2237[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2237 -> 2388[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2237 -> 2389[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2238 -> 1175[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2238[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2238 -> 2390[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2238 -> 2391[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2239 -> 1176[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2239[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2239 -> 2392[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2239 -> 2393[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2240 -> 1177[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2240[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2240 -> 2394[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2240 -> 2395[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2241 -> 1178[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2241[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2241 -> 2396[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2241 -> 2397[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2242[label="vxw410 < vxw420",fontsize=16,color="blue",shape="box"];3527[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3527[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3527 -> 2398[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3528[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3528[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3528 -> 2399[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3529[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3529[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3529 -> 2400[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3530[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3530[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3530 -> 2401[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3531[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3531[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3531 -> 2402[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3532[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3532[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3532 -> 2403[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3533[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3533[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3533 -> 2404[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3534[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3534[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3534 -> 2405[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3535[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3535[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3535 -> 2406[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3536[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3536[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3536 -> 2407[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3537[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3537[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3537 -> 2408[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3538[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3538[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3538 -> 2409[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3539[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3539[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3539 -> 2410[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3540[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3540[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3540 -> 2411[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2243 -> 839[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2243[label="vxw410 == vxw420 && (vxw411 < vxw421 || vxw411 == vxw421 && vxw412 <= vxw422)",fontsize=16,color="magenta"];2243 -> 2412[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2243 -> 2413[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2244 -> 1165[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2244[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2244 -> 2414[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2244 -> 2415[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2245 -> 1166[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2245[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2245 -> 2416[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2245 -> 2417[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2246 -> 1167[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2246[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2246 -> 2418[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2246 -> 2419[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2247 -> 1168[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2247[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2247 -> 2420[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2247 -> 2421[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2248 -> 1169[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2248[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2248 -> 2422[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2248 -> 2423[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2249 -> 1170[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2249[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2249 -> 2424[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2249 -> 2425[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2250 -> 1171[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2250[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2250 -> 2426[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2250 -> 2427[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2251 -> 1172[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2251[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2251 -> 2428[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2251 -> 2429[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2252 -> 1173[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2252[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2252 -> 2430[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2252 -> 2431[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2253 -> 1174[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2253[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2253 -> 2432[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2253 -> 2433[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2254 -> 1175[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2254[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2254 -> 2434[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2254 -> 2435[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2255 -> 1176[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2255[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2255 -> 2436[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2255 -> 2437[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2256 -> 1177[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2256[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2256 -> 2438[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2256 -> 2439[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2257 -> 1178[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2257[label="vxw410 <= vxw420",fontsize=16,color="magenta"];2257 -> 2440[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2257 -> 2441[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2258[label="vxw60",fontsize=16,color="green",shape="box"];2259[label="vxw63",fontsize=16,color="green",shape="box"];2260[label="vxw60",fontsize=16,color="green",shape="box"];2261[label="vxw63",fontsize=16,color="green",shape="box"];2262[label="vxw60",fontsize=16,color="green",shape="box"];2263[label="vxw63",fontsize=16,color="green",shape="box"];2264[label="vxw60",fontsize=16,color="green",shape="box"];2265[label="vxw63",fontsize=16,color="green",shape="box"];2266[label="vxw60",fontsize=16,color="green",shape="box"];2267[label="vxw63",fontsize=16,color="green",shape="box"];2268[label="vxw60",fontsize=16,color="green",shape="box"];2269[label="vxw63",fontsize=16,color="green",shape="box"];2270[label="vxw60",fontsize=16,color="green",shape="box"];2271[label="vxw63",fontsize=16,color="green",shape="box"];2272[label="vxw60",fontsize=16,color="green",shape="box"];2273[label="vxw63",fontsize=16,color="green",shape="box"];2274[label="vxw60",fontsize=16,color="green",shape="box"];2275[label="vxw63",fontsize=16,color="green",shape="box"];2276[label="vxw60",fontsize=16,color="green",shape="box"];2277[label="vxw63",fontsize=16,color="green",shape="box"];2278[label="vxw60",fontsize=16,color="green",shape="box"];2279[label="vxw63",fontsize=16,color="green",shape="box"];2280[label="vxw60",fontsize=16,color="green",shape="box"];2281[label="vxw63",fontsize=16,color="green",shape="box"];2282[label="vxw60",fontsize=16,color="green",shape="box"];2283[label="vxw63",fontsize=16,color="green",shape="box"];2284[label="vxw60",fontsize=16,color="green",shape="box"];2285[label="vxw63",fontsize=16,color="green",shape="box"];2286[label="vxw61",fontsize=16,color="green",shape="box"];2287[label="vxw64",fontsize=16,color="green",shape="box"];2288[label="vxw61",fontsize=16,color="green",shape="box"];2289[label="vxw64",fontsize=16,color="green",shape="box"];2290[label="vxw61",fontsize=16,color="green",shape="box"];2291[label="vxw64",fontsize=16,color="green",shape="box"];2292[label="vxw61",fontsize=16,color="green",shape="box"];2293[label="vxw64",fontsize=16,color="green",shape="box"];2294[label="vxw61",fontsize=16,color="green",shape="box"];2295[label="vxw64",fontsize=16,color="green",shape="box"];2296[label="vxw61",fontsize=16,color="green",shape="box"];2297[label="vxw64",fontsize=16,color="green",shape="box"];2298[label="vxw61",fontsize=16,color="green",shape="box"];2299[label="vxw64",fontsize=16,color="green",shape="box"];2300[label="vxw61",fontsize=16,color="green",shape="box"];2301[label="vxw64",fontsize=16,color="green",shape="box"];2302[label="vxw61",fontsize=16,color="green",shape="box"];2303[label="vxw64",fontsize=16,color="green",shape="box"];2304[label="vxw61",fontsize=16,color="green",shape="box"];2305[label="vxw64",fontsize=16,color="green",shape="box"];2306[label="vxw61",fontsize=16,color="green",shape="box"];2307[label="vxw64",fontsize=16,color="green",shape="box"];2308[label="vxw61",fontsize=16,color="green",shape="box"];2309[label="vxw64",fontsize=16,color="green",shape="box"];2310[label="vxw61",fontsize=16,color="green",shape="box"];2311[label="vxw64",fontsize=16,color="green",shape="box"];2312[label="vxw61",fontsize=16,color="green",shape="box"];2313[label="vxw64",fontsize=16,color="green",shape="box"];2314[label="compare0 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) True",fontsize=16,color="black",shape="box"];2314 -> 2442[label="",style="solid", color="black", weight=3]; 21.88/7.86 2315[label="Succ vxw30100",fontsize=16,color="green",shape="box"];2316[label="vxw400000",fontsize=16,color="green",shape="box"];2317[label="primPlusNat (Succ vxw1590) (Succ vxw30100)",fontsize=16,color="black",shape="box"];2317 -> 2443[label="",style="solid", color="black", weight=3]; 21.88/7.86 2318[label="primPlusNat Zero (Succ vxw30100)",fontsize=16,color="black",shape="box"];2318 -> 2444[label="",style="solid", color="black", weight=3]; 21.88/7.86 2319[label="GT",fontsize=16,color="green",shape="box"];2320[label="vxw400000",fontsize=16,color="green",shape="box"];2321[label="vxw30000",fontsize=16,color="green",shape="box"];2322[label="vxw153",fontsize=16,color="green",shape="box"];2323[label="GT",fontsize=16,color="green",shape="box"];2324[label="not False",fontsize=16,color="black",shape="box"];2324 -> 2445[label="",style="solid", color="black", weight=3]; 21.88/7.86 2325[label="not True",fontsize=16,color="black",shape="box"];2325 -> 2446[label="",style="solid", color="black", weight=3]; 21.88/7.86 2326 -> 1112[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2326[label="vxw410 < vxw420",fontsize=16,color="magenta"];2326 -> 2447[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2326 -> 2448[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2327 -> 1113[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2327[label="vxw410 < vxw420",fontsize=16,color="magenta"];2327 -> 2449[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2327 -> 2450[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2328 -> 1114[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2328[label="vxw410 < vxw420",fontsize=16,color="magenta"];2328 -> 2451[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2328 -> 2452[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2329 -> 1115[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2329[label="vxw410 < vxw420",fontsize=16,color="magenta"];2329 -> 2453[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2329 -> 2454[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2330 -> 1116[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2330[label="vxw410 < vxw420",fontsize=16,color="magenta"];2330 -> 2455[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2330 -> 2456[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2331 -> 1117[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2331[label="vxw410 < vxw420",fontsize=16,color="magenta"];2331 -> 2457[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2331 -> 2458[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2332 -> 1118[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2332[label="vxw410 < vxw420",fontsize=16,color="magenta"];2332 -> 2459[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2332 -> 2460[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2333 -> 1119[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2333[label="vxw410 < vxw420",fontsize=16,color="magenta"];2333 -> 2461[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2333 -> 2462[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2334 -> 1120[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2334[label="vxw410 < vxw420",fontsize=16,color="magenta"];2334 -> 2463[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2334 -> 2464[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2335 -> 1121[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2335[label="vxw410 < vxw420",fontsize=16,color="magenta"];2335 -> 2465[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2335 -> 2466[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2336 -> 1122[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2336[label="vxw410 < vxw420",fontsize=16,color="magenta"];2336 -> 2467[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2336 -> 2468[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2337 -> 1123[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2337[label="vxw410 < vxw420",fontsize=16,color="magenta"];2337 -> 2469[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2337 -> 2470[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2338 -> 1124[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2338[label="vxw410 < vxw420",fontsize=16,color="magenta"];2338 -> 2471[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2338 -> 2472[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2339 -> 1125[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2339[label="vxw410 < vxw420",fontsize=16,color="magenta"];2339 -> 2473[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2339 -> 2474[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2340[label="vxw410 == vxw420",fontsize=16,color="blue",shape="box"];3541[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3541[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3541 -> 2475[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3542[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3542[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3542 -> 2476[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3543[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3543[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3543 -> 2477[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3544[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3544[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3544 -> 2478[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3545[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3545[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3545 -> 2479[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3546[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3546[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3546 -> 2480[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3547[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3547[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3547 -> 2481[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3548[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3548[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3548 -> 2482[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3549[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3549[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3549 -> 2483[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3550[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3550[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3550 -> 2484[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3551[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3551[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3551 -> 2485[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3552[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3552[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3552 -> 2486[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3553[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3553[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3553 -> 2487[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3554[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3554[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3554 -> 2488[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2341[label="vxw411 <= vxw421",fontsize=16,color="blue",shape="box"];3555[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3555[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3555 -> 2489[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3556[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3556[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3556 -> 2490[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3557[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3557[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3557 -> 2491[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3558[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3558[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3558 -> 2492[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3559[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3559[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3559 -> 2493[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3560[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3560[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3560 -> 2494[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3561[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3561[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3561 -> 2495[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3562[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3562[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3562 -> 2496[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3563[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3563[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3563 -> 2497[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3564[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3564[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3564 -> 2498[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3565[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3565[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3565 -> 2499[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3566[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3566[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3566 -> 2500[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3567[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3567[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3567 -> 2501[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3568[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3568[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3568 -> 2502[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2342[label="vxw410",fontsize=16,color="green",shape="box"];2343[label="vxw420",fontsize=16,color="green",shape="box"];2344[label="vxw410",fontsize=16,color="green",shape="box"];2345[label="vxw420",fontsize=16,color="green",shape="box"];2346[label="vxw410",fontsize=16,color="green",shape="box"];2347[label="vxw420",fontsize=16,color="green",shape="box"];2348[label="vxw410",fontsize=16,color="green",shape="box"];2349[label="vxw420",fontsize=16,color="green",shape="box"];2350[label="vxw410",fontsize=16,color="green",shape="box"];2351[label="vxw420",fontsize=16,color="green",shape="box"];2352[label="vxw410",fontsize=16,color="green",shape="box"];2353[label="vxw420",fontsize=16,color="green",shape="box"];2354[label="vxw410",fontsize=16,color="green",shape="box"];2355[label="vxw420",fontsize=16,color="green",shape="box"];2356[label="vxw410",fontsize=16,color="green",shape="box"];2357[label="vxw420",fontsize=16,color="green",shape="box"];2358[label="vxw410",fontsize=16,color="green",shape="box"];2359[label="vxw420",fontsize=16,color="green",shape="box"];2360[label="vxw410",fontsize=16,color="green",shape="box"];2361[label="vxw420",fontsize=16,color="green",shape="box"];2362[label="vxw410",fontsize=16,color="green",shape="box"];2363[label="vxw420",fontsize=16,color="green",shape="box"];2364[label="vxw410",fontsize=16,color="green",shape="box"];2365[label="vxw420",fontsize=16,color="green",shape="box"];2366[label="vxw410",fontsize=16,color="green",shape="box"];2367[label="vxw420",fontsize=16,color="green",shape="box"];2368[label="vxw410",fontsize=16,color="green",shape="box"];2369[label="vxw420",fontsize=16,color="green",shape="box"];2370[label="vxw410",fontsize=16,color="green",shape="box"];2371[label="vxw420",fontsize=16,color="green",shape="box"];2372[label="vxw410",fontsize=16,color="green",shape="box"];2373[label="vxw420",fontsize=16,color="green",shape="box"];2374[label="vxw410",fontsize=16,color="green",shape="box"];2375[label="vxw420",fontsize=16,color="green",shape="box"];2376[label="vxw410",fontsize=16,color="green",shape="box"];2377[label="vxw420",fontsize=16,color="green",shape="box"];2378[label="vxw410",fontsize=16,color="green",shape="box"];2379[label="vxw420",fontsize=16,color="green",shape="box"];2380[label="vxw410",fontsize=16,color="green",shape="box"];2381[label="vxw420",fontsize=16,color="green",shape="box"];2382[label="vxw410",fontsize=16,color="green",shape="box"];2383[label="vxw420",fontsize=16,color="green",shape="box"];2384[label="vxw410",fontsize=16,color="green",shape="box"];2385[label="vxw420",fontsize=16,color="green",shape="box"];2386[label="vxw410",fontsize=16,color="green",shape="box"];2387[label="vxw420",fontsize=16,color="green",shape="box"];2388[label="vxw410",fontsize=16,color="green",shape="box"];2389[label="vxw420",fontsize=16,color="green",shape="box"];2390[label="vxw410",fontsize=16,color="green",shape="box"];2391[label="vxw420",fontsize=16,color="green",shape="box"];2392[label="vxw410",fontsize=16,color="green",shape="box"];2393[label="vxw420",fontsize=16,color="green",shape="box"];2394[label="vxw410",fontsize=16,color="green",shape="box"];2395[label="vxw420",fontsize=16,color="green",shape="box"];2396[label="vxw410",fontsize=16,color="green",shape="box"];2397[label="vxw420",fontsize=16,color="green",shape="box"];2398 -> 1112[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2398[label="vxw410 < vxw420",fontsize=16,color="magenta"];2398 -> 2503[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2398 -> 2504[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2399 -> 1113[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2399[label="vxw410 < vxw420",fontsize=16,color="magenta"];2399 -> 2505[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2399 -> 2506[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2400 -> 1114[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2400[label="vxw410 < vxw420",fontsize=16,color="magenta"];2400 -> 2507[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2400 -> 2508[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2401 -> 1115[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2401[label="vxw410 < vxw420",fontsize=16,color="magenta"];2401 -> 2509[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2401 -> 2510[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2402 -> 1116[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2402[label="vxw410 < vxw420",fontsize=16,color="magenta"];2402 -> 2511[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2402 -> 2512[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2403 -> 1117[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2403[label="vxw410 < vxw420",fontsize=16,color="magenta"];2403 -> 2513[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2403 -> 2514[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2404 -> 1118[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2404[label="vxw410 < vxw420",fontsize=16,color="magenta"];2404 -> 2515[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2404 -> 2516[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2405 -> 1119[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2405[label="vxw410 < vxw420",fontsize=16,color="magenta"];2405 -> 2517[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2405 -> 2518[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2406 -> 1120[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2406[label="vxw410 < vxw420",fontsize=16,color="magenta"];2406 -> 2519[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2406 -> 2520[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2407 -> 1121[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2407[label="vxw410 < vxw420",fontsize=16,color="magenta"];2407 -> 2521[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2407 -> 2522[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2408 -> 1122[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2408[label="vxw410 < vxw420",fontsize=16,color="magenta"];2408 -> 2523[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2408 -> 2524[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2409 -> 1123[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2409[label="vxw410 < vxw420",fontsize=16,color="magenta"];2409 -> 2525[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2409 -> 2526[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2410 -> 1124[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2410[label="vxw410 < vxw420",fontsize=16,color="magenta"];2410 -> 2527[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2410 -> 2528[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2411 -> 1125[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2411[label="vxw410 < vxw420",fontsize=16,color="magenta"];2411 -> 2529[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2411 -> 2530[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2412[label="vxw410 == vxw420",fontsize=16,color="blue",shape="box"];3569[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3569[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3569 -> 2531[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3570[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3570[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3570 -> 2532[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3571[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3571[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3571 -> 2533[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3572[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3572[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3572 -> 2534[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3573[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3573[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3573 -> 2535[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3574[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3574[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3574 -> 2536[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3575[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3575[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3575 -> 2537[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3576[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3576[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3576 -> 2538[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3577[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3577[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3577 -> 2539[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3578[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3578[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3578 -> 2540[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3579[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3579[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3579 -> 2541[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3580[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3580[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3580 -> 2542[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3581[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3581[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3581 -> 2543[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3582[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3582[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3582 -> 2544[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2413 -> 1810[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2413[label="vxw411 < vxw421 || vxw411 == vxw421 && vxw412 <= vxw422",fontsize=16,color="magenta"];2413 -> 2545[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2413 -> 2546[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2414[label="vxw410",fontsize=16,color="green",shape="box"];2415[label="vxw420",fontsize=16,color="green",shape="box"];2416[label="vxw410",fontsize=16,color="green",shape="box"];2417[label="vxw420",fontsize=16,color="green",shape="box"];2418[label="vxw410",fontsize=16,color="green",shape="box"];2419[label="vxw420",fontsize=16,color="green",shape="box"];2420[label="vxw410",fontsize=16,color="green",shape="box"];2421[label="vxw420",fontsize=16,color="green",shape="box"];2422[label="vxw410",fontsize=16,color="green",shape="box"];2423[label="vxw420",fontsize=16,color="green",shape="box"];2424[label="vxw410",fontsize=16,color="green",shape="box"];2425[label="vxw420",fontsize=16,color="green",shape="box"];2426[label="vxw410",fontsize=16,color="green",shape="box"];2427[label="vxw420",fontsize=16,color="green",shape="box"];2428[label="vxw410",fontsize=16,color="green",shape="box"];2429[label="vxw420",fontsize=16,color="green",shape="box"];2430[label="vxw410",fontsize=16,color="green",shape="box"];2431[label="vxw420",fontsize=16,color="green",shape="box"];2432[label="vxw410",fontsize=16,color="green",shape="box"];2433[label="vxw420",fontsize=16,color="green",shape="box"];2434[label="vxw410",fontsize=16,color="green",shape="box"];2435[label="vxw420",fontsize=16,color="green",shape="box"];2436[label="vxw410",fontsize=16,color="green",shape="box"];2437[label="vxw420",fontsize=16,color="green",shape="box"];2438[label="vxw410",fontsize=16,color="green",shape="box"];2439[label="vxw420",fontsize=16,color="green",shape="box"];2440[label="vxw410",fontsize=16,color="green",shape="box"];2441[label="vxw420",fontsize=16,color="green",shape="box"];2442[label="GT",fontsize=16,color="green",shape="box"];2443[label="Succ (Succ (primPlusNat vxw1590 vxw30100))",fontsize=16,color="green",shape="box"];2443 -> 2547[label="",style="dashed", color="green", weight=3]; 21.88/7.86 2444[label="Succ vxw30100",fontsize=16,color="green",shape="box"];2445[label="True",fontsize=16,color="green",shape="box"];2446[label="False",fontsize=16,color="green",shape="box"];2447[label="vxw420",fontsize=16,color="green",shape="box"];2448[label="vxw410",fontsize=16,color="green",shape="box"];2449[label="vxw420",fontsize=16,color="green",shape="box"];2450[label="vxw410",fontsize=16,color="green",shape="box"];2451[label="vxw420",fontsize=16,color="green",shape="box"];2452[label="vxw410",fontsize=16,color="green",shape="box"];2453[label="vxw420",fontsize=16,color="green",shape="box"];2454[label="vxw410",fontsize=16,color="green",shape="box"];2455[label="vxw420",fontsize=16,color="green",shape="box"];2456[label="vxw410",fontsize=16,color="green",shape="box"];2457[label="vxw420",fontsize=16,color="green",shape="box"];2458[label="vxw410",fontsize=16,color="green",shape="box"];2459[label="vxw420",fontsize=16,color="green",shape="box"];2460[label="vxw410",fontsize=16,color="green",shape="box"];2461[label="vxw420",fontsize=16,color="green",shape="box"];2462[label="vxw410",fontsize=16,color="green",shape="box"];2463[label="vxw420",fontsize=16,color="green",shape="box"];2464[label="vxw410",fontsize=16,color="green",shape="box"];2465[label="vxw420",fontsize=16,color="green",shape="box"];2466[label="vxw410",fontsize=16,color="green",shape="box"];2467[label="vxw420",fontsize=16,color="green",shape="box"];2468[label="vxw410",fontsize=16,color="green",shape="box"];2469[label="vxw420",fontsize=16,color="green",shape="box"];2470[label="vxw410",fontsize=16,color="green",shape="box"];2471[label="vxw420",fontsize=16,color="green",shape="box"];2472[label="vxw410",fontsize=16,color="green",shape="box"];2473[label="vxw420",fontsize=16,color="green",shape="box"];2474[label="vxw410",fontsize=16,color="green",shape="box"];2475 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2475[label="vxw410 == vxw420",fontsize=16,color="magenta"];2475 -> 2548[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2475 -> 2549[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2476 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2476[label="vxw410 == vxw420",fontsize=16,color="magenta"];2476 -> 2550[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2476 -> 2551[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2477 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2477[label="vxw410 == vxw420",fontsize=16,color="magenta"];2477 -> 2552[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2477 -> 2553[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2478 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2478[label="vxw410 == vxw420",fontsize=16,color="magenta"];2478 -> 2554[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2478 -> 2555[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2479 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2479[label="vxw410 == vxw420",fontsize=16,color="magenta"];2479 -> 2556[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2479 -> 2557[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2480 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2480[label="vxw410 == vxw420",fontsize=16,color="magenta"];2480 -> 2558[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2480 -> 2559[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2481 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2481[label="vxw410 == vxw420",fontsize=16,color="magenta"];2481 -> 2560[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2481 -> 2561[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2482 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2482[label="vxw410 == vxw420",fontsize=16,color="magenta"];2482 -> 2562[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2482 -> 2563[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2483 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2483[label="vxw410 == vxw420",fontsize=16,color="magenta"];2483 -> 2564[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2483 -> 2565[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2484 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2484[label="vxw410 == vxw420",fontsize=16,color="magenta"];2484 -> 2566[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2484 -> 2567[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2485 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2485[label="vxw410 == vxw420",fontsize=16,color="magenta"];2485 -> 2568[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2485 -> 2569[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2486 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2486[label="vxw410 == vxw420",fontsize=16,color="magenta"];2486 -> 2570[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2486 -> 2571[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2487 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2487[label="vxw410 == vxw420",fontsize=16,color="magenta"];2487 -> 2572[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2487 -> 2573[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2488 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2488[label="vxw410 == vxw420",fontsize=16,color="magenta"];2488 -> 2574[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2488 -> 2575[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2489 -> 1165[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2489[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2489 -> 2576[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2489 -> 2577[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2490 -> 1166[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2490[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2490 -> 2578[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2490 -> 2579[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2491 -> 1167[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2491[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2491 -> 2580[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2491 -> 2581[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2492 -> 1168[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2492[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2492 -> 2582[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2492 -> 2583[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2493 -> 1169[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2493[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2493 -> 2584[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2493 -> 2585[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2494 -> 1170[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2494[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2494 -> 2586[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2494 -> 2587[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2495 -> 1171[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2495[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2495 -> 2588[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2495 -> 2589[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2496 -> 1172[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2496[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2496 -> 2590[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2496 -> 2591[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2497 -> 1173[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2497[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2497 -> 2592[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2497 -> 2593[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2498 -> 1174[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2498[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2498 -> 2594[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2498 -> 2595[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2499 -> 1175[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2499[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2499 -> 2596[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2499 -> 2597[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2500 -> 1176[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2500[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2500 -> 2598[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2500 -> 2599[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2501 -> 1177[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2501[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2501 -> 2600[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2501 -> 2601[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2502 -> 1178[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2502[label="vxw411 <= vxw421",fontsize=16,color="magenta"];2502 -> 2602[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2502 -> 2603[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2503[label="vxw420",fontsize=16,color="green",shape="box"];2504[label="vxw410",fontsize=16,color="green",shape="box"];2505[label="vxw420",fontsize=16,color="green",shape="box"];2506[label="vxw410",fontsize=16,color="green",shape="box"];2507[label="vxw420",fontsize=16,color="green",shape="box"];2508[label="vxw410",fontsize=16,color="green",shape="box"];2509[label="vxw420",fontsize=16,color="green",shape="box"];2510[label="vxw410",fontsize=16,color="green",shape="box"];2511[label="vxw420",fontsize=16,color="green",shape="box"];2512[label="vxw410",fontsize=16,color="green",shape="box"];2513[label="vxw420",fontsize=16,color="green",shape="box"];2514[label="vxw410",fontsize=16,color="green",shape="box"];2515[label="vxw420",fontsize=16,color="green",shape="box"];2516[label="vxw410",fontsize=16,color="green",shape="box"];2517[label="vxw420",fontsize=16,color="green",shape="box"];2518[label="vxw410",fontsize=16,color="green",shape="box"];2519[label="vxw420",fontsize=16,color="green",shape="box"];2520[label="vxw410",fontsize=16,color="green",shape="box"];2521[label="vxw420",fontsize=16,color="green",shape="box"];2522[label="vxw410",fontsize=16,color="green",shape="box"];2523[label="vxw420",fontsize=16,color="green",shape="box"];2524[label="vxw410",fontsize=16,color="green",shape="box"];2525[label="vxw420",fontsize=16,color="green",shape="box"];2526[label="vxw410",fontsize=16,color="green",shape="box"];2527[label="vxw420",fontsize=16,color="green",shape="box"];2528[label="vxw410",fontsize=16,color="green",shape="box"];2529[label="vxw420",fontsize=16,color="green",shape="box"];2530[label="vxw410",fontsize=16,color="green",shape="box"];2531 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2531[label="vxw410 == vxw420",fontsize=16,color="magenta"];2531 -> 2604[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2531 -> 2605[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2532 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2532[label="vxw410 == vxw420",fontsize=16,color="magenta"];2532 -> 2606[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2532 -> 2607[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2533 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2533[label="vxw410 == vxw420",fontsize=16,color="magenta"];2533 -> 2608[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2533 -> 2609[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2534 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2534[label="vxw410 == vxw420",fontsize=16,color="magenta"];2534 -> 2610[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2534 -> 2611[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2535 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2535[label="vxw410 == vxw420",fontsize=16,color="magenta"];2535 -> 2612[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2535 -> 2613[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2536 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2536[label="vxw410 == vxw420",fontsize=16,color="magenta"];2536 -> 2614[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2536 -> 2615[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2537 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2537[label="vxw410 == vxw420",fontsize=16,color="magenta"];2537 -> 2616[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2537 -> 2617[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2538 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2538[label="vxw410 == vxw420",fontsize=16,color="magenta"];2538 -> 2618[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2538 -> 2619[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2539 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2539[label="vxw410 == vxw420",fontsize=16,color="magenta"];2539 -> 2620[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2539 -> 2621[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2540 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2540[label="vxw410 == vxw420",fontsize=16,color="magenta"];2540 -> 2622[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2540 -> 2623[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2541 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2541[label="vxw410 == vxw420",fontsize=16,color="magenta"];2541 -> 2624[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2541 -> 2625[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2542 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2542[label="vxw410 == vxw420",fontsize=16,color="magenta"];2542 -> 2626[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2542 -> 2627[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2543 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2543[label="vxw410 == vxw420",fontsize=16,color="magenta"];2543 -> 2628[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2543 -> 2629[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2544 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2544[label="vxw410 == vxw420",fontsize=16,color="magenta"];2544 -> 2630[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2544 -> 2631[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2545[label="vxw411 < vxw421",fontsize=16,color="blue",shape="box"];3583[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3583[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3583 -> 2632[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3584[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3584[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3584 -> 2633[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3585[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3585[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3585 -> 2634[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3586[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3586[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3586 -> 2635[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3587[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3587[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3587 -> 2636[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3588[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3588[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3588 -> 2637[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3589[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3589[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3589 -> 2638[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3590[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3590[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3590 -> 2639[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3591[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3591[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3591 -> 2640[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3592[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3592[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3592 -> 2641[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3593[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3593[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3593 -> 2642[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3594[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3594[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3594 -> 2643[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3595[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3595[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3595 -> 2644[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3596[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2545 -> 3596[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3596 -> 2645[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2546 -> 839[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2546[label="vxw411 == vxw421 && vxw412 <= vxw422",fontsize=16,color="magenta"];2546 -> 2646[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2546 -> 2647[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2547[label="primPlusNat vxw1590 vxw30100",fontsize=16,color="burlywood",shape="triangle"];3597[label="vxw1590/Succ vxw15900",fontsize=10,color="white",style="solid",shape="box"];2547 -> 3597[label="",style="solid", color="burlywood", weight=9]; 21.88/7.86 3597 -> 2648[label="",style="solid", color="burlywood", weight=3]; 21.88/7.86 3598[label="vxw1590/Zero",fontsize=10,color="white",style="solid",shape="box"];2547 -> 3598[label="",style="solid", color="burlywood", weight=9]; 21.88/7.86 3598 -> 2649[label="",style="solid", color="burlywood", weight=3]; 21.88/7.86 2548[label="vxw410",fontsize=16,color="green",shape="box"];2549[label="vxw420",fontsize=16,color="green",shape="box"];2550[label="vxw410",fontsize=16,color="green",shape="box"];2551[label="vxw420",fontsize=16,color="green",shape="box"];2552[label="vxw410",fontsize=16,color="green",shape="box"];2553[label="vxw420",fontsize=16,color="green",shape="box"];2554[label="vxw410",fontsize=16,color="green",shape="box"];2555[label="vxw420",fontsize=16,color="green",shape="box"];2556[label="vxw410",fontsize=16,color="green",shape="box"];2557[label="vxw420",fontsize=16,color="green",shape="box"];2558[label="vxw410",fontsize=16,color="green",shape="box"];2559[label="vxw420",fontsize=16,color="green",shape="box"];2560[label="vxw410",fontsize=16,color="green",shape="box"];2561[label="vxw420",fontsize=16,color="green",shape="box"];2562[label="vxw410",fontsize=16,color="green",shape="box"];2563[label="vxw420",fontsize=16,color="green",shape="box"];2564[label="vxw410",fontsize=16,color="green",shape="box"];2565[label="vxw420",fontsize=16,color="green",shape="box"];2566[label="vxw410",fontsize=16,color="green",shape="box"];2567[label="vxw420",fontsize=16,color="green",shape="box"];2568[label="vxw410",fontsize=16,color="green",shape="box"];2569[label="vxw420",fontsize=16,color="green",shape="box"];2570[label="vxw410",fontsize=16,color="green",shape="box"];2571[label="vxw420",fontsize=16,color="green",shape="box"];2572[label="vxw410",fontsize=16,color="green",shape="box"];2573[label="vxw420",fontsize=16,color="green",shape="box"];2574[label="vxw410",fontsize=16,color="green",shape="box"];2575[label="vxw420",fontsize=16,color="green",shape="box"];2576[label="vxw411",fontsize=16,color="green",shape="box"];2577[label="vxw421",fontsize=16,color="green",shape="box"];2578[label="vxw411",fontsize=16,color="green",shape="box"];2579[label="vxw421",fontsize=16,color="green",shape="box"];2580[label="vxw411",fontsize=16,color="green",shape="box"];2581[label="vxw421",fontsize=16,color="green",shape="box"];2582[label="vxw411",fontsize=16,color="green",shape="box"];2583[label="vxw421",fontsize=16,color="green",shape="box"];2584[label="vxw411",fontsize=16,color="green",shape="box"];2585[label="vxw421",fontsize=16,color="green",shape="box"];2586[label="vxw411",fontsize=16,color="green",shape="box"];2587[label="vxw421",fontsize=16,color="green",shape="box"];2588[label="vxw411",fontsize=16,color="green",shape="box"];2589[label="vxw421",fontsize=16,color="green",shape="box"];2590[label="vxw411",fontsize=16,color="green",shape="box"];2591[label="vxw421",fontsize=16,color="green",shape="box"];2592[label="vxw411",fontsize=16,color="green",shape="box"];2593[label="vxw421",fontsize=16,color="green",shape="box"];2594[label="vxw411",fontsize=16,color="green",shape="box"];2595[label="vxw421",fontsize=16,color="green",shape="box"];2596[label="vxw411",fontsize=16,color="green",shape="box"];2597[label="vxw421",fontsize=16,color="green",shape="box"];2598[label="vxw411",fontsize=16,color="green",shape="box"];2599[label="vxw421",fontsize=16,color="green",shape="box"];2600[label="vxw411",fontsize=16,color="green",shape="box"];2601[label="vxw421",fontsize=16,color="green",shape="box"];2602[label="vxw411",fontsize=16,color="green",shape="box"];2603[label="vxw421",fontsize=16,color="green",shape="box"];2604[label="vxw410",fontsize=16,color="green",shape="box"];2605[label="vxw420",fontsize=16,color="green",shape="box"];2606[label="vxw410",fontsize=16,color="green",shape="box"];2607[label="vxw420",fontsize=16,color="green",shape="box"];2608[label="vxw410",fontsize=16,color="green",shape="box"];2609[label="vxw420",fontsize=16,color="green",shape="box"];2610[label="vxw410",fontsize=16,color="green",shape="box"];2611[label="vxw420",fontsize=16,color="green",shape="box"];2612[label="vxw410",fontsize=16,color="green",shape="box"];2613[label="vxw420",fontsize=16,color="green",shape="box"];2614[label="vxw410",fontsize=16,color="green",shape="box"];2615[label="vxw420",fontsize=16,color="green",shape="box"];2616[label="vxw410",fontsize=16,color="green",shape="box"];2617[label="vxw420",fontsize=16,color="green",shape="box"];2618[label="vxw410",fontsize=16,color="green",shape="box"];2619[label="vxw420",fontsize=16,color="green",shape="box"];2620[label="vxw410",fontsize=16,color="green",shape="box"];2621[label="vxw420",fontsize=16,color="green",shape="box"];2622[label="vxw410",fontsize=16,color="green",shape="box"];2623[label="vxw420",fontsize=16,color="green",shape="box"];2624[label="vxw410",fontsize=16,color="green",shape="box"];2625[label="vxw420",fontsize=16,color="green",shape="box"];2626[label="vxw410",fontsize=16,color="green",shape="box"];2627[label="vxw420",fontsize=16,color="green",shape="box"];2628[label="vxw410",fontsize=16,color="green",shape="box"];2629[label="vxw420",fontsize=16,color="green",shape="box"];2630[label="vxw410",fontsize=16,color="green",shape="box"];2631[label="vxw420",fontsize=16,color="green",shape="box"];2632 -> 1112[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2632[label="vxw411 < vxw421",fontsize=16,color="magenta"];2632 -> 2650[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2632 -> 2651[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2633 -> 1113[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2633[label="vxw411 < vxw421",fontsize=16,color="magenta"];2633 -> 2652[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2633 -> 2653[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2634 -> 1114[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2634[label="vxw411 < vxw421",fontsize=16,color="magenta"];2634 -> 2654[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2634 -> 2655[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2635 -> 1115[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2635[label="vxw411 < vxw421",fontsize=16,color="magenta"];2635 -> 2656[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2635 -> 2657[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2636 -> 1116[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2636[label="vxw411 < vxw421",fontsize=16,color="magenta"];2636 -> 2658[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2636 -> 2659[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2637 -> 1117[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2637[label="vxw411 < vxw421",fontsize=16,color="magenta"];2637 -> 2660[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2637 -> 2661[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2638 -> 1118[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2638[label="vxw411 < vxw421",fontsize=16,color="magenta"];2638 -> 2662[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2638 -> 2663[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2639 -> 1119[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2639[label="vxw411 < vxw421",fontsize=16,color="magenta"];2639 -> 2664[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2639 -> 2665[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2640 -> 1120[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2640[label="vxw411 < vxw421",fontsize=16,color="magenta"];2640 -> 2666[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2640 -> 2667[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2641 -> 1121[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2641[label="vxw411 < vxw421",fontsize=16,color="magenta"];2641 -> 2668[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2641 -> 2669[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2642 -> 1122[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2642[label="vxw411 < vxw421",fontsize=16,color="magenta"];2642 -> 2670[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2642 -> 2671[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2643 -> 1123[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2643[label="vxw411 < vxw421",fontsize=16,color="magenta"];2643 -> 2672[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2643 -> 2673[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2644 -> 1124[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2644[label="vxw411 < vxw421",fontsize=16,color="magenta"];2644 -> 2674[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2644 -> 2675[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2645 -> 1125[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2645[label="vxw411 < vxw421",fontsize=16,color="magenta"];2645 -> 2676[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2645 -> 2677[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2646[label="vxw411 == vxw421",fontsize=16,color="blue",shape="box"];3599[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3599[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3599 -> 2678[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3600[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3600[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3600 -> 2679[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3601[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3601[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3601 -> 2680[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3602[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3602[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3602 -> 2681[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3603[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3603[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3603 -> 2682[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3604[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3604[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3604 -> 2683[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3605[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3605[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3605 -> 2684[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3606[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3606[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3606 -> 2685[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3607[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3607[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3607 -> 2686[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3608[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3608[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3608 -> 2687[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3609[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3609[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3609 -> 2688[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3610[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3610[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3610 -> 2689[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3611[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3611[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3611 -> 2690[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3612[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3612[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3612 -> 2691[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2647[label="vxw412 <= vxw422",fontsize=16,color="blue",shape="box"];3613[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3613[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3613 -> 2692[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3614[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3614[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3614 -> 2693[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3615[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3615[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3615 -> 2694[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3616[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3616[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3616 -> 2695[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3617[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3617[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3617 -> 2696[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3618[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3618[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3618 -> 2697[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3619[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3619[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3619 -> 2698[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3620[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3620[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3620 -> 2699[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3621[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3621[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3621 -> 2700[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3622[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3622[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3622 -> 2701[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3623[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3623[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3623 -> 2702[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3624[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3624[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3624 -> 2703[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3625[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3625[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3625 -> 2704[label="",style="solid", color="blue", weight=3]; 21.88/7.86 3626[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3626[label="",style="solid", color="blue", weight=9]; 21.88/7.86 3626 -> 2705[label="",style="solid", color="blue", weight=3]; 21.88/7.86 2648[label="primPlusNat (Succ vxw15900) vxw30100",fontsize=16,color="burlywood",shape="box"];3627[label="vxw30100/Succ vxw301000",fontsize=10,color="white",style="solid",shape="box"];2648 -> 3627[label="",style="solid", color="burlywood", weight=9]; 21.88/7.86 3627 -> 2706[label="",style="solid", color="burlywood", weight=3]; 21.88/7.86 3628[label="vxw30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2648 -> 3628[label="",style="solid", color="burlywood", weight=9]; 21.88/7.86 3628 -> 2707[label="",style="solid", color="burlywood", weight=3]; 21.88/7.86 2649[label="primPlusNat Zero vxw30100",fontsize=16,color="burlywood",shape="box"];3629[label="vxw30100/Succ vxw301000",fontsize=10,color="white",style="solid",shape="box"];2649 -> 3629[label="",style="solid", color="burlywood", weight=9]; 21.88/7.86 3629 -> 2708[label="",style="solid", color="burlywood", weight=3]; 21.88/7.86 3630[label="vxw30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2649 -> 3630[label="",style="solid", color="burlywood", weight=9]; 21.88/7.86 3630 -> 2709[label="",style="solid", color="burlywood", weight=3]; 21.88/7.86 2650[label="vxw421",fontsize=16,color="green",shape="box"];2651[label="vxw411",fontsize=16,color="green",shape="box"];2652[label="vxw421",fontsize=16,color="green",shape="box"];2653[label="vxw411",fontsize=16,color="green",shape="box"];2654[label="vxw421",fontsize=16,color="green",shape="box"];2655[label="vxw411",fontsize=16,color="green",shape="box"];2656[label="vxw421",fontsize=16,color="green",shape="box"];2657[label="vxw411",fontsize=16,color="green",shape="box"];2658[label="vxw421",fontsize=16,color="green",shape="box"];2659[label="vxw411",fontsize=16,color="green",shape="box"];2660[label="vxw421",fontsize=16,color="green",shape="box"];2661[label="vxw411",fontsize=16,color="green",shape="box"];2662[label="vxw421",fontsize=16,color="green",shape="box"];2663[label="vxw411",fontsize=16,color="green",shape="box"];2664[label="vxw421",fontsize=16,color="green",shape="box"];2665[label="vxw411",fontsize=16,color="green",shape="box"];2666[label="vxw421",fontsize=16,color="green",shape="box"];2667[label="vxw411",fontsize=16,color="green",shape="box"];2668[label="vxw421",fontsize=16,color="green",shape="box"];2669[label="vxw411",fontsize=16,color="green",shape="box"];2670[label="vxw421",fontsize=16,color="green",shape="box"];2671[label="vxw411",fontsize=16,color="green",shape="box"];2672[label="vxw421",fontsize=16,color="green",shape="box"];2673[label="vxw411",fontsize=16,color="green",shape="box"];2674[label="vxw421",fontsize=16,color="green",shape="box"];2675[label="vxw411",fontsize=16,color="green",shape="box"];2676[label="vxw421",fontsize=16,color="green",shape="box"];2677[label="vxw411",fontsize=16,color="green",shape="box"];2678 -> 441[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2678[label="vxw411 == vxw421",fontsize=16,color="magenta"];2678 -> 2710[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2678 -> 2711[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2679 -> 428[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2679[label="vxw411 == vxw421",fontsize=16,color="magenta"];2679 -> 2712[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2679 -> 2713[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2680 -> 440[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2680[label="vxw411 == vxw421",fontsize=16,color="magenta"];2680 -> 2714[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2680 -> 2715[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2681 -> 435[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2681[label="vxw411 == vxw421",fontsize=16,color="magenta"];2681 -> 2716[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2681 -> 2717[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2682 -> 431[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2682[label="vxw411 == vxw421",fontsize=16,color="magenta"];2682 -> 2718[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2682 -> 2719[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2683 -> 439[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2683[label="vxw411 == vxw421",fontsize=16,color="magenta"];2683 -> 2720[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2683 -> 2721[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2684 -> 433[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2684[label="vxw411 == vxw421",fontsize=16,color="magenta"];2684 -> 2722[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2684 -> 2723[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2685 -> 429[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2685[label="vxw411 == vxw421",fontsize=16,color="magenta"];2685 -> 2724[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2685 -> 2725[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2686 -> 432[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2686[label="vxw411 == vxw421",fontsize=16,color="magenta"];2686 -> 2726[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2686 -> 2727[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2687 -> 436[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2687[label="vxw411 == vxw421",fontsize=16,color="magenta"];2687 -> 2728[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2687 -> 2729[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2688 -> 438[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2688[label="vxw411 == vxw421",fontsize=16,color="magenta"];2688 -> 2730[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2688 -> 2731[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2689 -> 430[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2689[label="vxw411 == vxw421",fontsize=16,color="magenta"];2689 -> 2732[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2689 -> 2733[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2690 -> 437[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2690[label="vxw411 == vxw421",fontsize=16,color="magenta"];2690 -> 2734[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2690 -> 2735[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2691 -> 434[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2691[label="vxw411 == vxw421",fontsize=16,color="magenta"];2691 -> 2736[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2691 -> 2737[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2692 -> 1165[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2692[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2692 -> 2738[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2692 -> 2739[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2693 -> 1166[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2693[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2693 -> 2740[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2693 -> 2741[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2694 -> 1167[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2694[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2694 -> 2742[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2694 -> 2743[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2695 -> 1168[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2695[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2695 -> 2744[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2695 -> 2745[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2696 -> 1169[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2696[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2696 -> 2746[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2696 -> 2747[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2697 -> 1170[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2697[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2697 -> 2748[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2697 -> 2749[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2698 -> 1171[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2698[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2698 -> 2750[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2698 -> 2751[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2699 -> 1172[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2699[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2699 -> 2752[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2699 -> 2753[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2700 -> 1173[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2700[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2700 -> 2754[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2700 -> 2755[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2701 -> 1174[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2701[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2701 -> 2756[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2701 -> 2757[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2702 -> 1175[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2702[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2702 -> 2758[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2702 -> 2759[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2703 -> 1176[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2703[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2703 -> 2760[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2703 -> 2761[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2704 -> 1177[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2704[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2704 -> 2762[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2704 -> 2763[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2705 -> 1178[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2705[label="vxw412 <= vxw422",fontsize=16,color="magenta"];2705 -> 2764[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2705 -> 2765[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2706[label="primPlusNat (Succ vxw15900) (Succ vxw301000)",fontsize=16,color="black",shape="box"];2706 -> 2766[label="",style="solid", color="black", weight=3]; 21.88/7.86 2707[label="primPlusNat (Succ vxw15900) Zero",fontsize=16,color="black",shape="box"];2707 -> 2767[label="",style="solid", color="black", weight=3]; 21.88/7.86 2708[label="primPlusNat Zero (Succ vxw301000)",fontsize=16,color="black",shape="box"];2708 -> 2768[label="",style="solid", color="black", weight=3]; 21.88/7.86 2709[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2709 -> 2769[label="",style="solid", color="black", weight=3]; 21.88/7.86 2710[label="vxw411",fontsize=16,color="green",shape="box"];2711[label="vxw421",fontsize=16,color="green",shape="box"];2712[label="vxw411",fontsize=16,color="green",shape="box"];2713[label="vxw421",fontsize=16,color="green",shape="box"];2714[label="vxw411",fontsize=16,color="green",shape="box"];2715[label="vxw421",fontsize=16,color="green",shape="box"];2716[label="vxw411",fontsize=16,color="green",shape="box"];2717[label="vxw421",fontsize=16,color="green",shape="box"];2718[label="vxw411",fontsize=16,color="green",shape="box"];2719[label="vxw421",fontsize=16,color="green",shape="box"];2720[label="vxw411",fontsize=16,color="green",shape="box"];2721[label="vxw421",fontsize=16,color="green",shape="box"];2722[label="vxw411",fontsize=16,color="green",shape="box"];2723[label="vxw421",fontsize=16,color="green",shape="box"];2724[label="vxw411",fontsize=16,color="green",shape="box"];2725[label="vxw421",fontsize=16,color="green",shape="box"];2726[label="vxw411",fontsize=16,color="green",shape="box"];2727[label="vxw421",fontsize=16,color="green",shape="box"];2728[label="vxw411",fontsize=16,color="green",shape="box"];2729[label="vxw421",fontsize=16,color="green",shape="box"];2730[label="vxw411",fontsize=16,color="green",shape="box"];2731[label="vxw421",fontsize=16,color="green",shape="box"];2732[label="vxw411",fontsize=16,color="green",shape="box"];2733[label="vxw421",fontsize=16,color="green",shape="box"];2734[label="vxw411",fontsize=16,color="green",shape="box"];2735[label="vxw421",fontsize=16,color="green",shape="box"];2736[label="vxw411",fontsize=16,color="green",shape="box"];2737[label="vxw421",fontsize=16,color="green",shape="box"];2738[label="vxw412",fontsize=16,color="green",shape="box"];2739[label="vxw422",fontsize=16,color="green",shape="box"];2740[label="vxw412",fontsize=16,color="green",shape="box"];2741[label="vxw422",fontsize=16,color="green",shape="box"];2742[label="vxw412",fontsize=16,color="green",shape="box"];2743[label="vxw422",fontsize=16,color="green",shape="box"];2744[label="vxw412",fontsize=16,color="green",shape="box"];2745[label="vxw422",fontsize=16,color="green",shape="box"];2746[label="vxw412",fontsize=16,color="green",shape="box"];2747[label="vxw422",fontsize=16,color="green",shape="box"];2748[label="vxw412",fontsize=16,color="green",shape="box"];2749[label="vxw422",fontsize=16,color="green",shape="box"];2750[label="vxw412",fontsize=16,color="green",shape="box"];2751[label="vxw422",fontsize=16,color="green",shape="box"];2752[label="vxw412",fontsize=16,color="green",shape="box"];2753[label="vxw422",fontsize=16,color="green",shape="box"];2754[label="vxw412",fontsize=16,color="green",shape="box"];2755[label="vxw422",fontsize=16,color="green",shape="box"];2756[label="vxw412",fontsize=16,color="green",shape="box"];2757[label="vxw422",fontsize=16,color="green",shape="box"];2758[label="vxw412",fontsize=16,color="green",shape="box"];2759[label="vxw422",fontsize=16,color="green",shape="box"];2760[label="vxw412",fontsize=16,color="green",shape="box"];2761[label="vxw422",fontsize=16,color="green",shape="box"];2762[label="vxw412",fontsize=16,color="green",shape="box"];2763[label="vxw422",fontsize=16,color="green",shape="box"];2764[label="vxw412",fontsize=16,color="green",shape="box"];2765[label="vxw422",fontsize=16,color="green",shape="box"];2766[label="Succ (Succ (primPlusNat vxw15900 vxw301000))",fontsize=16,color="green",shape="box"];2766 -> 2770[label="",style="dashed", color="green", weight=3]; 21.88/7.86 2767[label="Succ vxw15900",fontsize=16,color="green",shape="box"];2768[label="Succ vxw301000",fontsize=16,color="green",shape="box"];2769[label="Zero",fontsize=16,color="green",shape="box"];2770 -> 2547[label="",style="dashed", color="red", weight=0]; 21.88/7.86 2770[label="primPlusNat vxw15900 vxw301000",fontsize=16,color="magenta"];2770 -> 2771[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2770 -> 2772[label="",style="dashed", color="magenta", weight=3]; 21.88/7.86 2771[label="vxw15900",fontsize=16,color="green",shape="box"];2772[label="vxw301000",fontsize=16,color="green",shape="box"];} 21.88/7.86 21.88/7.86 ---------------------------------------- 21.88/7.86 21.88/7.86 (14) 21.88/7.86 Complex Obligation (AND) 21.88/7.86 21.88/7.86 ---------------------------------------- 21.88/7.86 21.88/7.86 (15) 21.88/7.86 Obligation: 21.88/7.86 Q DP problem: 21.88/7.86 The TRS P consists of the following rules: 21.88/7.86 21.88/7.86 new_primCmpNat(Succ(vxw3000), Succ(vxw40000)) -> new_primCmpNat(vxw3000, vxw40000) 21.88/7.86 21.88/7.86 R is empty. 21.88/7.86 Q is empty. 21.88/7.86 We have to consider all minimal (P,Q,R)-chains. 21.88/7.86 ---------------------------------------- 21.88/7.86 21.88/7.86 (16) QDPSizeChangeProof (EQUIVALENT) 21.88/7.86 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 21.88/7.86 21.88/7.86 From the DPs we obtained the following set of size-change graphs: 21.88/7.86 *new_primCmpNat(Succ(vxw3000), Succ(vxw40000)) -> new_primCmpNat(vxw3000, vxw40000) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2 21.88/7.86 21.88/7.86 21.88/7.86 ---------------------------------------- 21.88/7.86 21.88/7.86 (17) 21.88/7.86 YES 21.88/7.86 21.88/7.86 ---------------------------------------- 21.88/7.86 21.88/7.86 (18) 21.88/7.86 Obligation: 21.88/7.86 Q DP problem: 21.88/7.86 The TRS P consists of the following rules: 21.88/7.86 21.88/7.86 new_esEs(Just(vxw3000), Just(vxw40000), app(ty_[], bg)) -> new_esEs2(vxw3000, vxw40000, bg) 21.88/7.86 new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), de, app(ty_Maybe, df)) -> new_esEs(vxw3001, vxw40001, df) 21.88/7.86 new_esEs3(Left(vxw3000), Left(vxw40000), app(app(ty_Either, bch), bda), bca) -> new_esEs3(vxw3000, vxw40000, bch, bda) 21.88/7.86 new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), bbg) -> new_esEs2(vxw3001, vxw40001, bbg) 21.88/7.86 new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(ty_[], bea)) -> new_esEs2(vxw3000, vxw40000, bea) 21.88/7.86 new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(ty_@2, bag), bah)) -> new_esEs0(vxw3000, vxw40000, bag, bah) 21.88/7.86 new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), de, app(app(ty_@2, dg), dh)) -> new_esEs0(vxw3001, vxw40001, dg, dh) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(app(ty_@3, fd), ff), fg), eh, fa) -> new_esEs1(vxw3000, vxw40000, fd, ff, fg) 21.88/7.86 new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(ty_Either, dc), dd), cc) -> new_esEs3(vxw3000, vxw40000, dc, dd) 21.88/7.86 new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(ty_Maybe, bdc)) -> new_esEs(vxw3000, vxw40000, bdc) 21.88/7.86 new_esEs(Just(vxw3000), Just(vxw40000), app(ty_Maybe, ba)) -> new_esEs(vxw3000, vxw40000, ba) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, eh, app(ty_[], bac)) -> new_esEs2(vxw3002, vxw40002, bac) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, app(ty_[], hb), fa) -> new_esEs2(vxw3001, vxw40001, hb) 21.88/7.86 new_esEs3(Left(vxw3000), Left(vxw40000), app(app(ty_@2, bcb), bcc), bca) -> new_esEs0(vxw3000, vxw40000, bcb, bcc) 21.88/7.86 new_esEs(Just(vxw3000), Just(vxw40000), app(app(app(ty_@3, bd), be), bf)) -> new_esEs1(vxw3000, vxw40000, bd, be, bf) 21.88/7.86 new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(vxw3000, vxw40000, beb, bec) 21.88/7.86 new_esEs(Just(vxw3000), Just(vxw40000), app(app(ty_@2, bb), bc)) -> new_esEs0(vxw3000, vxw40000, bb, bc) 21.88/7.86 new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), de, app(app(ty_Either, ee), ef)) -> new_esEs3(vxw3001, vxw40001, ee, ef) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(ty_[], fh), eh, fa) -> new_esEs2(vxw3000, vxw40000, fh) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, eh, app(ty_Maybe, he)) -> new_esEs(vxw3002, vxw40002, he) 21.88/7.86 new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(ty_Maybe, cb), cc) -> new_esEs(vxw3000, vxw40000, cb) 21.88/7.86 new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs1(vxw3000, vxw40000, bba, bbb, bbc) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(ty_Either, ga), gb), eh, fa) -> new_esEs3(vxw3000, vxw40000, ga, gb) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, app(ty_Maybe, gd), fa) -> new_esEs(vxw3001, vxw40001, gd) 21.88/7.86 new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs1(vxw3000, vxw40000, bdf, bdg, bdh) 21.88/7.86 new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), de, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs1(vxw3001, vxw40001, ea, eb, ec) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, app(app(ty_@2, ge), gf), fa) -> new_esEs0(vxw3001, vxw40001, ge, gf) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(ty_Maybe, eg), eh, fa) -> new_esEs(vxw3000, vxw40000, eg) 21.88/7.86 new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(ty_@2, bdd), bde)) -> new_esEs0(vxw3000, vxw40000, bdd, bde) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, eh, app(app(ty_@2, hf), hg)) -> new_esEs0(vxw3002, vxw40002, hf, hg) 21.88/7.86 new_esEs3(Left(vxw3000), Left(vxw40000), app(ty_Maybe, bbh), bca) -> new_esEs(vxw3000, vxw40000, bbh) 21.88/7.86 new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(ty_[], db), cc) -> new_esEs2(vxw3000, vxw40000, db) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, eh, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs1(vxw3002, vxw40002, hh, baa, bab) 21.88/7.86 new_esEs(Just(vxw3000), Just(vxw40000), app(app(ty_Either, bh), ca)) -> new_esEs3(vxw3000, vxw40000, bh, ca) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, app(app(ty_Either, hc), hd), fa) -> new_esEs3(vxw3001, vxw40001, hc, hd) 21.88/7.86 new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(ty_Maybe, baf)) -> new_esEs(vxw3000, vxw40000, baf) 21.88/7.86 new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), de, app(ty_[], ed)) -> new_esEs2(vxw3001, vxw40001, ed) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(ty_@2, fb), fc), eh, fa) -> new_esEs0(vxw3000, vxw40000, fb, fc) 21.88/7.86 new_esEs3(Left(vxw3000), Left(vxw40000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs1(vxw3000, vxw40000, bcd, bce, bcf) 21.88/7.86 new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(ty_[], bbd)) -> new_esEs2(vxw3000, vxw40000, bbd) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, eh, app(app(ty_Either, bad), bae)) -> new_esEs3(vxw3002, vxw40002, bad, bae) 21.88/7.86 new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vxw3000, vxw40000, bbe, bbf) 21.88/7.86 new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(ty_@2, cd), ce), cc) -> new_esEs0(vxw3000, vxw40000, cd, ce) 21.88/7.86 new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, app(app(app(ty_@3, gg), gh), ha), fa) -> new_esEs1(vxw3001, vxw40001, gg, gh, ha) 21.88/7.86 new_esEs3(Left(vxw3000), Left(vxw40000), app(ty_[], bcg), bca) -> new_esEs2(vxw3000, vxw40000, bcg) 21.88/7.86 new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(app(ty_@3, cf), cg), da), cc) -> new_esEs1(vxw3000, vxw40000, cf, cg, da) 21.88/7.86 21.88/7.86 R is empty. 21.88/7.86 Q is empty. 21.88/7.86 We have to consider all minimal (P,Q,R)-chains. 21.88/7.86 ---------------------------------------- 21.88/7.86 21.88/7.86 (19) QDPSizeChangeProof (EQUIVALENT) 21.88/7.86 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 21.88/7.86 21.88/7.86 From the DPs we obtained the following set of size-change graphs: 21.88/7.86 *new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(ty_Maybe, baf)) -> new_esEs(vxw3000, vxw40000, baf) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(ty_@2, bag), bah)) -> new_esEs0(vxw3000, vxw40000, bag, bah) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs(Just(vxw3000), Just(vxw40000), app(ty_Maybe, ba)) -> new_esEs(vxw3000, vxw40000, ba) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs(Just(vxw3000), Just(vxw40000), app(app(ty_@2, bb), bc)) -> new_esEs0(vxw3000, vxw40000, bb, bc) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vxw3000, vxw40000, bbe, bbf) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs(Just(vxw3000), Just(vxw40000), app(app(ty_Either, bh), ca)) -> new_esEs3(vxw3000, vxw40000, bh, ca) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs1(vxw3000, vxw40000, bba, bbb, bbc) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs(Just(vxw3000), Just(vxw40000), app(ty_[], bg)) -> new_esEs2(vxw3000, vxw40000, bg) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs(Just(vxw3000), Just(vxw40000), app(app(app(ty_@3, bd), be), bf)) -> new_esEs1(vxw3000, vxw40000, bd, be, bf) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), bbg) -> new_esEs2(vxw3001, vxw40001, bbg) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs2(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(ty_[], bbd)) -> new_esEs2(vxw3000, vxw40000, bbd) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(ty_Maybe, bdc)) -> new_esEs(vxw3000, vxw40000, bdc) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs3(Left(vxw3000), Left(vxw40000), app(ty_Maybe, bbh), bca) -> new_esEs(vxw3000, vxw40000, bbh) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), de, app(ty_Maybe, df)) -> new_esEs(vxw3001, vxw40001, df) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(ty_Maybe, cb), cc) -> new_esEs(vxw3000, vxw40000, cb) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, eh, app(ty_Maybe, he)) -> new_esEs(vxw3002, vxw40002, he) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, app(ty_Maybe, gd), fa) -> new_esEs(vxw3001, vxw40001, gd) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(ty_Maybe, eg), eh, fa) -> new_esEs(vxw3000, vxw40000, eg) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs3(Left(vxw3000), Left(vxw40000), app(app(ty_@2, bcb), bcc), bca) -> new_esEs0(vxw3000, vxw40000, bcb, bcc) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(ty_@2, bdd), bde)) -> new_esEs0(vxw3000, vxw40000, bdd, bde) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), de, app(app(ty_@2, dg), dh)) -> new_esEs0(vxw3001, vxw40001, dg, dh) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(ty_@2, cd), ce), cc) -> new_esEs0(vxw3000, vxw40000, cd, ce) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, app(app(ty_@2, ge), gf), fa) -> new_esEs0(vxw3001, vxw40001, ge, gf) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, eh, app(app(ty_@2, hf), hg)) -> new_esEs0(vxw3002, vxw40002, hf, hg) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(ty_@2, fb), fc), eh, fa) -> new_esEs0(vxw3000, vxw40000, fb, fc) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs3(Left(vxw3000), Left(vxw40000), app(app(ty_Either, bch), bda), bca) -> new_esEs3(vxw3000, vxw40000, bch, bda) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(vxw3000, vxw40000, beb, bec) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(ty_[], bea)) -> new_esEs2(vxw3000, vxw40000, bea) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs3(Left(vxw3000), Left(vxw40000), app(ty_[], bcg), bca) -> new_esEs2(vxw3000, vxw40000, bcg) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs1(vxw3000, vxw40000, bdf, bdg, bdh) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs3(Left(vxw3000), Left(vxw40000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs1(vxw3000, vxw40000, bcd, bce, bcf) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(ty_Either, dc), dd), cc) -> new_esEs3(vxw3000, vxw40000, dc, dd) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), de, app(app(ty_Either, ee), ef)) -> new_esEs3(vxw3001, vxw40001, ee, ef) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(ty_Either, ga), gb), eh, fa) -> new_esEs3(vxw3000, vxw40000, ga, gb) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, app(app(ty_Either, hc), hd), fa) -> new_esEs3(vxw3001, vxw40001, hc, hd) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, eh, app(app(ty_Either, bad), bae)) -> new_esEs3(vxw3002, vxw40002, bad, bae) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(ty_[], db), cc) -> new_esEs2(vxw3000, vxw40000, db) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), de, app(ty_[], ed)) -> new_esEs2(vxw3001, vxw40001, ed) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, eh, app(ty_[], bac)) -> new_esEs2(vxw3002, vxw40002, bac) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, app(ty_[], hb), fa) -> new_esEs2(vxw3001, vxw40001, hb) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(ty_[], fh), eh, fa) -> new_esEs2(vxw3000, vxw40000, fh) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), de, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs1(vxw3001, vxw40001, ea, eb, ec) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs0(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(app(ty_@3, cf), cg), da), cc) -> new_esEs1(vxw3000, vxw40000, cf, cg, da) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(app(ty_@3, fd), ff), fg), eh, fa) -> new_esEs1(vxw3000, vxw40000, fd, ff, fg) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, eh, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs1(vxw3002, vxw40002, hh, baa, bab) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 21.88/7.86 21.88/7.86 21.88/7.86 *new_esEs1(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), gc, app(app(app(ty_@3, gg), gh), ha), fa) -> new_esEs1(vxw3001, vxw40001, gg, gh, ha) 21.88/7.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.86 21.88/7.86 21.88/7.86 ---------------------------------------- 21.88/7.86 21.88/7.86 (20) 21.88/7.86 YES 21.88/7.86 21.88/7.86 ---------------------------------------- 21.88/7.86 21.88/7.86 (21) 21.88/7.86 Obligation: 21.88/7.86 Q DP problem: 21.88/7.86 The TRS P consists of the following rules: 21.88/7.86 21.88/7.86 new_insertBy0(vxw12, vxw13, vxw14, vxw15, vxw16, GT, ba) -> new_insertBy(:(vxw14, vxw15), vxw16, ba) 21.88/7.86 new_insertBy(:(vxw30, vxw31), :([], vxw41), bb) -> new_insertBy(:(vxw30, vxw31), vxw41, bb) 21.88/7.86 new_insertBy(:(vxw30, vxw31), :(:(vxw400, vxw401), vxw41), bb) -> new_insertBy0(vxw400, vxw401, vxw30, vxw31, vxw41, new_primCompAux1(vxw30, vxw400, vxw31, vxw401, bb), bb) 21.88/7.86 21.88/7.86 The TRS R consists of the following rules: 21.88/7.86 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, app(ty_[], bgh)) -> new_ltEs4(vxw410, vxw420, bgh) 21.88/7.86 new_lt20(vxw79, vxw81, ty_Double) -> new_lt12(vxw79, vxw81) 21.88/7.86 new_lt9(vxw60, vxw63, ty_Bool) -> new_lt7(vxw60, vxw63) 21.88/7.86 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), app(ty_Ratio, bfc), bec) -> new_ltEs15(vxw410, vxw420, bfc) 21.88/7.86 new_lt20(vxw79, vxw81, ty_Float) -> new_lt15(vxw79, vxw81) 21.88/7.86 new_esEs30(vxw3002, vxw40002, app(ty_Maybe, bdb)) -> new_esEs25(vxw3002, vxw40002, bdb) 21.88/7.86 new_pePe(True, vxw158) -> True 21.88/7.86 new_ltEs19(vxw80, vxw82, ty_@0) -> new_ltEs5(vxw80, vxw82) 21.88/7.86 new_compare8(True, False) -> GT 21.88/7.86 new_esEs34(vxw3001, vxw40001, app(app(ty_@2, dha), dhb)) -> new_esEs18(vxw3001, vxw40001, dha, dhb) 21.88/7.86 new_esEs34(vxw3001, vxw40001, ty_Double) -> new_esEs17(vxw3001, vxw40001) 21.88/7.86 new_esEs36(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.86 new_esEs34(vxw3001, vxw40001, ty_Float) -> new_esEs22(vxw3001, vxw40001) 21.88/7.86 new_ltEs18(Nothing, Just(vxw420), ddh) -> True 21.88/7.86 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 21.88/7.86 new_ltEs24(vxw412, vxw422, app(ty_[], fhg)) -> new_ltEs4(vxw412, vxw422, fhg) 21.88/7.86 new_lt23(vxw411, vxw421, app(ty_Ratio, fgc)) -> new_lt5(vxw411, vxw421, fgc) 21.88/7.86 new_esEs32(vxw79, vxw81, ty_Char) -> new_esEs24(vxw79, vxw81) 21.88/7.86 new_ltEs19(vxw80, vxw82, app(app(ty_@2, dah), dba)) -> new_ltEs12(vxw80, vxw82, dah, dba) 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), app(ty_[], dfb)) -> new_ltEs4(vxw410, vxw420, dfb) 21.88/7.86 new_compare113(vxw109, vxw110, False, ddf, ddg) -> GT 21.88/7.86 new_lt10(vxw79, vxw81) -> new_esEs12(new_compare14(vxw79, vxw81), LT) 21.88/7.86 new_esEs5(vxw301, vxw4001, app(ty_Ratio, eda)) -> new_esEs21(vxw301, vxw4001, eda) 21.88/7.86 new_compare111(vxw102, vxw103, True, dac, dad) -> LT 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, ty_Int) -> new_compare14(vxw23, vxw24) 21.88/7.86 new_compare18(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cca, ccb, ccc) -> new_compare25(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs8(vxw300, vxw4000, cca), new_asAs(new_esEs9(vxw301, vxw4001, ccb), new_esEs10(vxw302, vxw4002, ccc))), cca, ccb, ccc) 21.88/7.86 new_ltEs7(vxw41, vxw42) -> new_fsEs(new_compare12(vxw41, vxw42)) 21.88/7.86 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.86 new_lt8(vxw59, vxw62, ty_Ordering) -> new_lt11(vxw59, vxw62) 21.88/7.86 new_ltEs19(vxw80, vxw82, ty_Double) -> new_ltEs11(vxw80, vxw82) 21.88/7.86 new_ltEs22(vxw70, vxw71, ty_Bool) -> new_ltEs9(vxw70, vxw71) 21.88/7.86 new_primCompAux1(vxw30, vxw400, vxw31, vxw401, bb) -> new_primCompAux00(vxw31, vxw401, new_compare4(vxw30, vxw400, bb), app(ty_[], bb)) 21.88/7.86 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, app(app(ty_@2, fdb), fdc)) -> new_esEs18(vxw3000, vxw40000, fdb, fdc) 21.88/7.86 new_lt21(vxw410, vxw420, ty_Ordering) -> new_lt11(vxw410, vxw420) 21.88/7.86 new_lt22(vxw410, vxw420, ty_Bool) -> new_lt7(vxw410, vxw420) 21.88/7.86 new_primEqNat0(Succ(vxw30000), Succ(vxw400000)) -> new_primEqNat0(vxw30000, vxw400000) 21.88/7.86 new_ltEs21(vxw41, vxw42, ty_Char) -> new_ltEs7(vxw41, vxw42) 21.88/7.86 new_esEs6(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.86 new_compare25(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, True, cc, cd, ce) -> EQ 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, ty_Integer) -> new_ltEs17(vxw410, vxw420) 21.88/7.86 new_not(True) -> False 21.88/7.86 new_ltEs21(vxw41, vxw42, ty_@0) -> new_ltEs5(vxw41, vxw42) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), app(app(app(ty_@3, fcb), fcc), fcd), ech) -> new_esEs20(vxw3000, vxw40000, fcb, fcc, fcd) 21.88/7.86 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.86 new_esEs35(vxw410, vxw420, app(ty_Maybe, faa)) -> new_esEs25(vxw410, vxw420, faa) 21.88/7.86 new_ltEs8(vxw61, vxw64, ty_Bool) -> new_ltEs9(vxw61, vxw64) 21.88/7.86 new_ltEs20(vxw48, vxw49, ty_Integer) -> new_ltEs17(vxw48, vxw49) 21.88/7.86 new_esEs28(vxw3000, vxw40000, app(ty_Maybe, baf)) -> new_esEs25(vxw3000, vxw40000, baf) 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), ty_Double, bec) -> new_ltEs11(vxw410, vxw420) 21.88/7.86 new_ltEs14(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), eae, eaf, eag) -> new_pePe(new_lt22(vxw410, vxw420, eae), new_asAs(new_esEs38(vxw410, vxw420, eae), new_pePe(new_lt23(vxw411, vxw421, eaf), new_asAs(new_esEs39(vxw411, vxw421, eaf), new_ltEs24(vxw412, vxw422, eag))))) 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_Either, ha), hb)) -> new_compare17(vxw23, vxw24, ha, hb) 21.88/7.86 new_esEs5(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 21.88/7.86 new_esEs6(vxw300, vxw4000, app(app(app(ty_@3, efa), efb), efc)) -> new_esEs20(vxw300, vxw4000, efa, efb, efc) 21.88/7.86 new_primEqNat0(Succ(vxw30000), Zero) -> False 21.88/7.86 new_primEqNat0(Zero, Succ(vxw400000)) -> False 21.88/7.86 new_esEs14(vxw60, vxw63, ty_Float) -> new_esEs22(vxw60, vxw63) 21.88/7.86 new_compare29(vxw48, vxw49, False, dcb, dcc) -> new_compare113(vxw48, vxw49, new_ltEs20(vxw48, vxw49, dcc), dcb, dcc) 21.88/7.86 new_ltEs21(vxw41, vxw42, app(app(ty_@2, eac), ead)) -> new_ltEs12(vxw41, vxw42, eac, ead) 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, ty_Int) -> new_ltEs10(vxw410, vxw420) 21.88/7.86 new_esEs39(vxw411, vxw421, ty_Double) -> new_esEs17(vxw411, vxw421) 21.88/7.86 new_lt23(vxw411, vxw421, ty_Int) -> new_lt10(vxw411, vxw421) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Float, ech) -> new_esEs22(vxw3000, vxw40000) 21.88/7.86 new_ltEs20(vxw48, vxw49, ty_Int) -> new_ltEs10(vxw48, vxw49) 21.88/7.86 new_esEs29(vxw3001, vxw40001, ty_Double) -> new_esEs17(vxw3001, vxw40001) 21.88/7.86 new_esEs31(vxw3000, vxw40000, app(ty_Ratio, cag)) -> new_esEs21(vxw3000, vxw40000, cag) 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), ty_@0, bec) -> new_ltEs5(vxw410, vxw420) 21.88/7.86 new_compare17(Right(vxw300), Right(vxw4000), eec, eed) -> new_compare29(vxw300, vxw4000, new_esEs7(vxw300, vxw4000, eed), eec, eed) 21.88/7.86 new_ltEs21(vxw41, vxw42, ty_Float) -> new_ltEs16(vxw41, vxw42) 21.88/7.86 new_esEs9(vxw301, vxw4001, ty_Char) -> new_esEs24(vxw301, vxw4001) 21.88/7.86 new_ltEs21(vxw41, vxw42, ty_Double) -> new_ltEs11(vxw41, vxw42) 21.88/7.86 new_esEs31(vxw3000, vxw40000, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.86 new_primCmpInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> GT 21.88/7.86 new_lt22(vxw410, vxw420, ty_Integer) -> new_lt4(vxw410, vxw420) 21.88/7.86 new_esEs11(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.86 new_ltEs21(vxw41, vxw42, app(app(app(ty_@3, eae), eaf), eag)) -> new_ltEs14(vxw41, vxw42, eae, eaf, eag) 21.88/7.86 new_esEs33(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.86 new_lt22(vxw410, vxw420, ty_Char) -> new_lt16(vxw410, vxw420) 21.88/7.86 new_esEs5(vxw301, vxw4001, app(app(ty_Either, eea), eeb)) -> new_esEs19(vxw301, vxw4001, eea, eeb) 21.88/7.86 new_primPlusNat1(Succ(vxw15900), Succ(vxw301000)) -> Succ(Succ(new_primPlusNat1(vxw15900, vxw301000))) 21.88/7.86 new_primCompAux00(vxw23, vxw24, GT, gf) -> GT 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), ty_Char, bec) -> new_ltEs7(vxw410, vxw420) 21.88/7.86 new_esEs33(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.86 new_esEs6(vxw300, vxw4000, app(ty_[], efd)) -> new_esEs27(vxw300, vxw4000, efd) 21.88/7.86 new_primCmpNat0(Zero, Succ(vxw40000)) -> LT 21.88/7.86 new_esEs4(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.86 new_esEs6(vxw300, vxw4000, app(app(ty_@2, eeg), eeh)) -> new_esEs18(vxw300, vxw4000, eeg, eeh) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), app(ty_Ratio, fbf), ech) -> new_esEs21(vxw3000, vxw40000, fbf) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), ty_@0, ech) -> new_esEs26(vxw3000, vxw40000) 21.88/7.86 new_esEs13(vxw59, vxw62, ty_Ordering) -> new_esEs12(vxw59, vxw62) 21.88/7.86 new_esEs29(vxw3001, vxw40001, ty_Integer) -> new_esEs23(vxw3001, vxw40001) 21.88/7.86 new_esEs8(vxw300, vxw4000, app(app(ty_@2, ccf), ccg)) -> new_esEs18(vxw300, vxw4000, ccf, ccg) 21.88/7.86 new_esEs10(vxw302, vxw4002, ty_Char) -> new_esEs24(vxw302, vxw4002) 21.88/7.86 new_ltEs23(vxw411, vxw421, ty_Float) -> new_ltEs16(vxw411, vxw421) 21.88/7.86 new_esEs32(vxw79, vxw81, ty_@0) -> new_esEs26(vxw79, vxw81) 21.88/7.86 new_ltEs19(vxw80, vxw82, ty_Char) -> new_ltEs7(vxw80, vxw82) 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, app(app(ty_@2, bfg), bfh)) -> new_ltEs12(vxw410, vxw420, bfg, bfh) 21.88/7.86 new_esEs33(vxw3000, vxw40000, app(ty_Ratio, dfe)) -> new_esEs21(vxw3000, vxw40000, dfe) 21.88/7.86 new_ltEs23(vxw411, vxw421, app(ty_Ratio, fbb)) -> new_ltEs15(vxw411, vxw421, fbb) 21.88/7.86 new_ltEs24(vxw412, vxw422, ty_Ordering) -> new_ltEs6(vxw412, vxw422) 21.88/7.86 new_esEs14(vxw60, vxw63, ty_Bool) -> new_esEs15(vxw60, vxw63) 21.88/7.86 new_ltEs19(vxw80, vxw82, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_ltEs14(vxw80, vxw82, dbd, dbe, dbf) 21.88/7.86 new_ltEs23(vxw411, vxw421, app(ty_Maybe, fbc)) -> new_ltEs18(vxw411, vxw421, fbc) 21.88/7.86 new_esEs39(vxw411, vxw421, ty_Bool) -> new_esEs15(vxw411, vxw421) 21.88/7.86 new_esEs11(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.86 new_esEs6(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.86 new_esEs38(vxw410, vxw420, ty_Ordering) -> new_esEs12(vxw410, vxw420) 21.88/7.86 new_esEs8(vxw300, vxw4000, app(ty_Ratio, ccd)) -> new_esEs21(vxw300, vxw4000, ccd) 21.88/7.86 new_lt21(vxw410, vxw420, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt14(vxw410, vxw420, ehe, ehf, ehg) 21.88/7.86 new_lt13(vxw79, vxw81, cad, cae) -> new_esEs12(new_compare17(vxw79, vxw81, cad, cae), LT) 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, app(ty_Maybe, hg)) -> new_compare26(vxw23, vxw24, hg) 21.88/7.86 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.86 new_esEs14(vxw60, vxw63, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs20(vxw60, vxw63, ee, ef, eg) 21.88/7.86 new_esEs11(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.86 new_ltEs13(Right(vxw410), Left(vxw420), bff, bec) -> False 21.88/7.86 new_esEs8(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.86 new_ltEs23(vxw411, vxw421, ty_Int) -> new_ltEs10(vxw411, vxw421) 21.88/7.86 new_esEs31(vxw3000, vxw40000, app(app(ty_Either, cbg), cbh)) -> new_esEs19(vxw3000, vxw40000, cbg, cbh) 21.88/7.86 new_esEs38(vxw410, vxw420, ty_Int) -> new_esEs16(vxw410, vxw420) 21.88/7.86 new_esEs29(vxw3001, vxw40001, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs20(vxw3001, vxw40001, bcc, bcd, bce) 21.88/7.86 new_ltEs23(vxw411, vxw421, ty_Integer) -> new_ltEs17(vxw411, vxw421) 21.88/7.86 new_esEs15(True, True) -> True 21.88/7.86 new_esEs5(vxw301, vxw4001, ty_Bool) -> new_esEs15(vxw301, vxw4001) 21.88/7.86 new_esEs29(vxw3001, vxw40001, ty_Bool) -> new_esEs15(vxw3001, vxw40001) 21.88/7.86 new_esEs33(vxw3000, vxw40000, app(ty_Maybe, dff)) -> new_esEs25(vxw3000, vxw40000, dff) 21.88/7.86 new_primEqInt(Neg(Succ(vxw30000)), Neg(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) 21.88/7.86 new_esEs32(vxw79, vxw81, app(ty_[], dag)) -> new_esEs27(vxw79, vxw81, dag) 21.88/7.86 new_primCmpInt(Neg(Zero), Pos(Succ(vxw40000))) -> LT 21.88/7.86 new_ltEs20(vxw48, vxw49, app(app(ty_Either, dcf), dcg)) -> new_ltEs13(vxw48, vxw49, dcf, dcg) 21.88/7.86 new_ltEs21(vxw41, vxw42, app(ty_Maybe, ddh)) -> new_ltEs18(vxw41, vxw42, ddh) 21.88/7.86 new_compare7(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ecd, ece) -> new_compare28(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs4(vxw300, vxw4000, ecd), new_esEs5(vxw301, vxw4001, ece)), ecd, ece) 21.88/7.86 new_primMulInt(Pos(vxw40000), Pos(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.86 new_esEs27([], [], caf) -> True 21.88/7.86 new_ltEs11(vxw41, vxw42) -> new_fsEs(new_compare16(vxw41, vxw42)) 21.88/7.86 new_esEs9(vxw301, vxw4001, ty_@0) -> new_esEs26(vxw301, vxw4001) 21.88/7.86 new_esEs11(vxw300, vxw4000, app(app(ty_Either, chc), chd)) -> new_esEs19(vxw300, vxw4000, chc, chd) 21.88/7.86 new_lt21(vxw410, vxw420, app(app(ty_Either, ehc), ehd)) -> new_lt13(vxw410, vxw420, ehc, ehd) 21.88/7.86 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.86 new_lt9(vxw60, vxw63, ty_Double) -> new_lt12(vxw60, vxw63) 21.88/7.86 new_compare11(@0, @0) -> EQ 21.88/7.86 new_primMulNat0(Succ(vxw400000), Zero) -> Zero 21.88/7.86 new_primMulNat0(Zero, Succ(vxw30100)) -> Zero 21.88/7.86 new_esEs9(vxw301, vxw4001, app(ty_Maybe, cdg)) -> new_esEs25(vxw301, vxw4001, cdg) 21.88/7.86 new_esEs8(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.86 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.86 new_esEs6(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.86 new_compare8(False, False) -> EQ 21.88/7.86 new_esEs8(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, ty_Float) -> new_ltEs16(vxw410, vxw420) 21.88/7.86 new_compare210(vxw41, vxw42, False, eaa, eab) -> new_compare111(vxw41, vxw42, new_ltEs21(vxw41, vxw42, eaa), eaa, eab) 21.88/7.86 new_lt9(vxw60, vxw63, app(ty_Maybe, fa)) -> new_lt17(vxw60, vxw63, fa) 21.88/7.86 new_esEs34(vxw3001, vxw40001, app(ty_[], dhf)) -> new_esEs27(vxw3001, vxw40001, dhf) 21.88/7.86 new_lt14(vxw79, vxw81, chh, daa, dab) -> new_esEs12(new_compare18(vxw79, vxw81, chh, daa, dab), LT) 21.88/7.86 new_esEs7(vxw300, vxw4000, app(app(ty_Either, egg), egh)) -> new_esEs19(vxw300, vxw4000, egg, egh) 21.88/7.86 new_lt8(vxw59, vxw62, app(app(app(ty_@3, dc), dd), de)) -> new_lt14(vxw59, vxw62, dc, dd, de) 21.88/7.86 new_compare19(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.86 new_compare15(LT, LT) -> EQ 21.88/7.86 new_lt12(vxw79, vxw81) -> new_esEs12(new_compare16(vxw79, vxw81), LT) 21.88/7.86 new_esEs7(vxw300, vxw4000, app(ty_Maybe, efh)) -> new_esEs25(vxw300, vxw4000, efh) 21.88/7.86 new_primPlusNat1(Succ(vxw15900), Zero) -> Succ(vxw15900) 21.88/7.86 new_primPlusNat1(Zero, Succ(vxw301000)) -> Succ(vxw301000) 21.88/7.86 new_lt23(vxw411, vxw421, app(app(ty_Either, fff), ffg)) -> new_lt13(vxw411, vxw421, fff, ffg) 21.88/7.86 new_esEs8(vxw300, vxw4000, app(ty_[], cdc)) -> new_esEs27(vxw300, vxw4000, cdc) 21.88/7.86 new_compare15(EQ, EQ) -> EQ 21.88/7.86 new_compare27(vxw70, vxw71, False, eah) -> new_compare114(vxw70, vxw71, new_ltEs22(vxw70, vxw71, eah), eah) 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_@2, gg), gh)) -> new_compare7(vxw23, vxw24, gg, gh) 21.88/7.86 new_ltEs8(vxw61, vxw64, ty_Integer) -> new_ltEs17(vxw61, vxw64) 21.88/7.86 new_lt8(vxw59, vxw62, app(app(ty_Either, da), db)) -> new_lt13(vxw59, vxw62, da, db) 21.88/7.86 new_esEs33(vxw3000, vxw40000, app(app(ty_Either, dge), dgf)) -> new_esEs19(vxw3000, vxw40000, dge, dgf) 21.88/7.86 new_esEs31(vxw3000, vxw40000, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.86 new_lt9(vxw60, vxw63, ty_Integer) -> new_lt4(vxw60, vxw63) 21.88/7.86 new_esEs10(vxw302, vxw4002, app(ty_Maybe, cfa)) -> new_esEs25(vxw302, vxw4002, cfa) 21.88/7.86 new_fsEs(vxw153) -> new_not(new_esEs12(vxw153, GT)) 21.88/7.86 new_esEs9(vxw301, vxw4001, app(ty_[], cee)) -> new_esEs27(vxw301, vxw4001, cee) 21.88/7.86 new_esEs32(vxw79, vxw81, app(ty_Maybe, baa)) -> new_esEs25(vxw79, vxw81, baa) 21.88/7.86 new_compare6(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Integer) -> new_compare5(new_sr0(vxw300, vxw4001), new_sr0(vxw4000, vxw301)) 21.88/7.86 new_esEs32(vxw79, vxw81, ty_Double) -> new_esEs17(vxw79, vxw81) 21.88/7.86 new_lt11(vxw79, vxw81) -> new_esEs12(new_compare15(vxw79, vxw81), LT) 21.88/7.86 new_lt20(vxw79, vxw81, app(ty_Ratio, bc)) -> new_lt5(vxw79, vxw81, bc) 21.88/7.86 new_esEs34(vxw3001, vxw40001, ty_@0) -> new_esEs26(vxw3001, vxw40001) 21.88/7.86 new_compare17(Left(vxw300), Right(vxw4000), eec, eed) -> LT 21.88/7.86 new_compare16(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.86 new_lt9(vxw60, vxw63, ty_Char) -> new_lt16(vxw60, vxw63) 21.88/7.86 new_esEs11(vxw300, vxw4000, app(ty_Ratio, cgc)) -> new_esEs21(vxw300, vxw4000, cgc) 21.88/7.86 new_esEs8(vxw300, vxw4000, app(app(ty_Either, cdd), cde)) -> new_esEs19(vxw300, vxw4000, cdd, cde) 21.88/7.86 new_esEs13(vxw59, vxw62, ty_Int) -> new_esEs16(vxw59, vxw62) 21.88/7.86 new_lt23(vxw411, vxw421, ty_Double) -> new_lt12(vxw411, vxw421) 21.88/7.86 new_esEs39(vxw411, vxw421, app(app(app(ty_@3, ffh), fga), fgb)) -> new_esEs20(vxw411, vxw421, ffh, fga, fgb) 21.88/7.86 new_esEs36(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.86 new_esEs31(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.86 new_ltEs8(vxw61, vxw64, ty_Int) -> new_ltEs10(vxw61, vxw64) 21.88/7.86 new_compare26(Nothing, Just(vxw4000), cgb) -> LT 21.88/7.86 new_esEs11(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.86 new_ltEs23(vxw411, vxw421, ty_Double) -> new_ltEs11(vxw411, vxw421) 21.88/7.86 new_esEs34(vxw3001, vxw40001, ty_Char) -> new_esEs24(vxw3001, vxw40001) 21.88/7.86 new_esEs13(vxw59, vxw62, ty_Integer) -> new_esEs23(vxw59, vxw62) 21.88/7.86 new_esEs29(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) 21.88/7.86 new_lt20(vxw79, vxw81, app(app(ty_Either, cad), cae)) -> new_lt13(vxw79, vxw81, cad, cae) 21.88/7.86 new_ltEs24(vxw412, vxw422, ty_Float) -> new_ltEs16(vxw412, vxw422) 21.88/7.86 new_esEs29(vxw3001, vxw40001, ty_Int) -> new_esEs16(vxw3001, vxw40001) 21.88/7.86 new_esEs9(vxw301, vxw4001, app(app(ty_@2, cdh), cea)) -> new_esEs18(vxw301, vxw4001, cdh, cea) 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), ty_Bool) -> new_ltEs9(vxw410, vxw420) 21.88/7.86 new_esEs35(vxw410, vxw420, ty_Int) -> new_esEs16(vxw410, vxw420) 21.88/7.86 new_esEs25(Just(vxw3000), Just(vxw40000), ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.86 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.86 new_esEs35(vxw410, vxw420, ty_Ordering) -> new_esEs12(vxw410, vxw420) 21.88/7.86 new_esEs38(vxw410, vxw420, ty_Bool) -> new_esEs15(vxw410, vxw420) 21.88/7.86 new_esEs14(vxw60, vxw63, app(app(ty_Either, ec), ed)) -> new_esEs19(vxw60, vxw63, ec, ed) 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), app(ty_Maybe, dfa)) -> new_ltEs18(vxw410, vxw420, dfa) 21.88/7.86 new_lt22(vxw410, vxw420, app(ty_Maybe, ffb)) -> new_lt17(vxw410, vxw420, ffb) 21.88/7.86 new_esEs4(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.86 new_esEs12(GT, GT) -> True 21.88/7.86 new_compare114(vxw119, vxw120, True, ecc) -> LT 21.88/7.86 new_esEs5(vxw301, vxw4001, ty_Float) -> new_esEs22(vxw301, vxw4001) 21.88/7.86 new_lt22(vxw410, vxw420, app(app(app(ty_@3, fef), feg), feh)) -> new_lt14(vxw410, vxw420, fef, feg, feh) 21.88/7.86 new_esEs31(vxw3000, vxw40000, app(ty_[], cbf)) -> new_esEs27(vxw3000, vxw40000, cbf) 21.88/7.86 new_lt21(vxw410, vxw420, ty_@0) -> new_lt18(vxw410, vxw420) 21.88/7.86 new_compare4(vxw30, vxw400, app(ty_Ratio, fbe)) -> new_compare6(vxw30, vxw400, fbe) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Bool, ech) -> new_esEs15(vxw3000, vxw40000) 21.88/7.86 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, app(ty_[], fdg)) -> new_esEs27(vxw3000, vxw40000, fdg) 21.88/7.86 new_esEs32(vxw79, vxw81, app(app(ty_@2, bg), bh)) -> new_esEs18(vxw79, vxw81, bg, bh) 21.88/7.86 new_lt8(vxw59, vxw62, ty_@0) -> new_lt18(vxw59, vxw62) 21.88/7.86 new_esEs38(vxw410, vxw420, ty_Integer) -> new_esEs23(vxw410, vxw420) 21.88/7.86 new_esEs9(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) 21.88/7.86 new_esEs30(vxw3002, vxw40002, app(ty_Ratio, bda)) -> new_esEs21(vxw3002, vxw40002, bda) 21.88/7.86 new_ltEs23(vxw411, vxw421, app(app(ty_@2, fac), fad)) -> new_ltEs12(vxw411, vxw421, fac, fad) 21.88/7.86 new_ltEs20(vxw48, vxw49, ty_Float) -> new_ltEs16(vxw48, vxw49) 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, app(app(app(ty_@3, hc), hd), he)) -> new_compare18(vxw23, vxw24, hc, hd, he) 21.88/7.86 new_primCmpInt(Pos(Succ(vxw3000)), Pos(vxw4000)) -> new_primCmpNat0(Succ(vxw3000), vxw4000) 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), app(app(app(ty_@3, dee), def), deg)) -> new_ltEs14(vxw410, vxw420, dee, def, deg) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), app(ty_[], fce), ech) -> new_esEs27(vxw3000, vxw40000, fce) 21.88/7.86 new_esEs38(vxw410, vxw420, ty_Char) -> new_esEs24(vxw410, vxw420) 21.88/7.86 new_compare15(LT, GT) -> LT 21.88/7.86 new_esEs39(vxw411, vxw421, app(app(ty_Either, fff), ffg)) -> new_esEs19(vxw411, vxw421, fff, ffg) 21.88/7.86 new_esEs12(EQ, EQ) -> True 21.88/7.86 new_esEs39(vxw411, vxw421, ty_Char) -> new_esEs24(vxw411, vxw421) 21.88/7.86 new_esEs14(vxw60, vxw63, ty_@0) -> new_esEs26(vxw60, vxw63) 21.88/7.86 new_esEs34(vxw3001, vxw40001, app(app(ty_Either, dhg), dhh)) -> new_esEs19(vxw3001, vxw40001, dhg, dhh) 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, app(ty_Ratio, hf)) -> new_compare6(vxw23, vxw24, hf) 21.88/7.86 new_esEs11(vxw300, vxw4000, app(ty_Maybe, cgd)) -> new_esEs25(vxw300, vxw4000, cgd) 21.88/7.86 new_compare17(Right(vxw300), Left(vxw4000), eec, eed) -> GT 21.88/7.86 new_ltEs6(EQ, LT) -> False 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, ty_@0) -> new_ltEs5(vxw410, vxw420) 21.88/7.86 new_compare9([], [], cb) -> EQ 21.88/7.86 new_lt20(vxw79, vxw81, ty_@0) -> new_lt18(vxw79, vxw81) 21.88/7.86 new_lt23(vxw411, vxw421, ty_Bool) -> new_lt7(vxw411, vxw421) 21.88/7.86 new_lt23(vxw411, vxw421, ty_Integer) -> new_lt4(vxw411, vxw421) 21.88/7.86 new_ltEs20(vxw48, vxw49, app(ty_Maybe, ddd)) -> new_ltEs18(vxw48, vxw49, ddd) 21.88/7.86 new_esEs31(vxw3000, vxw40000, app(app(ty_@2, cba), cbb)) -> new_esEs18(vxw3000, vxw40000, cba, cbb) 21.88/7.86 new_lt9(vxw60, vxw63, ty_@0) -> new_lt18(vxw60, vxw63) 21.88/7.86 new_esEs8(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, ty_Bool) -> new_ltEs9(vxw410, vxw420) 21.88/7.86 new_lt9(vxw60, vxw63, ty_Float) -> new_lt15(vxw60, vxw63) 21.88/7.86 new_esEs33(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.86 new_esEs29(vxw3001, vxw40001, app(ty_[], bcf)) -> new_esEs27(vxw3001, vxw40001, bcf) 21.88/7.86 new_compare26(Just(vxw300), Just(vxw4000), cgb) -> new_compare27(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, cgb), cgb) 21.88/7.86 new_esEs31(vxw3000, vxw40000, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs20(vxw3000, vxw40000, cbc, cbd, cbe) 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), ty_Int, bec) -> new_ltEs10(vxw410, vxw420) 21.88/7.86 new_ltEs8(vxw61, vxw64, app(ty_[], ge)) -> new_ltEs4(vxw61, vxw64, ge) 21.88/7.86 new_esEs10(vxw302, vxw4002, ty_Int) -> new_esEs16(vxw302, vxw4002) 21.88/7.86 new_ltEs22(vxw70, vxw71, app(app(ty_@2, eba), ebb)) -> new_ltEs12(vxw70, vxw71, eba, ebb) 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, ty_Char) -> new_ltEs7(vxw410, vxw420) 21.88/7.86 new_esEs10(vxw302, vxw4002, ty_Ordering) -> new_esEs12(vxw302, vxw4002) 21.88/7.86 new_ltEs19(vxw80, vxw82, app(ty_Maybe, dbh)) -> new_ltEs18(vxw80, vxw82, dbh) 21.88/7.86 new_compare4(vxw30, vxw400, app(app(app(ty_@3, cca), ccb), ccc)) -> new_compare18(vxw30, vxw400, cca, ccb, ccc) 21.88/7.86 new_esEs34(vxw3001, vxw40001, ty_Integer) -> new_esEs23(vxw3001, vxw40001) 21.88/7.86 new_lt23(vxw411, vxw421, app(ty_Maybe, fgd)) -> new_lt17(vxw411, vxw421, fgd) 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, app(ty_Maybe, bgg)) -> new_ltEs18(vxw410, vxw420, bgg) 21.88/7.86 new_esEs5(vxw301, vxw4001, app(ty_Maybe, edb)) -> new_esEs25(vxw301, vxw4001, edb) 21.88/7.86 new_esEs35(vxw410, vxw420, app(app(ty_Either, ehc), ehd)) -> new_esEs19(vxw410, vxw420, ehc, ehd) 21.88/7.86 new_compare14(vxw30, vxw400) -> new_primCmpInt(vxw30, vxw400) 21.88/7.86 new_compare28(vxw79, vxw80, vxw81, vxw82, False, dae, daf) -> new_compare112(vxw79, vxw80, vxw81, vxw82, new_lt20(vxw79, vxw81, dae), new_asAs(new_esEs32(vxw79, vxw81, dae), new_ltEs19(vxw80, vxw82, daf)), dae, daf) 21.88/7.86 new_esEs39(vxw411, vxw421, ty_Integer) -> new_esEs23(vxw411, vxw421) 21.88/7.86 new_esEs13(vxw59, vxw62, ty_Bool) -> new_esEs15(vxw59, vxw62) 21.88/7.86 new_ltEs22(vxw70, vxw71, app(ty_[], ecb)) -> new_ltEs4(vxw70, vxw71, ecb) 21.88/7.86 new_esEs25(Just(vxw3000), Just(vxw40000), app(app(ty_Either, cab), cac)) -> new_esEs19(vxw3000, vxw40000, cab, cac) 21.88/7.86 new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, bd, be, bf) -> GT 21.88/7.86 new_lt20(vxw79, vxw81, ty_Integer) -> new_lt4(vxw79, vxw81) 21.88/7.86 new_ltEs24(vxw412, vxw422, app(app(ty_@2, fgf), fgg)) -> new_ltEs12(vxw412, vxw422, fgf, fgg) 21.88/7.86 new_esEs4(vxw300, vxw4000, app(ty_Maybe, bha)) -> new_esEs25(vxw300, vxw4000, bha) 21.88/7.86 new_compare4(vxw30, vxw400, ty_Ordering) -> new_compare15(vxw30, vxw400) 21.88/7.86 new_lt21(vxw410, vxw420, app(ty_Maybe, faa)) -> new_lt17(vxw410, vxw420, faa) 21.88/7.86 new_esEs5(vxw301, vxw4001, ty_@0) -> new_esEs26(vxw301, vxw4001) 21.88/7.86 new_esEs38(vxw410, vxw420, app(app(ty_Either, fed), fee)) -> new_esEs19(vxw410, vxw420, fed, fee) 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), ty_Ordering) -> new_ltEs6(vxw410, vxw420) 21.88/7.86 new_esEs29(vxw3001, vxw40001, app(app(ty_@2, bca), bcb)) -> new_esEs18(vxw3001, vxw40001, bca, bcb) 21.88/7.86 new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, bd, be, bf) -> LT 21.88/7.86 new_esEs28(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.86 new_esEs14(vxw60, vxw63, ty_Integer) -> new_esEs23(vxw60, vxw63) 21.88/7.86 new_ltEs24(vxw412, vxw422, ty_Double) -> new_ltEs11(vxw412, vxw422) 21.88/7.86 new_esEs20(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), bab, bac, bad) -> new_asAs(new_esEs28(vxw3000, vxw40000, bab), new_asAs(new_esEs29(vxw3001, vxw40001, bac), new_esEs30(vxw3002, vxw40002, bad))) 21.88/7.86 new_compare15(GT, LT) -> GT 21.88/7.86 new_esEs28(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.86 new_esEs6(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.86 new_esEs37(vxw3001, vxw40001, ty_Integer) -> new_esEs23(vxw3001, vxw40001) 21.88/7.86 new_compare4(vxw30, vxw400, ty_Bool) -> new_compare8(vxw30, vxw400) 21.88/7.86 new_esEs29(vxw3001, vxw40001, app(ty_Ratio, bbg)) -> new_esEs21(vxw3001, vxw40001, bbg) 21.88/7.86 new_esEs32(vxw79, vxw81, ty_Bool) -> new_esEs15(vxw79, vxw81) 21.88/7.86 new_esEs4(vxw300, vxw4000, app(app(ty_Either, ecg), ech)) -> new_esEs19(vxw300, vxw4000, ecg, ech) 21.88/7.86 new_esEs39(vxw411, vxw421, ty_@0) -> new_esEs26(vxw411, vxw421) 21.88/7.86 new_compare4(vxw30, vxw400, ty_@0) -> new_compare11(vxw30, vxw400) 21.88/7.86 new_compare110(vxw129, vxw130, vxw131, vxw132, False, che, chf) -> GT 21.88/7.86 new_primPlusNat0(Succ(vxw1590), vxw30100) -> Succ(Succ(new_primPlusNat1(vxw1590, vxw30100))) 21.88/7.86 new_esEs13(vxw59, vxw62, app(app(ty_Either, da), db)) -> new_esEs19(vxw59, vxw62, da, db) 21.88/7.86 new_ltEs21(vxw41, vxw42, app(ty_[], ca)) -> new_ltEs4(vxw41, vxw42, ca) 21.88/7.86 new_esEs13(vxw59, vxw62, app(ty_Maybe, dg)) -> new_esEs25(vxw59, vxw62, dg) 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, ty_Char) -> new_compare12(vxw23, vxw24) 21.88/7.86 new_esEs35(vxw410, vxw420, ty_Integer) -> new_esEs23(vxw410, vxw420) 21.88/7.86 new_esEs35(vxw410, vxw420, ty_Char) -> new_esEs24(vxw410, vxw420) 21.88/7.86 new_primPlusNat1(Zero, Zero) -> Zero 21.88/7.86 new_esEs35(vxw410, vxw420, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs20(vxw410, vxw420, ehe, ehf, ehg) 21.88/7.86 new_ltEs22(vxw70, vxw71, ty_Double) -> new_ltEs11(vxw70, vxw71) 21.88/7.86 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.86 new_lt21(vxw410, vxw420, ty_Float) -> new_lt15(vxw410, vxw420) 21.88/7.86 new_esEs32(vxw79, vxw81, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs20(vxw79, vxw81, chh, daa, dab) 21.88/7.86 new_esEs32(vxw79, vxw81, ty_Int) -> new_esEs16(vxw79, vxw81) 21.88/7.86 new_esEs10(vxw302, vxw4002, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs20(vxw302, vxw4002, cfd, cfe, cff) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Integer, ech) -> new_esEs23(vxw3000, vxw40000) 21.88/7.86 new_esEs15(False, True) -> False 21.88/7.86 new_esEs15(True, False) -> False 21.88/7.86 new_esEs31(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.86 new_esEs34(vxw3001, vxw40001, ty_Bool) -> new_esEs15(vxw3001, vxw40001) 21.88/7.86 new_esEs39(vxw411, vxw421, ty_Float) -> new_esEs22(vxw411, vxw421) 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), ty_Ordering, bec) -> new_ltEs6(vxw410, vxw420) 21.88/7.86 new_lt21(vxw410, vxw420, ty_Bool) -> new_lt7(vxw410, vxw420) 21.88/7.86 new_esEs33(vxw3000, vxw40000, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs20(vxw3000, vxw40000, dga, dgb, dgc) 21.88/7.86 new_compare15(LT, EQ) -> LT 21.88/7.86 new_compare29(vxw48, vxw49, True, dcb, dcc) -> EQ 21.88/7.86 new_esEs10(vxw302, vxw4002, ty_Bool) -> new_esEs15(vxw302, vxw4002) 21.88/7.86 new_esEs38(vxw410, vxw420, ty_Float) -> new_esEs22(vxw410, vxw420) 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, ty_@0) -> new_compare11(vxw23, vxw24) 21.88/7.86 new_primCmpNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primCmpNat0(vxw3000, vxw40000) 21.88/7.86 new_lt20(vxw79, vxw81, ty_Char) -> new_lt16(vxw79, vxw81) 21.88/7.86 new_esEs14(vxw60, vxw63, ty_Char) -> new_esEs24(vxw60, vxw63) 21.88/7.86 new_lt8(vxw59, vxw62, ty_Float) -> new_lt15(vxw59, vxw62) 21.88/7.86 new_esEs30(vxw3002, vxw40002, ty_Int) -> new_esEs16(vxw3002, vxw40002) 21.88/7.86 new_compare110(vxw129, vxw130, vxw131, vxw132, True, che, chf) -> LT 21.88/7.86 new_esEs11(vxw300, vxw4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs20(vxw300, vxw4000, cgg, cgh, cha) 21.88/7.86 new_compare8(False, True) -> LT 21.88/7.86 new_compare4(vxw30, vxw400, ty_Integer) -> new_compare5(vxw30, vxw400) 21.88/7.86 new_esEs31(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.86 new_lt20(vxw79, vxw81, ty_Bool) -> new_lt7(vxw79, vxw81) 21.88/7.86 new_esEs13(vxw59, vxw62, ty_Char) -> new_esEs24(vxw59, vxw62) 21.88/7.86 new_esEs27(:(vxw3000, vxw3001), :(vxw40000, vxw40001), caf) -> new_asAs(new_esEs31(vxw3000, vxw40000, caf), new_esEs27(vxw3001, vxw40001, caf)) 21.88/7.86 new_ltEs19(vxw80, vxw82, ty_Float) -> new_ltEs16(vxw80, vxw82) 21.88/7.86 new_esEs34(vxw3001, vxw40001, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_esEs20(vxw3001, vxw40001, dhc, dhd, dhe) 21.88/7.86 new_lt23(vxw411, vxw421, ty_Float) -> new_lt15(vxw411, vxw421) 21.88/7.86 new_lt17(vxw79, vxw81, baa) -> new_esEs12(new_compare26(vxw79, vxw81, baa), LT) 21.88/7.86 new_esEs11(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.86 new_ltEs20(vxw48, vxw49, app(ty_[], dde)) -> new_ltEs4(vxw48, vxw49, dde) 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, ty_Ordering) -> new_compare15(vxw23, vxw24) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Char, ech) -> new_esEs24(vxw3000, vxw40000) 21.88/7.86 new_esEs30(vxw3002, vxw40002, ty_Ordering) -> new_esEs12(vxw3002, vxw40002) 21.88/7.86 new_esEs38(vxw410, vxw420, app(ty_Maybe, ffb)) -> new_esEs25(vxw410, vxw420, ffb) 21.88/7.86 new_lt22(vxw410, vxw420, ty_Float) -> new_lt15(vxw410, vxw420) 21.88/7.86 new_compare16(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.86 new_compare16(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.86 new_ltEs19(vxw80, vxw82, app(ty_[], dca)) -> new_ltEs4(vxw80, vxw82, dca) 21.88/7.86 new_compare15(GT, GT) -> EQ 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), app(app(app(ty_@3, beh), bfa), bfb), bec) -> new_ltEs14(vxw410, vxw420, beh, bfa, bfb) 21.88/7.86 new_lt20(vxw79, vxw81, app(ty_Maybe, baa)) -> new_lt17(vxw79, vxw81, baa) 21.88/7.86 new_esEs19(Left(vxw3000), Right(vxw40000), ecg, ech) -> False 21.88/7.86 new_esEs19(Right(vxw3000), Left(vxw40000), ecg, ech) -> False 21.88/7.86 new_lt22(vxw410, vxw420, ty_@0) -> new_lt18(vxw410, vxw420) 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), ty_@0) -> new_ltEs5(vxw410, vxw420) 21.88/7.86 new_esEs4(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.86 new_esEs33(vxw3000, vxw40000, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.86 new_esEs28(vxw3000, vxw40000, app(ty_Ratio, bae)) -> new_esEs21(vxw3000, vxw40000, bae) 21.88/7.86 new_ltEs6(GT, LT) -> False 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), ty_Char) -> new_ltEs7(vxw410, vxw420) 21.88/7.86 new_ltEs6(EQ, EQ) -> True 21.88/7.86 new_lt23(vxw411, vxw421, ty_@0) -> new_lt18(vxw411, vxw421) 21.88/7.86 new_ltEs23(vxw411, vxw421, ty_Ordering) -> new_ltEs6(vxw411, vxw421) 21.88/7.86 new_primCmpInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> LT 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, ty_Bool) -> new_compare8(vxw23, vxw24) 21.88/7.86 new_esEs27(:(vxw3000, vxw3001), [], caf) -> False 21.88/7.86 new_esEs27([], :(vxw40000, vxw40001), caf) -> False 21.88/7.86 new_esEs38(vxw410, vxw420, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs20(vxw410, vxw420, fef, feg, feh) 21.88/7.86 new_esEs7(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.86 new_ltEs4(vxw41, vxw42, ca) -> new_fsEs(new_compare9(vxw41, vxw42, ca)) 21.88/7.86 new_ltEs6(GT, GT) -> True 21.88/7.86 new_esEs28(vxw3000, vxw40000, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.86 new_esEs28(vxw3000, vxw40000, app(app(ty_@2, bag), bah)) -> new_esEs18(vxw3000, vxw40000, bag, bah) 21.88/7.86 new_esEs9(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 21.88/7.86 new_esEs38(vxw410, vxw420, app(ty_[], ffc)) -> new_esEs27(vxw410, vxw420, ffc) 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, app(ty_Ratio, bgf)) -> new_ltEs15(vxw410, vxw420, bgf) 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), ty_Integer) -> new_ltEs17(vxw410, vxw420) 21.88/7.86 new_esEs7(vxw300, vxw4000, app(app(ty_@2, ega), egb)) -> new_esEs18(vxw300, vxw4000, ega, egb) 21.88/7.86 new_esEs7(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.86 new_ltEs22(vxw70, vxw71, ty_Float) -> new_ltEs16(vxw70, vxw71) 21.88/7.86 new_esEs37(vxw3001, vxw40001, ty_Int) -> new_esEs16(vxw3001, vxw40001) 21.88/7.86 new_primCmpInt(Pos(Zero), Neg(Succ(vxw40000))) -> GT 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), ty_Int) -> new_ltEs10(vxw410, vxw420) 21.88/7.86 new_lt5(vxw79, vxw81, bc) -> new_esEs12(new_compare6(vxw79, vxw81, bc), LT) 21.88/7.86 new_esEs32(vxw79, vxw81, app(ty_Ratio, bc)) -> new_esEs21(vxw79, vxw81, bc) 21.88/7.86 new_esEs4(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.86 new_lt22(vxw410, vxw420, app(app(ty_@2, feb), fec)) -> new_lt6(vxw410, vxw420, feb, fec) 21.88/7.86 new_ltEs24(vxw412, vxw422, ty_Int) -> new_ltEs10(vxw412, vxw422) 21.88/7.86 new_lt15(vxw79, vxw81) -> new_esEs12(new_compare19(vxw79, vxw81), LT) 21.88/7.86 new_primCmpInt(Neg(Succ(vxw3000)), Neg(vxw4000)) -> new_primCmpNat0(vxw4000, Succ(vxw3000)) 21.88/7.86 new_ltEs24(vxw412, vxw422, app(ty_Ratio, fhe)) -> new_ltEs15(vxw412, vxw422, fhe) 21.88/7.86 new_esEs14(vxw60, vxw63, app(ty_Maybe, fa)) -> new_esEs25(vxw60, vxw63, fa) 21.88/7.86 new_ltEs6(EQ, GT) -> True 21.88/7.86 new_ltEs8(vxw61, vxw64, ty_Double) -> new_ltEs11(vxw61, vxw64) 21.88/7.86 new_esEs9(vxw301, vxw4001, app(ty_Ratio, cdf)) -> new_esEs21(vxw301, vxw4001, cdf) 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), ty_Bool, bec) -> new_ltEs9(vxw410, vxw420) 21.88/7.86 new_compare28(vxw79, vxw80, vxw81, vxw82, True, dae, daf) -> EQ 21.88/7.86 new_esEs15(False, False) -> True 21.88/7.86 new_esEs5(vxw301, vxw4001, ty_Char) -> new_esEs24(vxw301, vxw4001) 21.88/7.86 new_primEqInt(Pos(Succ(vxw30000)), Pos(Zero)) -> False 21.88/7.86 new_primEqInt(Pos(Zero), Pos(Succ(vxw400000))) -> False 21.88/7.86 new_ltEs9(False, True) -> True 21.88/7.86 new_compare210(vxw41, vxw42, True, eaa, eab) -> EQ 21.88/7.86 new_esEs28(vxw3000, vxw40000, app(ty_[], bbd)) -> new_esEs27(vxw3000, vxw40000, bbd) 21.88/7.86 new_lt21(vxw410, vxw420, ty_Integer) -> new_lt4(vxw410, vxw420) 21.88/7.86 new_primCompAux00(vxw23, vxw24, EQ, ty_Integer) -> new_compare5(vxw23, vxw24) 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), app(app(ty_Either, dec), ded)) -> new_ltEs13(vxw410, vxw420, dec, ded) 21.88/7.86 new_esEs13(vxw59, vxw62, ty_Double) -> new_esEs17(vxw59, vxw62) 21.88/7.86 new_esEs39(vxw411, vxw421, app(ty_Maybe, fgd)) -> new_esEs25(vxw411, vxw421, fgd) 21.88/7.86 new_lt9(vxw60, vxw63, app(app(ty_@2, ea), eb)) -> new_lt6(vxw60, vxw63, ea, eb) 21.88/7.86 new_esEs33(vxw3000, vxw40000, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.86 new_esEs7(vxw300, vxw4000, app(ty_[], egf)) -> new_esEs27(vxw300, vxw4000, egf) 21.88/7.86 new_primCmpNat0(Zero, Zero) -> EQ 21.88/7.86 new_ltEs15(vxw41, vxw42, chg) -> new_fsEs(new_compare6(vxw41, vxw42, chg)) 21.88/7.86 new_lt6(vxw79, vxw81, bg, bh) -> new_esEs12(new_compare7(vxw79, vxw81, bg, bh), LT) 21.88/7.86 new_esEs13(vxw59, vxw62, ty_@0) -> new_esEs26(vxw59, vxw62) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), app(app(ty_@2, fbh), fca), ech) -> new_esEs18(vxw3000, vxw40000, fbh, fca) 21.88/7.86 new_esEs32(vxw79, vxw81, ty_Ordering) -> new_esEs12(vxw79, vxw81) 21.88/7.86 new_esEs30(vxw3002, vxw40002, ty_Float) -> new_esEs22(vxw3002, vxw40002) 21.88/7.86 new_esEs18(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), dfc, dfd) -> new_asAs(new_esEs33(vxw3000, vxw40000, dfc), new_esEs34(vxw3001, vxw40001, dfd)) 21.88/7.86 new_ltEs6(LT, GT) -> True 21.88/7.86 new_lt8(vxw59, vxw62, ty_Integer) -> new_lt4(vxw59, vxw62) 21.88/7.86 new_esEs30(vxw3002, vxw40002, app(app(ty_@2, bdc), bdd)) -> new_esEs18(vxw3002, vxw40002, bdc, bdd) 21.88/7.86 new_esEs30(vxw3002, vxw40002, ty_Double) -> new_esEs17(vxw3002, vxw40002) 21.88/7.86 new_compare27(vxw70, vxw71, True, eah) -> EQ 21.88/7.86 new_esEs12(LT, LT) -> True 21.88/7.86 new_lt21(vxw410, vxw420, ty_Char) -> new_lt16(vxw410, vxw420) 21.88/7.86 new_esEs38(vxw410, vxw420, ty_@0) -> new_esEs26(vxw410, vxw420) 21.88/7.86 new_lt8(vxw59, vxw62, app(ty_Maybe, dg)) -> new_lt17(vxw59, vxw62, dg) 21.88/7.86 new_compare4(vxw30, vxw400, ty_Char) -> new_compare12(vxw30, vxw400) 21.88/7.86 new_esEs35(vxw410, vxw420, ty_Bool) -> new_esEs15(vxw410, vxw420) 21.88/7.86 new_ltEs20(vxw48, vxw49, ty_Double) -> new_ltEs11(vxw48, vxw49) 21.88/7.86 new_esEs34(vxw3001, vxw40001, app(ty_Maybe, dgh)) -> new_esEs25(vxw3001, vxw40001, dgh) 21.88/7.86 new_ltEs8(vxw61, vxw64, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs14(vxw61, vxw64, fh, ga, gb) 21.88/7.86 new_compare114(vxw119, vxw120, False, ecc) -> GT 21.88/7.86 new_esEs6(vxw300, vxw4000, app(app(ty_Either, efe), eff)) -> new_esEs19(vxw300, vxw4000, efe, eff) 21.88/7.86 new_esEs7(vxw300, vxw4000, app(app(app(ty_@3, egc), egd), ege)) -> new_esEs20(vxw300, vxw4000, egc, egd, ege) 21.88/7.86 new_esEs24(Char(vxw3000), Char(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 21.88/7.86 new_ltEs22(vxw70, vxw71, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs14(vxw70, vxw71, ebe, ebf, ebg) 21.88/7.86 new_lt4(vxw79, vxw81) -> new_esEs12(new_compare5(vxw79, vxw81), LT) 21.88/7.86 new_ltEs8(vxw61, vxw64, ty_Float) -> new_ltEs16(vxw61, vxw64) 21.88/7.86 new_esEs13(vxw59, vxw62, ty_Float) -> new_esEs22(vxw59, vxw62) 21.88/7.86 new_ltEs18(Just(vxw410), Just(vxw420), app(ty_Ratio, deh)) -> new_ltEs15(vxw410, vxw420, deh) 21.88/7.86 new_lt23(vxw411, vxw421, app(ty_[], fge)) -> new_lt19(vxw411, vxw421, fge) 21.88/7.86 new_esEs13(vxw59, vxw62, app(app(app(ty_@3, dc), dd), de)) -> new_esEs20(vxw59, vxw62, dc, dd, de) 21.88/7.86 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, app(ty_Ratio, fch)) -> new_esEs21(vxw3000, vxw40000, fch) 21.88/7.86 new_esEs28(vxw3000, vxw40000, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.86 new_esEs13(vxw59, vxw62, app(ty_[], dh)) -> new_esEs27(vxw59, vxw62, dh) 21.88/7.86 new_esEs7(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.86 new_esEs23(Integer(vxw3000), Integer(vxw40000)) -> new_primEqInt(vxw3000, vxw40000) 21.88/7.86 new_lt8(vxw59, vxw62, ty_Bool) -> new_lt7(vxw59, vxw62) 21.88/7.86 new_esEs29(vxw3001, vxw40001, app(ty_Maybe, bbh)) -> new_esEs25(vxw3001, vxw40001, bbh) 21.88/7.86 new_ltEs8(vxw61, vxw64, app(app(ty_@2, fc), fd)) -> new_ltEs12(vxw61, vxw64, fc, fd) 21.88/7.86 new_esEs25(Just(vxw3000), Just(vxw40000), app(ty_Maybe, bhc)) -> new_esEs25(vxw3000, vxw40000, bhc) 21.88/7.86 new_ltEs24(vxw412, vxw422, ty_Integer) -> new_ltEs17(vxw412, vxw422) 21.88/7.86 new_esEs30(vxw3002, vxw40002, app(ty_[], bdh)) -> new_esEs27(vxw3002, vxw40002, bdh) 21.88/7.86 new_ltEs20(vxw48, vxw49, ty_@0) -> new_ltEs5(vxw48, vxw49) 21.88/7.86 new_esEs9(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) 21.88/7.86 new_esEs13(vxw59, vxw62, app(app(ty_@2, cf), cg)) -> new_esEs18(vxw59, vxw62, cf, cg) 21.88/7.86 new_lt20(vxw79, vxw81, app(app(app(ty_@3, chh), daa), dab)) -> new_lt14(vxw79, vxw81, chh, daa, dab) 21.88/7.86 new_esEs4(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.86 new_ltEs21(vxw41, vxw42, ty_Bool) -> new_ltEs9(vxw41, vxw42) 21.88/7.86 new_esEs11(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.86 new_esEs12(EQ, GT) -> False 21.88/7.86 new_esEs12(GT, EQ) -> False 21.88/7.86 new_lt18(vxw79, vxw81) -> new_esEs12(new_compare11(vxw79, vxw81), LT) 21.88/7.86 new_compare4(vxw30, vxw400, app(app(ty_Either, eec), eed)) -> new_compare17(vxw30, vxw400, eec, eed) 21.88/7.86 new_compare9(:(vxw300, vxw301), [], cb) -> GT 21.88/7.86 new_esEs9(vxw301, vxw4001, ty_Int) -> new_esEs16(vxw301, vxw4001) 21.88/7.86 new_ltEs23(vxw411, vxw421, app(ty_[], fbd)) -> new_ltEs4(vxw411, vxw421, fbd) 21.88/7.86 new_primCmpNat0(Succ(vxw3000), Zero) -> GT 21.88/7.86 new_esEs10(vxw302, vxw4002, app(ty_Ratio, ceh)) -> new_esEs21(vxw302, vxw4002, ceh) 21.88/7.86 new_esEs35(vxw410, vxw420, app(app(ty_@2, eha), ehb)) -> new_esEs18(vxw410, vxw420, eha, ehb) 21.88/7.86 new_lt8(vxw59, vxw62, ty_Char) -> new_lt16(vxw59, vxw62) 21.88/7.86 new_pePe(False, vxw158) -> vxw158 21.88/7.86 new_lt22(vxw410, vxw420, app(ty_Ratio, ffa)) -> new_lt5(vxw410, vxw420, ffa) 21.88/7.86 new_esEs10(vxw302, vxw4002, ty_Double) -> new_esEs17(vxw302, vxw4002) 21.88/7.86 new_lt22(vxw410, vxw420, ty_Ordering) -> new_lt11(vxw410, vxw420) 21.88/7.86 new_esEs17(Double(vxw3000, vxw3001), Double(vxw40000, vxw40001)) -> new_esEs16(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) 21.88/7.86 new_ltEs13(Left(vxw410), Right(vxw420), bff, bec) -> True 21.88/7.86 new_esEs33(vxw3000, vxw40000, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.86 new_ltEs19(vxw80, vxw82, ty_Int) -> new_ltEs10(vxw80, vxw82) 21.88/7.86 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.86 new_ltEs9(True, True) -> True 21.88/7.86 new_compare15(EQ, LT) -> GT 21.88/7.86 new_esEs30(vxw3002, vxw40002, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs20(vxw3002, vxw40002, bde, bdf, bdg) 21.88/7.86 new_lt9(vxw60, vxw63, ty_Int) -> new_lt10(vxw60, vxw63) 21.88/7.86 new_ltEs6(LT, LT) -> True 21.88/7.86 new_ltEs19(vxw80, vxw82, ty_Integer) -> new_ltEs17(vxw80, vxw82) 21.88/7.86 new_compare112(vxw129, vxw130, vxw131, vxw132, True, vxw134, che, chf) -> new_compare110(vxw129, vxw130, vxw131, vxw132, True, che, chf) 21.88/7.86 new_lt21(vxw410, vxw420, ty_Double) -> new_lt12(vxw410, vxw420) 21.88/7.86 new_esEs35(vxw410, vxw420, app(ty_Ratio, ehh)) -> new_esEs21(vxw410, vxw420, ehh) 21.88/7.86 new_esEs30(vxw3002, vxw40002, ty_Bool) -> new_esEs15(vxw3002, vxw40002) 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), app(app(ty_Either, bef), beg), bec) -> new_ltEs13(vxw410, vxw420, bef, beg) 21.88/7.86 new_primEqInt(Pos(Zero), Neg(Succ(vxw400000))) -> False 21.88/7.86 new_primEqInt(Neg(Zero), Pos(Succ(vxw400000))) -> False 21.88/7.86 new_esEs10(vxw302, vxw4002, ty_Float) -> new_esEs22(vxw302, vxw4002) 21.88/7.86 new_esEs33(vxw3000, vxw40000, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.86 new_esEs34(vxw3001, vxw40001, ty_Int) -> new_esEs16(vxw3001, vxw40001) 21.88/7.86 new_ltEs20(vxw48, vxw49, app(app(app(ty_@3, dch), dda), ddb)) -> new_ltEs14(vxw48, vxw49, dch, dda, ddb) 21.88/7.86 new_esEs9(vxw301, vxw4001, app(app(ty_Either, cef), ceg)) -> new_esEs19(vxw301, vxw4001, cef, ceg) 21.88/7.86 new_lt16(vxw79, vxw81) -> new_esEs12(new_compare12(vxw79, vxw81), LT) 21.88/7.86 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.86 new_esEs10(vxw302, vxw4002, ty_Integer) -> new_esEs23(vxw302, vxw4002) 21.88/7.86 new_esEs6(vxw300, vxw4000, app(ty_Maybe, eef)) -> new_esEs25(vxw300, vxw4000, eef) 21.88/7.86 new_esEs29(vxw3001, vxw40001, ty_Char) -> new_esEs24(vxw3001, vxw40001) 21.88/7.86 new_esEs34(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, app(app(app(ty_@3, bgc), bgd), bge)) -> new_ltEs14(vxw410, vxw420, bgc, bgd, bge) 21.88/7.86 new_esEs22(Float(vxw3000, vxw3001), Float(vxw40000, vxw40001)) -> new_esEs16(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) 21.88/7.86 new_compare16(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.86 new_esEs30(vxw3002, vxw40002, ty_Integer) -> new_esEs23(vxw3002, vxw40002) 21.88/7.86 new_lt9(vxw60, vxw63, app(app(ty_Either, ec), ed)) -> new_lt13(vxw60, vxw63, ec, ed) 21.88/7.86 new_esEs8(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.86 new_esEs31(vxw3000, vxw40000, app(ty_Maybe, cah)) -> new_esEs25(vxw3000, vxw40000, cah) 21.88/7.86 new_compare8(True, True) -> EQ 21.88/7.86 new_primPlusNat0(Zero, vxw30100) -> Succ(vxw30100) 21.88/7.86 new_esEs5(vxw301, vxw4001, app(app(app(ty_@3, ede), edf), edg)) -> new_esEs20(vxw301, vxw4001, ede, edf, edg) 21.88/7.86 new_ltEs6(LT, EQ) -> True 21.88/7.86 new_esEs33(vxw3000, vxw40000, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.86 new_compare4(vxw30, vxw400, app(app(ty_@2, ecd), ece)) -> new_compare7(vxw30, vxw400, ecd, ece) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Ordering, ech) -> new_esEs12(vxw3000, vxw40000) 21.88/7.86 new_lt9(vxw60, vxw63, app(app(app(ty_@3, ee), ef), eg)) -> new_lt14(vxw60, vxw63, ee, ef, eg) 21.88/7.86 new_ltEs19(vxw80, vxw82, ty_Bool) -> new_ltEs9(vxw80, vxw82) 21.88/7.86 new_ltEs19(vxw80, vxw82, app(app(ty_Either, dbb), dbc)) -> new_ltEs13(vxw80, vxw82, dbb, dbc) 21.88/7.86 new_esEs35(vxw410, vxw420, ty_Float) -> new_esEs22(vxw410, vxw420) 21.88/7.86 new_lt23(vxw411, vxw421, ty_Char) -> new_lt16(vxw411, vxw421) 21.88/7.86 new_esEs16(vxw300, vxw4000) -> new_primEqInt(vxw300, vxw4000) 21.88/7.86 new_lt8(vxw59, vxw62, ty_Double) -> new_lt12(vxw59, vxw62) 21.88/7.86 new_compare4(vxw30, vxw400, ty_Int) -> new_compare14(vxw30, vxw400) 21.88/7.86 new_ltEs10(vxw41, vxw42) -> new_fsEs(new_compare14(vxw41, vxw42)) 21.88/7.86 new_ltEs20(vxw48, vxw49, app(app(ty_@2, dcd), dce)) -> new_ltEs12(vxw48, vxw49, dcd, dce) 21.88/7.86 new_ltEs21(vxw41, vxw42, ty_Int) -> new_ltEs10(vxw41, vxw42) 21.88/7.86 new_esEs8(vxw300, vxw4000, app(ty_Maybe, cce)) -> new_esEs25(vxw300, vxw4000, cce) 21.88/7.86 new_esEs32(vxw79, vxw81, ty_Integer) -> new_esEs23(vxw79, vxw81) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Int, ech) -> new_esEs16(vxw3000, vxw40000) 21.88/7.86 new_esEs11(vxw300, vxw4000, app(ty_[], chb)) -> new_esEs27(vxw300, vxw4000, chb) 21.88/7.86 new_esEs28(vxw3000, vxw40000, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.86 new_ltEs16(vxw41, vxw42) -> new_fsEs(new_compare19(vxw41, vxw42)) 21.88/7.86 new_esEs6(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.86 new_ltEs21(vxw41, vxw42, ty_Integer) -> new_ltEs17(vxw41, vxw42) 21.88/7.86 new_esEs28(vxw3000, vxw40000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs20(vxw3000, vxw40000, bba, bbb, bbc) 21.88/7.86 new_esEs35(vxw410, vxw420, ty_@0) -> new_esEs26(vxw410, vxw420) 21.88/7.86 new_esEs10(vxw302, vxw4002, app(app(ty_Either, cfh), cga)) -> new_esEs19(vxw302, vxw4002, cfh, cga) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), app(ty_Maybe, fbg), ech) -> new_esEs25(vxw3000, vxw40000, fbg) 21.88/7.86 new_ltEs13(Right(vxw410), Right(vxw420), bff, ty_Ordering) -> new_ltEs6(vxw410, vxw420) 21.88/7.86 new_compare26(Nothing, Nothing, cgb) -> EQ 21.88/7.86 new_esEs7(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.86 new_esEs11(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.86 new_lt22(vxw410, vxw420, app(app(ty_Either, fed), fee)) -> new_lt13(vxw410, vxw420, fed, fee) 21.88/7.86 new_esEs31(vxw3000, vxw40000, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.86 new_lt20(vxw79, vxw81, ty_Ordering) -> new_lt11(vxw79, vxw81) 21.88/7.86 new_compare12(Char(vxw300), Char(vxw4000)) -> new_primCmpNat0(vxw300, vxw4000) 21.88/7.86 new_primMulInt(Neg(vxw40000), Neg(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.86 new_primCmpInt(Pos(Zero), Pos(Succ(vxw40000))) -> new_primCmpNat0(Zero, Succ(vxw40000)) 21.88/7.86 new_compare4(vxw30, vxw400, app(ty_Maybe, cgb)) -> new_compare26(vxw30, vxw400, cgb) 21.88/7.86 new_ltEs22(vxw70, vxw71, ty_Integer) -> new_ltEs17(vxw70, vxw71) 21.88/7.86 new_esEs9(vxw301, vxw4001, ty_Float) -> new_esEs22(vxw301, vxw4001) 21.88/7.86 new_esEs4(vxw300, vxw4000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs20(vxw300, vxw4000, bab, bac, bad) 21.88/7.86 new_ltEs22(vxw70, vxw71, ty_Int) -> new_ltEs10(vxw70, vxw71) 21.88/7.86 new_esEs32(vxw79, vxw81, app(app(ty_Either, cad), cae)) -> new_esEs19(vxw79, vxw81, cad, cae) 21.88/7.86 new_ltEs8(vxw61, vxw64, app(ty_Maybe, gd)) -> new_ltEs18(vxw61, vxw64, gd) 21.88/7.86 new_compare26(Just(vxw300), Nothing, cgb) -> GT 21.88/7.86 new_compare19(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.86 new_lt23(vxw411, vxw421, app(app(app(ty_@3, ffh), fga), fgb)) -> new_lt14(vxw411, vxw421, ffh, fga, fgb) 21.88/7.86 new_esEs10(vxw302, vxw4002, app(app(ty_@2, cfb), cfc)) -> new_esEs18(vxw302, vxw4002, cfb, cfc) 21.88/7.86 new_esEs34(vxw3001, vxw40001, app(ty_Ratio, dgg)) -> new_esEs21(vxw3001, vxw40001, dgg) 21.88/7.86 new_esEs33(vxw3000, vxw40000, app(app(ty_@2, dfg), dfh)) -> new_esEs18(vxw3000, vxw40000, dfg, dfh) 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), app(app(ty_@2, bed), bee), bec) -> new_ltEs12(vxw410, vxw420, bed, bee) 21.88/7.86 new_esEs33(vxw3000, vxw40000, app(ty_[], dgd)) -> new_esEs27(vxw3000, vxw40000, dgd) 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), app(ty_[], bfe), bec) -> new_ltEs4(vxw410, vxw420, bfe) 21.88/7.86 new_ltEs22(vxw70, vxw71, app(ty_Maybe, eca)) -> new_ltEs18(vxw70, vxw71, eca) 21.88/7.86 new_esEs10(vxw302, vxw4002, app(ty_[], cfg)) -> new_esEs27(vxw302, vxw4002, cfg) 21.88/7.86 new_compare113(vxw109, vxw110, True, ddf, ddg) -> LT 21.88/7.86 new_ltEs24(vxw412, vxw422, app(ty_Maybe, fhf)) -> new_ltEs18(vxw412, vxw422, fhf) 21.88/7.86 new_esEs11(vxw300, vxw4000, app(app(ty_@2, cge), cgf)) -> new_esEs18(vxw300, vxw4000, cge, cgf) 21.88/7.86 new_primMulInt(Pos(vxw40000), Neg(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.86 new_primMulInt(Neg(vxw40000), Pos(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.86 new_esEs7(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.86 new_ltEs18(Nothing, Nothing, ddh) -> True 21.88/7.86 new_compare112(vxw129, vxw130, vxw131, vxw132, False, vxw134, che, chf) -> new_compare110(vxw129, vxw130, vxw131, vxw132, vxw134, che, chf) 21.88/7.86 new_esEs8(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.86 new_esEs28(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.86 new_ltEs6(GT, EQ) -> False 21.88/7.86 new_esEs14(vxw60, vxw63, ty_Ordering) -> new_esEs12(vxw60, vxw63) 21.88/7.86 new_lt21(vxw410, vxw420, app(ty_[], fab)) -> new_lt19(vxw410, vxw420, fab) 21.88/7.86 new_esEs19(Left(vxw3000), Left(vxw40000), app(app(ty_Either, fcf), fcg), ech) -> new_esEs19(vxw3000, vxw40000, fcf, fcg) 21.88/7.86 new_compare6(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Int) -> new_compare14(new_sr(vxw300, vxw4001), new_sr(vxw4000, vxw301)) 21.88/7.86 new_esEs31(vxw3000, vxw40000, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.86 new_ltEs24(vxw412, vxw422, ty_Bool) -> new_ltEs9(vxw412, vxw422) 21.88/7.86 new_esEs11(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.86 new_lt23(vxw411, vxw421, ty_Ordering) -> new_lt11(vxw411, vxw421) 21.88/7.86 new_compare25(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cc, cd, ce) -> new_compare13(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, new_lt8(vxw59, vxw62, cc), new_asAs(new_esEs13(vxw59, vxw62, cc), new_pePe(new_lt9(vxw60, vxw63, cd), new_asAs(new_esEs14(vxw60, vxw63, cd), new_ltEs8(vxw61, vxw64, ce)))), cc, cd, ce) 21.88/7.86 new_sr0(Integer(vxw40000), Integer(vxw3010)) -> Integer(new_primMulInt(vxw40000, vxw3010)) 21.88/7.86 new_esEs30(vxw3002, vxw40002, app(app(ty_Either, bea), beb)) -> new_esEs19(vxw3002, vxw40002, bea, beb) 21.88/7.86 new_esEs8(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.86 new_compare13(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, vxw151, bd, be, bf) -> new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, bd, be, bf) 21.88/7.86 new_ltEs8(vxw61, vxw64, ty_Ordering) -> new_ltEs6(vxw61, vxw64) 21.88/7.86 new_ltEs24(vxw412, vxw422, ty_Char) -> new_ltEs7(vxw412, vxw422) 21.88/7.86 new_lt20(vxw79, vxw81, ty_Int) -> new_lt10(vxw79, vxw81) 21.88/7.86 new_lt22(vxw410, vxw420, ty_Double) -> new_lt12(vxw410, vxw420) 21.88/7.86 new_ltEs13(Left(vxw410), Left(vxw420), ty_Integer, bec) -> new_ltEs17(vxw410, vxw420) 21.88/7.86 new_asAs(True, vxw97) -> vxw97 21.88/7.86 new_esEs25(Just(vxw3000), Just(vxw40000), app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs20(vxw3000, vxw40000, bhf, bhg, bhh) 21.88/7.86 new_esEs14(vxw60, vxw63, ty_Int) -> new_esEs16(vxw60, vxw63) 21.88/7.86 new_esEs4(vxw300, vxw4000, app(ty_[], caf)) -> new_esEs27(vxw300, vxw4000, caf) 21.88/7.86 new_ltEs8(vxw61, vxw64, app(app(ty_Either, ff), fg)) -> new_ltEs13(vxw61, vxw64, ff, fg) 21.88/7.87 new_esEs13(vxw59, vxw62, app(ty_Ratio, df)) -> new_esEs21(vxw59, vxw62, df) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bff, app(app(ty_Either, bga), bgb)) -> new_ltEs13(vxw410, vxw420, bga, bgb) 21.88/7.87 new_esEs32(vxw79, vxw81, ty_Float) -> new_esEs22(vxw79, vxw81) 21.88/7.87 new_esEs5(vxw301, vxw4001, app(app(ty_@2, edc), edd)) -> new_esEs18(vxw301, vxw4001, edc, edd) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), ty_Float) -> new_ltEs16(vxw410, vxw420) 21.88/7.87 new_compare111(vxw102, vxw103, False, dac, dad) -> GT 21.88/7.87 new_ltEs18(Just(vxw410), Nothing, ddh) -> False 21.88/7.87 new_esEs30(vxw3002, vxw40002, ty_Char) -> new_esEs24(vxw3002, vxw40002) 21.88/7.87 new_esEs10(vxw302, vxw4002, ty_@0) -> new_esEs26(vxw302, vxw4002) 21.88/7.87 new_ltEs19(vxw80, vxw82, ty_Ordering) -> new_ltEs6(vxw80, vxw82) 21.88/7.87 new_lt21(vxw410, vxw420, app(ty_Ratio, ehh)) -> new_lt5(vxw410, vxw420, ehh) 21.88/7.87 new_lt7(vxw79, vxw81) -> new_esEs12(new_compare8(vxw79, vxw81), LT) 21.88/7.87 new_sr(vxw4000, vxw301) -> new_primMulInt(vxw4000, vxw301) 21.88/7.87 new_esEs38(vxw410, vxw420, app(ty_Ratio, ffa)) -> new_esEs21(vxw410, vxw420, ffa) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, ty_Float) -> new_compare19(vxw23, vxw24) 21.88/7.87 new_compare9(:(vxw300, vxw301), :(vxw4000, vxw4001), cb) -> new_primCompAux1(vxw300, vxw4000, vxw301, vxw4001, cb) 21.88/7.87 new_lt8(vxw59, vxw62, app(ty_[], dh)) -> new_lt19(vxw59, vxw62, dh) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs20(vxw3000, vxw40000, fdd, fde, fdf) 21.88/7.87 new_primMulNat0(Zero, Zero) -> Zero 21.88/7.87 new_ltEs9(False, False) -> True 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.87 new_ltEs5(vxw41, vxw42) -> new_fsEs(new_compare11(vxw41, vxw42)) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, ty_Double) -> new_compare16(vxw23, vxw24) 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_Bool) -> new_ltEs9(vxw48, vxw49) 21.88/7.87 new_ltEs17(vxw41, vxw42) -> new_fsEs(new_compare5(vxw41, vxw42)) 21.88/7.87 new_ltEs22(vxw70, vxw71, app(app(ty_Either, ebc), ebd)) -> new_ltEs13(vxw70, vxw71, ebc, ebd) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), app(app(ty_@2, bhd), bhe)) -> new_esEs18(vxw3000, vxw40000, bhd, bhe) 21.88/7.87 new_lt9(vxw60, vxw63, app(ty_[], fb)) -> new_lt19(vxw60, vxw63, fb) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, app(ty_[], hh)) -> new_compare9(vxw23, vxw24, hh) 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.87 new_esEs35(vxw410, vxw420, app(ty_[], fab)) -> new_esEs27(vxw410, vxw420, fab) 21.88/7.87 new_lt8(vxw59, vxw62, app(ty_Ratio, df)) -> new_lt5(vxw59, vxw62, df) 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.87 new_compare13(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, vxw151, bd, be, bf) -> new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, vxw151, bd, be, bf) 21.88/7.87 new_ltEs9(True, False) -> False 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), app(ty_[], caa)) -> new_esEs27(vxw3000, vxw40000, caa) 21.88/7.87 new_compare4(vxw30, vxw400, ty_Float) -> new_compare19(vxw30, vxw400) 21.88/7.87 new_esEs39(vxw411, vxw421, ty_Ordering) -> new_esEs12(vxw411, vxw421) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), app(ty_Maybe, bfd), bec) -> new_ltEs18(vxw410, vxw420, bfd) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_Char) -> new_ltEs7(vxw48, vxw49) 21.88/7.87 new_primEqInt(Neg(Succ(vxw30000)), Neg(Zero)) -> False 21.88/7.87 new_primEqInt(Neg(Zero), Neg(Succ(vxw400000))) -> False 21.88/7.87 new_lt19(vxw79, vxw81, dag) -> new_esEs12(new_compare9(vxw79, vxw81, dag), LT) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bff, ty_Double) -> new_ltEs11(vxw410, vxw420) 21.88/7.87 new_compare15(EQ, GT) -> LT 21.88/7.87 new_esEs21(:%(vxw3000, vxw3001), :%(vxw40000, vxw40001), ecf) -> new_asAs(new_esEs36(vxw3000, vxw40000, ecf), new_esEs37(vxw3001, vxw40001, ecf)) 21.88/7.87 new_esEs39(vxw411, vxw421, ty_Int) -> new_esEs16(vxw411, vxw421) 21.88/7.87 new_primEqInt(Pos(Succ(vxw30000)), Pos(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) 21.88/7.87 new_lt8(vxw59, vxw62, ty_Int) -> new_lt10(vxw59, vxw62) 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) 21.88/7.87 new_compare4(vxw30, vxw400, ty_Double) -> new_compare16(vxw30, vxw400) 21.88/7.87 new_ltEs12(@2(vxw410, vxw411), @2(vxw420, vxw421), eac, ead) -> new_pePe(new_lt21(vxw410, vxw420, eac), new_asAs(new_esEs35(vxw410, vxw420, eac), new_ltEs23(vxw411, vxw421, ead))) 21.88/7.87 new_esEs28(vxw3000, vxw40000, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.87 new_compare4(vxw30, vxw400, app(ty_[], cb)) -> new_compare9(vxw30, vxw400, cb) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.87 new_primEqInt(Pos(Succ(vxw30000)), Neg(vxw40000)) -> False 21.88/7.87 new_primEqInt(Neg(Succ(vxw30000)), Pos(vxw40000)) -> False 21.88/7.87 new_esEs26(@0, @0) -> True 21.88/7.87 new_lt20(vxw79, vxw81, app(app(ty_@2, bg), bh)) -> new_lt6(vxw79, vxw81, bg, bh) 21.88/7.87 new_primCmpInt(Neg(Zero), Neg(Succ(vxw40000))) -> new_primCmpNat0(Succ(vxw40000), Zero) 21.88/7.87 new_esEs14(vxw60, vxw63, app(ty_Ratio, eh)) -> new_esEs21(vxw60, vxw63, eh) 21.88/7.87 new_ltEs21(vxw41, vxw42, app(app(ty_Either, bff), bec)) -> new_ltEs13(vxw41, vxw42, bff, bec) 21.88/7.87 new_esEs7(vxw300, vxw4000, app(ty_Ratio, efg)) -> new_esEs21(vxw300, vxw4000, efg) 21.88/7.87 new_ltEs8(vxw61, vxw64, app(ty_Ratio, gc)) -> new_ltEs15(vxw61, vxw64, gc) 21.88/7.87 new_esEs29(vxw3001, vxw40001, app(app(ty_Either, bcg), bch)) -> new_esEs19(vxw3001, vxw40001, bcg, bch) 21.88/7.87 new_esEs31(vxw3000, vxw40000, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.87 new_ltEs22(vxw70, vxw71, app(ty_Ratio, ebh)) -> new_ltEs15(vxw70, vxw71, ebh) 21.88/7.87 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 21.88/7.87 new_lt20(vxw79, vxw81, app(ty_[], dag)) -> new_lt19(vxw79, vxw81, dag) 21.88/7.87 new_lt23(vxw411, vxw421, app(app(ty_@2, ffd), ffe)) -> new_lt6(vxw411, vxw421, ffd, ffe) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), app(app(ty_@2, dea), deb)) -> new_ltEs12(vxw410, vxw420, dea, deb) 21.88/7.87 new_primCompAux00(vxw23, vxw24, LT, gf) -> LT 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, app(app(ty_Either, fdh), fea)) -> new_esEs19(vxw3000, vxw40000, fdh, fea) 21.88/7.87 new_esEs6(vxw300, vxw4000, app(ty_Ratio, eee)) -> new_esEs21(vxw300, vxw4000, eee) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), ty_Double) -> new_ltEs11(vxw410, vxw420) 21.88/7.87 new_esEs35(vxw410, vxw420, ty_Double) -> new_esEs17(vxw410, vxw420) 21.88/7.87 new_not(False) -> True 21.88/7.87 new_esEs39(vxw411, vxw421, app(ty_[], fge)) -> new_esEs27(vxw411, vxw421, fge) 21.88/7.87 new_compare19(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.87 new_compare19(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.87 new_esEs12(LT, EQ) -> False 21.88/7.87 new_esEs12(EQ, LT) -> False 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), app(ty_Ratio, bhb)) -> new_esEs21(vxw3000, vxw40000, bhb) 21.88/7.87 new_esEs14(vxw60, vxw63, app(app(ty_@2, ea), eb)) -> new_esEs18(vxw60, vxw63, ea, eb) 21.88/7.87 new_lt21(vxw410, vxw420, app(app(ty_@2, eha), ehb)) -> new_lt6(vxw410, vxw420, eha, ehb) 21.88/7.87 new_esEs5(vxw301, vxw4001, app(ty_[], edh)) -> new_esEs27(vxw301, vxw4001, edh) 21.88/7.87 new_compare5(Integer(vxw300), Integer(vxw4000)) -> new_primCmpInt(vxw300, vxw4000) 21.88/7.87 new_esEs28(vxw3000, vxw40000, app(app(ty_Either, bbe), bbf)) -> new_esEs19(vxw3000, vxw40000, bbe, bbf) 21.88/7.87 new_esEs12(LT, GT) -> False 21.88/7.87 new_esEs12(GT, LT) -> False 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.87 new_esEs30(vxw3002, vxw40002, ty_@0) -> new_esEs26(vxw3002, vxw40002) 21.88/7.87 new_ltEs21(vxw41, vxw42, app(ty_Ratio, chg)) -> new_ltEs15(vxw41, vxw42, chg) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_Ordering) -> new_ltEs6(vxw70, vxw71) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, app(ty_Maybe, fda)) -> new_esEs25(vxw3000, vxw40000, fda) 21.88/7.87 new_esEs8(vxw300, vxw4000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs20(vxw300, vxw4000, cch, cda, cdb) 21.88/7.87 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 21.88/7.87 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 21.88/7.87 new_ltEs24(vxw412, vxw422, ty_@0) -> new_ltEs5(vxw412, vxw422) 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_Int) -> new_esEs16(vxw301, vxw4001) 21.88/7.87 new_esEs14(vxw60, vxw63, app(ty_[], fb)) -> new_esEs27(vxw60, vxw63, fb) 21.88/7.87 new_lt22(vxw410, vxw420, app(ty_[], ffc)) -> new_lt19(vxw410, vxw420, ffc) 21.88/7.87 new_esEs29(vxw3001, vxw40001, ty_Float) -> new_esEs22(vxw3001, vxw40001) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), ty_Float, bec) -> new_ltEs16(vxw410, vxw420) 21.88/7.87 new_compare15(GT, EQ) -> GT 21.88/7.87 new_ltEs23(vxw411, vxw421, app(app(ty_Either, fae), faf)) -> new_ltEs13(vxw411, vxw421, fae, faf) 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_Char) -> new_ltEs7(vxw70, vxw71) 21.88/7.87 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 21.88/7.87 new_esEs38(vxw410, vxw420, ty_Double) -> new_esEs17(vxw410, vxw420) 21.88/7.87 new_primMulNat0(Succ(vxw400000), Succ(vxw30100)) -> new_primPlusNat0(new_primMulNat0(vxw400000, Succ(vxw30100)), vxw30100) 21.88/7.87 new_ltEs23(vxw411, vxw421, app(app(app(ty_@3, fag), fah), fba)) -> new_ltEs14(vxw411, vxw421, fag, fah, fba) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.87 new_lt9(vxw60, vxw63, app(ty_Ratio, eh)) -> new_lt5(vxw60, vxw63, eh) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ecg, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.87 new_ltEs8(vxw61, vxw64, ty_Char) -> new_ltEs7(vxw61, vxw64) 21.88/7.87 new_lt22(vxw410, vxw420, ty_Int) -> new_lt10(vxw410, vxw420) 21.88/7.87 new_ltEs8(vxw61, vxw64, ty_@0) -> new_ltEs5(vxw61, vxw64) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.87 new_ltEs19(vxw80, vxw82, app(ty_Ratio, dbg)) -> new_ltEs15(vxw80, vxw82, dbg) 21.88/7.87 new_lt9(vxw60, vxw63, ty_Ordering) -> new_lt11(vxw60, vxw63) 21.88/7.87 new_esEs8(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_Ordering) -> new_ltEs6(vxw48, vxw49) 21.88/7.87 new_esEs39(vxw411, vxw421, app(ty_Ratio, fgc)) -> new_esEs21(vxw411, vxw421, fgc) 21.88/7.87 new_compare17(Left(vxw300), Left(vxw4000), eec, eed) -> new_compare210(vxw300, vxw4000, new_esEs6(vxw300, vxw4000, eec), eec, eed) 21.88/7.87 new_esEs38(vxw410, vxw420, app(app(ty_@2, feb), fec)) -> new_esEs18(vxw410, vxw420, feb, fec) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_Char) -> new_ltEs7(vxw411, vxw421) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_@0) -> new_ltEs5(vxw70, vxw71) 21.88/7.87 new_esEs39(vxw411, vxw421, app(app(ty_@2, ffd), ffe)) -> new_esEs18(vxw411, vxw421, ffd, ffe) 21.88/7.87 new_esEs4(vxw300, vxw4000, app(app(ty_@2, dfc), dfd)) -> new_esEs18(vxw300, vxw4000, dfc, dfd) 21.88/7.87 new_compare9([], :(vxw4000, vxw4001), cb) -> LT 21.88/7.87 new_esEs29(vxw3001, vxw40001, ty_@0) -> new_esEs26(vxw3001, vxw40001) 21.88/7.87 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 21.88/7.87 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 21.88/7.87 new_ltEs20(vxw48, vxw49, app(ty_Ratio, ddc)) -> new_ltEs15(vxw48, vxw49, ddc) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_Bool) -> new_ltEs9(vxw411, vxw421) 21.88/7.87 new_primEqNat0(Zero, Zero) -> True 21.88/7.87 new_esEs25(Nothing, Nothing, bha) -> True 21.88/7.87 new_esEs9(vxw301, vxw4001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs20(vxw301, vxw4001, ceb, cec, ced) 21.88/7.87 new_esEs25(Nothing, Just(vxw40000), bha) -> False 21.88/7.87 new_esEs25(Just(vxw3000), Nothing, bha) -> False 21.88/7.87 new_esEs9(vxw301, vxw4001, ty_Bool) -> new_esEs15(vxw301, vxw4001) 21.88/7.87 new_ltEs21(vxw41, vxw42, ty_Ordering) -> new_ltEs6(vxw41, vxw42) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_@0) -> new_ltEs5(vxw411, vxw421) 21.88/7.87 new_lt8(vxw59, vxw62, app(app(ty_@2, cf), cg)) -> new_lt6(vxw59, vxw62, cf, cg) 21.88/7.87 new_esEs28(vxw3000, vxw40000, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.87 new_esEs4(vxw300, vxw4000, app(ty_Ratio, ecf)) -> new_esEs21(vxw300, vxw4000, ecf) 21.88/7.87 new_asAs(False, vxw97) -> False 21.88/7.87 new_lt21(vxw410, vxw420, ty_Int) -> new_lt10(vxw410, vxw420) 21.88/7.87 new_ltEs24(vxw412, vxw422, app(app(ty_Either, fgh), fha)) -> new_ltEs13(vxw412, vxw422, fgh, fha) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.87 new_esEs14(vxw60, vxw63, ty_Double) -> new_esEs17(vxw60, vxw63) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Double, ech) -> new_esEs17(vxw3000, vxw40000) 21.88/7.87 new_ltEs24(vxw412, vxw422, app(app(app(ty_@3, fhb), fhc), fhd)) -> new_ltEs14(vxw412, vxw422, fhb, fhc, fhd) 21.88/7.87 21.88/7.87 The set Q consists of the following terms: 21.88/7.87 21.88/7.87 new_ltEs23(x0, x1, ty_Integer) 21.88/7.87 new_compare12(Char(x0), Char(x1)) 21.88/7.87 new_esEs32(x0, x1, ty_Bool) 21.88/7.87 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs36(x0, x1, ty_Integer) 21.88/7.87 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), ty_Bool) 21.88/7.87 new_esEs13(x0, x1, app(ty_[], x2)) 21.88/7.87 new_compare11(@0, @0) 21.88/7.87 new_esEs4(x0, x1, ty_Float) 21.88/7.87 new_primPlusNat1(Zero, Zero) 21.88/7.87 new_esEs32(x0, x1, ty_@0) 21.88/7.87 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_compare4(x0, x1, app(ty_[], x2)) 21.88/7.87 new_compare15(LT, GT) 21.88/7.87 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_compare15(GT, LT) 21.88/7.87 new_esEs10(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), ty_@0) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 21.88/7.87 new_compare4(x0, x1, ty_Int) 21.88/7.87 new_esEs35(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs39(x0, x1, app(ty_[], x2)) 21.88/7.87 new_lt22(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_primEqInt(Pos(Zero), Pos(Zero)) 21.88/7.87 new_lt9(x0, x1, ty_Float) 21.88/7.87 new_sr0(Integer(x0), Integer(x1)) 21.88/7.87 new_lt13(x0, x1, x2, x3) 21.88/7.87 new_compare5(Integer(x0), Integer(x1)) 21.88/7.87 new_lt23(x0, x1, ty_Char) 21.88/7.87 new_ltEs23(x0, x1, ty_Bool) 21.88/7.87 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 21.88/7.87 new_compare27(x0, x1, True, x2) 21.88/7.87 new_esEs27([], [], x0) 21.88/7.87 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs11(x0, x1, app(ty_[], x2)) 21.88/7.87 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_primEqInt(Neg(Zero), Neg(Zero)) 21.88/7.87 new_lt22(x0, x1, ty_Int) 21.88/7.87 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 21.88/7.87 new_esEs34(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 21.88/7.87 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs9(True, True) 21.88/7.87 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_lt20(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs7(x0, x1, ty_Int) 21.88/7.87 new_esEs33(x0, x1, ty_Double) 21.88/7.87 new_lt22(x0, x1, ty_@0) 21.88/7.87 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs28(x0, x1, ty_Int) 21.88/7.87 new_ltEs20(x0, x1, ty_Double) 21.88/7.87 new_esEs28(x0, x1, ty_Bool) 21.88/7.87 new_ltEs23(x0, x1, ty_Float) 21.88/7.87 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_compare15(EQ, GT) 21.88/7.87 new_compare15(GT, EQ) 21.88/7.87 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs33(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs7(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs28(x0, x1, ty_@0) 21.88/7.87 new_primPlusNat1(Succ(x0), Zero) 21.88/7.87 new_primEqInt(Pos(Zero), Neg(Zero)) 21.88/7.87 new_primEqInt(Neg(Zero), Pos(Zero)) 21.88/7.87 new_ltEs22(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs13(x0, x1, ty_Float) 21.88/7.87 new_esEs12(LT, GT) 21.88/7.87 new_esEs12(GT, LT) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 21.88/7.87 new_esEs13(x0, x1, ty_@0) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 21.88/7.87 new_compare4(x0, x1, ty_@0) 21.88/7.87 new_ltEs20(x0, x1, ty_Char) 21.88/7.87 new_esEs8(x0, x1, ty_Integer) 21.88/7.87 new_esEs15(False, False) 21.88/7.87 new_lt21(x0, x1, app(ty_[], x2)) 21.88/7.87 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_compare4(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 21.88/7.87 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 21.88/7.87 new_ltEs23(x0, x1, ty_@0) 21.88/7.87 new_esEs28(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs22(x0, x1, ty_Int) 21.88/7.87 new_esEs6(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_compare9(:(x0, x1), [], x2) 21.88/7.87 new_esEs33(x0, x1, ty_Char) 21.88/7.87 new_esEs4(x0, x1, ty_@0) 21.88/7.87 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 21.88/7.87 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs27([], :(x0, x1), x2) 21.88/7.87 new_esEs30(x0, x1, ty_Integer) 21.88/7.87 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs24(Char(x0), Char(x1)) 21.88/7.87 new_ltEs8(x0, x1, ty_Int) 21.88/7.87 new_esEs29(x0, x1, ty_Ordering) 21.88/7.87 new_esEs4(x0, x1, ty_Bool) 21.88/7.87 new_compare210(x0, x1, True, x2, x3) 21.88/7.87 new_primMulNat0(Zero, Succ(x0)) 21.88/7.87 new_esEs34(x0, x1, ty_@0) 21.88/7.87 new_esEs12(GT, GT) 21.88/7.87 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs31(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_lt23(x0, x1, ty_Double) 21.88/7.87 new_esEs38(x0, x1, ty_Float) 21.88/7.87 new_compare4(x0, x1, ty_Bool) 21.88/7.87 new_esEs39(x0, x1, ty_Int) 21.88/7.87 new_lt8(x0, x1, ty_Ordering) 21.88/7.87 new_lt23(x0, x1, ty_Ordering) 21.88/7.87 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 21.88/7.87 new_esEs28(x0, x1, ty_Integer) 21.88/7.87 new_esEs38(x0, x1, ty_Char) 21.88/7.87 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs5(x0, x1) 21.88/7.87 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_lt19(x0, x1, x2) 21.88/7.87 new_lt9(x0, x1, ty_Integer) 21.88/7.87 new_esEs38(x0, x1, ty_Ordering) 21.88/7.87 new_esEs8(x0, x1, ty_Bool) 21.88/7.87 new_compare8(False, False) 21.88/7.87 new_esEs33(x0, x1, ty_Float) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) 21.88/7.87 new_esEs9(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs13(x0, x1, ty_Bool) 21.88/7.87 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 21.88/7.87 new_esEs29(x0, x1, ty_Char) 21.88/7.87 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 21.88/7.87 new_esEs4(x0, x1, ty_Integer) 21.88/7.87 new_esEs8(x0, x1, ty_Int) 21.88/7.87 new_esEs22(Float(x0, x1), Float(x2, x3)) 21.88/7.87 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 21.88/7.87 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 21.88/7.87 new_esEs10(x0, x1, ty_Double) 21.88/7.87 new_esEs30(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs13(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_compare26(Just(x0), Just(x1), x2) 21.88/7.87 new_esEs11(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs14(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_ltEs22(x0, x1, ty_Integer) 21.88/7.87 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_primCompAux00(x0, x1, GT, x2) 21.88/7.87 new_esEs32(x0, x1, app(ty_[], x2)) 21.88/7.87 new_ltEs24(x0, x1, ty_Double) 21.88/7.87 new_esEs30(x0, x1, ty_@0) 21.88/7.87 new_esEs35(x0, x1, ty_Double) 21.88/7.87 new_primMulInt(Pos(x0), Neg(x1)) 21.88/7.87 new_primMulInt(Neg(x0), Pos(x1)) 21.88/7.87 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 21.88/7.87 new_esEs20(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs5(x0, x1, ty_Char) 21.88/7.87 new_asAs(True, x0) 21.88/7.87 new_lt9(x0, x1, ty_Bool) 21.88/7.87 new_lt9(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_lt23(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs8(x0, x1, ty_Float) 21.88/7.87 new_compare28(x0, x1, x2, x3, False, x4, x5) 21.88/7.87 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs10(x0, x1, ty_@0) 21.88/7.87 new_esEs31(x0, x1, ty_@0) 21.88/7.87 new_esEs25(Just(x0), Just(x1), ty_@0) 21.88/7.87 new_ltEs19(x0, x1, ty_Float) 21.88/7.87 new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) 21.88/7.87 new_esEs13(x0, x1, ty_Integer) 21.88/7.87 new_esEs11(x0, x1, ty_@0) 21.88/7.87 new_compare26(Nothing, Just(x0), x1) 21.88/7.87 new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 21.88/7.87 new_compare4(x0, x1, ty_Integer) 21.88/7.87 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs9(x0, x1, ty_Double) 21.88/7.87 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs30(x0, x1, ty_Int) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 21.88/7.87 new_ltEs18(Just(x0), Nothing, x1) 21.88/7.87 new_ltEs18(Nothing, Just(x0), x1) 21.88/7.87 new_esEs10(x0, x1, ty_Char) 21.88/7.87 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 21.88/7.87 new_esEs38(x0, x1, ty_Integer) 21.88/7.87 new_lt9(x0, x1, ty_Ordering) 21.88/7.87 new_ltEs21(x0, x1, ty_Int) 21.88/7.87 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 21.88/7.87 new_esEs39(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs4(x0, x1, ty_Ordering) 21.88/7.87 new_compare9([], :(x0, x1), x2) 21.88/7.87 new_esEs11(x0, x1, ty_Float) 21.88/7.87 new_lt9(x0, x1, ty_Int) 21.88/7.87 new_esEs6(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs24(x0, x1, app(ty_[], x2)) 21.88/7.87 new_ltEs8(x0, x1, ty_@0) 21.88/7.87 new_lt20(x0, x1, ty_Double) 21.88/7.87 new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 21.88/7.87 new_lt18(x0, x1) 21.88/7.87 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs7(x0, x1, ty_Float) 21.88/7.87 new_ltEs6(EQ, EQ) 21.88/7.87 new_esEs14(x0, x1, ty_@0) 21.88/7.87 new_ltEs21(x0, x1, ty_Char) 21.88/7.87 new_esEs6(x0, x1, ty_Ordering) 21.88/7.87 new_esEs34(x0, x1, ty_Float) 21.88/7.87 new_esEs14(x0, x1, ty_Char) 21.88/7.87 new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 21.88/7.87 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 21.88/7.87 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 21.88/7.87 new_primMulNat0(Succ(x0), Succ(x1)) 21.88/7.87 new_primCompAux00(x0, x1, EQ, ty_Ordering) 21.88/7.87 new_esEs6(x0, x1, ty_Double) 21.88/7.87 new_esEs39(x0, x1, ty_Integer) 21.88/7.87 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs14(x0, x1, ty_Int) 21.88/7.87 new_esEs5(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs5(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs33(x0, x1, ty_Integer) 21.88/7.87 new_esEs34(x0, x1, ty_Integer) 21.88/7.87 new_esEs7(x0, x1, ty_Integer) 21.88/7.87 new_esEs38(x0, x1, ty_@0) 21.88/7.87 new_esEs30(x0, x1, ty_Char) 21.88/7.87 new_primCompAux1(x0, x1, x2, x3, x4) 21.88/7.87 new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 21.88/7.87 new_primMulInt(Neg(x0), Neg(x1)) 21.88/7.87 new_lt17(x0, x1, x2) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) 21.88/7.87 new_esEs29(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs30(x0, x1, ty_Double) 21.88/7.87 new_esEs10(x0, x1, ty_Bool) 21.88/7.87 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_lt20(x0, x1, ty_Ordering) 21.88/7.87 new_esEs39(x0, x1, ty_Bool) 21.88/7.87 new_esEs33(x0, x1, ty_@0) 21.88/7.87 new_esEs11(x0, x1, ty_Integer) 21.88/7.87 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_lt23(x0, x1, app(ty_[], x2)) 21.88/7.87 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_not(True) 21.88/7.87 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 21.88/7.87 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_lt21(x0, x1, ty_Ordering) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 21.88/7.87 new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 21.88/7.87 new_esEs39(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_ltEs23(x0, x1, ty_Double) 21.88/7.87 new_esEs14(x0, x1, ty_Bool) 21.88/7.87 new_lt8(x0, x1, ty_Double) 21.88/7.87 new_ltEs22(x0, x1, ty_Bool) 21.88/7.87 new_compare4(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 21.88/7.87 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 21.88/7.87 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs22(x0, x1, ty_Float) 21.88/7.87 new_ltEs19(x0, x1, ty_Ordering) 21.88/7.87 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_lt22(x0, x1, ty_Float) 21.88/7.87 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 21.88/7.87 new_esEs16(x0, x1) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 21.88/7.87 new_compare9(:(x0, x1), :(x2, x3), x4) 21.88/7.87 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_compare29(x0, x1, True, x2, x3) 21.88/7.87 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs10(x0, x1, ty_Integer) 21.88/7.87 new_esEs4(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs31(x0, x1, ty_Integer) 21.88/7.87 new_esEs14(x0, x1, ty_Integer) 21.88/7.87 new_primPlusNat0(Succ(x0), x1) 21.88/7.87 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 21.88/7.87 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 21.88/7.87 new_lt6(x0, x1, x2, x3) 21.88/7.87 new_esEs7(x0, x1, ty_Bool) 21.88/7.87 new_lt8(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_compare210(x0, x1, False, x2, x3) 21.88/7.87 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 21.88/7.87 new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) 21.88/7.87 new_esEs12(LT, LT) 21.88/7.87 new_esEs33(x0, x1, ty_Bool) 21.88/7.87 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 21.88/7.87 new_esEs8(x0, x1, ty_Ordering) 21.88/7.87 new_compare15(LT, EQ) 21.88/7.87 new_compare15(EQ, LT) 21.88/7.87 new_ltEs24(x0, x1, ty_Ordering) 21.88/7.87 new_ltEs7(x0, x1) 21.88/7.87 new_fsEs(x0) 21.88/7.87 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_compare4(x0, x1, ty_Float) 21.88/7.87 new_esEs4(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_compare15(GT, GT) 21.88/7.87 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) 21.88/7.87 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_primPlusNat1(Zero, Succ(x0)) 21.88/7.87 new_esEs36(x0, x1, ty_Int) 21.88/7.87 new_compare4(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs32(x0, x1, ty_Ordering) 21.88/7.87 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 21.88/7.87 new_compare17(Left(x0), Right(x1), x2, x3) 21.88/7.87 new_compare17(Right(x0), Left(x1), x2, x3) 21.88/7.87 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), ty_Ordering) 21.88/7.87 new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 21.88/7.87 new_lt8(x0, x1, ty_Char) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 21.88/7.87 new_compare8(True, True) 21.88/7.87 new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) 21.88/7.87 new_esEs25(Just(x0), Just(x1), ty_Integer) 21.88/7.87 new_esEs31(x0, x1, ty_Char) 21.88/7.87 new_ltEs8(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs28(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs7(x0, x1, ty_@0) 21.88/7.87 new_lt22(x0, x1, ty_Integer) 21.88/7.87 new_lt9(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs31(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 21.88/7.87 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs9(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_lt23(x0, x1, ty_Float) 21.88/7.87 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) 21.88/7.87 new_esEs11(x0, x1, ty_Bool) 21.88/7.87 new_esEs30(x0, x1, ty_Bool) 21.88/7.87 new_primCmpNat0(Succ(x0), Zero) 21.88/7.87 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_primEqNat0(Zero, Succ(x0)) 21.88/7.87 new_ltEs19(x0, x1, ty_Double) 21.88/7.87 new_esEs28(x0, x1, ty_Float) 21.88/7.87 new_compare28(x0, x1, x2, x3, True, x4, x5) 21.88/7.87 new_esEs15(False, True) 21.88/7.87 new_esEs15(True, False) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 21.88/7.87 new_lt8(x0, x1, ty_Int) 21.88/7.87 new_esEs35(x0, x1, ty_Ordering) 21.88/7.87 new_esEs39(x0, x1, ty_@0) 21.88/7.87 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 21.88/7.87 new_esEs25(Just(x0), Just(x1), ty_Bool) 21.88/7.87 new_primEqNat0(Zero, Zero) 21.88/7.87 new_esEs31(x0, x1, ty_Bool) 21.88/7.87 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 21.88/7.87 new_esEs34(x0, x1, ty_Int) 21.88/7.87 new_esEs31(x0, x1, ty_Float) 21.88/7.87 new_esEs19(Left(x0), Right(x1), x2, x3) 21.88/7.87 new_esEs19(Right(x0), Left(x1), x2, x3) 21.88/7.87 new_esEs25(Just(x0), Just(x1), ty_Float) 21.88/7.87 new_ltEs9(False, False) 21.88/7.87 new_not(False) 21.88/7.87 new_ltEs20(x0, x1, ty_Ordering) 21.88/7.87 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_lt11(x0, x1) 21.88/7.87 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs26(@0, @0) 21.88/7.87 new_lt4(x0, x1) 21.88/7.87 new_esEs11(x0, x1, ty_Char) 21.88/7.87 new_ltEs18(Nothing, Nothing, x0) 21.88/7.87 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_lt8(x0, x1, ty_Float) 21.88/7.87 new_lt22(x0, x1, ty_Bool) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 21.88/7.87 new_esEs29(x0, x1, app(ty_[], x2)) 21.88/7.87 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_compare113(x0, x1, False, x2, x3) 21.88/7.87 new_esEs8(x0, x1, ty_Double) 21.88/7.87 new_esEs31(x0, x1, ty_Int) 21.88/7.87 new_esEs30(x0, x1, ty_Float) 21.88/7.87 new_esEs25(Just(x0), Just(x1), ty_Int) 21.88/7.87 new_lt9(x0, x1, ty_Double) 21.88/7.87 new_esEs5(x0, x1, ty_@0) 21.88/7.87 new_ltEs21(x0, x1, ty_@0) 21.88/7.87 new_lt16(x0, x1) 21.88/7.87 new_lt8(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs10(x0, x1, ty_Int) 21.88/7.87 new_ltEs23(x0, x1, ty_Ordering) 21.88/7.87 new_esEs34(x0, x1, ty_Char) 21.88/7.87 new_compare114(x0, x1, False, x2) 21.88/7.87 new_primCmpNat0(Succ(x0), Succ(x1)) 21.88/7.87 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs34(x0, x1, ty_Bool) 21.88/7.87 new_esEs25(Nothing, Just(x0), x1) 21.88/7.87 new_ltEs11(x0, x1) 21.88/7.87 new_esEs9(x0, x1, ty_Ordering) 21.88/7.87 new_esEs11(x0, x1, ty_Int) 21.88/7.87 new_esEs10(x0, x1, ty_Float) 21.88/7.87 new_esEs33(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs29(x0, x1, ty_Double) 21.88/7.87 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs9(x0, x1, ty_Float) 21.88/7.87 new_lt8(x0, x1, ty_Integer) 21.88/7.87 new_pePe(True, x0) 21.88/7.87 new_esEs29(x0, x1, ty_@0) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 21.88/7.87 new_ltEs13(Right(x0), Left(x1), x2, x3) 21.88/7.87 new_ltEs13(Left(x0), Right(x1), x2, x3) 21.88/7.87 new_esEs12(EQ, EQ) 21.88/7.87 new_lt20(x0, x1, ty_Float) 21.88/7.87 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_lt22(x0, x1, ty_Char) 21.88/7.87 new_esEs35(x0, x1, ty_Integer) 21.88/7.87 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 21.88/7.87 new_esEs29(x0, x1, ty_Bool) 21.88/7.87 new_compare4(x0, x1, ty_Ordering) 21.88/7.87 new_esEs11(x0, x1, ty_Double) 21.88/7.87 new_esEs25(Just(x0), Just(x1), ty_Char) 21.88/7.87 new_esEs5(x0, x1, ty_Float) 21.88/7.87 new_esEs6(x0, x1, ty_Float) 21.88/7.87 new_esEs33(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_ltEs6(LT, LT) 21.88/7.87 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs31(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs37(x0, x1, ty_Integer) 21.88/7.87 new_compare4(x0, x1, ty_Double) 21.88/7.87 new_compare114(x0, x1, True, x2) 21.88/7.87 new_primCompAux00(x0, x1, EQ, ty_Float) 21.88/7.87 new_lt20(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_compare4(x0, x1, ty_Char) 21.88/7.87 new_lt22(x0, x1, ty_Ordering) 21.88/7.87 new_ltEs16(x0, x1) 21.88/7.87 new_primCompAux00(x0, x1, EQ, ty_Integer) 21.88/7.87 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 21.88/7.87 new_lt8(x0, x1, ty_@0) 21.88/7.87 new_ltEs21(x0, x1, app(ty_[], x2)) 21.88/7.87 new_lt23(x0, x1, ty_@0) 21.88/7.87 new_compare4(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs35(x0, x1, ty_@0) 21.88/7.87 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_compare29(x0, x1, False, x2, x3) 21.88/7.87 new_lt23(x0, x1, ty_Int) 21.88/7.87 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs31(x0, x1, ty_Ordering) 21.88/7.87 new_ltEs20(x0, x1, ty_Bool) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 21.88/7.87 new_esEs29(x0, x1, ty_Integer) 21.88/7.87 new_esEs27(:(x0, x1), :(x2, x3), x4) 21.88/7.87 new_esEs38(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs34(x0, x1, ty_Ordering) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 21.88/7.87 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 21.88/7.87 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_lt23(x0, x1, ty_Integer) 21.88/7.87 new_esEs39(x0, x1, ty_Double) 21.88/7.87 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_lt14(x0, x1, x2, x3, x4) 21.88/7.87 new_sr(x0, x1) 21.88/7.87 new_esEs11(x0, x1, ty_Ordering) 21.88/7.87 new_ltEs22(x0, x1, ty_Char) 21.88/7.87 new_compare14(x0, x1) 21.88/7.87 new_lt23(x0, x1, ty_Bool) 21.88/7.87 new_esEs7(x0, x1, ty_Double) 21.88/7.87 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_primEqNat0(Succ(x0), Succ(x1)) 21.88/7.87 new_ltEs24(x0, x1, ty_Integer) 21.88/7.87 new_compare8(True, False) 21.88/7.87 new_compare8(False, True) 21.88/7.87 new_ltEs22(x0, x1, ty_Double) 21.88/7.87 new_esEs25(Just(x0), Nothing, x1) 21.88/7.87 new_lt8(x0, x1, ty_Bool) 21.88/7.87 new_lt15(x0, x1) 21.88/7.87 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_lt23(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_primEqNat0(Succ(x0), Zero) 21.88/7.87 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 21.88/7.87 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs20(x0, x1, ty_@0) 21.88/7.87 new_esEs7(x0, x1, ty_Char) 21.88/7.87 new_ltEs21(x0, x1, ty_Integer) 21.88/7.87 new_esEs25(Just(x0), Just(x1), ty_Ordering) 21.88/7.87 new_esEs28(x0, x1, ty_Char) 21.88/7.87 new_lt20(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs28(x0, x1, ty_Double) 21.88/7.87 new_ltEs20(x0, x1, ty_Int) 21.88/7.87 new_primCompAux00(x0, x1, EQ, ty_Bool) 21.88/7.87 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 21.88/7.87 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs32(x0, x1, ty_Double) 21.88/7.87 new_esEs29(x0, x1, ty_Float) 21.88/7.87 new_lt9(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_compare26(Nothing, Nothing, x0) 21.88/7.87 new_compare15(EQ, EQ) 21.88/7.87 new_lt20(x0, x1, ty_Bool) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 21.88/7.87 new_esEs10(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs39(x0, x1, ty_Char) 21.88/7.87 new_esEs5(x0, x1, ty_Integer) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 21.88/7.87 new_ltEs8(x0, x1, ty_Ordering) 21.88/7.87 new_primPlusNat1(Succ(x0), Succ(x1)) 21.88/7.87 new_esEs33(x0, x1, ty_Int) 21.88/7.87 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs12(LT, EQ) 21.88/7.87 new_esEs12(EQ, LT) 21.88/7.87 new_esEs5(x0, x1, ty_Bool) 21.88/7.87 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 21.88/7.87 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs8(x0, x1, ty_Char) 21.88/7.87 new_lt22(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs6(x0, x1, ty_@0) 21.88/7.87 new_ltEs21(x0, x1, ty_Bool) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 21.88/7.87 new_primCompAux00(x0, x1, EQ, ty_@0) 21.88/7.87 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs23(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs29(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs38(x0, x1, ty_Int) 21.88/7.87 new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), ty_Double) 21.88/7.87 new_lt22(x0, x1, ty_Double) 21.88/7.87 new_primCmpInt(Neg(Zero), Neg(Zero)) 21.88/7.87 new_ltEs9(False, True) 21.88/7.87 new_ltEs9(True, False) 21.88/7.87 new_lt8(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs31(x0, x1, ty_Double) 21.88/7.87 new_lt7(x0, x1) 21.88/7.87 new_esEs25(Just(x0), Just(x1), ty_Double) 21.88/7.87 new_ltEs6(GT, LT) 21.88/7.87 new_ltEs6(LT, GT) 21.88/7.87 new_lt21(x0, x1, ty_Double) 21.88/7.87 new_primCmpInt(Pos(Zero), Neg(Zero)) 21.88/7.87 new_primCmpInt(Neg(Zero), Pos(Zero)) 21.88/7.87 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 21.88/7.87 new_esEs39(x0, x1, ty_Float) 21.88/7.87 new_compare27(x0, x1, False, x2) 21.88/7.87 new_esEs32(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 21.88/7.87 new_esEs38(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs5(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs6(EQ, GT) 21.88/7.87 new_ltEs6(GT, EQ) 21.88/7.87 new_esEs15(True, True) 21.88/7.87 new_ltEs19(x0, x1, ty_Int) 21.88/7.87 new_esEs14(x0, x1, ty_Float) 21.88/7.87 new_compare113(x0, x1, True, x2, x3) 21.88/7.87 new_compare112(x0, x1, x2, x3, True, x4, x5, x6) 21.88/7.87 new_esEs28(x0, x1, ty_Ordering) 21.88/7.87 new_esEs37(x0, x1, ty_Int) 21.88/7.87 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_lt5(x0, x1, x2) 21.88/7.87 new_esEs28(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_compare26(Just(x0), Nothing, x1) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 21.88/7.87 new_esEs8(x0, x1, ty_Char) 21.88/7.87 new_esEs34(x0, x1, ty_Double) 21.88/7.87 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_ltEs8(x0, x1, ty_Integer) 21.88/7.87 new_esEs13(x0, x1, ty_Ordering) 21.88/7.87 new_lt9(x0, x1, ty_Char) 21.88/7.87 new_esEs38(x0, x1, ty_Bool) 21.88/7.87 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 21.88/7.87 new_esEs29(x0, x1, ty_Int) 21.88/7.87 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 21.88/7.87 new_lt21(x0, x1, ty_@0) 21.88/7.87 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_compare110(x0, x1, x2, x3, False, x4, x5) 21.88/7.87 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs21(x0, x1, ty_Float) 21.88/7.87 new_ltEs22(x0, x1, ty_Ordering) 21.88/7.87 new_esEs5(x0, x1, ty_Int) 21.88/7.87 new_esEs8(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs17(Double(x0, x1), Double(x2, x3)) 21.88/7.87 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_ltEs24(x0, x1, ty_@0) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 21.88/7.87 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 21.88/7.87 new_esEs7(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs38(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 21.88/7.87 new_ltEs21(x0, x1, ty_Ordering) 21.88/7.87 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 21.88/7.87 new_ltEs8(x0, x1, ty_Bool) 21.88/7.87 new_esEs13(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 21.88/7.87 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 21.88/7.87 new_esEs14(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_primMulNat0(Zero, Zero) 21.88/7.87 new_esEs5(x0, x1, ty_Ordering) 21.88/7.87 new_lt21(x0, x1, ty_Char) 21.88/7.87 new_esEs30(x0, x1, ty_Ordering) 21.88/7.87 new_esEs30(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_primMulInt(Pos(x0), Pos(x1)) 21.88/7.87 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 21.88/7.87 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 21.88/7.87 new_compare4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs35(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs13(x0, x1, ty_Double) 21.88/7.87 new_lt20(x0, x1, ty_Int) 21.88/7.87 new_esEs9(x0, x1, app(ty_[], x2)) 21.88/7.87 new_compare17(Right(x0), Right(x1), x2, x3) 21.88/7.87 new_ltEs21(x0, x1, ty_Double) 21.88/7.87 new_asAs(False, x0) 21.88/7.87 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs11(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs10(x0, x1, app(ty_[], x2)) 21.88/7.87 new_ltEs19(x0, x1, ty_Char) 21.88/7.87 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs6(x0, x1, ty_Int) 21.88/7.87 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs19(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_primCompAux00(x0, x1, EQ, ty_Int) 21.88/7.87 new_esEs10(x0, x1, ty_Ordering) 21.88/7.87 new_esEs7(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) 21.88/7.87 new_esEs13(x0, x1, ty_Int) 21.88/7.87 new_esEs12(EQ, GT) 21.88/7.87 new_esEs12(GT, EQ) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 21.88/7.87 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 21.88/7.87 new_esEs14(x0, x1, ty_Ordering) 21.88/7.87 new_compare15(LT, LT) 21.88/7.87 new_primPlusNat0(Zero, x0) 21.88/7.87 new_ltEs19(x0, x1, ty_Bool) 21.88/7.87 new_lt20(x0, x1, ty_Char) 21.88/7.87 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_lt22(x0, x1, app(ty_[], x2)) 21.88/7.87 new_ltEs20(x0, x1, ty_Float) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 21.88/7.87 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs13(x0, x1, ty_Char) 21.88/7.87 new_primCompAux00(x0, x1, EQ, ty_Char) 21.88/7.87 new_esEs9(x0, x1, ty_Char) 21.88/7.87 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs22(x0, x1, ty_@0) 21.88/7.87 new_esEs9(x0, x1, ty_Int) 21.88/7.87 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 21.88/7.87 new_primCompAux00(x0, x1, EQ, ty_Double) 21.88/7.87 new_ltEs19(x0, x1, ty_Integer) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 21.88/7.87 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 21.88/7.87 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_compare111(x0, x1, False, x2, x3) 21.88/7.87 new_esEs4(x0, x1, ty_Int) 21.88/7.87 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_ltEs8(x0, x1, ty_Float) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 21.88/7.87 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 21.88/7.87 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 21.88/7.87 new_esEs9(x0, x1, ty_@0) 21.88/7.87 new_lt12(x0, x1) 21.88/7.87 new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 21.88/7.87 new_lt21(x0, x1, ty_Integer) 21.88/7.87 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs23(x0, x1, ty_Int) 21.88/7.87 new_esEs4(x0, x1, ty_Double) 21.88/7.87 new_esEs4(x0, x1, ty_Char) 21.88/7.87 new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) 21.88/7.87 new_primCmpInt(Pos(Zero), Pos(Zero)) 21.88/7.87 new_esEs32(x0, x1, ty_Float) 21.88/7.87 new_esEs23(Integer(x0), Integer(x1)) 21.88/7.87 new_ltEs6(EQ, LT) 21.88/7.87 new_ltEs6(LT, EQ) 21.88/7.87 new_esEs9(x0, x1, ty_Bool) 21.88/7.87 new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 21.88/7.87 new_ltEs6(GT, GT) 21.88/7.87 new_esEs4(x0, x1, app(ty_[], x2)) 21.88/7.87 new_ltEs23(x0, x1, ty_Char) 21.88/7.87 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 21.88/7.87 new_pePe(False, x0) 21.88/7.87 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs35(x0, x1, ty_Int) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), ty_Float) 21.88/7.87 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs35(x0, x1, ty_Char) 21.88/7.87 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs8(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_esEs34(x0, x1, app(ty_[], x2)) 21.88/7.87 new_ltEs15(x0, x1, x2) 21.88/7.87 new_esEs25(Nothing, Nothing, x0) 21.88/7.87 new_esEs32(x0, x1, ty_Int) 21.88/7.87 new_lt20(x0, x1, ty_Integer) 21.88/7.87 new_esEs32(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_lt9(x0, x1, ty_@0) 21.88/7.87 new_esEs38(x0, x1, ty_Double) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), ty_Int) 21.88/7.87 new_esEs27(:(x0, x1), [], x2) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 21.88/7.87 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_ltEs10(x0, x1) 21.88/7.87 new_esEs6(x0, x1, ty_Char) 21.88/7.87 new_compare110(x0, x1, x2, x3, True, x4, x5) 21.88/7.87 new_esEs35(x0, x1, ty_Float) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 21.88/7.87 new_esEs14(x0, x1, ty_Double) 21.88/7.87 new_lt21(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs32(x0, x1, ty_Char) 21.88/7.87 new_ltEs8(x0, x1, ty_Double) 21.88/7.87 new_esEs34(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), ty_Char) 21.88/7.87 new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 21.88/7.87 new_lt20(x0, x1, ty_@0) 21.88/7.87 new_ltEs4(x0, x1, x2) 21.88/7.87 new_esEs39(x0, x1, ty_Ordering) 21.88/7.87 new_primCompAux00(x0, x1, LT, x2) 21.88/7.87 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_lt21(x0, x1, ty_Bool) 21.88/7.87 new_compare9([], [], x0) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 21.88/7.87 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_lt10(x0, x1) 21.88/7.87 new_lt21(x0, x1, ty_Float) 21.88/7.87 new_primCmpNat0(Zero, Succ(x0)) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 21.88/7.87 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_ltEs24(x0, x1, ty_Bool) 21.88/7.87 new_ltEs24(x0, x1, ty_Float) 21.88/7.87 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_compare112(x0, x1, x2, x3, False, x4, x5, x6) 21.88/7.87 new_esEs30(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs8(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs33(x0, x1, ty_Ordering) 21.88/7.87 new_ltEs19(x0, x1, ty_@0) 21.88/7.87 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 21.88/7.87 new_ltEs17(x0, x1) 21.88/7.87 new_esEs7(x0, x1, ty_Ordering) 21.88/7.87 new_compare111(x0, x1, True, x2, x3) 21.88/7.87 new_esEs6(x0, x1, ty_Integer) 21.88/7.87 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_lt21(x0, x1, ty_Int) 21.88/7.87 new_primMulNat0(Succ(x0), Zero) 21.88/7.87 new_ltEs20(x0, x1, ty_Integer) 21.88/7.87 new_ltEs20(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs5(x0, x1, ty_Double) 21.88/7.87 new_compare17(Left(x0), Left(x1), x2, x3) 21.88/7.87 new_ltEs24(x0, x1, ty_Char) 21.88/7.87 new_esEs6(x0, x1, ty_Bool) 21.88/7.87 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs32(x0, x1, ty_Integer) 21.88/7.87 new_esEs14(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs9(x0, x1, ty_Integer) 21.88/7.87 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_lt21(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), ty_Integer) 21.88/7.87 new_ltEs24(x0, x1, ty_Int) 21.88/7.87 new_compare7(@2(x0, x1), @2(x2, x3), x4, x5) 21.88/7.87 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 21.88/7.87 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 21.88/7.87 new_esEs35(x0, x1, ty_Bool) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 21.88/7.87 new_esEs6(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs35(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_primCmpNat0(Zero, Zero) 21.88/7.87 new_esEs8(x0, x1, ty_@0) 21.88/7.87 21.88/7.87 We have to consider all minimal (P,Q,R)-chains. 21.88/7.87 ---------------------------------------- 21.88/7.87 21.88/7.87 (22) QDPSizeChangeProof (EQUIVALENT) 21.88/7.87 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 21.88/7.87 21.88/7.87 From the DPs we obtained the following set of size-change graphs: 21.88/7.87 *new_insertBy(:(vxw30, vxw31), :(:(vxw400, vxw401), vxw41), bb) -> new_insertBy0(vxw400, vxw401, vxw30, vxw31, vxw41, new_primCompAux1(vxw30, vxw400, vxw31, vxw401, bb), bb) 21.88/7.87 The graph contains the following edges 2 > 1, 2 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 7 21.88/7.87 21.88/7.87 21.88/7.87 *new_insertBy(:(vxw30, vxw31), :([], vxw41), bb) -> new_insertBy(:(vxw30, vxw31), vxw41, bb) 21.88/7.87 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3 21.88/7.87 21.88/7.87 21.88/7.87 *new_insertBy0(vxw12, vxw13, vxw14, vxw15, vxw16, GT, ba) -> new_insertBy(:(vxw14, vxw15), vxw16, ba) 21.88/7.87 The graph contains the following edges 5 >= 2, 7 >= 3 21.88/7.87 21.88/7.87 21.88/7.87 ---------------------------------------- 21.88/7.87 21.88/7.87 (23) 21.88/7.87 YES 21.88/7.87 21.88/7.87 ---------------------------------------- 21.88/7.87 21.88/7.87 (24) 21.88/7.87 Obligation: 21.88/7.87 Q DP problem: 21.88/7.87 The TRS P consists of the following rules: 21.88/7.87 21.88/7.87 new_primMulNat(Succ(vxw400000), Succ(vxw30100)) -> new_primMulNat(vxw400000, Succ(vxw30100)) 21.88/7.87 21.88/7.87 R is empty. 21.88/7.87 Q is empty. 21.88/7.87 We have to consider all minimal (P,Q,R)-chains. 21.88/7.87 ---------------------------------------- 21.88/7.87 21.88/7.87 (25) QDPSizeChangeProof (EQUIVALENT) 21.88/7.87 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 21.88/7.87 21.88/7.87 From the DPs we obtained the following set of size-change graphs: 21.88/7.87 *new_primMulNat(Succ(vxw400000), Succ(vxw30100)) -> new_primMulNat(vxw400000, Succ(vxw30100)) 21.88/7.87 The graph contains the following edges 1 > 1, 2 >= 2 21.88/7.87 21.88/7.87 21.88/7.87 ---------------------------------------- 21.88/7.87 21.88/7.87 (26) 21.88/7.87 YES 21.88/7.87 21.88/7.87 ---------------------------------------- 21.88/7.87 21.88/7.87 (27) 21.88/7.87 Obligation: 21.88/7.87 Q DP problem: 21.88/7.87 The TRS P consists of the following rules: 21.88/7.87 21.88/7.87 new_primCompAux(vxw30, vxw400, vxw31, vxw401, cfa) -> new_primCompAux0(vxw31, vxw401, new_compare4(vxw30, vxw400, cfa), app(ty_[], cfa)) 21.88/7.87 new_primCompAux(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), vxw31, vxw401, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare23(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs8(vxw300, vxw4000, bhe), new_asAs(new_esEs9(vxw301, vxw4001, bhf), new_esEs10(vxw302, vxw4002, bhg))), bhe, bhf, bhg) 21.88/7.87 new_compare24(vxw70, vxw71, False, app(app(ty_Either, cea), ceb)) -> new_ltEs0(vxw70, vxw71, cea, ceb) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(app(ty_Either, bfd), bfe)) -> new_ltEs0(vxw412, vxw422, bfd, bfe) 21.88/7.87 new_ltEs0(Left(vxw410), Left(vxw420), app(ty_Maybe, bba), bac) -> new_ltEs2(vxw410, vxw420, bba) 21.88/7.87 new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(ty_[], bbb)), bac), hh) -> new_ltEs3(vxw410, vxw420, bbb) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(ty_Maybe, bdf)), bcg), bch), hh) -> new_lt2(vxw410, vxw420, bdf) 21.88/7.87 new_compare22(vxw48, vxw49, False, cfb, app(ty_[], cgc)) -> new_ltEs3(vxw48, vxw49, cgc) 21.88/7.87 new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(vxw80, vxw82, ce, cf) 21.88/7.87 new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(app(app(ty_@3, bgg), bgh), bha)), hh) -> new_ltEs1(vxw410, vxw420, bgg, bgh, bha) 21.88/7.87 new_compare0(Right(vxw300), Right(vxw4000), hf, hg) -> new_compare22(vxw300, vxw4000, new_esEs7(vxw300, vxw4000, hg), hf, hg) 21.88/7.87 new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs1(vxw410, vxw420, bbh, bca, bcb) 21.88/7.87 new_primCompAux0(vxw23, vxw24, EQ, app(ty_Maybe, bh)) -> new_compare2(vxw23, vxw24, bh) 21.88/7.87 new_ltEs0(Left(vxw410), Left(vxw420), app(app(app(ty_@3, baf), bag), bah), bac) -> new_ltEs1(vxw410, vxw420, baf, bag, bah) 21.88/7.87 new_compare24(vxw70, vxw71, False, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs1(vxw70, vxw71, cec, ced, cee) 21.88/7.87 new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(ty_Maybe, bcc)), hh) -> new_ltEs2(vxw410, vxw420, bcc) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(app(ty_Either, bda), bdb), bcg, bch) -> new_lt0(vxw410, vxw420, bda, bdb) 21.88/7.87 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(ty_Maybe, gb)), fc), hh) -> new_lt2(vxw410, vxw420, gb) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(app(app(ty_@3, bee), bef), beg), bch) -> new_lt1(vxw411, vxw421, bee, bef, beg) 21.88/7.87 new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(ty_Maybe, bhb)), hh) -> new_ltEs2(vxw410, vxw420, bhb) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(app(ty_@2, cce), ccf)) -> new_ltEs(vxw61, vxw64, cce, ccf) 21.88/7.87 new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(ty_Maybe, bba)), bac), hh) -> new_ltEs2(vxw410, vxw420, bba) 21.88/7.87 new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_@2, dg), dh), ea) -> new_compare(vxw79, vxw81, dg, dh) 21.88/7.87 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(ty_Maybe, hd)) -> new_ltEs2(vxw411, vxw421, hd) 21.88/7.87 new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(app(ty_@2, bgc), bgd)), hh) -> new_ltEs(vxw410, vxw420, bgc, bgd) 21.88/7.87 new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(app(ty_Either, bbf), bbg)), hh) -> new_ltEs0(vxw410, vxw420, bbf, bbg) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(ty_[], bdg), bcg, bch) -> new_lt3(vxw410, vxw420, bdg) 21.88/7.87 new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(ty_Maybe, eg), ea) -> new_compare2(vxw79, vxw81, eg) 21.88/7.87 new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(ty_Maybe, bcc)) -> new_ltEs2(vxw410, vxw420, bcc) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(app(app(ty_@3, caf), cag), cah), cab, cac) -> new_lt1(vxw59, vxw62, caf, cag, cah) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(ty_Maybe, cdd)) -> new_ltEs2(vxw61, vxw64, cdd) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(app(ty_@2, bhh), caa), cab, cac) -> new_lt(vxw59, vxw62, bhh, caa) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(app(ty_@2, bce), bcf), bcg, bch) -> new_lt(vxw410, vxw420, bce, bcf) 21.88/7.87 new_ltEs0(Left(vxw410), Left(vxw420), app(app(ty_@2, baa), bab), bac) -> new_ltEs(vxw410, vxw420, baa, bab) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(app(app(ty_@3, bee), bef), beg)), bch), hh) -> new_lt1(vxw411, vxw421, bee, bef, beg) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(ty_Maybe, bga)), hh) -> new_ltEs2(vxw412, vxw422, bga) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(ty_Maybe, ccc), cac) -> new_lt2(vxw60, vxw63, ccc) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(app(ty_Either, cad), cae), cab, cac) -> new_lt0(vxw59, vxw62, cad, cae) 21.88/7.87 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(app(ty_Either, fd), ff)), fc), hh) -> new_lt0(vxw410, vxw420, fd, ff) 21.88/7.87 new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(ty_[], bcd)), hh) -> new_ltEs3(vxw410, vxw420, bcd) 21.88/7.87 new_primCompAux0(vxw23, vxw24, EQ, app(app(ty_Either, bc), bd)) -> new_compare0(vxw23, vxw24, bc, bd) 21.88/7.87 new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(app(app(ty_@3, bbh), bca), bcb)), hh) -> new_ltEs1(vxw410, vxw420, bbh, bca, bcb) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(ty_Maybe, beh)), bch), hh) -> new_lt2(vxw411, vxw421, beh) 21.88/7.87 new_compare24(vxw70, vxw71, False, app(ty_Maybe, cef)) -> new_ltEs2(vxw70, vxw71, cef) 21.88/7.87 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs1(vxw411, vxw421, ha, hb, hc) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(ty_Maybe, beh), bch) -> new_lt2(vxw411, vxw421, beh) 21.88/7.87 new_ltEs3(vxw41, vxw42, bhd) -> new_compare3(vxw41, vxw42, bhd) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(ty_[], cde)) -> new_ltEs3(vxw61, vxw64, cde) 21.88/7.87 new_primCompAux0(vxw23, vxw24, EQ, app(app(ty_@2, ba), bb)) -> new_compare(vxw23, vxw24, ba, bb) 21.88/7.87 new_compare22(vxw48, vxw49, False, cfb, app(app(ty_Either, cfe), cff)) -> new_ltEs0(vxw48, vxw49, cfe, cff) 21.88/7.87 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(app(app(ty_@3, ha), hb), hc)), hh) -> new_ltEs1(vxw411, vxw421, ha, hb, hc) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(app(ty_Either, bec), bed)), bch), hh) -> new_lt0(vxw411, vxw421, bec, bed) 21.88/7.87 new_ltEs2(Just(vxw410), Just(vxw420), app(app(ty_@2, bgc), bgd)) -> new_ltEs(vxw410, vxw420, bgc, bgd) 21.88/7.87 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(app(ty_@2, ge), gf)), hh) -> new_ltEs(vxw411, vxw421, ge, gf) 21.88/7.87 new_primCompAux(Just(vxw300), Just(vxw4000), vxw31, vxw401, app(ty_Maybe, cdf)) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, cdf), cdf) 21.88/7.87 new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(ty_[], bcd)) -> new_ltEs3(vxw410, vxw420, bcd) 21.88/7.87 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(ty_Maybe, gb), fc) -> new_lt2(vxw410, vxw420, gb) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(ty_[], bfa), bch) -> new_lt3(vxw411, vxw421, bfa) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(ty_Maybe, bdf), bcg, bch) -> new_lt2(vxw410, vxw420, bdf) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(app(ty_@2, cbd), cbe), cac) -> new_lt(vxw60, vxw63, cbd, cbe) 21.88/7.87 new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(app(ty_@2, baa), bab)), bac), hh) -> new_ltEs(vxw410, vxw420, baa, bab) 21.88/7.87 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(app(ty_Either, gg), gh)), hh) -> new_ltEs0(vxw411, vxw421, gg, gh) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(app(ty_@2, bfb), bfc)), hh) -> new_ltEs(vxw412, vxw422, bfb, bfc) 21.88/7.87 new_ltEs0(Left(vxw410), Left(vxw420), app(ty_[], bbb), bac) -> new_ltEs3(vxw410, vxw420, bbb) 21.88/7.87 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(app(ty_@2, ge), gf)) -> new_ltEs(vxw411, vxw421, ge, gf) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(app(ty_Either, bda), bdb)), bcg), bch), hh) -> new_lt0(vxw410, vxw420, bda, bdb) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(app(app(ty_@3, bdc), bdd), bde), bcg, bch) -> new_lt1(vxw410, vxw420, bdc, bdd, bde) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(ty_Maybe, bga)) -> new_ltEs2(vxw412, vxw422, bga) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(app(ty_Either, bec), bed), bch) -> new_lt0(vxw411, vxw421, bec, bed) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(ty_[], bgb)), hh) -> new_ltEs3(vxw412, vxw422, bgb) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(ty_[], bgb)) -> new_ltEs3(vxw412, vxw422, bgb) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(app(ty_@2, bfb), bfc)) -> new_ltEs(vxw412, vxw422, bfb, bfc) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(ty_[], cbb), cab, cac) -> new_lt3(vxw59, vxw62, cbb) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(app(ty_Either, cbf), cbg), cac) -> new_lt0(vxw60, vxw63, cbf, cbg) 21.88/7.87 new_ltEs2(Just(vxw410), Just(vxw420), app(ty_Maybe, bhb)) -> new_ltEs2(vxw410, vxw420, bhb) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(app(ty_Either, bfd), bfe)), hh) -> new_ltEs0(vxw412, vxw422, bfd, bfe) 21.88/7.87 new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(app(ty_@2, bbd), bbe)) -> new_ltEs(vxw410, vxw420, bbd, bbe) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(app(ty_@2, bea), beb), bch) -> new_lt(vxw411, vxw421, bea, beb) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(ty_Maybe, cba), cab, cac) -> new_lt2(vxw59, vxw62, cba) 21.88/7.87 new_compare3(:(vxw300, vxw301), :(vxw4000, vxw4001), ceh) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, ceh) 21.88/7.87 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(ty_[], he)) -> new_ltEs3(vxw411, vxw421, he) 21.88/7.87 new_ltEs2(Just(vxw410), Just(vxw420), app(ty_[], bhc)) -> new_ltEs3(vxw410, vxw420, bhc) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(app(app(ty_@3, bff), bfg), bfh)), hh) -> new_ltEs1(vxw412, vxw422, bff, bfg, bfh) 21.88/7.87 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(ty_[], he)), hh) -> new_ltEs3(vxw411, vxw421, he) 21.88/7.87 new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(app(ty_Either, bge), bgf)), hh) -> new_ltEs0(vxw410, vxw420, bge, bgf) 21.88/7.87 new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(app(ty_Either, cg), da)) -> new_ltEs0(vxw80, vxw82, cg, da) 21.88/7.87 new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(app(ty_@2, bbd), bbe)), hh) -> new_ltEs(vxw410, vxw420, bbd, bbe) 21.88/7.87 new_lt1(vxw79, vxw81, ed, ee, ef) -> new_compare1(vxw79, vxw81, ed, ee, ef) 21.88/7.87 new_primCompAux0(vxw23, vxw24, EQ, app(ty_[], ca)) -> new_compare3(vxw23, vxw24, ca) 21.88/7.87 new_compare21(vxw41, vxw42, False, app(ty_[], bhd), hh) -> new_compare3(vxw41, vxw42, bhd) 21.88/7.87 new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(ty_[], eh), ea) -> new_compare3(vxw79, vxw81, eh) 21.88/7.87 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(app(ty_@2, fa), fb), fc) -> new_lt(vxw410, vxw420, fa, fb) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(app(ty_@2, bea), beb)), bch), hh) -> new_lt(vxw411, vxw421, bea, beb) 21.88/7.87 new_primCompAux(Right(vxw300), Right(vxw4000), vxw31, vxw401, app(app(ty_Either, hf), hg)) -> new_compare22(vxw300, vxw4000, new_esEs7(vxw300, vxw4000, hg), hf, hg) 21.88/7.87 new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(app(ty_Either, bbf), bbg)) -> new_ltEs0(vxw410, vxw420, bbf, bbg) 21.88/7.87 new_compare0(Left(vxw300), Left(vxw4000), hf, hg) -> new_compare21(vxw300, vxw4000, new_esEs6(vxw300, vxw4000, hf), hf, hg) 21.88/7.87 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(ty_[], gc), fc) -> new_lt3(vxw410, vxw420, gc) 21.88/7.87 new_lt2(vxw79, vxw81, eg) -> new_compare2(vxw79, vxw81, eg) 21.88/7.87 new_compare2(Just(vxw300), Just(vxw4000), cdf) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, cdf), cdf) 21.88/7.87 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(app(ty_@2, fa), fb)), fc), hh) -> new_lt(vxw410, vxw420, fa, fb) 21.88/7.87 new_ltEs0(Left(vxw410), Left(vxw420), app(app(ty_Either, bad), bae), bac) -> new_ltEs0(vxw410, vxw420, bad, bae) 21.88/7.87 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(app(ty_Either, fd), ff), fc) -> new_lt0(vxw410, vxw420, fd, ff) 21.88/7.87 new_compare24(vxw70, vxw71, False, app(ty_[], ceg)) -> new_ltEs3(vxw70, vxw71, ceg) 21.88/7.87 new_primCompAux(@2(vxw300, vxw301), @2(vxw4000, vxw4001), vxw31, vxw401, app(app(ty_@2, cb), cc)) -> new_compare20(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs4(vxw300, vxw4000, cb), new_esEs5(vxw301, vxw4001, cc)), cb, cc) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(ty_[], bfa)), bch), hh) -> new_lt3(vxw411, vxw421, bfa) 21.88/7.87 new_compare22(vxw48, vxw49, False, cfb, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs1(vxw48, vxw49, cfg, cfh, cga) 21.88/7.87 new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(app(ty_Either, bad), bae)), bac), hh) -> new_ltEs0(vxw410, vxw420, bad, bae) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(ty_[], ccd), cac) -> new_lt3(vxw60, vxw63, ccd) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(app(app(ty_@3, cbh), cca), ccb), cac) -> new_lt1(vxw60, vxw63, cbh, cca, ccb) 21.88/7.87 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(app(ty_Either, gg), gh)) -> new_ltEs0(vxw411, vxw421, gg, gh) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(app(app(ty_@3, bdc), bdd), bde)), bcg), bch), hh) -> new_lt1(vxw410, vxw420, bdc, bdd, bde) 21.88/7.87 new_lt3(vxw79, vxw81, eh) -> new_compare3(vxw79, vxw81, eh) 21.88/7.87 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(app(app(ty_@3, fg), fh), ga), fc) -> new_lt1(vxw410, vxw420, fg, fh, ga) 21.88/7.87 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(ty_[], gc)), fc), hh) -> new_lt3(vxw410, vxw420, gc) 21.88/7.87 new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_Either, eb), ec), ea) -> new_compare0(vxw79, vxw81, eb, ec) 21.88/7.87 new_primCompAux(:(vxw300, vxw301), :(vxw4000, vxw4001), vxw31, vxw401, app(ty_[], ceh)) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, ceh) 21.88/7.87 new_primCompAux0(vxw23, vxw24, EQ, app(app(app(ty_@3, be), bf), bg)) -> new_compare1(vxw23, vxw24, be, bf, bg) 21.88/7.87 new_compare22(vxw48, vxw49, False, cfb, app(app(ty_@2, cfc), cfd)) -> new_ltEs(vxw48, vxw49, cfc, cfd) 21.88/7.87 new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs1(vxw80, vxw82, db, dc, dd) 21.88/7.87 new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(app(app(ty_@3, ed), ee), ef), ea) -> new_compare1(vxw79, vxw81, ed, ee, ef) 21.88/7.87 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs1(vxw412, vxw422, bff, bfg, bfh) 21.88/7.87 new_ltEs2(Just(vxw410), Just(vxw420), app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs1(vxw410, vxw420, bgg, bgh, bha) 21.88/7.87 new_compare(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, cc) -> new_compare20(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs4(vxw300, vxw4000, cb), new_esEs5(vxw301, vxw4001, cc)), cb, cc) 21.88/7.87 new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(ty_Maybe, de)) -> new_ltEs2(vxw80, vxw82, de) 21.88/7.87 new_lt(vxw79, vxw81, dg, dh) -> new_compare(vxw79, vxw81, dg, dh) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(ty_[], bdg)), bcg), bch), hh) -> new_lt3(vxw410, vxw420, bdg) 21.88/7.87 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(ty_Maybe, hd)), hh) -> new_ltEs2(vxw411, vxw421, hd) 21.88/7.87 new_ltEs2(Just(vxw410), Just(vxw420), app(app(ty_Either, bge), bgf)) -> new_ltEs0(vxw410, vxw420, bge, bgf) 21.88/7.87 new_compare22(vxw48, vxw49, False, cfb, app(ty_Maybe, cgb)) -> new_ltEs2(vxw48, vxw49, cgb) 21.88/7.87 new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(ty_[], df)) -> new_ltEs3(vxw80, vxw82, df) 21.88/7.87 new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(app(app(ty_@3, baf), bag), bah)), bac), hh) -> new_ltEs1(vxw410, vxw420, baf, bag, bah) 21.88/7.87 new_compare1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bhe, bhf, bhg) -> new_compare23(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs8(vxw300, vxw4000, bhe), new_asAs(new_esEs9(vxw301, vxw4001, bhf), new_esEs10(vxw302, vxw4002, bhg))), bhe, bhf, bhg) 21.88/7.87 new_compare24(vxw70, vxw71, False, app(app(ty_@2, cdg), cdh)) -> new_ltEs(vxw70, vxw71, cdg, cdh) 21.88/7.87 new_primCompAux(Left(vxw300), Left(vxw4000), vxw31, vxw401, app(app(ty_Either, hf), hg)) -> new_compare21(vxw300, vxw4000, new_esEs6(vxw300, vxw4000, hf), hf, hg) 21.88/7.87 new_lt0(vxw79, vxw81, eb, ec) -> new_compare0(vxw79, vxw81, eb, ec) 21.88/7.87 new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(ty_[], bhc)), hh) -> new_ltEs3(vxw410, vxw420, bhc) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs1(vxw61, vxw64, cda, cdb, cdc) 21.88/7.87 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(app(app(ty_@3, fg), fh), ga)), fc), hh) -> new_lt1(vxw410, vxw420, fg, fh, ga) 21.88/7.87 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(app(ty_@2, bce), bcf)), bcg), bch), hh) -> new_lt(vxw410, vxw420, bce, bcf) 21.88/7.87 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(app(ty_Either, ccg), cch)) -> new_ltEs0(vxw61, vxw64, ccg, cch) 21.88/7.87 21.88/7.87 The TRS R consists of the following rules: 21.88/7.87 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(ty_[], bcd)) -> new_ltEs4(vxw410, vxw420, bcd) 21.88/7.87 new_lt20(vxw79, vxw81, ty_Double) -> new_lt12(vxw79, vxw81) 21.88/7.87 new_lt9(vxw60, vxw63, ty_Bool) -> new_lt7(vxw60, vxw63) 21.88/7.87 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), app(ty_Ratio, ddg), bac) -> new_ltEs15(vxw410, vxw420, ddg) 21.88/7.87 new_lt20(vxw79, vxw81, ty_Float) -> new_lt15(vxw79, vxw81) 21.88/7.87 new_esEs30(vxw3002, vxw40002, app(ty_Maybe, dcf)) -> new_esEs25(vxw3002, vxw40002, dcf) 21.88/7.87 new_pePe(True, vxw158) -> True 21.88/7.87 new_ltEs19(vxw80, vxw82, ty_@0) -> new_ltEs5(vxw80, vxw82) 21.88/7.87 new_compare8(True, False) -> GT 21.88/7.87 new_esEs34(vxw3001, vxw40001, app(app(ty_@2, faf), fag)) -> new_esEs18(vxw3001, vxw40001, faf, fag) 21.88/7.87 new_esEs34(vxw3001, vxw40001, ty_Double) -> new_esEs17(vxw3001, vxw40001) 21.88/7.87 new_esEs36(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.87 new_esEs34(vxw3001, vxw40001, ty_Float) -> new_esEs22(vxw3001, vxw40001) 21.88/7.87 new_ltEs18(Nothing, Just(vxw420), egh) -> True 21.88/7.87 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 21.88/7.87 new_ltEs24(vxw412, vxw422, app(ty_[], bgb)) -> new_ltEs4(vxw412, vxw422, bgb) 21.88/7.87 new_lt23(vxw411, vxw421, app(ty_Ratio, fhe)) -> new_lt5(vxw411, vxw421, fhe) 21.88/7.87 new_esEs32(vxw79, vxw81, ty_Char) -> new_esEs24(vxw79, vxw81) 21.88/7.87 new_ltEs19(vxw80, vxw82, app(app(ty_@2, ce), cf)) -> new_ltEs12(vxw80, vxw82, ce, cf) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), app(ty_[], bhc)) -> new_ltEs4(vxw410, vxw420, bhc) 21.88/7.87 new_compare113(vxw109, vxw110, False, egf, egg) -> GT 21.88/7.87 new_lt10(vxw79, vxw81) -> new_esEs12(new_compare14(vxw79, vxw81), LT) 21.88/7.87 new_esEs5(vxw301, vxw4001, app(ty_Ratio, dea)) -> new_esEs21(vxw301, vxw4001, dea) 21.88/7.87 new_compare111(vxw102, vxw103, True, efd, efe) -> LT 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, ty_Int) -> new_compare14(vxw23, vxw24) 21.88/7.87 new_compare18(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bhe, bhf, bhg) -> new_compare25(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs8(vxw300, vxw4000, bhe), new_asAs(new_esEs9(vxw301, vxw4001, bhf), new_esEs10(vxw302, vxw4002, bhg))), bhe, bhf, bhg) 21.88/7.87 new_ltEs7(vxw41, vxw42) -> new_fsEs(new_compare12(vxw41, vxw42)) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.87 new_lt8(vxw59, vxw62, ty_Ordering) -> new_lt11(vxw59, vxw62) 21.88/7.87 new_ltEs19(vxw80, vxw82, ty_Double) -> new_ltEs11(vxw80, vxw82) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_Bool) -> new_ltEs9(vxw70, vxw71) 21.88/7.87 new_primCompAux1(vxw30, vxw400, vxw31, vxw401, cfa) -> new_primCompAux00(vxw31, vxw401, new_compare4(vxw30, vxw400, cfa), app(ty_[], cfa)) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(app(ty_@2, fgd), fge)) -> new_esEs18(vxw3000, vxw40000, fgd, fge) 21.88/7.87 new_lt21(vxw410, vxw420, ty_Ordering) -> new_lt11(vxw410, vxw420) 21.88/7.87 new_lt22(vxw410, vxw420, ty_Bool) -> new_lt7(vxw410, vxw420) 21.88/7.87 new_primEqNat0(Succ(vxw30000), Succ(vxw400000)) -> new_primEqNat0(vxw30000, vxw400000) 21.88/7.87 new_ltEs21(vxw41, vxw42, ty_Char) -> new_ltEs7(vxw41, vxw42) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.87 new_compare25(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, True, cbc, cab, cac) -> EQ 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Integer) -> new_ltEs17(vxw410, vxw420) 21.88/7.87 new_not(True) -> False 21.88/7.87 new_ltEs21(vxw41, vxw42, ty_@0) -> new_ltEs5(vxw41, vxw42) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), app(app(app(ty_@3, ffd), ffe), fff), egb) -> new_esEs20(vxw3000, vxw40000, ffd, ffe, fff) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.87 new_esEs35(vxw410, vxw420, app(ty_Maybe, gb)) -> new_esEs25(vxw410, vxw420, gb) 21.88/7.87 new_ltEs8(vxw61, vxw64, ty_Bool) -> new_ltEs9(vxw61, vxw64) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_Integer) -> new_ltEs17(vxw48, vxw49) 21.88/7.87 new_esEs28(vxw3000, vxw40000, app(ty_Maybe, dab)) -> new_esEs25(vxw3000, vxw40000, dab) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), ty_Double, bac) -> new_ltEs11(vxw410, vxw420) 21.88/7.87 new_ltEs14(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, bch) -> new_pePe(new_lt22(vxw410, vxw420, bdh), new_asAs(new_esEs38(vxw410, vxw420, bdh), new_pePe(new_lt23(vxw411, vxw421, bcg), new_asAs(new_esEs39(vxw411, vxw421, bcg), new_ltEs24(vxw412, vxw422, bch))))) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_Either, bc), bd)) -> new_compare17(vxw23, vxw24, bc, bd) 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 21.88/7.87 new_esEs6(vxw300, vxw4000, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs20(vxw300, vxw4000, fcf, fcg, fch) 21.88/7.87 new_primEqNat0(Succ(vxw30000), Zero) -> False 21.88/7.87 new_primEqNat0(Zero, Succ(vxw400000)) -> False 21.88/7.87 new_esEs14(vxw60, vxw63, ty_Float) -> new_esEs22(vxw60, vxw63) 21.88/7.87 new_compare29(vxw48, vxw49, False, cfb, egd) -> new_compare113(vxw48, vxw49, new_ltEs20(vxw48, vxw49, egd), cfb, egd) 21.88/7.87 new_ltEs21(vxw41, vxw42, app(app(ty_@2, gd), fc)) -> new_ltEs12(vxw41, vxw42, gd, fc) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Int) -> new_ltEs10(vxw410, vxw420) 21.88/7.87 new_esEs39(vxw411, vxw421, ty_Double) -> new_esEs17(vxw411, vxw421) 21.88/7.87 new_lt23(vxw411, vxw421, ty_Int) -> new_lt10(vxw411, vxw421) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Float, egb) -> new_esEs22(vxw3000, vxw40000) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_Int) -> new_ltEs10(vxw48, vxw49) 21.88/7.87 new_esEs29(vxw3001, vxw40001, ty_Double) -> new_esEs17(vxw3001, vxw40001) 21.88/7.87 new_esEs31(vxw3000, vxw40000, app(ty_Ratio, dgg)) -> new_esEs21(vxw3000, vxw40000, dgg) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), ty_@0, bac) -> new_ltEs5(vxw410, vxw420) 21.88/7.87 new_compare17(Right(vxw300), Right(vxw4000), hf, hg) -> new_compare29(vxw300, vxw4000, new_esEs7(vxw300, vxw4000, hg), hf, hg) 21.88/7.87 new_ltEs21(vxw41, vxw42, ty_Float) -> new_ltEs16(vxw41, vxw42) 21.88/7.87 new_esEs9(vxw301, vxw4001, ty_Char) -> new_esEs24(vxw301, vxw4001) 21.88/7.87 new_ltEs21(vxw41, vxw42, ty_Double) -> new_ltEs11(vxw41, vxw42) 21.88/7.87 new_esEs31(vxw3000, vxw40000, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.87 new_primCmpInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> GT 21.88/7.87 new_lt22(vxw410, vxw420, ty_Integer) -> new_lt4(vxw410, vxw420) 21.88/7.87 new_esEs11(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.87 new_ltEs21(vxw41, vxw42, app(app(app(ty_@3, bdh), bcg), bch)) -> new_ltEs14(vxw41, vxw42, bdh, bcg, bch) 21.88/7.87 new_esEs33(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.87 new_lt22(vxw410, vxw420, ty_Char) -> new_lt16(vxw410, vxw420) 21.88/7.87 new_esEs5(vxw301, vxw4001, app(app(ty_Either, dfa), dfb)) -> new_esEs19(vxw301, vxw4001, dfa, dfb) 21.88/7.87 new_primPlusNat1(Succ(vxw15900), Succ(vxw301000)) -> Succ(Succ(new_primPlusNat1(vxw15900, vxw301000))) 21.88/7.87 new_primCompAux00(vxw23, vxw24, GT, chd) -> GT 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), ty_Char, bac) -> new_ltEs7(vxw410, vxw420) 21.88/7.87 new_esEs33(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.87 new_esEs6(vxw300, vxw4000, app(ty_[], fda)) -> new_esEs27(vxw300, vxw4000, fda) 21.88/7.87 new_primCmpNat0(Zero, Succ(vxw40000)) -> LT 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.87 new_esEs6(vxw300, vxw4000, app(app(ty_@2, fcd), fce)) -> new_esEs18(vxw300, vxw4000, fcd, fce) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), app(ty_Ratio, feh), egb) -> new_esEs21(vxw3000, vxw40000, feh) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), ty_@0, egb) -> new_esEs26(vxw3000, vxw40000) 21.88/7.87 new_esEs13(vxw59, vxw62, ty_Ordering) -> new_esEs12(vxw59, vxw62) 21.88/7.87 new_esEs29(vxw3001, vxw40001, ty_Integer) -> new_esEs23(vxw3001, vxw40001) 21.88/7.87 new_esEs8(vxw300, vxw4000, app(app(ty_@2, eac), ead)) -> new_esEs18(vxw300, vxw4000, eac, ead) 21.88/7.87 new_esEs10(vxw302, vxw4002, ty_Char) -> new_esEs24(vxw302, vxw4002) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_Float) -> new_ltEs16(vxw411, vxw421) 21.88/7.87 new_esEs32(vxw79, vxw81, ty_@0) -> new_esEs26(vxw79, vxw81) 21.88/7.87 new_ltEs19(vxw80, vxw82, ty_Char) -> new_ltEs7(vxw80, vxw82) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(app(ty_@2, bbd), bbe)) -> new_ltEs12(vxw410, vxw420, bbd, bbe) 21.88/7.87 new_esEs33(vxw3000, vxw40000, app(ty_Ratio, ehb)) -> new_esEs21(vxw3000, vxw40000, ehb) 21.88/7.87 new_ltEs23(vxw411, vxw421, app(ty_Ratio, feg)) -> new_ltEs15(vxw411, vxw421, feg) 21.88/7.87 new_ltEs24(vxw412, vxw422, ty_Ordering) -> new_ltEs6(vxw412, vxw422) 21.88/7.87 new_esEs14(vxw60, vxw63, ty_Bool) -> new_esEs15(vxw60, vxw63) 21.88/7.87 new_ltEs19(vxw80, vxw82, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs14(vxw80, vxw82, db, dc, dd) 21.88/7.87 new_ltEs23(vxw411, vxw421, app(ty_Maybe, hd)) -> new_ltEs18(vxw411, vxw421, hd) 21.88/7.87 new_esEs39(vxw411, vxw421, ty_Bool) -> new_esEs15(vxw411, vxw421) 21.88/7.87 new_esEs11(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.87 new_esEs38(vxw410, vxw420, ty_Ordering) -> new_esEs12(vxw410, vxw420) 21.88/7.87 new_esEs8(vxw300, vxw4000, app(ty_Ratio, eaa)) -> new_esEs21(vxw300, vxw4000, eaa) 21.88/7.87 new_lt21(vxw410, vxw420, app(app(app(ty_@3, fg), fh), ga)) -> new_lt14(vxw410, vxw420, fg, fh, ga) 21.88/7.87 new_lt13(vxw79, vxw81, eb, ec) -> new_esEs12(new_compare17(vxw79, vxw81, eb, ec), LT) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, app(ty_Maybe, bh)) -> new_compare26(vxw23, vxw24, bh) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.87 new_esEs14(vxw60, vxw63, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs20(vxw60, vxw63, cbh, cca, ccb) 21.88/7.87 new_esEs11(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.87 new_ltEs13(Right(vxw410), Left(vxw420), bbc, bac) -> False 21.88/7.87 new_esEs8(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_Int) -> new_ltEs10(vxw411, vxw421) 21.88/7.87 new_esEs31(vxw3000, vxw40000, app(app(ty_Either, dhg), dhh)) -> new_esEs19(vxw3000, vxw40000, dhg, dhh) 21.88/7.87 new_esEs38(vxw410, vxw420, ty_Int) -> new_esEs16(vxw410, vxw420) 21.88/7.87 new_esEs29(vxw3001, vxw40001, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs20(vxw3001, vxw40001, dbg, dbh, dca) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_Integer) -> new_ltEs17(vxw411, vxw421) 21.88/7.87 new_esEs15(True, True) -> True 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_Bool) -> new_esEs15(vxw301, vxw4001) 21.88/7.87 new_esEs29(vxw3001, vxw40001, ty_Bool) -> new_esEs15(vxw3001, vxw40001) 21.88/7.87 new_esEs33(vxw3000, vxw40000, app(ty_Maybe, ehc)) -> new_esEs25(vxw3000, vxw40000, ehc) 21.88/7.87 new_primEqInt(Neg(Succ(vxw30000)), Neg(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) 21.88/7.87 new_esEs32(vxw79, vxw81, app(ty_[], eh)) -> new_esEs27(vxw79, vxw81, eh) 21.88/7.87 new_primCmpInt(Neg(Zero), Pos(Succ(vxw40000))) -> LT 21.88/7.87 new_ltEs20(vxw48, vxw49, app(app(ty_Either, cfe), cff)) -> new_ltEs13(vxw48, vxw49, cfe, cff) 21.88/7.87 new_ltEs21(vxw41, vxw42, app(ty_Maybe, egh)) -> new_ltEs18(vxw41, vxw42, egh) 21.88/7.87 new_compare7(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, cc) -> new_compare28(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs4(vxw300, vxw4000, cb), new_esEs5(vxw301, vxw4001, cc)), cb, cc) 21.88/7.87 new_primMulInt(Pos(vxw40000), Pos(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.87 new_esEs27([], [], dgf) -> True 21.88/7.87 new_ltEs11(vxw41, vxw42) -> new_fsEs(new_compare16(vxw41, vxw42)) 21.88/7.87 new_esEs9(vxw301, vxw4001, ty_@0) -> new_esEs26(vxw301, vxw4001) 21.88/7.87 new_esEs11(vxw300, vxw4000, app(app(ty_Either, eeg), eeh)) -> new_esEs19(vxw300, vxw4000, eeg, eeh) 21.88/7.87 new_lt21(vxw410, vxw420, app(app(ty_Either, fd), ff)) -> new_lt13(vxw410, vxw420, fd, ff) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.87 new_lt9(vxw60, vxw63, ty_Double) -> new_lt12(vxw60, vxw63) 21.88/7.87 new_compare11(@0, @0) -> EQ 21.88/7.87 new_primMulNat0(Succ(vxw400000), Zero) -> Zero 21.88/7.87 new_primMulNat0(Zero, Succ(vxw30100)) -> Zero 21.88/7.87 new_esEs9(vxw301, vxw4001, app(ty_Maybe, ebd)) -> new_esEs25(vxw301, vxw4001, ebd) 21.88/7.87 new_esEs8(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.87 new_compare8(False, False) -> EQ 21.88/7.87 new_esEs8(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Float) -> new_ltEs16(vxw410, vxw420) 21.88/7.87 new_compare210(vxw41, vxw42, False, fbf, hh) -> new_compare111(vxw41, vxw42, new_ltEs21(vxw41, vxw42, fbf), fbf, hh) 21.88/7.87 new_lt9(vxw60, vxw63, app(ty_Maybe, ccc)) -> new_lt17(vxw60, vxw63, ccc) 21.88/7.87 new_esEs34(vxw3001, vxw40001, app(ty_[], fbc)) -> new_esEs27(vxw3001, vxw40001, fbc) 21.88/7.87 new_lt14(vxw79, vxw81, ed, ee, ef) -> new_esEs12(new_compare18(vxw79, vxw81, ed, ee, ef), LT) 21.88/7.87 new_esEs7(vxw300, vxw4000, app(app(ty_Either, fed), fee)) -> new_esEs19(vxw300, vxw4000, fed, fee) 21.88/7.87 new_lt8(vxw59, vxw62, app(app(app(ty_@3, caf), cag), cah)) -> new_lt14(vxw59, vxw62, caf, cag, cah) 21.88/7.87 new_compare19(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.87 new_compare15(LT, LT) -> EQ 21.88/7.87 new_lt12(vxw79, vxw81) -> new_esEs12(new_compare16(vxw79, vxw81), LT) 21.88/7.87 new_esEs7(vxw300, vxw4000, app(ty_Maybe, fde)) -> new_esEs25(vxw300, vxw4000, fde) 21.88/7.87 new_primPlusNat1(Succ(vxw15900), Zero) -> Succ(vxw15900) 21.88/7.87 new_primPlusNat1(Zero, Succ(vxw301000)) -> Succ(vxw301000) 21.88/7.87 new_lt23(vxw411, vxw421, app(app(ty_Either, bec), bed)) -> new_lt13(vxw411, vxw421, bec, bed) 21.88/7.87 new_esEs8(vxw300, vxw4000, app(ty_[], eah)) -> new_esEs27(vxw300, vxw4000, eah) 21.88/7.87 new_compare15(EQ, EQ) -> EQ 21.88/7.87 new_compare27(vxw70, vxw71, False, fbg) -> new_compare114(vxw70, vxw71, new_ltEs22(vxw70, vxw71, fbg), fbg) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_@2, ba), bb)) -> new_compare7(vxw23, vxw24, ba, bb) 21.88/7.87 new_ltEs8(vxw61, vxw64, ty_Integer) -> new_ltEs17(vxw61, vxw64) 21.88/7.87 new_lt8(vxw59, vxw62, app(app(ty_Either, cad), cae)) -> new_lt13(vxw59, vxw62, cad, cae) 21.88/7.87 new_esEs33(vxw3000, vxw40000, app(app(ty_Either, fab), fac)) -> new_esEs19(vxw3000, vxw40000, fab, fac) 21.88/7.87 new_esEs31(vxw3000, vxw40000, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.87 new_lt9(vxw60, vxw63, ty_Integer) -> new_lt4(vxw60, vxw63) 21.88/7.87 new_esEs10(vxw302, vxw4002, app(ty_Maybe, ecf)) -> new_esEs25(vxw302, vxw4002, ecf) 21.88/7.87 new_fsEs(vxw153) -> new_not(new_esEs12(vxw153, GT)) 21.88/7.87 new_esEs9(vxw301, vxw4001, app(ty_[], ecb)) -> new_esEs27(vxw301, vxw4001, ecb) 21.88/7.87 new_esEs32(vxw79, vxw81, app(ty_Maybe, eg)) -> new_esEs25(vxw79, vxw81, eg) 21.88/7.87 new_compare6(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Integer) -> new_compare5(new_sr0(vxw300, vxw4001), new_sr0(vxw4000, vxw301)) 21.88/7.87 new_esEs32(vxw79, vxw81, ty_Double) -> new_esEs17(vxw79, vxw81) 21.88/7.87 new_lt11(vxw79, vxw81) -> new_esEs12(new_compare15(vxw79, vxw81), LT) 21.88/7.87 new_lt20(vxw79, vxw81, app(ty_Ratio, cgd)) -> new_lt5(vxw79, vxw81, cgd) 21.88/7.87 new_esEs34(vxw3001, vxw40001, ty_@0) -> new_esEs26(vxw3001, vxw40001) 21.88/7.87 new_compare17(Left(vxw300), Right(vxw4000), hf, hg) -> LT 21.88/7.87 new_compare16(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.87 new_lt9(vxw60, vxw63, ty_Char) -> new_lt16(vxw60, vxw63) 21.88/7.87 new_esEs11(vxw300, vxw4000, app(ty_Ratio, edg)) -> new_esEs21(vxw300, vxw4000, edg) 21.88/7.87 new_esEs8(vxw300, vxw4000, app(app(ty_Either, eba), ebb)) -> new_esEs19(vxw300, vxw4000, eba, ebb) 21.88/7.87 new_esEs13(vxw59, vxw62, ty_Int) -> new_esEs16(vxw59, vxw62) 21.88/7.87 new_lt23(vxw411, vxw421, ty_Double) -> new_lt12(vxw411, vxw421) 21.88/7.87 new_esEs39(vxw411, vxw421, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs20(vxw411, vxw421, bee, bef, beg) 21.88/7.87 new_esEs36(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.87 new_esEs31(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.87 new_ltEs8(vxw61, vxw64, ty_Int) -> new_ltEs10(vxw61, vxw64) 21.88/7.87 new_compare26(Nothing, Just(vxw4000), cdf) -> LT 21.88/7.87 new_esEs11(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_Double) -> new_ltEs11(vxw411, vxw421) 21.88/7.87 new_esEs34(vxw3001, vxw40001, ty_Char) -> new_esEs24(vxw3001, vxw40001) 21.88/7.87 new_esEs13(vxw59, vxw62, ty_Integer) -> new_esEs23(vxw59, vxw62) 21.88/7.87 new_esEs29(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) 21.88/7.87 new_lt20(vxw79, vxw81, app(app(ty_Either, eb), ec)) -> new_lt13(vxw79, vxw81, eb, ec) 21.88/7.87 new_ltEs24(vxw412, vxw422, ty_Float) -> new_ltEs16(vxw412, vxw422) 21.88/7.87 new_esEs29(vxw3001, vxw40001, ty_Int) -> new_esEs16(vxw3001, vxw40001) 21.88/7.87 new_esEs9(vxw301, vxw4001, app(app(ty_@2, ebe), ebf)) -> new_esEs18(vxw301, vxw4001, ebe, ebf) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), ty_Bool) -> new_ltEs9(vxw410, vxw420) 21.88/7.87 new_esEs35(vxw410, vxw420, ty_Int) -> new_esEs16(vxw410, vxw420) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.87 new_esEs35(vxw410, vxw420, ty_Ordering) -> new_esEs12(vxw410, vxw420) 21.88/7.87 new_esEs38(vxw410, vxw420, ty_Bool) -> new_esEs15(vxw410, vxw420) 21.88/7.87 new_esEs14(vxw60, vxw63, app(app(ty_Either, cbf), cbg)) -> new_esEs19(vxw60, vxw63, cbf, cbg) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), app(ty_Maybe, bhb)) -> new_ltEs18(vxw410, vxw420, bhb) 21.88/7.87 new_lt22(vxw410, vxw420, app(ty_Maybe, bdf)) -> new_lt17(vxw410, vxw420, bdf) 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.87 new_esEs12(GT, GT) -> True 21.88/7.87 new_compare114(vxw119, vxw120, True, fca) -> LT 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_Float) -> new_esEs22(vxw301, vxw4001) 21.88/7.87 new_lt22(vxw410, vxw420, app(app(app(ty_@3, bdc), bdd), bde)) -> new_lt14(vxw410, vxw420, bdc, bdd, bde) 21.88/7.87 new_esEs31(vxw3000, vxw40000, app(ty_[], dhf)) -> new_esEs27(vxw3000, vxw40000, dhf) 21.88/7.87 new_compare4(vxw30, vxw400, app(ty_Ratio, chc)) -> new_compare6(vxw30, vxw400, chc) 21.88/7.87 new_lt21(vxw410, vxw420, ty_@0) -> new_lt18(vxw410, vxw420) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Bool, egb) -> new_esEs15(vxw3000, vxw40000) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(ty_[], fha)) -> new_esEs27(vxw3000, vxw40000, fha) 21.88/7.87 new_esEs32(vxw79, vxw81, app(app(ty_@2, dg), dh)) -> new_esEs18(vxw79, vxw81, dg, dh) 21.88/7.87 new_lt8(vxw59, vxw62, ty_@0) -> new_lt18(vxw59, vxw62) 21.88/7.87 new_esEs38(vxw410, vxw420, ty_Integer) -> new_esEs23(vxw410, vxw420) 21.88/7.87 new_esEs9(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) 21.88/7.87 new_esEs30(vxw3002, vxw40002, app(ty_Ratio, dce)) -> new_esEs21(vxw3002, vxw40002, dce) 21.88/7.87 new_ltEs23(vxw411, vxw421, app(app(ty_@2, ge), gf)) -> new_ltEs12(vxw411, vxw421, ge, gf) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_Float) -> new_ltEs16(vxw48, vxw49) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, app(app(app(ty_@3, be), bf), bg)) -> new_compare18(vxw23, vxw24, be, bf, bg) 21.88/7.87 new_primCmpInt(Pos(Succ(vxw3000)), Pos(vxw4000)) -> new_primCmpNat0(Succ(vxw3000), vxw4000) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs14(vxw410, vxw420, bgg, bgh, bha) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), app(ty_[], ffg), egb) -> new_esEs27(vxw3000, vxw40000, ffg) 21.88/7.87 new_esEs38(vxw410, vxw420, ty_Char) -> new_esEs24(vxw410, vxw420) 21.88/7.87 new_compare15(LT, GT) -> LT 21.88/7.87 new_esEs39(vxw411, vxw421, app(app(ty_Either, bec), bed)) -> new_esEs19(vxw411, vxw421, bec, bed) 21.88/7.87 new_esEs12(EQ, EQ) -> True 21.88/7.87 new_esEs39(vxw411, vxw421, ty_Char) -> new_esEs24(vxw411, vxw421) 21.88/7.87 new_esEs14(vxw60, vxw63, ty_@0) -> new_esEs26(vxw60, vxw63) 21.88/7.87 new_esEs34(vxw3001, vxw40001, app(app(ty_Either, fbd), fbe)) -> new_esEs19(vxw3001, vxw40001, fbd, fbe) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, app(ty_Ratio, che)) -> new_compare6(vxw23, vxw24, che) 21.88/7.87 new_esEs11(vxw300, vxw4000, app(ty_Maybe, edh)) -> new_esEs25(vxw300, vxw4000, edh) 21.88/7.87 new_compare17(Right(vxw300), Left(vxw4000), hf, hg) -> GT 21.88/7.87 new_ltEs6(EQ, LT) -> False 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_@0) -> new_ltEs5(vxw410, vxw420) 21.88/7.87 new_compare9([], [], ceh) -> EQ 21.88/7.87 new_lt20(vxw79, vxw81, ty_@0) -> new_lt18(vxw79, vxw81) 21.88/7.87 new_lt23(vxw411, vxw421, ty_Bool) -> new_lt7(vxw411, vxw421) 21.88/7.87 new_lt23(vxw411, vxw421, ty_Integer) -> new_lt4(vxw411, vxw421) 21.88/7.87 new_ltEs20(vxw48, vxw49, app(ty_Maybe, cgb)) -> new_ltEs18(vxw48, vxw49, cgb) 21.88/7.87 new_esEs31(vxw3000, vxw40000, app(app(ty_@2, dha), dhb)) -> new_esEs18(vxw3000, vxw40000, dha, dhb) 21.88/7.87 new_lt9(vxw60, vxw63, ty_@0) -> new_lt18(vxw60, vxw63) 21.88/7.87 new_esEs8(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Bool) -> new_ltEs9(vxw410, vxw420) 21.88/7.87 new_lt9(vxw60, vxw63, ty_Float) -> new_lt15(vxw60, vxw63) 21.88/7.87 new_esEs33(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.87 new_esEs29(vxw3001, vxw40001, app(ty_[], dcb)) -> new_esEs27(vxw3001, vxw40001, dcb) 21.88/7.87 new_compare26(Just(vxw300), Just(vxw4000), cdf) -> new_compare27(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, cdf), cdf) 21.88/7.87 new_esEs31(vxw3000, vxw40000, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_esEs20(vxw3000, vxw40000, dhc, dhd, dhe) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), ty_Int, bac) -> new_ltEs10(vxw410, vxw420) 21.88/7.87 new_ltEs8(vxw61, vxw64, app(ty_[], cde)) -> new_ltEs4(vxw61, vxw64, cde) 21.88/7.87 new_esEs10(vxw302, vxw4002, ty_Int) -> new_esEs16(vxw302, vxw4002) 21.88/7.87 new_ltEs22(vxw70, vxw71, app(app(ty_@2, cdg), cdh)) -> new_ltEs12(vxw70, vxw71, cdg, cdh) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Char) -> new_ltEs7(vxw410, vxw420) 21.88/7.87 new_esEs10(vxw302, vxw4002, ty_Ordering) -> new_esEs12(vxw302, vxw4002) 21.88/7.87 new_ltEs19(vxw80, vxw82, app(ty_Maybe, de)) -> new_ltEs18(vxw80, vxw82, de) 21.88/7.87 new_compare4(vxw30, vxw400, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare18(vxw30, vxw400, bhe, bhf, bhg) 21.88/7.87 new_esEs34(vxw3001, vxw40001, ty_Integer) -> new_esEs23(vxw3001, vxw40001) 21.88/7.87 new_lt23(vxw411, vxw421, app(ty_Maybe, beh)) -> new_lt17(vxw411, vxw421, beh) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(ty_Maybe, bcc)) -> new_ltEs18(vxw410, vxw420, bcc) 21.88/7.87 new_esEs5(vxw301, vxw4001, app(ty_Maybe, deb)) -> new_esEs25(vxw301, vxw4001, deb) 21.88/7.87 new_esEs35(vxw410, vxw420, app(app(ty_Either, fd), ff)) -> new_esEs19(vxw410, vxw420, fd, ff) 21.88/7.87 new_compare14(vxw30, vxw400) -> new_primCmpInt(vxw30, vxw400) 21.88/7.87 new_compare28(vxw79, vxw80, vxw81, vxw82, False, cd, ea) -> new_compare112(vxw79, vxw80, vxw81, vxw82, new_lt20(vxw79, vxw81, cd), new_asAs(new_esEs32(vxw79, vxw81, cd), new_ltEs19(vxw80, vxw82, ea)), cd, ea) 21.88/7.87 new_esEs39(vxw411, vxw421, ty_Integer) -> new_esEs23(vxw411, vxw421) 21.88/7.87 new_esEs13(vxw59, vxw62, ty_Bool) -> new_esEs15(vxw59, vxw62) 21.88/7.87 new_ltEs22(vxw70, vxw71, app(ty_[], ceg)) -> new_ltEs4(vxw70, vxw71, ceg) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), app(app(ty_Either, dgd), dge)) -> new_esEs19(vxw3000, vxw40000, dgd, dge) 21.88/7.87 new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, cge, cgf, cgg) -> GT 21.88/7.87 new_lt20(vxw79, vxw81, ty_Integer) -> new_lt4(vxw79, vxw81) 21.88/7.87 new_ltEs24(vxw412, vxw422, app(app(ty_@2, bfb), bfc)) -> new_ltEs12(vxw412, vxw422, bfb, bfc) 21.88/7.87 new_esEs4(vxw300, vxw4000, app(ty_Maybe, dfc)) -> new_esEs25(vxw300, vxw4000, dfc) 21.88/7.87 new_compare4(vxw30, vxw400, ty_Ordering) -> new_compare15(vxw30, vxw400) 21.88/7.87 new_lt21(vxw410, vxw420, app(ty_Maybe, gb)) -> new_lt17(vxw410, vxw420, gb) 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_@0) -> new_esEs26(vxw301, vxw4001) 21.88/7.87 new_esEs38(vxw410, vxw420, app(app(ty_Either, bda), bdb)) -> new_esEs19(vxw410, vxw420, bda, bdb) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), ty_Ordering) -> new_ltEs6(vxw410, vxw420) 21.88/7.87 new_esEs29(vxw3001, vxw40001, app(app(ty_@2, dbe), dbf)) -> new_esEs18(vxw3001, vxw40001, dbe, dbf) 21.88/7.87 new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, cge, cgf, cgg) -> LT 21.88/7.87 new_esEs28(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.87 new_esEs14(vxw60, vxw63, ty_Integer) -> new_esEs23(vxw60, vxw63) 21.88/7.87 new_ltEs24(vxw412, vxw422, ty_Double) -> new_ltEs11(vxw412, vxw422) 21.88/7.87 new_esEs20(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), chf, chg, chh) -> new_asAs(new_esEs28(vxw3000, vxw40000, chf), new_asAs(new_esEs29(vxw3001, vxw40001, chg), new_esEs30(vxw3002, vxw40002, chh))) 21.88/7.87 new_compare15(GT, LT) -> GT 21.88/7.87 new_esEs28(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.87 new_esEs37(vxw3001, vxw40001, ty_Integer) -> new_esEs23(vxw3001, vxw40001) 21.88/7.87 new_compare4(vxw30, vxw400, ty_Bool) -> new_compare8(vxw30, vxw400) 21.88/7.87 new_esEs29(vxw3001, vxw40001, app(ty_Ratio, dbc)) -> new_esEs21(vxw3001, vxw40001, dbc) 21.88/7.87 new_esEs4(vxw300, vxw4000, app(app(ty_Either, ega), egb)) -> new_esEs19(vxw300, vxw4000, ega, egb) 21.88/7.87 new_esEs32(vxw79, vxw81, ty_Bool) -> new_esEs15(vxw79, vxw81) 21.88/7.87 new_esEs39(vxw411, vxw421, ty_@0) -> new_esEs26(vxw411, vxw421) 21.88/7.87 new_compare4(vxw30, vxw400, ty_@0) -> new_compare11(vxw30, vxw400) 21.88/7.87 new_compare110(vxw129, vxw130, vxw131, vxw132, False, efa, efb) -> GT 21.88/7.87 new_primPlusNat0(Succ(vxw1590), vxw30100) -> Succ(Succ(new_primPlusNat1(vxw1590, vxw30100))) 21.88/7.87 new_esEs13(vxw59, vxw62, app(app(ty_Either, cad), cae)) -> new_esEs19(vxw59, vxw62, cad, cae) 21.88/7.87 new_ltEs21(vxw41, vxw42, app(ty_[], bhd)) -> new_ltEs4(vxw41, vxw42, bhd) 21.88/7.87 new_esEs13(vxw59, vxw62, app(ty_Maybe, cba)) -> new_esEs25(vxw59, vxw62, cba) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, ty_Char) -> new_compare12(vxw23, vxw24) 21.88/7.87 new_esEs35(vxw410, vxw420, ty_Integer) -> new_esEs23(vxw410, vxw420) 21.88/7.87 new_esEs35(vxw410, vxw420, ty_Char) -> new_esEs24(vxw410, vxw420) 21.88/7.87 new_primPlusNat1(Zero, Zero) -> Zero 21.88/7.87 new_esEs35(vxw410, vxw420, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs20(vxw410, vxw420, fg, fh, ga) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_Double) -> new_ltEs11(vxw70, vxw71) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.87 new_lt21(vxw410, vxw420, ty_Float) -> new_lt15(vxw410, vxw420) 21.88/7.87 new_esEs32(vxw79, vxw81, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs20(vxw79, vxw81, ed, ee, ef) 21.88/7.87 new_esEs32(vxw79, vxw81, ty_Int) -> new_esEs16(vxw79, vxw81) 21.88/7.87 new_esEs10(vxw302, vxw4002, app(app(app(ty_@3, eda), edb), edc)) -> new_esEs20(vxw302, vxw4002, eda, edb, edc) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Integer, egb) -> new_esEs23(vxw3000, vxw40000) 21.88/7.87 new_esEs15(False, True) -> False 21.88/7.87 new_esEs15(True, False) -> False 21.88/7.87 new_esEs31(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.87 new_esEs34(vxw3001, vxw40001, ty_Bool) -> new_esEs15(vxw3001, vxw40001) 21.88/7.87 new_esEs39(vxw411, vxw421, ty_Float) -> new_esEs22(vxw411, vxw421) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), ty_Ordering, bac) -> new_ltEs6(vxw410, vxw420) 21.88/7.87 new_lt21(vxw410, vxw420, ty_Bool) -> new_lt7(vxw410, vxw420) 21.88/7.87 new_esEs33(vxw3000, vxw40000, app(app(app(ty_@3, ehf), ehg), ehh)) -> new_esEs20(vxw3000, vxw40000, ehf, ehg, ehh) 21.88/7.87 new_compare15(LT, EQ) -> LT 21.88/7.87 new_compare29(vxw48, vxw49, True, cfb, egd) -> EQ 21.88/7.87 new_esEs10(vxw302, vxw4002, ty_Bool) -> new_esEs15(vxw302, vxw4002) 21.88/7.87 new_esEs38(vxw410, vxw420, ty_Float) -> new_esEs22(vxw410, vxw420) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, ty_@0) -> new_compare11(vxw23, vxw24) 21.88/7.87 new_primCmpNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primCmpNat0(vxw3000, vxw40000) 21.88/7.87 new_lt20(vxw79, vxw81, ty_Char) -> new_lt16(vxw79, vxw81) 21.88/7.87 new_esEs14(vxw60, vxw63, ty_Char) -> new_esEs24(vxw60, vxw63) 21.88/7.87 new_lt8(vxw59, vxw62, ty_Float) -> new_lt15(vxw59, vxw62) 21.88/7.87 new_esEs30(vxw3002, vxw40002, ty_Int) -> new_esEs16(vxw3002, vxw40002) 21.88/7.87 new_compare110(vxw129, vxw130, vxw131, vxw132, True, efa, efb) -> LT 21.88/7.87 new_esEs11(vxw300, vxw4000, app(app(app(ty_@3, eec), eed), eee)) -> new_esEs20(vxw300, vxw4000, eec, eed, eee) 21.88/7.87 new_compare4(vxw30, vxw400, ty_Integer) -> new_compare5(vxw30, vxw400) 21.88/7.87 new_compare8(False, True) -> LT 21.88/7.87 new_esEs31(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.87 new_lt20(vxw79, vxw81, ty_Bool) -> new_lt7(vxw79, vxw81) 21.88/7.87 new_esEs13(vxw59, vxw62, ty_Char) -> new_esEs24(vxw59, vxw62) 21.88/7.87 new_esEs27(:(vxw3000, vxw3001), :(vxw40000, vxw40001), dgf) -> new_asAs(new_esEs31(vxw3000, vxw40000, dgf), new_esEs27(vxw3001, vxw40001, dgf)) 21.88/7.87 new_ltEs19(vxw80, vxw82, ty_Float) -> new_ltEs16(vxw80, vxw82) 21.88/7.87 new_esEs34(vxw3001, vxw40001, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs20(vxw3001, vxw40001, fah, fba, fbb) 21.88/7.87 new_lt23(vxw411, vxw421, ty_Float) -> new_lt15(vxw411, vxw421) 21.88/7.87 new_lt17(vxw79, vxw81, eg) -> new_esEs12(new_compare26(vxw79, vxw81, eg), LT) 21.88/7.87 new_esEs11(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.87 new_ltEs20(vxw48, vxw49, app(ty_[], cgc)) -> new_ltEs4(vxw48, vxw49, cgc) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, ty_Ordering) -> new_compare15(vxw23, vxw24) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Char, egb) -> new_esEs24(vxw3000, vxw40000) 21.88/7.87 new_esEs30(vxw3002, vxw40002, ty_Ordering) -> new_esEs12(vxw3002, vxw40002) 21.88/7.87 new_esEs38(vxw410, vxw420, app(ty_Maybe, bdf)) -> new_esEs25(vxw410, vxw420, bdf) 21.88/7.87 new_lt22(vxw410, vxw420, ty_Float) -> new_lt15(vxw410, vxw420) 21.88/7.87 new_compare16(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.87 new_compare16(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.87 new_ltEs19(vxw80, vxw82, app(ty_[], df)) -> new_ltEs4(vxw80, vxw82, df) 21.88/7.87 new_compare15(GT, GT) -> EQ 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), app(app(app(ty_@3, baf), bag), bah), bac) -> new_ltEs14(vxw410, vxw420, baf, bag, bah) 21.88/7.87 new_lt20(vxw79, vxw81, app(ty_Maybe, eg)) -> new_lt17(vxw79, vxw81, eg) 21.88/7.87 new_esEs19(Left(vxw3000), Right(vxw40000), ega, egb) -> False 21.88/7.87 new_esEs19(Right(vxw3000), Left(vxw40000), ega, egb) -> False 21.88/7.87 new_lt22(vxw410, vxw420, ty_@0) -> new_lt18(vxw410, vxw420) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), ty_@0) -> new_ltEs5(vxw410, vxw420) 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.87 new_esEs33(vxw3000, vxw40000, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.87 new_esEs28(vxw3000, vxw40000, app(ty_Ratio, daa)) -> new_esEs21(vxw3000, vxw40000, daa) 21.88/7.87 new_ltEs6(GT, LT) -> False 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), ty_Char) -> new_ltEs7(vxw410, vxw420) 21.88/7.87 new_ltEs6(EQ, EQ) -> True 21.88/7.87 new_lt23(vxw411, vxw421, ty_@0) -> new_lt18(vxw411, vxw421) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_Ordering) -> new_ltEs6(vxw411, vxw421) 21.88/7.87 new_primCmpInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> LT 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, ty_Bool) -> new_compare8(vxw23, vxw24) 21.88/7.87 new_esEs27(:(vxw3000, vxw3001), [], dgf) -> False 21.88/7.87 new_esEs27([], :(vxw40000, vxw40001), dgf) -> False 21.88/7.87 new_esEs38(vxw410, vxw420, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs20(vxw410, vxw420, bdc, bdd, bde) 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.87 new_ltEs4(vxw41, vxw42, bhd) -> new_fsEs(new_compare9(vxw41, vxw42, bhd)) 21.88/7.87 new_ltEs6(GT, GT) -> True 21.88/7.87 new_esEs28(vxw3000, vxw40000, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.87 new_esEs28(vxw3000, vxw40000, app(app(ty_@2, dac), dad)) -> new_esEs18(vxw3000, vxw40000, dac, dad) 21.88/7.87 new_esEs9(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 21.88/7.87 new_esEs38(vxw410, vxw420, app(ty_[], bdg)) -> new_esEs27(vxw410, vxw420, bdg) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(ty_Ratio, ddh)) -> new_ltEs15(vxw410, vxw420, ddh) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), ty_Integer) -> new_ltEs17(vxw410, vxw420) 21.88/7.87 new_esEs7(vxw300, vxw4000, app(app(ty_@2, fdf), fdg)) -> new_esEs18(vxw300, vxw4000, fdf, fdg) 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_Float) -> new_ltEs16(vxw70, vxw71) 21.88/7.87 new_esEs37(vxw3001, vxw40001, ty_Int) -> new_esEs16(vxw3001, vxw40001) 21.88/7.87 new_primCmpInt(Pos(Zero), Neg(Succ(vxw40000))) -> GT 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), ty_Int) -> new_ltEs10(vxw410, vxw420) 21.88/7.87 new_lt5(vxw79, vxw81, cgd) -> new_esEs12(new_compare6(vxw79, vxw81, cgd), LT) 21.88/7.87 new_esEs32(vxw79, vxw81, app(ty_Ratio, cgd)) -> new_esEs21(vxw79, vxw81, cgd) 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.87 new_lt22(vxw410, vxw420, app(app(ty_@2, bce), bcf)) -> new_lt6(vxw410, vxw420, bce, bcf) 21.88/7.87 new_ltEs24(vxw412, vxw422, ty_Int) -> new_ltEs10(vxw412, vxw422) 21.88/7.87 new_lt15(vxw79, vxw81) -> new_esEs12(new_compare19(vxw79, vxw81), LT) 21.88/7.87 new_primCmpInt(Neg(Succ(vxw3000)), Neg(vxw4000)) -> new_primCmpNat0(vxw4000, Succ(vxw3000)) 21.88/7.87 new_ltEs24(vxw412, vxw422, app(ty_Ratio, fhf)) -> new_ltEs15(vxw412, vxw422, fhf) 21.88/7.87 new_esEs14(vxw60, vxw63, app(ty_Maybe, ccc)) -> new_esEs25(vxw60, vxw63, ccc) 21.88/7.87 new_ltEs6(EQ, GT) -> True 21.88/7.87 new_ltEs8(vxw61, vxw64, ty_Double) -> new_ltEs11(vxw61, vxw64) 21.88/7.87 new_esEs9(vxw301, vxw4001, app(ty_Ratio, ebc)) -> new_esEs21(vxw301, vxw4001, ebc) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), ty_Bool, bac) -> new_ltEs9(vxw410, vxw420) 21.88/7.87 new_compare28(vxw79, vxw80, vxw81, vxw82, True, cd, ea) -> EQ 21.88/7.87 new_esEs15(False, False) -> True 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_Char) -> new_esEs24(vxw301, vxw4001) 21.88/7.87 new_primEqInt(Pos(Succ(vxw30000)), Pos(Zero)) -> False 21.88/7.87 new_primEqInt(Pos(Zero), Pos(Succ(vxw400000))) -> False 21.88/7.87 new_ltEs9(False, True) -> True 21.88/7.87 new_compare210(vxw41, vxw42, True, fbf, hh) -> EQ 21.88/7.87 new_esEs28(vxw3000, vxw40000, app(ty_[], dah)) -> new_esEs27(vxw3000, vxw40000, dah) 21.88/7.87 new_lt21(vxw410, vxw420, ty_Integer) -> new_lt4(vxw410, vxw420) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, ty_Integer) -> new_compare5(vxw23, vxw24) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), app(app(ty_Either, bge), bgf)) -> new_ltEs13(vxw410, vxw420, bge, bgf) 21.88/7.87 new_esEs13(vxw59, vxw62, ty_Double) -> new_esEs17(vxw59, vxw62) 21.88/7.87 new_esEs39(vxw411, vxw421, app(ty_Maybe, beh)) -> new_esEs25(vxw411, vxw421, beh) 21.88/7.87 new_lt9(vxw60, vxw63, app(app(ty_@2, cbd), cbe)) -> new_lt6(vxw60, vxw63, cbd, cbe) 21.88/7.87 new_esEs33(vxw3000, vxw40000, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.87 new_esEs7(vxw300, vxw4000, app(ty_[], fec)) -> new_esEs27(vxw300, vxw4000, fec) 21.88/7.87 new_primCmpNat0(Zero, Zero) -> EQ 21.88/7.87 new_ltEs15(vxw41, vxw42, efc) -> new_fsEs(new_compare6(vxw41, vxw42, efc)) 21.88/7.87 new_lt6(vxw79, vxw81, dg, dh) -> new_esEs12(new_compare7(vxw79, vxw81, dg, dh), LT) 21.88/7.87 new_esEs13(vxw59, vxw62, ty_@0) -> new_esEs26(vxw59, vxw62) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), app(app(ty_@2, ffb), ffc), egb) -> new_esEs18(vxw3000, vxw40000, ffb, ffc) 21.88/7.87 new_esEs32(vxw79, vxw81, ty_Ordering) -> new_esEs12(vxw79, vxw81) 21.88/7.87 new_esEs30(vxw3002, vxw40002, ty_Float) -> new_esEs22(vxw3002, vxw40002) 21.88/7.87 new_esEs18(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), efg, efh) -> new_asAs(new_esEs33(vxw3000, vxw40000, efg), new_esEs34(vxw3001, vxw40001, efh)) 21.88/7.87 new_ltEs6(LT, GT) -> True 21.88/7.87 new_lt8(vxw59, vxw62, ty_Integer) -> new_lt4(vxw59, vxw62) 21.88/7.87 new_esEs30(vxw3002, vxw40002, app(app(ty_@2, dcg), dch)) -> new_esEs18(vxw3002, vxw40002, dcg, dch) 21.88/7.87 new_esEs30(vxw3002, vxw40002, ty_Double) -> new_esEs17(vxw3002, vxw40002) 21.88/7.87 new_compare27(vxw70, vxw71, True, fbg) -> EQ 21.88/7.87 new_esEs12(LT, LT) -> True 21.88/7.87 new_lt21(vxw410, vxw420, ty_Char) -> new_lt16(vxw410, vxw420) 21.88/7.87 new_esEs38(vxw410, vxw420, ty_@0) -> new_esEs26(vxw410, vxw420) 21.88/7.87 new_lt8(vxw59, vxw62, app(ty_Maybe, cba)) -> new_lt17(vxw59, vxw62, cba) 21.88/7.87 new_compare4(vxw30, vxw400, ty_Char) -> new_compare12(vxw30, vxw400) 21.88/7.87 new_esEs35(vxw410, vxw420, ty_Bool) -> new_esEs15(vxw410, vxw420) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_Double) -> new_ltEs11(vxw48, vxw49) 21.88/7.87 new_esEs34(vxw3001, vxw40001, app(ty_Maybe, fae)) -> new_esEs25(vxw3001, vxw40001, fae) 21.88/7.87 new_ltEs8(vxw61, vxw64, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs14(vxw61, vxw64, cda, cdb, cdc) 21.88/7.87 new_compare114(vxw119, vxw120, False, fca) -> GT 21.88/7.87 new_esEs6(vxw300, vxw4000, app(app(ty_Either, fdb), fdc)) -> new_esEs19(vxw300, vxw4000, fdb, fdc) 21.88/7.87 new_esEs7(vxw300, vxw4000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs20(vxw300, vxw4000, fdh, fea, feb) 21.88/7.87 new_esEs24(Char(vxw3000), Char(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 21.88/7.87 new_ltEs22(vxw70, vxw71, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs14(vxw70, vxw71, cec, ced, cee) 21.88/7.87 new_lt4(vxw79, vxw81) -> new_esEs12(new_compare5(vxw79, vxw81), LT) 21.88/7.87 new_ltEs8(vxw61, vxw64, ty_Float) -> new_ltEs16(vxw61, vxw64) 21.88/7.87 new_esEs13(vxw59, vxw62, ty_Float) -> new_esEs22(vxw59, vxw62) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), app(ty_Ratio, eha)) -> new_ltEs15(vxw410, vxw420, eha) 21.88/7.87 new_lt23(vxw411, vxw421, app(ty_[], bfa)) -> new_lt19(vxw411, vxw421, bfa) 21.88/7.87 new_esEs13(vxw59, vxw62, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs20(vxw59, vxw62, caf, cag, cah) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(ty_Ratio, fgb)) -> new_esEs21(vxw3000, vxw40000, fgb) 21.88/7.87 new_esEs28(vxw3000, vxw40000, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.87 new_esEs13(vxw59, vxw62, app(ty_[], cbb)) -> new_esEs27(vxw59, vxw62, cbb) 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.87 new_esEs23(Integer(vxw3000), Integer(vxw40000)) -> new_primEqInt(vxw3000, vxw40000) 21.88/7.87 new_lt8(vxw59, vxw62, ty_Bool) -> new_lt7(vxw59, vxw62) 21.88/7.87 new_esEs29(vxw3001, vxw40001, app(ty_Maybe, dbd)) -> new_esEs25(vxw3001, vxw40001, dbd) 21.88/7.87 new_ltEs8(vxw61, vxw64, app(app(ty_@2, cce), ccf)) -> new_ltEs12(vxw61, vxw64, cce, ccf) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), app(ty_Maybe, dfe)) -> new_esEs25(vxw3000, vxw40000, dfe) 21.88/7.87 new_ltEs24(vxw412, vxw422, ty_Integer) -> new_ltEs17(vxw412, vxw422) 21.88/7.87 new_esEs30(vxw3002, vxw40002, app(ty_[], ddd)) -> new_esEs27(vxw3002, vxw40002, ddd) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_@0) -> new_ltEs5(vxw48, vxw49) 21.88/7.87 new_esEs9(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) 21.88/7.87 new_esEs13(vxw59, vxw62, app(app(ty_@2, bhh), caa)) -> new_esEs18(vxw59, vxw62, bhh, caa) 21.88/7.87 new_lt20(vxw79, vxw81, app(app(app(ty_@3, ed), ee), ef)) -> new_lt14(vxw79, vxw81, ed, ee, ef) 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.87 new_ltEs21(vxw41, vxw42, ty_Bool) -> new_ltEs9(vxw41, vxw42) 21.88/7.87 new_esEs11(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.87 new_esEs12(EQ, GT) -> False 21.88/7.87 new_esEs12(GT, EQ) -> False 21.88/7.87 new_lt18(vxw79, vxw81) -> new_esEs12(new_compare11(vxw79, vxw81), LT) 21.88/7.87 new_compare4(vxw30, vxw400, app(app(ty_Either, hf), hg)) -> new_compare17(vxw30, vxw400, hf, hg) 21.88/7.87 new_compare9(:(vxw300, vxw301), [], ceh) -> GT 21.88/7.87 new_esEs9(vxw301, vxw4001, ty_Int) -> new_esEs16(vxw301, vxw4001) 21.88/7.87 new_ltEs23(vxw411, vxw421, app(ty_[], he)) -> new_ltEs4(vxw411, vxw421, he) 21.88/7.87 new_primCmpNat0(Succ(vxw3000), Zero) -> GT 21.88/7.87 new_esEs10(vxw302, vxw4002, app(ty_Ratio, ece)) -> new_esEs21(vxw302, vxw4002, ece) 21.88/7.87 new_esEs35(vxw410, vxw420, app(app(ty_@2, fa), fb)) -> new_esEs18(vxw410, vxw420, fa, fb) 21.88/7.87 new_lt8(vxw59, vxw62, ty_Char) -> new_lt16(vxw59, vxw62) 21.88/7.87 new_pePe(False, vxw158) -> vxw158 21.88/7.87 new_lt22(vxw410, vxw420, app(ty_Ratio, fhd)) -> new_lt5(vxw410, vxw420, fhd) 21.88/7.87 new_esEs10(vxw302, vxw4002, ty_Double) -> new_esEs17(vxw302, vxw4002) 21.88/7.87 new_lt22(vxw410, vxw420, ty_Ordering) -> new_lt11(vxw410, vxw420) 21.88/7.87 new_esEs17(Double(vxw3000, vxw3001), Double(vxw40000, vxw40001)) -> new_esEs16(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) 21.88/7.87 new_ltEs13(Left(vxw410), Right(vxw420), bbc, bac) -> True 21.88/7.87 new_esEs33(vxw3000, vxw40000, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.87 new_ltEs19(vxw80, vxw82, ty_Int) -> new_ltEs10(vxw80, vxw82) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.87 new_ltEs9(True, True) -> True 21.88/7.87 new_compare15(EQ, LT) -> GT 21.88/7.87 new_esEs30(vxw3002, vxw40002, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs20(vxw3002, vxw40002, dda, ddb, ddc) 21.88/7.87 new_lt9(vxw60, vxw63, ty_Int) -> new_lt10(vxw60, vxw63) 21.88/7.87 new_ltEs6(LT, LT) -> True 21.88/7.87 new_ltEs19(vxw80, vxw82, ty_Integer) -> new_ltEs17(vxw80, vxw82) 21.88/7.87 new_compare112(vxw129, vxw130, vxw131, vxw132, True, vxw134, efa, efb) -> new_compare110(vxw129, vxw130, vxw131, vxw132, True, efa, efb) 21.88/7.87 new_lt21(vxw410, vxw420, ty_Double) -> new_lt12(vxw410, vxw420) 21.88/7.87 new_esEs35(vxw410, vxw420, app(ty_Ratio, fef)) -> new_esEs21(vxw410, vxw420, fef) 21.88/7.87 new_esEs30(vxw3002, vxw40002, ty_Bool) -> new_esEs15(vxw3002, vxw40002) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), app(app(ty_Either, bad), bae), bac) -> new_ltEs13(vxw410, vxw420, bad, bae) 21.88/7.87 new_primEqInt(Pos(Zero), Neg(Succ(vxw400000))) -> False 21.88/7.87 new_primEqInt(Neg(Zero), Pos(Succ(vxw400000))) -> False 21.88/7.87 new_esEs10(vxw302, vxw4002, ty_Float) -> new_esEs22(vxw302, vxw4002) 21.88/7.87 new_esEs33(vxw3000, vxw40000, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.87 new_esEs34(vxw3001, vxw40001, ty_Int) -> new_esEs16(vxw3001, vxw40001) 21.88/7.87 new_ltEs20(vxw48, vxw49, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs14(vxw48, vxw49, cfg, cfh, cga) 21.88/7.87 new_esEs9(vxw301, vxw4001, app(app(ty_Either, ecc), ecd)) -> new_esEs19(vxw301, vxw4001, ecc, ecd) 21.88/7.87 new_lt16(vxw79, vxw81) -> new_esEs12(new_compare12(vxw79, vxw81), LT) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.87 new_esEs10(vxw302, vxw4002, ty_Integer) -> new_esEs23(vxw302, vxw4002) 21.88/7.87 new_esEs6(vxw300, vxw4000, app(ty_Maybe, fcc)) -> new_esEs25(vxw300, vxw4000, fcc) 21.88/7.87 new_esEs29(vxw3001, vxw40001, ty_Char) -> new_esEs24(vxw3001, vxw40001) 21.88/7.87 new_esEs34(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs14(vxw410, vxw420, bbh, bca, bcb) 21.88/7.87 new_esEs22(Float(vxw3000, vxw3001), Float(vxw40000, vxw40001)) -> new_esEs16(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) 21.88/7.87 new_compare16(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.87 new_esEs30(vxw3002, vxw40002, ty_Integer) -> new_esEs23(vxw3002, vxw40002) 21.88/7.87 new_lt9(vxw60, vxw63, app(app(ty_Either, cbf), cbg)) -> new_lt13(vxw60, vxw63, cbf, cbg) 21.88/7.87 new_esEs8(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.87 new_esEs31(vxw3000, vxw40000, app(ty_Maybe, dgh)) -> new_esEs25(vxw3000, vxw40000, dgh) 21.88/7.87 new_compare8(True, True) -> EQ 21.88/7.87 new_primPlusNat0(Zero, vxw30100) -> Succ(vxw30100) 21.88/7.87 new_esEs5(vxw301, vxw4001, app(app(app(ty_@3, dee), def), deg)) -> new_esEs20(vxw301, vxw4001, dee, def, deg) 21.88/7.87 new_ltEs6(LT, EQ) -> True 21.88/7.87 new_compare4(vxw30, vxw400, app(app(ty_@2, cb), cc)) -> new_compare7(vxw30, vxw400, cb, cc) 21.88/7.87 new_esEs33(vxw3000, vxw40000, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Ordering, egb) -> new_esEs12(vxw3000, vxw40000) 21.88/7.87 new_lt9(vxw60, vxw63, app(app(app(ty_@3, cbh), cca), ccb)) -> new_lt14(vxw60, vxw63, cbh, cca, ccb) 21.88/7.87 new_ltEs19(vxw80, vxw82, ty_Bool) -> new_ltEs9(vxw80, vxw82) 21.88/7.87 new_ltEs19(vxw80, vxw82, app(app(ty_Either, cg), da)) -> new_ltEs13(vxw80, vxw82, cg, da) 21.88/7.87 new_esEs35(vxw410, vxw420, ty_Float) -> new_esEs22(vxw410, vxw420) 21.88/7.87 new_lt23(vxw411, vxw421, ty_Char) -> new_lt16(vxw411, vxw421) 21.88/7.87 new_esEs16(vxw300, vxw4000) -> new_primEqInt(vxw300, vxw4000) 21.88/7.87 new_lt8(vxw59, vxw62, ty_Double) -> new_lt12(vxw59, vxw62) 21.88/7.87 new_compare4(vxw30, vxw400, ty_Int) -> new_compare14(vxw30, vxw400) 21.88/7.87 new_ltEs10(vxw41, vxw42) -> new_fsEs(new_compare14(vxw41, vxw42)) 21.88/7.87 new_ltEs20(vxw48, vxw49, app(app(ty_@2, cfc), cfd)) -> new_ltEs12(vxw48, vxw49, cfc, cfd) 21.88/7.87 new_ltEs21(vxw41, vxw42, ty_Int) -> new_ltEs10(vxw41, vxw42) 21.88/7.87 new_esEs8(vxw300, vxw4000, app(ty_Maybe, eab)) -> new_esEs25(vxw300, vxw4000, eab) 21.88/7.87 new_esEs32(vxw79, vxw81, ty_Integer) -> new_esEs23(vxw79, vxw81) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Int, egb) -> new_esEs16(vxw3000, vxw40000) 21.88/7.87 new_esEs11(vxw300, vxw4000, app(ty_[], eef)) -> new_esEs27(vxw300, vxw4000, eef) 21.88/7.87 new_esEs28(vxw3000, vxw40000, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.87 new_ltEs16(vxw41, vxw42) -> new_fsEs(new_compare19(vxw41, vxw42)) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.87 new_ltEs21(vxw41, vxw42, ty_Integer) -> new_ltEs17(vxw41, vxw42) 21.88/7.87 new_esEs28(vxw3000, vxw40000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs20(vxw3000, vxw40000, dae, daf, dag) 21.88/7.87 new_esEs35(vxw410, vxw420, ty_@0) -> new_esEs26(vxw410, vxw420) 21.88/7.87 new_esEs10(vxw302, vxw4002, app(app(ty_Either, ede), edf)) -> new_esEs19(vxw302, vxw4002, ede, edf) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), app(ty_Maybe, ffa), egb) -> new_esEs25(vxw3000, vxw40000, ffa) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Ordering) -> new_ltEs6(vxw410, vxw420) 21.88/7.87 new_compare26(Nothing, Nothing, cdf) -> EQ 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.87 new_esEs11(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.87 new_lt22(vxw410, vxw420, app(app(ty_Either, bda), bdb)) -> new_lt13(vxw410, vxw420, bda, bdb) 21.88/7.87 new_esEs31(vxw3000, vxw40000, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.87 new_lt20(vxw79, vxw81, ty_Ordering) -> new_lt11(vxw79, vxw81) 21.88/7.87 new_compare12(Char(vxw300), Char(vxw4000)) -> new_primCmpNat0(vxw300, vxw4000) 21.88/7.87 new_primMulInt(Neg(vxw40000), Neg(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.87 new_primCmpInt(Pos(Zero), Pos(Succ(vxw40000))) -> new_primCmpNat0(Zero, Succ(vxw40000)) 21.88/7.87 new_compare4(vxw30, vxw400, app(ty_Maybe, cdf)) -> new_compare26(vxw30, vxw400, cdf) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_Integer) -> new_ltEs17(vxw70, vxw71) 21.88/7.87 new_esEs9(vxw301, vxw4001, ty_Float) -> new_esEs22(vxw301, vxw4001) 21.88/7.87 new_esEs4(vxw300, vxw4000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs20(vxw300, vxw4000, chf, chg, chh) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_Int) -> new_ltEs10(vxw70, vxw71) 21.88/7.87 new_esEs32(vxw79, vxw81, app(app(ty_Either, eb), ec)) -> new_esEs19(vxw79, vxw81, eb, ec) 21.88/7.87 new_ltEs8(vxw61, vxw64, app(ty_Maybe, cdd)) -> new_ltEs18(vxw61, vxw64, cdd) 21.88/7.87 new_compare26(Just(vxw300), Nothing, cdf) -> GT 21.88/7.87 new_compare19(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.87 new_lt23(vxw411, vxw421, app(app(app(ty_@3, bee), bef), beg)) -> new_lt14(vxw411, vxw421, bee, bef, beg) 21.88/7.87 new_esEs10(vxw302, vxw4002, app(app(ty_@2, ecg), ech)) -> new_esEs18(vxw302, vxw4002, ecg, ech) 21.88/7.87 new_esEs34(vxw3001, vxw40001, app(ty_Ratio, fad)) -> new_esEs21(vxw3001, vxw40001, fad) 21.88/7.87 new_esEs33(vxw3000, vxw40000, app(app(ty_@2, ehd), ehe)) -> new_esEs18(vxw3000, vxw40000, ehd, ehe) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), app(app(ty_@2, baa), bab), bac) -> new_ltEs12(vxw410, vxw420, baa, bab) 21.88/7.87 new_esEs33(vxw3000, vxw40000, app(ty_[], faa)) -> new_esEs27(vxw3000, vxw40000, faa) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), app(ty_[], bbb), bac) -> new_ltEs4(vxw410, vxw420, bbb) 21.88/7.87 new_ltEs22(vxw70, vxw71, app(ty_Maybe, cef)) -> new_ltEs18(vxw70, vxw71, cef) 21.88/7.87 new_esEs10(vxw302, vxw4002, app(ty_[], edd)) -> new_esEs27(vxw302, vxw4002, edd) 21.88/7.87 new_compare113(vxw109, vxw110, True, egf, egg) -> LT 21.88/7.87 new_ltEs24(vxw412, vxw422, app(ty_Maybe, bga)) -> new_ltEs18(vxw412, vxw422, bga) 21.88/7.87 new_esEs11(vxw300, vxw4000, app(app(ty_@2, eea), eeb)) -> new_esEs18(vxw300, vxw4000, eea, eeb) 21.88/7.87 new_primMulInt(Pos(vxw40000), Neg(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.87 new_primMulInt(Neg(vxw40000), Pos(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.87 new_ltEs18(Nothing, Nothing, egh) -> True 21.88/7.87 new_compare112(vxw129, vxw130, vxw131, vxw132, False, vxw134, efa, efb) -> new_compare110(vxw129, vxw130, vxw131, vxw132, vxw134, efa, efb) 21.88/7.87 new_esEs8(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.87 new_esEs28(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.87 new_ltEs6(GT, EQ) -> False 21.88/7.87 new_esEs14(vxw60, vxw63, ty_Ordering) -> new_esEs12(vxw60, vxw63) 21.88/7.87 new_lt21(vxw410, vxw420, app(ty_[], gc)) -> new_lt19(vxw410, vxw420, gc) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), app(app(ty_Either, ffh), fga), egb) -> new_esEs19(vxw3000, vxw40000, ffh, fga) 21.88/7.87 new_compare6(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Int) -> new_compare14(new_sr(vxw300, vxw4001), new_sr(vxw4000, vxw301)) 21.88/7.87 new_esEs31(vxw3000, vxw40000, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.87 new_ltEs24(vxw412, vxw422, ty_Bool) -> new_ltEs9(vxw412, vxw422) 21.88/7.87 new_esEs11(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.87 new_lt23(vxw411, vxw421, ty_Ordering) -> new_lt11(vxw411, vxw421) 21.88/7.87 new_compare25(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, cac) -> new_compare13(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, new_lt8(vxw59, vxw62, cbc), new_asAs(new_esEs13(vxw59, vxw62, cbc), new_pePe(new_lt9(vxw60, vxw63, cab), new_asAs(new_esEs14(vxw60, vxw63, cab), new_ltEs8(vxw61, vxw64, cac)))), cbc, cab, cac) 21.88/7.87 new_sr0(Integer(vxw40000), Integer(vxw3010)) -> Integer(new_primMulInt(vxw40000, vxw3010)) 21.88/7.87 new_esEs30(vxw3002, vxw40002, app(app(ty_Either, dde), ddf)) -> new_esEs19(vxw3002, vxw40002, dde, ddf) 21.88/7.87 new_esEs8(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.87 new_compare13(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, vxw151, cge, cgf, cgg) -> new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, cge, cgf, cgg) 21.88/7.87 new_ltEs8(vxw61, vxw64, ty_Ordering) -> new_ltEs6(vxw61, vxw64) 21.88/7.87 new_ltEs24(vxw412, vxw422, ty_Char) -> new_ltEs7(vxw412, vxw422) 21.88/7.87 new_lt20(vxw79, vxw81, ty_Int) -> new_lt10(vxw79, vxw81) 21.88/7.87 new_lt22(vxw410, vxw420, ty_Double) -> new_lt12(vxw410, vxw420) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), ty_Integer, bac) -> new_ltEs17(vxw410, vxw420) 21.88/7.87 new_asAs(True, vxw97) -> vxw97 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs20(vxw3000, vxw40000, dfh, dga, dgb) 21.88/7.87 new_esEs14(vxw60, vxw63, ty_Int) -> new_esEs16(vxw60, vxw63) 21.88/7.87 new_esEs4(vxw300, vxw4000, app(ty_[], dgf)) -> new_esEs27(vxw300, vxw4000, dgf) 21.88/7.87 new_ltEs8(vxw61, vxw64, app(app(ty_Either, ccg), cch)) -> new_ltEs13(vxw61, vxw64, ccg, cch) 21.88/7.87 new_esEs13(vxw59, vxw62, app(ty_Ratio, cgh)) -> new_esEs21(vxw59, vxw62, cgh) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(app(ty_Either, bbf), bbg)) -> new_ltEs13(vxw410, vxw420, bbf, bbg) 21.88/7.87 new_esEs5(vxw301, vxw4001, app(app(ty_@2, dec), ded)) -> new_esEs18(vxw301, vxw4001, dec, ded) 21.88/7.87 new_esEs32(vxw79, vxw81, ty_Float) -> new_esEs22(vxw79, vxw81) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), ty_Float) -> new_ltEs16(vxw410, vxw420) 21.88/7.87 new_compare111(vxw102, vxw103, False, efd, efe) -> GT 21.88/7.87 new_ltEs18(Just(vxw410), Nothing, egh) -> False 21.88/7.87 new_esEs30(vxw3002, vxw40002, ty_Char) -> new_esEs24(vxw3002, vxw40002) 21.88/7.87 new_esEs10(vxw302, vxw4002, ty_@0) -> new_esEs26(vxw302, vxw4002) 21.88/7.87 new_ltEs19(vxw80, vxw82, ty_Ordering) -> new_ltEs6(vxw80, vxw82) 21.88/7.87 new_lt21(vxw410, vxw420, app(ty_Ratio, fef)) -> new_lt5(vxw410, vxw420, fef) 21.88/7.87 new_lt7(vxw79, vxw81) -> new_esEs12(new_compare8(vxw79, vxw81), LT) 21.88/7.87 new_sr(vxw4000, vxw301) -> new_primMulInt(vxw4000, vxw301) 21.88/7.87 new_esEs38(vxw410, vxw420, app(ty_Ratio, fhd)) -> new_esEs21(vxw410, vxw420, fhd) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, ty_Float) -> new_compare19(vxw23, vxw24) 21.88/7.87 new_compare9(:(vxw300, vxw301), :(vxw4000, vxw4001), ceh) -> new_primCompAux1(vxw300, vxw4000, vxw301, vxw4001, ceh) 21.88/7.87 new_lt8(vxw59, vxw62, app(ty_[], cbb)) -> new_lt19(vxw59, vxw62, cbb) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(app(app(ty_@3, fgf), fgg), fgh)) -> new_esEs20(vxw3000, vxw40000, fgf, fgg, fgh) 21.88/7.87 new_primMulNat0(Zero, Zero) -> Zero 21.88/7.87 new_ltEs9(False, False) -> True 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.87 new_ltEs5(vxw41, vxw42) -> new_fsEs(new_compare11(vxw41, vxw42)) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, ty_Double) -> new_compare16(vxw23, vxw24) 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_Bool) -> new_ltEs9(vxw48, vxw49) 21.88/7.87 new_ltEs17(vxw41, vxw42) -> new_fsEs(new_compare5(vxw41, vxw42)) 21.88/7.87 new_ltEs22(vxw70, vxw71, app(app(ty_Either, cea), ceb)) -> new_ltEs13(vxw70, vxw71, cea, ceb) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), app(app(ty_@2, dff), dfg)) -> new_esEs18(vxw3000, vxw40000, dff, dfg) 21.88/7.87 new_lt9(vxw60, vxw63, app(ty_[], ccd)) -> new_lt19(vxw60, vxw63, ccd) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.87 new_primCompAux00(vxw23, vxw24, EQ, app(ty_[], ca)) -> new_compare9(vxw23, vxw24, ca) 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.87 new_esEs35(vxw410, vxw420, app(ty_[], gc)) -> new_esEs27(vxw410, vxw420, gc) 21.88/7.87 new_lt8(vxw59, vxw62, app(ty_Ratio, cgh)) -> new_lt5(vxw59, vxw62, cgh) 21.88/7.87 new_esEs4(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.87 new_compare13(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, vxw151, cge, cgf, cgg) -> new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, vxw151, cge, cgf, cgg) 21.88/7.87 new_ltEs9(True, False) -> False 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), app(ty_[], dgc)) -> new_esEs27(vxw3000, vxw40000, dgc) 21.88/7.87 new_compare4(vxw30, vxw400, ty_Float) -> new_compare19(vxw30, vxw400) 21.88/7.87 new_esEs39(vxw411, vxw421, ty_Ordering) -> new_esEs12(vxw411, vxw421) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), app(ty_Maybe, bba), bac) -> new_ltEs18(vxw410, vxw420, bba) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_Char) -> new_ltEs7(vxw48, vxw49) 21.88/7.87 new_primEqInt(Neg(Succ(vxw30000)), Neg(Zero)) -> False 21.88/7.87 new_primEqInt(Neg(Zero), Neg(Succ(vxw400000))) -> False 21.88/7.87 new_lt19(vxw79, vxw81, eh) -> new_esEs12(new_compare9(vxw79, vxw81, eh), LT) 21.88/7.87 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Double) -> new_ltEs11(vxw410, vxw420) 21.88/7.87 new_compare15(EQ, GT) -> LT 21.88/7.87 new_esEs21(:%(vxw3000, vxw3001), :%(vxw40000, vxw40001), eff) -> new_asAs(new_esEs36(vxw3000, vxw40000, eff), new_esEs37(vxw3001, vxw40001, eff)) 21.88/7.87 new_esEs39(vxw411, vxw421, ty_Int) -> new_esEs16(vxw411, vxw421) 21.88/7.87 new_primEqInt(Pos(Succ(vxw30000)), Pos(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) 21.88/7.87 new_lt8(vxw59, vxw62, ty_Int) -> new_lt10(vxw59, vxw62) 21.88/7.87 new_compare4(vxw30, vxw400, ty_Double) -> new_compare16(vxw30, vxw400) 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) 21.88/7.87 new_ltEs12(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, fc) -> new_pePe(new_lt21(vxw410, vxw420, gd), new_asAs(new_esEs35(vxw410, vxw420, gd), new_ltEs23(vxw411, vxw421, fc))) 21.88/7.87 new_esEs28(vxw3000, vxw40000, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.87 new_compare4(vxw30, vxw400, app(ty_[], ceh)) -> new_compare9(vxw30, vxw400, ceh) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.87 new_primEqInt(Pos(Succ(vxw30000)), Neg(vxw40000)) -> False 21.88/7.87 new_primEqInt(Neg(Succ(vxw30000)), Pos(vxw40000)) -> False 21.88/7.87 new_esEs26(@0, @0) -> True 21.88/7.87 new_lt20(vxw79, vxw81, app(app(ty_@2, dg), dh)) -> new_lt6(vxw79, vxw81, dg, dh) 21.88/7.87 new_primCmpInt(Neg(Zero), Neg(Succ(vxw40000))) -> new_primCmpNat0(Succ(vxw40000), Zero) 21.88/7.87 new_esEs14(vxw60, vxw63, app(ty_Ratio, cha)) -> new_esEs21(vxw60, vxw63, cha) 21.88/7.87 new_ltEs21(vxw41, vxw42, app(app(ty_Either, bbc), bac)) -> new_ltEs13(vxw41, vxw42, bbc, bac) 21.88/7.87 new_esEs7(vxw300, vxw4000, app(ty_Ratio, fdd)) -> new_esEs21(vxw300, vxw4000, fdd) 21.88/7.87 new_ltEs8(vxw61, vxw64, app(ty_Ratio, chb)) -> new_ltEs15(vxw61, vxw64, chb) 21.88/7.87 new_esEs29(vxw3001, vxw40001, app(app(ty_Either, dcc), dcd)) -> new_esEs19(vxw3001, vxw40001, dcc, dcd) 21.88/7.87 new_esEs31(vxw3000, vxw40000, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.87 new_ltEs22(vxw70, vxw71, app(ty_Ratio, fbh)) -> new_ltEs15(vxw70, vxw71, fbh) 21.88/7.87 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 21.88/7.87 new_lt20(vxw79, vxw81, app(ty_[], eh)) -> new_lt19(vxw79, vxw81, eh) 21.88/7.87 new_lt23(vxw411, vxw421, app(app(ty_@2, bea), beb)) -> new_lt6(vxw411, vxw421, bea, beb) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), app(app(ty_@2, bgc), bgd)) -> new_ltEs12(vxw410, vxw420, bgc, bgd) 21.88/7.87 new_primCompAux00(vxw23, vxw24, LT, chd) -> LT 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(app(ty_Either, fhb), fhc)) -> new_esEs19(vxw3000, vxw40000, fhb, fhc) 21.88/7.87 new_esEs6(vxw300, vxw4000, app(ty_Ratio, fcb)) -> new_esEs21(vxw300, vxw4000, fcb) 21.88/7.87 new_ltEs18(Just(vxw410), Just(vxw420), ty_Double) -> new_ltEs11(vxw410, vxw420) 21.88/7.87 new_esEs35(vxw410, vxw420, ty_Double) -> new_esEs17(vxw410, vxw420) 21.88/7.87 new_not(False) -> True 21.88/7.87 new_esEs39(vxw411, vxw421, app(ty_[], bfa)) -> new_esEs27(vxw411, vxw421, bfa) 21.88/7.87 new_compare19(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.87 new_compare19(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.87 new_esEs12(LT, EQ) -> False 21.88/7.87 new_esEs12(EQ, LT) -> False 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), app(ty_Ratio, dfd)) -> new_esEs21(vxw3000, vxw40000, dfd) 21.88/7.87 new_esEs14(vxw60, vxw63, app(app(ty_@2, cbd), cbe)) -> new_esEs18(vxw60, vxw63, cbd, cbe) 21.88/7.87 new_lt21(vxw410, vxw420, app(app(ty_@2, fa), fb)) -> new_lt6(vxw410, vxw420, fa, fb) 21.88/7.87 new_esEs5(vxw301, vxw4001, app(ty_[], deh)) -> new_esEs27(vxw301, vxw4001, deh) 21.88/7.87 new_compare5(Integer(vxw300), Integer(vxw4000)) -> new_primCmpInt(vxw300, vxw4000) 21.88/7.87 new_esEs28(vxw3000, vxw40000, app(app(ty_Either, dba), dbb)) -> new_esEs19(vxw3000, vxw40000, dba, dbb) 21.88/7.87 new_esEs12(LT, GT) -> False 21.88/7.87 new_esEs12(GT, LT) -> False 21.88/7.87 new_esEs7(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.87 new_esEs30(vxw3002, vxw40002, ty_@0) -> new_esEs26(vxw3002, vxw40002) 21.88/7.87 new_ltEs21(vxw41, vxw42, app(ty_Ratio, efc)) -> new_ltEs15(vxw41, vxw42, efc) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_Ordering) -> new_ltEs6(vxw70, vxw71) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(ty_Maybe, fgc)) -> new_esEs25(vxw3000, vxw40000, fgc) 21.88/7.87 new_esEs8(vxw300, vxw4000, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs20(vxw300, vxw4000, eae, eaf, eag) 21.88/7.87 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 21.88/7.87 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 21.88/7.87 new_ltEs24(vxw412, vxw422, ty_@0) -> new_ltEs5(vxw412, vxw422) 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_Int) -> new_esEs16(vxw301, vxw4001) 21.88/7.87 new_esEs14(vxw60, vxw63, app(ty_[], ccd)) -> new_esEs27(vxw60, vxw63, ccd) 21.88/7.87 new_lt22(vxw410, vxw420, app(ty_[], bdg)) -> new_lt19(vxw410, vxw420, bdg) 21.88/7.87 new_esEs29(vxw3001, vxw40001, ty_Float) -> new_esEs22(vxw3001, vxw40001) 21.88/7.87 new_ltEs13(Left(vxw410), Left(vxw420), ty_Float, bac) -> new_ltEs16(vxw410, vxw420) 21.88/7.87 new_compare15(GT, EQ) -> GT 21.88/7.87 new_ltEs23(vxw411, vxw421, app(app(ty_Either, gg), gh)) -> new_ltEs13(vxw411, vxw421, gg, gh) 21.88/7.87 new_esEs5(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_Char) -> new_ltEs7(vxw70, vxw71) 21.88/7.87 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 21.88/7.87 new_esEs38(vxw410, vxw420, ty_Double) -> new_esEs17(vxw410, vxw420) 21.88/7.87 new_primMulNat0(Succ(vxw400000), Succ(vxw30100)) -> new_primPlusNat0(new_primMulNat0(vxw400000, Succ(vxw30100)), vxw30100) 21.88/7.87 new_ltEs23(vxw411, vxw421, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs14(vxw411, vxw421, ha, hb, hc) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.87 new_lt9(vxw60, vxw63, app(ty_Ratio, cha)) -> new_lt5(vxw60, vxw63, cha) 21.88/7.87 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.87 new_ltEs8(vxw61, vxw64, ty_Char) -> new_ltEs7(vxw61, vxw64) 21.88/7.87 new_lt22(vxw410, vxw420, ty_Int) -> new_lt10(vxw410, vxw420) 21.88/7.87 new_ltEs8(vxw61, vxw64, ty_@0) -> new_ltEs5(vxw61, vxw64) 21.88/7.87 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.87 new_ltEs19(vxw80, vxw82, app(ty_Ratio, egc)) -> new_ltEs15(vxw80, vxw82, egc) 21.88/7.87 new_lt9(vxw60, vxw63, ty_Ordering) -> new_lt11(vxw60, vxw63) 21.88/7.87 new_esEs8(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.87 new_ltEs20(vxw48, vxw49, ty_Ordering) -> new_ltEs6(vxw48, vxw49) 21.88/7.87 new_esEs39(vxw411, vxw421, app(ty_Ratio, fhe)) -> new_esEs21(vxw411, vxw421, fhe) 21.88/7.87 new_compare17(Left(vxw300), Left(vxw4000), hf, hg) -> new_compare210(vxw300, vxw4000, new_esEs6(vxw300, vxw4000, hf), hf, hg) 21.88/7.87 new_esEs38(vxw410, vxw420, app(app(ty_@2, bce), bcf)) -> new_esEs18(vxw410, vxw420, bce, bcf) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_Char) -> new_ltEs7(vxw411, vxw421) 21.88/7.87 new_ltEs22(vxw70, vxw71, ty_@0) -> new_ltEs5(vxw70, vxw71) 21.88/7.87 new_esEs39(vxw411, vxw421, app(app(ty_@2, bea), beb)) -> new_esEs18(vxw411, vxw421, bea, beb) 21.88/7.87 new_esEs4(vxw300, vxw4000, app(app(ty_@2, efg), efh)) -> new_esEs18(vxw300, vxw4000, efg, efh) 21.88/7.87 new_compare9([], :(vxw4000, vxw4001), ceh) -> LT 21.88/7.87 new_esEs29(vxw3001, vxw40001, ty_@0) -> new_esEs26(vxw3001, vxw40001) 21.88/7.87 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 21.88/7.87 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 21.88/7.87 new_ltEs20(vxw48, vxw49, app(ty_Ratio, ege)) -> new_ltEs15(vxw48, vxw49, ege) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_Bool) -> new_ltEs9(vxw411, vxw421) 21.88/7.87 new_primEqNat0(Zero, Zero) -> True 21.88/7.87 new_esEs25(Nothing, Nothing, dfc) -> True 21.88/7.87 new_esEs9(vxw301, vxw4001, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs20(vxw301, vxw4001, ebg, ebh, eca) 21.88/7.87 new_esEs25(Nothing, Just(vxw40000), dfc) -> False 21.88/7.87 new_esEs25(Just(vxw3000), Nothing, dfc) -> False 21.88/7.87 new_esEs9(vxw301, vxw4001, ty_Bool) -> new_esEs15(vxw301, vxw4001) 21.88/7.87 new_ltEs21(vxw41, vxw42, ty_Ordering) -> new_ltEs6(vxw41, vxw42) 21.88/7.87 new_ltEs23(vxw411, vxw421, ty_@0) -> new_ltEs5(vxw411, vxw421) 21.88/7.87 new_lt8(vxw59, vxw62, app(app(ty_@2, bhh), caa)) -> new_lt6(vxw59, vxw62, bhh, caa) 21.88/7.87 new_esEs28(vxw3000, vxw40000, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.87 new_esEs4(vxw300, vxw4000, app(ty_Ratio, eff)) -> new_esEs21(vxw300, vxw4000, eff) 21.88/7.87 new_asAs(False, vxw97) -> False 21.88/7.87 new_lt21(vxw410, vxw420, ty_Int) -> new_lt10(vxw410, vxw420) 21.88/7.87 new_ltEs24(vxw412, vxw422, app(app(ty_Either, bfd), bfe)) -> new_ltEs13(vxw412, vxw422, bfd, bfe) 21.88/7.87 new_esEs6(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.87 new_esEs14(vxw60, vxw63, ty_Double) -> new_esEs17(vxw60, vxw63) 21.88/7.87 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Double, egb) -> new_esEs17(vxw3000, vxw40000) 21.88/7.87 new_ltEs24(vxw412, vxw422, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs14(vxw412, vxw422, bff, bfg, bfh) 21.88/7.87 21.88/7.87 The set Q consists of the following terms: 21.88/7.87 21.88/7.87 new_ltEs23(x0, x1, ty_Integer) 21.88/7.87 new_compare12(Char(x0), Char(x1)) 21.88/7.87 new_esEs32(x0, x1, ty_Bool) 21.88/7.87 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 21.88/7.87 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs36(x0, x1, ty_Integer) 21.88/7.87 new_esEs34(x0, x1, app(ty_[], x2)) 21.88/7.87 new_compare17(Left(x0), Right(x1), x2, x3) 21.88/7.87 new_compare17(Right(x0), Left(x1), x2, x3) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), ty_Bool) 21.88/7.87 new_compare11(@0, @0) 21.88/7.87 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs4(x0, x1, ty_Float) 21.88/7.87 new_primPlusNat1(Zero, Zero) 21.88/7.87 new_ltEs4(x0, x1, x2) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 21.88/7.87 new_esEs32(x0, x1, ty_@0) 21.88/7.87 new_compare15(LT, GT) 21.88/7.87 new_compare15(GT, LT) 21.88/7.87 new_lt8(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), ty_@0) 21.88/7.87 new_esEs13(x0, x1, app(ty_[], x2)) 21.88/7.87 new_compare4(x0, x1, ty_Int) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) 21.88/7.87 new_lt23(x0, x1, app(ty_[], x2)) 21.88/7.87 new_primEqInt(Pos(Zero), Pos(Zero)) 21.88/7.87 new_lt9(x0, x1, ty_Float) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 21.88/7.87 new_sr0(Integer(x0), Integer(x1)) 21.88/7.87 new_lt9(x0, x1, app(ty_[], x2)) 21.88/7.87 new_compare5(Integer(x0), Integer(x1)) 21.88/7.87 new_lt23(x0, x1, ty_Char) 21.88/7.87 new_ltEs23(x0, x1, ty_Bool) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 21.88/7.87 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs38(x0, x1, app(ty_[], x2)) 21.88/7.87 new_compare28(x0, x1, x2, x3, True, x4, x5) 21.88/7.87 new_esEs35(x0, x1, app(ty_[], x2)) 21.88/7.87 new_primEqInt(Neg(Zero), Neg(Zero)) 21.88/7.87 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_lt22(x0, x1, ty_Int) 21.88/7.87 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 21.88/7.87 new_ltEs9(True, True) 21.88/7.87 new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) 21.88/7.87 new_lt20(x0, x1, app(ty_[], x2)) 21.88/7.87 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs7(x0, x1, ty_Int) 21.88/7.87 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 21.88/7.87 new_esEs33(x0, x1, ty_Double) 21.88/7.87 new_lt22(x0, x1, ty_@0) 21.88/7.87 new_esEs28(x0, x1, ty_Int) 21.88/7.87 new_ltEs20(x0, x1, ty_Double) 21.88/7.87 new_esEs28(x0, x1, ty_Bool) 21.88/7.87 new_ltEs23(x0, x1, ty_Float) 21.88/7.87 new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 21.88/7.87 new_compare15(EQ, GT) 21.88/7.87 new_compare15(GT, EQ) 21.88/7.87 new_compare114(x0, x1, True, x2) 21.88/7.87 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 21.88/7.87 new_esEs28(x0, x1, ty_@0) 21.88/7.87 new_esEs31(x0, x1, app(ty_[], x2)) 21.88/7.87 new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 21.88/7.87 new_primPlusNat1(Succ(x0), Zero) 21.88/7.87 new_esEs31(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_primEqInt(Pos(Zero), Neg(Zero)) 21.88/7.87 new_primEqInt(Neg(Zero), Pos(Zero)) 21.88/7.87 new_esEs28(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs13(x0, x1, ty_Float) 21.88/7.87 new_esEs12(LT, GT) 21.88/7.87 new_esEs12(GT, LT) 21.88/7.87 new_esEs13(x0, x1, ty_@0) 21.88/7.87 new_compare4(x0, x1, ty_@0) 21.88/7.87 new_ltEs20(x0, x1, ty_Char) 21.88/7.87 new_compare26(Nothing, Just(x0), x1) 21.88/7.87 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_compare17(Left(x0), Left(x1), x2, x3) 21.88/7.87 new_esEs8(x0, x1, ty_Integer) 21.88/7.87 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs15(False, False) 21.88/7.87 new_esEs5(x0, x1, app(ty_Ratio, x2)) 21.88/7.87 new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 21.88/7.87 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 21.88/7.87 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 21.88/7.87 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs23(x0, x1, ty_@0) 21.88/7.87 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 21.88/7.87 new_compare111(x0, x1, True, x2, x3) 21.88/7.87 new_ltEs22(x0, x1, ty_Int) 21.88/7.87 new_esEs34(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs33(x0, x1, ty_Char) 21.88/7.87 new_esEs4(x0, x1, ty_@0) 21.88/7.87 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs30(x0, x1, ty_Integer) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 21.88/7.87 new_esEs24(Char(x0), Char(x1)) 21.88/7.87 new_ltEs8(x0, x1, ty_Int) 21.88/7.87 new_lt21(x0, x1, app(ty_Maybe, x2)) 21.88/7.87 new_esEs29(x0, x1, ty_Ordering) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 21.88/7.87 new_esEs4(x0, x1, ty_Bool) 21.88/7.87 new_esEs11(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_primMulNat0(Zero, Succ(x0)) 21.88/7.87 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_esEs34(x0, x1, ty_@0) 21.88/7.87 new_esEs4(x0, x1, app(ty_[], x2)) 21.88/7.87 new_esEs12(GT, GT) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 21.88/7.87 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 21.88/7.87 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 21.88/7.87 new_lt23(x0, x1, ty_Double) 21.88/7.87 new_esEs38(x0, x1, ty_Float) 21.88/7.87 new_compare4(x0, x1, ty_Bool) 21.88/7.87 new_compare9(:(x0, x1), [], x2) 21.88/7.87 new_esEs39(x0, x1, ty_Int) 21.88/7.87 new_lt8(x0, x1, ty_Ordering) 21.88/7.87 new_lt23(x0, x1, ty_Ordering) 21.88/7.87 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 21.88/7.87 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_esEs28(x0, x1, ty_Integer) 21.88/7.87 new_esEs38(x0, x1, ty_Char) 21.88/7.87 new_ltEs5(x0, x1) 21.88/7.87 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 21.88/7.87 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.87 new_lt9(x0, x1, ty_Integer) 21.88/7.87 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 21.88/7.87 new_esEs38(x0, x1, ty_Ordering) 21.88/7.87 new_esEs8(x0, x1, ty_Bool) 21.88/7.87 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.87 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.87 new_compare8(False, False) 21.88/7.87 new_esEs33(x0, x1, ty_Float) 21.88/7.87 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs13(x0, x1, ty_Bool) 21.88/7.88 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_compare26(Just(x0), Just(x1), x2) 21.88/7.88 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 21.88/7.88 new_esEs29(x0, x1, ty_Char) 21.88/7.88 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs4(x0, x1, ty_Integer) 21.88/7.88 new_esEs8(x0, x1, ty_Int) 21.88/7.88 new_esEs22(Float(x0, x1), Float(x2, x3)) 21.88/7.88 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 21.88/7.88 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 21.88/7.88 new_esEs10(x0, x1, ty_Double) 21.88/7.88 new_esEs25(Nothing, Just(x0), x1) 21.88/7.88 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_ltEs22(x0, x1, ty_Integer) 21.88/7.88 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 21.88/7.88 new_ltEs24(x0, x1, ty_Double) 21.88/7.88 new_esEs30(x0, x1, ty_@0) 21.88/7.88 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 21.88/7.88 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs35(x0, x1, ty_Double) 21.88/7.88 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_primMulInt(Pos(x0), Neg(x1)) 21.88/7.88 new_primMulInt(Neg(x0), Pos(x1)) 21.88/7.88 new_lt23(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs8(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs27([], :(x0, x1), x2) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 21.88/7.88 new_ltEs18(Nothing, Nothing, x0) 21.88/7.88 new_esEs27([], [], x0) 21.88/7.88 new_esEs5(x0, x1, ty_Char) 21.88/7.88 new_asAs(True, x0) 21.88/7.88 new_lt9(x0, x1, ty_Bool) 21.88/7.88 new_lt23(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 21.88/7.88 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_compare9([], :(x0, x1), x2) 21.88/7.88 new_esEs8(x0, x1, ty_Float) 21.88/7.88 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs10(x0, x1, ty_@0) 21.88/7.88 new_esEs31(x0, x1, ty_@0) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_@0) 21.88/7.88 new_ltEs19(x0, x1, ty_Float) 21.88/7.88 new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 21.88/7.88 new_esEs13(x0, x1, ty_Integer) 21.88/7.88 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs11(x0, x1, ty_@0) 21.88/7.88 new_ltEs24(x0, x1, app(ty_[], x2)) 21.88/7.88 new_compare4(x0, x1, ty_Integer) 21.88/7.88 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs9(x0, x1, ty_Double) 21.88/7.88 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs30(x0, x1, ty_Int) 21.88/7.88 new_esEs38(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs10(x0, x1, ty_Char) 21.88/7.88 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs6(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs38(x0, x1, ty_Integer) 21.88/7.88 new_lt9(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs21(x0, x1, ty_Int) 21.88/7.88 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 21.88/7.88 new_esEs4(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs14(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs11(x0, x1, ty_Float) 21.88/7.88 new_lt9(x0, x1, ty_Int) 21.88/7.88 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs8(x0, x1, ty_@0) 21.88/7.88 new_lt20(x0, x1, ty_Double) 21.88/7.88 new_lt18(x0, x1) 21.88/7.88 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 21.88/7.88 new_esEs10(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs7(x0, x1, ty_Float) 21.88/7.88 new_ltEs6(EQ, EQ) 21.88/7.88 new_esEs14(x0, x1, ty_@0) 21.88/7.88 new_ltEs21(x0, x1, ty_Char) 21.88/7.88 new_esEs6(x0, x1, ty_Ordering) 21.88/7.88 new_esEs34(x0, x1, ty_Float) 21.88/7.88 new_esEs14(x0, x1, ty_Char) 21.88/7.88 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs30(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 21.88/7.88 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 21.88/7.88 new_primMulNat0(Succ(x0), Succ(x1)) 21.88/7.88 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_Ordering) 21.88/7.88 new_esEs6(x0, x1, ty_Double) 21.88/7.88 new_esEs39(x0, x1, ty_Integer) 21.88/7.88 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 21.88/7.88 new_esEs14(x0, x1, ty_Int) 21.88/7.88 new_ltEs20(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs33(x0, x1, ty_Integer) 21.88/7.88 new_esEs34(x0, x1, ty_Integer) 21.88/7.88 new_esEs7(x0, x1, ty_Integer) 21.88/7.88 new_lt20(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs38(x0, x1, ty_@0) 21.88/7.88 new_esEs4(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs30(x0, x1, ty_Char) 21.88/7.88 new_primMulInt(Neg(x0), Neg(x1)) 21.88/7.88 new_esEs30(x0, x1, ty_Double) 21.88/7.88 new_esEs10(x0, x1, ty_Bool) 21.88/7.88 new_lt20(x0, x1, ty_Ordering) 21.88/7.88 new_esEs39(x0, x1, ty_Bool) 21.88/7.88 new_esEs33(x0, x1, ty_@0) 21.88/7.88 new_esEs11(x0, x1, ty_Integer) 21.88/7.88 new_esEs4(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs34(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_not(True) 21.88/7.88 new_lt21(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_lt5(x0, x1, x2) 21.88/7.88 new_lt21(x0, x1, ty_Ordering) 21.88/7.88 new_esEs28(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_compare27(x0, x1, True, x2) 21.88/7.88 new_ltEs23(x0, x1, ty_Double) 21.88/7.88 new_esEs14(x0, x1, ty_Bool) 21.88/7.88 new_compare114(x0, x1, False, x2) 21.88/7.88 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 21.88/7.88 new_lt8(x0, x1, ty_Double) 21.88/7.88 new_lt13(x0, x1, x2, x3) 21.88/7.88 new_esEs6(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs22(x0, x1, ty_Bool) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 21.88/7.88 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 21.88/7.88 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 21.88/7.88 new_ltEs22(x0, x1, ty_Float) 21.88/7.88 new_ltEs19(x0, x1, ty_Ordering) 21.88/7.88 new_lt22(x0, x1, ty_Float) 21.88/7.88 new_esEs16(x0, x1) 21.88/7.88 new_esEs10(x0, x1, ty_Integer) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 21.88/7.88 new_esEs31(x0, x1, ty_Integer) 21.88/7.88 new_esEs14(x0, x1, ty_Integer) 21.88/7.88 new_primPlusNat0(Succ(x0), x1) 21.88/7.88 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 21.88/7.88 new_esEs7(x0, x1, ty_Bool) 21.88/7.88 new_esEs12(LT, LT) 21.88/7.88 new_esEs9(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs33(x0, x1, ty_Bool) 21.88/7.88 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 21.88/7.88 new_esEs8(x0, x1, ty_Ordering) 21.88/7.88 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) 21.88/7.88 new_compare15(LT, EQ) 21.88/7.88 new_compare15(EQ, LT) 21.88/7.88 new_ltEs24(x0, x1, ty_Ordering) 21.88/7.88 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs7(x0, x1) 21.88/7.88 new_fsEs(x0) 21.88/7.88 new_compare4(x0, x1, ty_Float) 21.88/7.88 new_compare15(GT, GT) 21.88/7.88 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_primPlusNat1(Zero, Succ(x0)) 21.88/7.88 new_esEs32(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs28(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs36(x0, x1, ty_Int) 21.88/7.88 new_esEs32(x0, x1, ty_Ordering) 21.88/7.88 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), ty_Ordering) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 21.88/7.88 new_lt8(x0, x1, ty_Char) 21.88/7.88 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_compare8(True, True) 21.88/7.88 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Integer) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 21.88/7.88 new_esEs7(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 21.88/7.88 new_esEs31(x0, x1, ty_Char) 21.88/7.88 new_esEs7(x0, x1, ty_@0) 21.88/7.88 new_lt22(x0, x1, ty_Integer) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 21.88/7.88 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs10(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs10(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_lt23(x0, x1, ty_Float) 21.88/7.88 new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 21.88/7.88 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs11(x0, x1, ty_Bool) 21.88/7.88 new_esEs30(x0, x1, ty_Bool) 21.88/7.88 new_primCmpNat0(Succ(x0), Zero) 21.88/7.88 new_compare111(x0, x1, False, x2, x3) 21.88/7.88 new_primEqNat0(Zero, Succ(x0)) 21.88/7.88 new_ltEs19(x0, x1, ty_Double) 21.88/7.88 new_esEs28(x0, x1, ty_Float) 21.88/7.88 new_esEs15(False, True) 21.88/7.88 new_esEs15(True, False) 21.88/7.88 new_lt8(x0, x1, ty_Int) 21.88/7.88 new_esEs35(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 21.88/7.88 new_compare4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs39(x0, x1, ty_@0) 21.88/7.88 new_lt22(x0, x1, app(ty_[], x2)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Bool) 21.88/7.88 new_esEs8(x0, x1, app(ty_[], x2)) 21.88/7.88 new_primEqNat0(Zero, Zero) 21.88/7.88 new_esEs31(x0, x1, ty_Bool) 21.88/7.88 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs34(x0, x1, ty_Int) 21.88/7.88 new_esEs31(x0, x1, ty_Float) 21.88/7.88 new_lt9(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Float) 21.88/7.88 new_ltEs9(False, False) 21.88/7.88 new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) 21.88/7.88 new_not(False) 21.88/7.88 new_ltEs20(x0, x1, ty_Ordering) 21.88/7.88 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt11(x0, x1) 21.88/7.88 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 21.88/7.88 new_esEs13(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs26(@0, @0) 21.88/7.88 new_esEs13(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_lt4(x0, x1) 21.88/7.88 new_esEs9(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs11(x0, x1, ty_Char) 21.88/7.88 new_compare112(x0, x1, x2, x3, True, x4, x5, x6) 21.88/7.88 new_esEs27(:(x0, x1), [], x2) 21.88/7.88 new_lt8(x0, x1, ty_Float) 21.88/7.88 new_lt22(x0, x1, ty_Bool) 21.88/7.88 new_esEs8(x0, x1, ty_Double) 21.88/7.88 new_esEs31(x0, x1, ty_Int) 21.88/7.88 new_esEs30(x0, x1, ty_Float) 21.88/7.88 new_esEs30(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Int) 21.88/7.88 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt9(x0, x1, ty_Double) 21.88/7.88 new_esEs5(x0, x1, ty_@0) 21.88/7.88 new_ltEs21(x0, x1, ty_@0) 21.88/7.88 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_lt16(x0, x1) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 21.88/7.88 new_esEs10(x0, x1, ty_Int) 21.88/7.88 new_ltEs23(x0, x1, ty_Ordering) 21.88/7.88 new_esEs34(x0, x1, ty_Char) 21.88/7.88 new_primCmpNat0(Succ(x0), Succ(x1)) 21.88/7.88 new_compare29(x0, x1, True, x2, x3) 21.88/7.88 new_esEs34(x0, x1, ty_Bool) 21.88/7.88 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_compare4(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs11(x0, x1) 21.88/7.88 new_esEs9(x0, x1, ty_Ordering) 21.88/7.88 new_esEs11(x0, x1, ty_Int) 21.88/7.88 new_esEs10(x0, x1, ty_Float) 21.88/7.88 new_esEs29(x0, x1, ty_Double) 21.88/7.88 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs9(x0, x1, ty_Float) 21.88/7.88 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_lt8(x0, x1, ty_Integer) 21.88/7.88 new_pePe(True, x0) 21.88/7.88 new_esEs29(x0, x1, ty_@0) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 21.88/7.88 new_esEs12(EQ, EQ) 21.88/7.88 new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) 21.88/7.88 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_lt20(x0, x1, ty_Float) 21.88/7.88 new_lt22(x0, x1, ty_Char) 21.88/7.88 new_esEs35(x0, x1, ty_Integer) 21.88/7.88 new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs29(x0, x1, ty_Bool) 21.88/7.88 new_compare4(x0, x1, ty_Ordering) 21.88/7.88 new_esEs11(x0, x1, ty_Double) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Char) 21.88/7.88 new_esEs5(x0, x1, ty_Float) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 21.88/7.88 new_esEs6(x0, x1, ty_Float) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 21.88/7.88 new_ltEs6(LT, LT) 21.88/7.88 new_esEs37(x0, x1, ty_Integer) 21.88/7.88 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_compare4(x0, x1, ty_Double) 21.88/7.88 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_compare26(Just(x0), Nothing, x1) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_Float) 21.88/7.88 new_lt8(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_compare110(x0, x1, x2, x3, True, x4, x5) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 21.88/7.88 new_compare4(x0, x1, ty_Char) 21.88/7.88 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_lt22(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs16(x0, x1) 21.88/7.88 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_Integer) 21.88/7.88 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 21.88/7.88 new_primCompAux1(x0, x1, x2, x3, x4) 21.88/7.88 new_lt8(x0, x1, ty_@0) 21.88/7.88 new_lt23(x0, x1, ty_@0) 21.88/7.88 new_compare29(x0, x1, False, x2, x3) 21.88/7.88 new_compare9([], [], x0) 21.88/7.88 new_esEs35(x0, x1, ty_@0) 21.88/7.88 new_compare4(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 21.88/7.88 new_lt23(x0, x1, ty_Int) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 21.88/7.88 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs38(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 21.88/7.88 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs31(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs20(x0, x1, ty_Bool) 21.88/7.88 new_esEs29(x0, x1, ty_Integer) 21.88/7.88 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 21.88/7.88 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 21.88/7.88 new_esEs34(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 21.88/7.88 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 21.88/7.88 new_lt23(x0, x1, ty_Integer) 21.88/7.88 new_esEs39(x0, x1, ty_Double) 21.88/7.88 new_compare27(x0, x1, False, x2) 21.88/7.88 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs35(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_sr(x0, x1) 21.88/7.88 new_esEs11(x0, x1, ty_Ordering) 21.88/7.88 new_esEs8(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs22(x0, x1, ty_Char) 21.88/7.88 new_compare14(x0, x1) 21.88/7.88 new_lt23(x0, x1, ty_Bool) 21.88/7.88 new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 21.88/7.88 new_esEs14(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs7(x0, x1, ty_Double) 21.88/7.88 new_primEqNat0(Succ(x0), Succ(x1)) 21.88/7.88 new_ltEs24(x0, x1, ty_Integer) 21.88/7.88 new_esEs7(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_lt22(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_compare26(Nothing, Nothing, x0) 21.88/7.88 new_compare8(True, False) 21.88/7.88 new_compare8(False, True) 21.88/7.88 new_ltEs22(x0, x1, ty_Double) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 21.88/7.88 new_lt8(x0, x1, ty_Bool) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 21.88/7.88 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt15(x0, x1) 21.88/7.88 new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 21.88/7.88 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 21.88/7.88 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_primEqNat0(Succ(x0), Zero) 21.88/7.88 new_ltEs20(x0, x1, ty_@0) 21.88/7.88 new_esEs7(x0, x1, ty_Char) 21.88/7.88 new_compare28(x0, x1, x2, x3, False, x4, x5) 21.88/7.88 new_ltEs21(x0, x1, ty_Integer) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Ordering) 21.88/7.88 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 21.88/7.88 new_esEs28(x0, x1, ty_Char) 21.88/7.88 new_esEs28(x0, x1, ty_Double) 21.88/7.88 new_ltEs20(x0, x1, ty_Int) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_Bool) 21.88/7.88 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) 21.88/7.88 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 21.88/7.88 new_esEs32(x0, x1, ty_Double) 21.88/7.88 new_lt19(x0, x1, x2) 21.88/7.88 new_esEs29(x0, x1, ty_Float) 21.88/7.88 new_compare15(EQ, EQ) 21.88/7.88 new_lt20(x0, x1, ty_Bool) 21.88/7.88 new_esEs9(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs39(x0, x1, ty_Char) 21.88/7.88 new_esEs5(x0, x1, ty_Integer) 21.88/7.88 new_ltEs8(x0, x1, ty_Ordering) 21.88/7.88 new_primPlusNat1(Succ(x0), Succ(x1)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 21.88/7.88 new_esEs33(x0, x1, ty_Int) 21.88/7.88 new_esEs12(LT, EQ) 21.88/7.88 new_esEs12(EQ, LT) 21.88/7.88 new_esEs5(x0, x1, ty_Bool) 21.88/7.88 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 21.88/7.88 new_ltEs8(x0, x1, ty_Char) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 21.88/7.88 new_esEs6(x0, x1, ty_@0) 21.88/7.88 new_ltEs21(x0, x1, ty_Bool) 21.88/7.88 new_esEs6(x0, x1, app(ty_[], x2)) 21.88/7.88 new_ltEs23(x0, x1, app(ty_[], x2)) 21.88/7.88 new_lt9(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_@0) 21.88/7.88 new_esEs7(x0, x1, app(ty_[], x2)) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 21.88/7.88 new_lt14(x0, x1, x2, x3, x4) 21.88/7.88 new_esEs25(Nothing, Nothing, x0) 21.88/7.88 new_esEs38(x0, x1, ty_Int) 21.88/7.88 new_compare4(x0, x1, app(ty_[], x2)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), ty_Double) 21.88/7.88 new_lt22(x0, x1, ty_Double) 21.88/7.88 new_primCompAux00(x0, x1, GT, x2) 21.88/7.88 new_primCmpInt(Neg(Zero), Neg(Zero)) 21.88/7.88 new_esEs39(x0, x1, app(ty_[], x2)) 21.88/7.88 new_ltEs9(False, True) 21.88/7.88 new_ltEs9(True, False) 21.88/7.88 new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 21.88/7.88 new_esEs31(x0, x1, ty_Double) 21.88/7.88 new_lt7(x0, x1) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Double) 21.88/7.88 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 21.88/7.88 new_esEs32(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 21.88/7.88 new_ltEs6(GT, LT) 21.88/7.88 new_ltEs6(LT, GT) 21.88/7.88 new_lt21(x0, x1, ty_Double) 21.88/7.88 new_primCmpInt(Pos(Zero), Neg(Zero)) 21.88/7.88 new_primCmpInt(Neg(Zero), Pos(Zero)) 21.88/7.88 new_esEs39(x0, x1, ty_Float) 21.88/7.88 new_ltEs6(EQ, GT) 21.88/7.88 new_ltEs6(GT, EQ) 21.88/7.88 new_esEs15(True, True) 21.88/7.88 new_ltEs19(x0, x1, ty_Int) 21.88/7.88 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs14(x0, x1, ty_Float) 21.88/7.88 new_compare112(x0, x1, x2, x3, False, x4, x5, x6) 21.88/7.88 new_esEs28(x0, x1, ty_Ordering) 21.88/7.88 new_esEs37(x0, x1, ty_Int) 21.88/7.88 new_esEs8(x0, x1, ty_Char) 21.88/7.88 new_esEs34(x0, x1, ty_Double) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 21.88/7.88 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs8(x0, x1, ty_Integer) 21.88/7.88 new_esEs13(x0, x1, ty_Ordering) 21.88/7.88 new_lt9(x0, x1, ty_Char) 21.88/7.88 new_esEs38(x0, x1, ty_Bool) 21.88/7.88 new_esEs29(x0, x1, ty_Int) 21.88/7.88 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 21.88/7.88 new_esEs5(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_lt21(x0, x1, ty_@0) 21.88/7.88 new_ltEs21(x0, x1, ty_Float) 21.88/7.88 new_ltEs22(x0, x1, ty_Ordering) 21.88/7.88 new_esEs5(x0, x1, ty_Int) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 21.88/7.88 new_esEs17(Double(x0, x1), Double(x2, x3)) 21.88/7.88 new_ltEs24(x0, x1, ty_@0) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 21.88/7.88 new_lt8(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs35(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs19(Left(x0), Right(x1), x2, x3) 21.88/7.88 new_esEs19(Right(x0), Left(x1), x2, x3) 21.88/7.88 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 21.88/7.88 new_esEs39(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_ltEs21(x0, x1, ty_Ordering) 21.88/7.88 new_lt17(x0, x1, x2) 21.88/7.88 new_ltEs8(x0, x1, ty_Bool) 21.88/7.88 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 21.88/7.88 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 21.88/7.88 new_primMulNat0(Zero, Zero) 21.88/7.88 new_esEs5(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 21.88/7.88 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt21(x0, x1, ty_Char) 21.88/7.88 new_esEs30(x0, x1, ty_Ordering) 21.88/7.88 new_esEs33(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_primMulInt(Pos(x0), Pos(x1)) 21.88/7.88 new_esEs5(x0, x1, app(ty_[], x2)) 21.88/7.88 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 21.88/7.88 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 21.88/7.88 new_esEs30(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_compare210(x0, x1, True, x2, x3) 21.88/7.88 new_esEs13(x0, x1, ty_Double) 21.88/7.88 new_lt20(x0, x1, ty_Int) 21.88/7.88 new_ltEs21(x0, x1, ty_Double) 21.88/7.88 new_esEs29(x0, x1, app(ty_[], x2)) 21.88/7.88 new_asAs(False, x0) 21.88/7.88 new_ltEs15(x0, x1, x2) 21.88/7.88 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs32(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 21.88/7.88 new_ltEs19(x0, x1, ty_Char) 21.88/7.88 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs6(x0, x1, ty_Int) 21.88/7.88 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_Int) 21.88/7.88 new_esEs10(x0, x1, ty_Ordering) 21.88/7.88 new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) 21.88/7.88 new_esEs13(x0, x1, ty_Int) 21.88/7.88 new_esEs12(EQ, GT) 21.88/7.88 new_esEs12(GT, EQ) 21.88/7.88 new_esEs14(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs19(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_compare7(@2(x0, x1), @2(x2, x3), x4, x5) 21.88/7.88 new_compare15(LT, LT) 21.88/7.88 new_lt6(x0, x1, x2, x3) 21.88/7.88 new_primPlusNat0(Zero, x0) 21.88/7.88 new_ltEs19(x0, x1, ty_Bool) 21.88/7.88 new_lt20(x0, x1, ty_Char) 21.88/7.88 new_compare113(x0, x1, True, x2, x3) 21.88/7.88 new_ltEs20(x0, x1, ty_Float) 21.88/7.88 new_lt20(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs33(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs13(x0, x1, ty_Char) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_Char) 21.88/7.88 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs9(x0, x1, ty_Char) 21.88/7.88 new_compare4(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_compare4(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_ltEs22(x0, x1, ty_@0) 21.88/7.88 new_esEs9(x0, x1, ty_Int) 21.88/7.88 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_Double) 21.88/7.88 new_ltEs19(x0, x1, ty_Integer) 21.88/7.88 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs4(x0, x1, ty_Int) 21.88/7.88 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs8(x0, x1, ty_Float) 21.88/7.88 new_ltEs13(Right(x0), Left(x1), x2, x3) 21.88/7.88 new_esEs11(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_ltEs13(Left(x0), Right(x1), x2, x3) 21.88/7.88 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 21.88/7.88 new_esEs25(Just(x0), Nothing, x1) 21.88/7.88 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs9(x0, x1, ty_@0) 21.88/7.88 new_lt12(x0, x1) 21.88/7.88 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_lt21(x0, x1, ty_Integer) 21.88/7.88 new_ltEs23(x0, x1, ty_Int) 21.88/7.88 new_esEs4(x0, x1, ty_Double) 21.88/7.88 new_esEs4(x0, x1, ty_Char) 21.88/7.88 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_primCmpInt(Pos(Zero), Pos(Zero)) 21.88/7.88 new_ltEs18(Nothing, Just(x0), x1) 21.88/7.88 new_esEs32(x0, x1, ty_Float) 21.88/7.88 new_esEs23(Integer(x0), Integer(x1)) 21.88/7.88 new_ltEs6(EQ, LT) 21.88/7.88 new_ltEs6(LT, EQ) 21.88/7.88 new_esEs9(x0, x1, ty_Bool) 21.88/7.88 new_ltEs6(GT, GT) 21.88/7.88 new_ltEs23(x0, x1, ty_Char) 21.88/7.88 new_pePe(False, x0) 21.88/7.88 new_esEs35(x0, x1, ty_Int) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), ty_Float) 21.88/7.88 new_ltEs8(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs14(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs35(x0, x1, ty_Char) 21.88/7.88 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_lt22(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_compare17(Right(x0), Right(x1), x2, x3) 21.88/7.88 new_ltEs22(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs32(x0, x1, ty_Int) 21.88/7.88 new_lt20(x0, x1, ty_Integer) 21.88/7.88 new_esEs27(:(x0, x1), :(x2, x3), x4) 21.88/7.88 new_lt9(x0, x1, ty_@0) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 21.88/7.88 new_esEs38(x0, x1, ty_Double) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), ty_Int) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 21.88/7.88 new_ltEs10(x0, x1) 21.88/7.88 new_ltEs18(Just(x0), Nothing, x1) 21.88/7.88 new_esEs29(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs6(x0, x1, ty_Char) 21.88/7.88 new_esEs35(x0, x1, ty_Float) 21.88/7.88 new_esEs29(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs14(x0, x1, ty_Double) 21.88/7.88 new_esEs32(x0, x1, ty_Char) 21.88/7.88 new_ltEs8(x0, x1, ty_Double) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), ty_Char) 21.88/7.88 new_lt20(x0, x1, ty_@0) 21.88/7.88 new_esEs39(x0, x1, ty_Ordering) 21.88/7.88 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt21(x0, x1, ty_Bool) 21.88/7.88 new_esEs39(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_lt10(x0, x1) 21.88/7.88 new_lt21(x0, x1, ty_Float) 21.88/7.88 new_primCmpNat0(Zero, Succ(x0)) 21.88/7.88 new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 21.88/7.88 new_ltEs24(x0, x1, ty_Bool) 21.88/7.88 new_ltEs21(x0, x1, app(ty_[], x2)) 21.88/7.88 new_ltEs24(x0, x1, ty_Float) 21.88/7.88 new_esEs33(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs19(x0, x1, ty_@0) 21.88/7.88 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 21.88/7.88 new_ltEs17(x0, x1) 21.88/7.88 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs7(x0, x1, ty_Ordering) 21.88/7.88 new_esEs6(x0, x1, ty_Integer) 21.88/7.88 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 21.88/7.88 new_compare113(x0, x1, False, x2, x3) 21.88/7.88 new_lt21(x0, x1, ty_Int) 21.88/7.88 new_primMulNat0(Succ(x0), Zero) 21.88/7.88 new_ltEs20(x0, x1, ty_Integer) 21.88/7.88 new_esEs5(x0, x1, ty_Double) 21.88/7.88 new_esEs20(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 21.88/7.88 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs24(x0, x1, ty_Char) 21.88/7.88 new_esEs6(x0, x1, ty_Bool) 21.88/7.88 new_esEs32(x0, x1, ty_Integer) 21.88/7.88 new_esEs9(x0, x1, ty_Integer) 21.88/7.88 new_compare9(:(x0, x1), :(x2, x3), x4) 21.88/7.88 new_compare210(x0, x1, False, x2, x3) 21.88/7.88 new_esEs31(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), ty_Integer) 21.88/7.88 new_ltEs24(x0, x1, ty_Int) 21.88/7.88 new_esEs11(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_primCompAux00(x0, x1, LT, x2) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 21.88/7.88 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 21.88/7.88 new_esEs35(x0, x1, ty_Bool) 21.88/7.88 new_esEs33(x0, x1, app(ty_[], x2)) 21.88/7.88 new_compare110(x0, x1, x2, x3, False, x4, x5) 21.88/7.88 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_lt21(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_primCmpNat0(Zero, Zero) 21.88/7.88 new_esEs8(x0, x1, ty_@0) 21.88/7.88 21.88/7.88 We have to consider all minimal (P,Q,R)-chains. 21.88/7.88 ---------------------------------------- 21.88/7.88 21.88/7.88 (28) DependencyGraphProof (EQUIVALENT) 21.88/7.88 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. 21.88/7.88 ---------------------------------------- 21.88/7.88 21.88/7.88 (29) 21.88/7.88 Obligation: 21.88/7.88 Q DP problem: 21.88/7.88 The TRS P consists of the following rules: 21.88/7.88 21.88/7.88 new_primCompAux0(vxw23, vxw24, EQ, app(ty_[], ca)) -> new_compare3(vxw23, vxw24, ca) 21.88/7.88 new_compare3(:(vxw300, vxw301), :(vxw4000, vxw4001), ceh) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, ceh) 21.88/7.88 new_primCompAux(vxw30, vxw400, vxw31, vxw401, cfa) -> new_primCompAux0(vxw31, vxw401, new_compare4(vxw30, vxw400, cfa), app(ty_[], cfa)) 21.88/7.88 new_primCompAux(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), vxw31, vxw401, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare23(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs8(vxw300, vxw4000, bhe), new_asAs(new_esEs9(vxw301, vxw4001, bhf), new_esEs10(vxw302, vxw4002, bhg))), bhe, bhf, bhg) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(app(ty_@2, cce), ccf)) -> new_ltEs(vxw61, vxw64, cce, ccf) 21.88/7.88 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(ty_Maybe, hd)) -> new_ltEs2(vxw411, vxw421, hd) 21.88/7.88 new_ltEs2(Just(vxw410), Just(vxw420), app(app(ty_@2, bgc), bgd)) -> new_ltEs(vxw410, vxw420, bgc, bgd) 21.88/7.88 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs1(vxw411, vxw421, ha, hb, hc) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(app(ty_Either, bfd), bfe)) -> new_ltEs0(vxw412, vxw422, bfd, bfe) 21.88/7.88 new_ltEs0(Left(vxw410), Left(vxw420), app(ty_Maybe, bba), bac) -> new_ltEs2(vxw410, vxw420, bba) 21.88/7.88 new_ltEs2(Just(vxw410), Just(vxw420), app(ty_Maybe, bhb)) -> new_ltEs2(vxw410, vxw420, bhb) 21.88/7.88 new_ltEs2(Just(vxw410), Just(vxw420), app(ty_[], bhc)) -> new_ltEs3(vxw410, vxw420, bhc) 21.88/7.88 new_ltEs3(vxw41, vxw42, bhd) -> new_compare3(vxw41, vxw42, bhd) 21.88/7.88 new_ltEs2(Just(vxw410), Just(vxw420), app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs1(vxw410, vxw420, bgg, bgh, bha) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(app(ty_Either, bda), bdb), bcg, bch) -> new_lt0(vxw410, vxw420, bda, bdb) 21.88/7.88 new_lt0(vxw79, vxw81, eb, ec) -> new_compare0(vxw79, vxw81, eb, ec) 21.88/7.88 new_compare0(Right(vxw300), Right(vxw4000), hf, hg) -> new_compare22(vxw300, vxw4000, new_esEs7(vxw300, vxw4000, hg), hf, hg) 21.88/7.88 new_compare22(vxw48, vxw49, False, cfb, app(ty_[], cgc)) -> new_ltEs3(vxw48, vxw49, cgc) 21.88/7.88 new_compare22(vxw48, vxw49, False, cfb, app(app(ty_Either, cfe), cff)) -> new_ltEs0(vxw48, vxw49, cfe, cff) 21.88/7.88 new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs1(vxw410, vxw420, bbh, bca, bcb) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(app(app(ty_@3, bee), bef), beg), bch) -> new_lt1(vxw411, vxw421, bee, bef, beg) 21.88/7.88 new_lt1(vxw79, vxw81, ed, ee, ef) -> new_compare1(vxw79, vxw81, ed, ee, ef) 21.88/7.88 new_compare1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bhe, bhf, bhg) -> new_compare23(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs8(vxw300, vxw4000, bhe), new_asAs(new_esEs9(vxw301, vxw4001, bhf), new_esEs10(vxw302, vxw4002, bhg))), bhe, bhf, bhg) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(app(app(ty_@3, caf), cag), cah), cab, cac) -> new_lt1(vxw59, vxw62, caf, cag, cah) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(ty_Maybe, cdd)) -> new_ltEs2(vxw61, vxw64, cdd) 21.88/7.88 new_ltEs2(Just(vxw410), Just(vxw420), app(app(ty_Either, bge), bgf)) -> new_ltEs0(vxw410, vxw420, bge, bgf) 21.88/7.88 new_ltEs0(Left(vxw410), Left(vxw420), app(app(app(ty_@3, baf), bag), bah), bac) -> new_ltEs1(vxw410, vxw420, baf, bag, bah) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(ty_[], bdg), bcg, bch) -> new_lt3(vxw410, vxw420, bdg) 21.88/7.88 new_lt3(vxw79, vxw81, eh) -> new_compare3(vxw79, vxw81, eh) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(app(ty_@2, bce), bcf), bcg, bch) -> new_lt(vxw410, vxw420, bce, bcf) 21.88/7.88 new_lt(vxw79, vxw81, dg, dh) -> new_compare(vxw79, vxw81, dg, dh) 21.88/7.88 new_compare(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, cc) -> new_compare20(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs4(vxw300, vxw4000, cb), new_esEs5(vxw301, vxw4001, cc)), cb, cc) 21.88/7.88 new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(vxw80, vxw82, ce, cf) 21.88/7.88 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(ty_Maybe, gb), fc) -> new_lt2(vxw410, vxw420, gb) 21.88/7.88 new_lt2(vxw79, vxw81, eg) -> new_compare2(vxw79, vxw81, eg) 21.88/7.88 new_compare2(Just(vxw300), Just(vxw4000), cdf) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, cdf), cdf) 21.88/7.88 new_compare24(vxw70, vxw71, False, app(app(ty_Either, cea), ceb)) -> new_ltEs0(vxw70, vxw71, cea, ceb) 21.88/7.88 new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(ty_Maybe, bcc)) -> new_ltEs2(vxw410, vxw420, bcc) 21.88/7.88 new_ltEs0(Left(vxw410), Left(vxw420), app(app(ty_@2, baa), bab), bac) -> new_ltEs(vxw410, vxw420, baa, bab) 21.88/7.88 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(app(ty_@2, ge), gf)) -> new_ltEs(vxw411, vxw421, ge, gf) 21.88/7.88 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(ty_[], he)) -> new_ltEs3(vxw411, vxw421, he) 21.88/7.88 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(app(ty_@2, fa), fb), fc) -> new_lt(vxw410, vxw420, fa, fb) 21.88/7.88 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(ty_[], gc), fc) -> new_lt3(vxw410, vxw420, gc) 21.88/7.88 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(app(ty_Either, fd), ff), fc) -> new_lt0(vxw410, vxw420, fd, ff) 21.88/7.88 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(app(ty_Either, gg), gh)) -> new_ltEs0(vxw411, vxw421, gg, gh) 21.88/7.88 new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(ty_[], bcd)) -> new_ltEs3(vxw410, vxw420, bcd) 21.88/7.88 new_ltEs0(Left(vxw410), Left(vxw420), app(ty_[], bbb), bac) -> new_ltEs3(vxw410, vxw420, bbb) 21.88/7.88 new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(app(ty_@2, bbd), bbe)) -> new_ltEs(vxw410, vxw420, bbd, bbe) 21.88/7.88 new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(app(app(ty_@3, fg), fh), ga), fc) -> new_lt1(vxw410, vxw420, fg, fh, ga) 21.88/7.88 new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(app(ty_Either, bbf), bbg)) -> new_ltEs0(vxw410, vxw420, bbf, bbg) 21.88/7.88 new_ltEs0(Left(vxw410), Left(vxw420), app(app(ty_Either, bad), bae), bac) -> new_ltEs0(vxw410, vxw420, bad, bae) 21.88/7.88 new_compare24(vxw70, vxw71, False, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs1(vxw70, vxw71, cec, ced, cee) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(ty_Maybe, beh), bch) -> new_lt2(vxw411, vxw421, beh) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(ty_[], bfa), bch) -> new_lt3(vxw411, vxw421, bfa) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(ty_Maybe, bdf), bcg, bch) -> new_lt2(vxw410, vxw420, bdf) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(app(app(ty_@3, bdc), bdd), bde), bcg, bch) -> new_lt1(vxw410, vxw420, bdc, bdd, bde) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(ty_Maybe, bga)) -> new_ltEs2(vxw412, vxw422, bga) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(app(ty_Either, bec), bed), bch) -> new_lt0(vxw411, vxw421, bec, bed) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(ty_[], bgb)) -> new_ltEs3(vxw412, vxw422, bgb) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(app(ty_@2, bfb), bfc)) -> new_ltEs(vxw412, vxw422, bfb, bfc) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(app(ty_@2, bea), beb), bch) -> new_lt(vxw411, vxw421, bea, beb) 21.88/7.88 new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs1(vxw412, vxw422, bff, bfg, bfh) 21.88/7.88 new_compare24(vxw70, vxw71, False, app(ty_Maybe, cef)) -> new_ltEs2(vxw70, vxw71, cef) 21.88/7.88 new_compare24(vxw70, vxw71, False, app(ty_[], ceg)) -> new_ltEs3(vxw70, vxw71, ceg) 21.88/7.88 new_compare24(vxw70, vxw71, False, app(app(ty_@2, cdg), cdh)) -> new_ltEs(vxw70, vxw71, cdg, cdh) 21.88/7.88 new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_@2, dg), dh), ea) -> new_compare(vxw79, vxw81, dg, dh) 21.88/7.88 new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(ty_Maybe, eg), ea) -> new_compare2(vxw79, vxw81, eg) 21.88/7.88 new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(app(ty_Either, cg), da)) -> new_ltEs0(vxw80, vxw82, cg, da) 21.88/7.88 new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(ty_[], eh), ea) -> new_compare3(vxw79, vxw81, eh) 21.88/7.88 new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_Either, eb), ec), ea) -> new_compare0(vxw79, vxw81, eb, ec) 21.88/7.88 new_compare0(Left(vxw300), Left(vxw4000), hf, hg) -> new_compare21(vxw300, vxw4000, new_esEs6(vxw300, vxw4000, hf), hf, hg) 21.88/7.88 new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(ty_[], bbb)), bac), hh) -> new_ltEs3(vxw410, vxw420, bbb) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(ty_Maybe, bdf)), bcg), bch), hh) -> new_lt2(vxw410, vxw420, bdf) 21.88/7.88 new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(app(app(ty_@3, bgg), bgh), bha)), hh) -> new_ltEs1(vxw410, vxw420, bgg, bgh, bha) 21.88/7.88 new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(ty_Maybe, bcc)), hh) -> new_ltEs2(vxw410, vxw420, bcc) 21.88/7.88 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(ty_Maybe, gb)), fc), hh) -> new_lt2(vxw410, vxw420, gb) 21.88/7.88 new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(ty_Maybe, bhb)), hh) -> new_ltEs2(vxw410, vxw420, bhb) 21.88/7.88 new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(ty_Maybe, bba)), bac), hh) -> new_ltEs2(vxw410, vxw420, bba) 21.88/7.88 new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(app(ty_@2, bgc), bgd)), hh) -> new_ltEs(vxw410, vxw420, bgc, bgd) 21.88/7.88 new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(app(ty_Either, bbf), bbg)), hh) -> new_ltEs0(vxw410, vxw420, bbf, bbg) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(app(app(ty_@3, bee), bef), beg)), bch), hh) -> new_lt1(vxw411, vxw421, bee, bef, beg) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(ty_Maybe, bga)), hh) -> new_ltEs2(vxw412, vxw422, bga) 21.88/7.88 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(app(ty_Either, fd), ff)), fc), hh) -> new_lt0(vxw410, vxw420, fd, ff) 21.88/7.88 new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(ty_[], bcd)), hh) -> new_ltEs3(vxw410, vxw420, bcd) 21.88/7.88 new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(app(app(ty_@3, bbh), bca), bcb)), hh) -> new_ltEs1(vxw410, vxw420, bbh, bca, bcb) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(ty_Maybe, beh)), bch), hh) -> new_lt2(vxw411, vxw421, beh) 21.88/7.88 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(app(app(ty_@3, ha), hb), hc)), hh) -> new_ltEs1(vxw411, vxw421, ha, hb, hc) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(app(ty_Either, bec), bed)), bch), hh) -> new_lt0(vxw411, vxw421, bec, bed) 21.88/7.88 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(app(ty_@2, ge), gf)), hh) -> new_ltEs(vxw411, vxw421, ge, gf) 21.88/7.88 new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(app(ty_@2, baa), bab)), bac), hh) -> new_ltEs(vxw410, vxw420, baa, bab) 21.88/7.88 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(app(ty_Either, gg), gh)), hh) -> new_ltEs0(vxw411, vxw421, gg, gh) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(app(ty_@2, bfb), bfc)), hh) -> new_ltEs(vxw412, vxw422, bfb, bfc) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(app(ty_Either, bda), bdb)), bcg), bch), hh) -> new_lt0(vxw410, vxw420, bda, bdb) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(ty_[], bgb)), hh) -> new_ltEs3(vxw412, vxw422, bgb) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(app(ty_Either, bfd), bfe)), hh) -> new_ltEs0(vxw412, vxw422, bfd, bfe) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(app(app(ty_@3, bff), bfg), bfh)), hh) -> new_ltEs1(vxw412, vxw422, bff, bfg, bfh) 21.88/7.88 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(ty_[], he)), hh) -> new_ltEs3(vxw411, vxw421, he) 21.88/7.88 new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(app(ty_Either, bge), bgf)), hh) -> new_ltEs0(vxw410, vxw420, bge, bgf) 21.88/7.88 new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(app(ty_@2, bbd), bbe)), hh) -> new_ltEs(vxw410, vxw420, bbd, bbe) 21.88/7.88 new_compare21(vxw41, vxw42, False, app(ty_[], bhd), hh) -> new_compare3(vxw41, vxw42, bhd) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(app(ty_@2, bea), beb)), bch), hh) -> new_lt(vxw411, vxw421, bea, beb) 21.88/7.88 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(app(ty_@2, fa), fb)), fc), hh) -> new_lt(vxw410, vxw420, fa, fb) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(ty_[], bfa)), bch), hh) -> new_lt3(vxw411, vxw421, bfa) 21.88/7.88 new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(app(ty_Either, bad), bae)), bac), hh) -> new_ltEs0(vxw410, vxw420, bad, bae) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(app(app(ty_@3, bdc), bdd), bde)), bcg), bch), hh) -> new_lt1(vxw410, vxw420, bdc, bdd, bde) 21.88/7.88 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(ty_[], gc)), fc), hh) -> new_lt3(vxw410, vxw420, gc) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(ty_[], bdg)), bcg), bch), hh) -> new_lt3(vxw410, vxw420, bdg) 21.88/7.88 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(ty_Maybe, hd)), hh) -> new_ltEs2(vxw411, vxw421, hd) 21.88/7.88 new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(app(app(ty_@3, baf), bag), bah)), bac), hh) -> new_ltEs1(vxw410, vxw420, baf, bag, bah) 21.88/7.88 new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(ty_[], bhc)), hh) -> new_ltEs3(vxw410, vxw420, bhc) 21.88/7.88 new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(app(app(ty_@3, fg), fh), ga)), fc), hh) -> new_lt1(vxw410, vxw420, fg, fh, ga) 21.88/7.88 new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(app(ty_@2, bce), bcf)), bcg), bch), hh) -> new_lt(vxw410, vxw420, bce, bcf) 21.88/7.88 new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs1(vxw80, vxw82, db, dc, dd) 21.88/7.88 new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(app(app(ty_@3, ed), ee), ef), ea) -> new_compare1(vxw79, vxw81, ed, ee, ef) 21.88/7.88 new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(ty_Maybe, de)) -> new_ltEs2(vxw80, vxw82, de) 21.88/7.88 new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(ty_[], df)) -> new_ltEs3(vxw80, vxw82, df) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(app(ty_@2, bhh), caa), cab, cac) -> new_lt(vxw59, vxw62, bhh, caa) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(ty_Maybe, ccc), cac) -> new_lt2(vxw60, vxw63, ccc) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(app(ty_Either, cad), cae), cab, cac) -> new_lt0(vxw59, vxw62, cad, cae) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(ty_[], cde)) -> new_ltEs3(vxw61, vxw64, cde) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(app(ty_@2, cbd), cbe), cac) -> new_lt(vxw60, vxw63, cbd, cbe) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(ty_[], cbb), cab, cac) -> new_lt3(vxw59, vxw62, cbb) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(app(ty_Either, cbf), cbg), cac) -> new_lt0(vxw60, vxw63, cbf, cbg) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(ty_Maybe, cba), cab, cac) -> new_lt2(vxw59, vxw62, cba) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(ty_[], ccd), cac) -> new_lt3(vxw60, vxw63, ccd) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(app(app(ty_@3, cbh), cca), ccb), cac) -> new_lt1(vxw60, vxw63, cbh, cca, ccb) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs1(vxw61, vxw64, cda, cdb, cdc) 21.88/7.88 new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(app(ty_Either, ccg), cch)) -> new_ltEs0(vxw61, vxw64, ccg, cch) 21.88/7.88 new_compare22(vxw48, vxw49, False, cfb, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs1(vxw48, vxw49, cfg, cfh, cga) 21.88/7.88 new_compare22(vxw48, vxw49, False, cfb, app(app(ty_@2, cfc), cfd)) -> new_ltEs(vxw48, vxw49, cfc, cfd) 21.88/7.88 new_compare22(vxw48, vxw49, False, cfb, app(ty_Maybe, cgb)) -> new_ltEs2(vxw48, vxw49, cgb) 21.88/7.88 new_primCompAux(Just(vxw300), Just(vxw4000), vxw31, vxw401, app(ty_Maybe, cdf)) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, cdf), cdf) 21.88/7.88 new_primCompAux(Right(vxw300), Right(vxw4000), vxw31, vxw401, app(app(ty_Either, hf), hg)) -> new_compare22(vxw300, vxw4000, new_esEs7(vxw300, vxw4000, hg), hf, hg) 21.88/7.88 new_primCompAux(@2(vxw300, vxw301), @2(vxw4000, vxw4001), vxw31, vxw401, app(app(ty_@2, cb), cc)) -> new_compare20(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs4(vxw300, vxw4000, cb), new_esEs5(vxw301, vxw4001, cc)), cb, cc) 21.88/7.88 new_primCompAux(:(vxw300, vxw301), :(vxw4000, vxw4001), vxw31, vxw401, app(ty_[], ceh)) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, ceh) 21.88/7.88 new_primCompAux(Left(vxw300), Left(vxw4000), vxw31, vxw401, app(app(ty_Either, hf), hg)) -> new_compare21(vxw300, vxw4000, new_esEs6(vxw300, vxw4000, hf), hf, hg) 21.88/7.88 21.88/7.88 The TRS R consists of the following rules: 21.88/7.88 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(ty_[], bcd)) -> new_ltEs4(vxw410, vxw420, bcd) 21.88/7.88 new_lt20(vxw79, vxw81, ty_Double) -> new_lt12(vxw79, vxw81) 21.88/7.88 new_lt9(vxw60, vxw63, ty_Bool) -> new_lt7(vxw60, vxw63) 21.88/7.88 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), app(ty_Ratio, ddg), bac) -> new_ltEs15(vxw410, vxw420, ddg) 21.88/7.88 new_lt20(vxw79, vxw81, ty_Float) -> new_lt15(vxw79, vxw81) 21.88/7.88 new_esEs30(vxw3002, vxw40002, app(ty_Maybe, dcf)) -> new_esEs25(vxw3002, vxw40002, dcf) 21.88/7.88 new_pePe(True, vxw158) -> True 21.88/7.88 new_ltEs19(vxw80, vxw82, ty_@0) -> new_ltEs5(vxw80, vxw82) 21.88/7.88 new_compare8(True, False) -> GT 21.88/7.88 new_esEs34(vxw3001, vxw40001, app(app(ty_@2, faf), fag)) -> new_esEs18(vxw3001, vxw40001, faf, fag) 21.88/7.88 new_esEs34(vxw3001, vxw40001, ty_Double) -> new_esEs17(vxw3001, vxw40001) 21.88/7.88 new_esEs36(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.88 new_esEs34(vxw3001, vxw40001, ty_Float) -> new_esEs22(vxw3001, vxw40001) 21.88/7.88 new_ltEs18(Nothing, Just(vxw420), egh) -> True 21.88/7.88 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 21.88/7.88 new_ltEs24(vxw412, vxw422, app(ty_[], bgb)) -> new_ltEs4(vxw412, vxw422, bgb) 21.88/7.88 new_lt23(vxw411, vxw421, app(ty_Ratio, fhe)) -> new_lt5(vxw411, vxw421, fhe) 21.88/7.88 new_esEs32(vxw79, vxw81, ty_Char) -> new_esEs24(vxw79, vxw81) 21.88/7.88 new_ltEs19(vxw80, vxw82, app(app(ty_@2, ce), cf)) -> new_ltEs12(vxw80, vxw82, ce, cf) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), app(ty_[], bhc)) -> new_ltEs4(vxw410, vxw420, bhc) 21.88/7.88 new_compare113(vxw109, vxw110, False, egf, egg) -> GT 21.88/7.88 new_lt10(vxw79, vxw81) -> new_esEs12(new_compare14(vxw79, vxw81), LT) 21.88/7.88 new_esEs5(vxw301, vxw4001, app(ty_Ratio, dea)) -> new_esEs21(vxw301, vxw4001, dea) 21.88/7.88 new_compare111(vxw102, vxw103, True, efd, efe) -> LT 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, ty_Int) -> new_compare14(vxw23, vxw24) 21.88/7.88 new_compare18(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bhe, bhf, bhg) -> new_compare25(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs8(vxw300, vxw4000, bhe), new_asAs(new_esEs9(vxw301, vxw4001, bhf), new_esEs10(vxw302, vxw4002, bhg))), bhe, bhf, bhg) 21.88/7.88 new_ltEs7(vxw41, vxw42) -> new_fsEs(new_compare12(vxw41, vxw42)) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.88 new_lt8(vxw59, vxw62, ty_Ordering) -> new_lt11(vxw59, vxw62) 21.88/7.88 new_ltEs19(vxw80, vxw82, ty_Double) -> new_ltEs11(vxw80, vxw82) 21.88/7.88 new_ltEs22(vxw70, vxw71, ty_Bool) -> new_ltEs9(vxw70, vxw71) 21.88/7.88 new_primCompAux1(vxw30, vxw400, vxw31, vxw401, cfa) -> new_primCompAux00(vxw31, vxw401, new_compare4(vxw30, vxw400, cfa), app(ty_[], cfa)) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(app(ty_@2, fgd), fge)) -> new_esEs18(vxw3000, vxw40000, fgd, fge) 21.88/7.88 new_lt21(vxw410, vxw420, ty_Ordering) -> new_lt11(vxw410, vxw420) 21.88/7.88 new_lt22(vxw410, vxw420, ty_Bool) -> new_lt7(vxw410, vxw420) 21.88/7.88 new_primEqNat0(Succ(vxw30000), Succ(vxw400000)) -> new_primEqNat0(vxw30000, vxw400000) 21.88/7.88 new_ltEs21(vxw41, vxw42, ty_Char) -> new_ltEs7(vxw41, vxw42) 21.88/7.88 new_esEs6(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.88 new_compare25(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, True, cbc, cab, cac) -> EQ 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Integer) -> new_ltEs17(vxw410, vxw420) 21.88/7.88 new_not(True) -> False 21.88/7.88 new_ltEs21(vxw41, vxw42, ty_@0) -> new_ltEs5(vxw41, vxw42) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), app(app(app(ty_@3, ffd), ffe), fff), egb) -> new_esEs20(vxw3000, vxw40000, ffd, ffe, fff) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.88 new_esEs35(vxw410, vxw420, app(ty_Maybe, gb)) -> new_esEs25(vxw410, vxw420, gb) 21.88/7.88 new_ltEs8(vxw61, vxw64, ty_Bool) -> new_ltEs9(vxw61, vxw64) 21.88/7.88 new_ltEs20(vxw48, vxw49, ty_Integer) -> new_ltEs17(vxw48, vxw49) 21.88/7.88 new_esEs28(vxw3000, vxw40000, app(ty_Maybe, dab)) -> new_esEs25(vxw3000, vxw40000, dab) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), ty_Double, bac) -> new_ltEs11(vxw410, vxw420) 21.88/7.88 new_ltEs14(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, bch) -> new_pePe(new_lt22(vxw410, vxw420, bdh), new_asAs(new_esEs38(vxw410, vxw420, bdh), new_pePe(new_lt23(vxw411, vxw421, bcg), new_asAs(new_esEs39(vxw411, vxw421, bcg), new_ltEs24(vxw412, vxw422, bch))))) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_Either, bc), bd)) -> new_compare17(vxw23, vxw24, bc, bd) 21.88/7.88 new_esEs5(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 21.88/7.88 new_esEs6(vxw300, vxw4000, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs20(vxw300, vxw4000, fcf, fcg, fch) 21.88/7.88 new_primEqNat0(Succ(vxw30000), Zero) -> False 21.88/7.88 new_primEqNat0(Zero, Succ(vxw400000)) -> False 21.88/7.88 new_esEs14(vxw60, vxw63, ty_Float) -> new_esEs22(vxw60, vxw63) 21.88/7.88 new_compare29(vxw48, vxw49, False, cfb, egd) -> new_compare113(vxw48, vxw49, new_ltEs20(vxw48, vxw49, egd), cfb, egd) 21.88/7.88 new_ltEs21(vxw41, vxw42, app(app(ty_@2, gd), fc)) -> new_ltEs12(vxw41, vxw42, gd, fc) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Int) -> new_ltEs10(vxw410, vxw420) 21.88/7.88 new_esEs39(vxw411, vxw421, ty_Double) -> new_esEs17(vxw411, vxw421) 21.88/7.88 new_lt23(vxw411, vxw421, ty_Int) -> new_lt10(vxw411, vxw421) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Float, egb) -> new_esEs22(vxw3000, vxw40000) 21.88/7.88 new_ltEs20(vxw48, vxw49, ty_Int) -> new_ltEs10(vxw48, vxw49) 21.88/7.88 new_esEs29(vxw3001, vxw40001, ty_Double) -> new_esEs17(vxw3001, vxw40001) 21.88/7.88 new_esEs31(vxw3000, vxw40000, app(ty_Ratio, dgg)) -> new_esEs21(vxw3000, vxw40000, dgg) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), ty_@0, bac) -> new_ltEs5(vxw410, vxw420) 21.88/7.88 new_compare17(Right(vxw300), Right(vxw4000), hf, hg) -> new_compare29(vxw300, vxw4000, new_esEs7(vxw300, vxw4000, hg), hf, hg) 21.88/7.88 new_ltEs21(vxw41, vxw42, ty_Float) -> new_ltEs16(vxw41, vxw42) 21.88/7.88 new_esEs9(vxw301, vxw4001, ty_Char) -> new_esEs24(vxw301, vxw4001) 21.88/7.88 new_ltEs21(vxw41, vxw42, ty_Double) -> new_ltEs11(vxw41, vxw42) 21.88/7.88 new_esEs31(vxw3000, vxw40000, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.88 new_primCmpInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> GT 21.88/7.88 new_lt22(vxw410, vxw420, ty_Integer) -> new_lt4(vxw410, vxw420) 21.88/7.88 new_esEs11(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.88 new_ltEs21(vxw41, vxw42, app(app(app(ty_@3, bdh), bcg), bch)) -> new_ltEs14(vxw41, vxw42, bdh, bcg, bch) 21.88/7.88 new_esEs33(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.88 new_lt22(vxw410, vxw420, ty_Char) -> new_lt16(vxw410, vxw420) 21.88/7.88 new_esEs5(vxw301, vxw4001, app(app(ty_Either, dfa), dfb)) -> new_esEs19(vxw301, vxw4001, dfa, dfb) 21.88/7.88 new_primPlusNat1(Succ(vxw15900), Succ(vxw301000)) -> Succ(Succ(new_primPlusNat1(vxw15900, vxw301000))) 21.88/7.88 new_primCompAux00(vxw23, vxw24, GT, chd) -> GT 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), ty_Char, bac) -> new_ltEs7(vxw410, vxw420) 21.88/7.88 new_esEs33(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.88 new_esEs6(vxw300, vxw4000, app(ty_[], fda)) -> new_esEs27(vxw300, vxw4000, fda) 21.88/7.88 new_primCmpNat0(Zero, Succ(vxw40000)) -> LT 21.88/7.88 new_esEs4(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.88 new_esEs6(vxw300, vxw4000, app(app(ty_@2, fcd), fce)) -> new_esEs18(vxw300, vxw4000, fcd, fce) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), app(ty_Ratio, feh), egb) -> new_esEs21(vxw3000, vxw40000, feh) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), ty_@0, egb) -> new_esEs26(vxw3000, vxw40000) 21.88/7.88 new_esEs13(vxw59, vxw62, ty_Ordering) -> new_esEs12(vxw59, vxw62) 21.88/7.88 new_esEs29(vxw3001, vxw40001, ty_Integer) -> new_esEs23(vxw3001, vxw40001) 21.88/7.88 new_esEs8(vxw300, vxw4000, app(app(ty_@2, eac), ead)) -> new_esEs18(vxw300, vxw4000, eac, ead) 21.88/7.88 new_esEs10(vxw302, vxw4002, ty_Char) -> new_esEs24(vxw302, vxw4002) 21.88/7.88 new_ltEs23(vxw411, vxw421, ty_Float) -> new_ltEs16(vxw411, vxw421) 21.88/7.88 new_esEs32(vxw79, vxw81, ty_@0) -> new_esEs26(vxw79, vxw81) 21.88/7.88 new_ltEs19(vxw80, vxw82, ty_Char) -> new_ltEs7(vxw80, vxw82) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(app(ty_@2, bbd), bbe)) -> new_ltEs12(vxw410, vxw420, bbd, bbe) 21.88/7.88 new_esEs33(vxw3000, vxw40000, app(ty_Ratio, ehb)) -> new_esEs21(vxw3000, vxw40000, ehb) 21.88/7.88 new_ltEs23(vxw411, vxw421, app(ty_Ratio, feg)) -> new_ltEs15(vxw411, vxw421, feg) 21.88/7.88 new_ltEs24(vxw412, vxw422, ty_Ordering) -> new_ltEs6(vxw412, vxw422) 21.88/7.88 new_esEs14(vxw60, vxw63, ty_Bool) -> new_esEs15(vxw60, vxw63) 21.88/7.88 new_ltEs19(vxw80, vxw82, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs14(vxw80, vxw82, db, dc, dd) 21.88/7.88 new_ltEs23(vxw411, vxw421, app(ty_Maybe, hd)) -> new_ltEs18(vxw411, vxw421, hd) 21.88/7.88 new_esEs39(vxw411, vxw421, ty_Bool) -> new_esEs15(vxw411, vxw421) 21.88/7.88 new_esEs11(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.88 new_esEs6(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.88 new_esEs38(vxw410, vxw420, ty_Ordering) -> new_esEs12(vxw410, vxw420) 21.88/7.88 new_esEs8(vxw300, vxw4000, app(ty_Ratio, eaa)) -> new_esEs21(vxw300, vxw4000, eaa) 21.88/7.88 new_lt21(vxw410, vxw420, app(app(app(ty_@3, fg), fh), ga)) -> new_lt14(vxw410, vxw420, fg, fh, ga) 21.88/7.88 new_lt13(vxw79, vxw81, eb, ec) -> new_esEs12(new_compare17(vxw79, vxw81, eb, ec), LT) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, app(ty_Maybe, bh)) -> new_compare26(vxw23, vxw24, bh) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.88 new_esEs14(vxw60, vxw63, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs20(vxw60, vxw63, cbh, cca, ccb) 21.88/7.88 new_esEs11(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.88 new_ltEs13(Right(vxw410), Left(vxw420), bbc, bac) -> False 21.88/7.88 new_esEs8(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.88 new_ltEs23(vxw411, vxw421, ty_Int) -> new_ltEs10(vxw411, vxw421) 21.88/7.88 new_esEs31(vxw3000, vxw40000, app(app(ty_Either, dhg), dhh)) -> new_esEs19(vxw3000, vxw40000, dhg, dhh) 21.88/7.88 new_esEs38(vxw410, vxw420, ty_Int) -> new_esEs16(vxw410, vxw420) 21.88/7.88 new_esEs29(vxw3001, vxw40001, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs20(vxw3001, vxw40001, dbg, dbh, dca) 21.88/7.88 new_ltEs23(vxw411, vxw421, ty_Integer) -> new_ltEs17(vxw411, vxw421) 21.88/7.88 new_esEs15(True, True) -> True 21.88/7.88 new_esEs5(vxw301, vxw4001, ty_Bool) -> new_esEs15(vxw301, vxw4001) 21.88/7.88 new_esEs29(vxw3001, vxw40001, ty_Bool) -> new_esEs15(vxw3001, vxw40001) 21.88/7.88 new_esEs33(vxw3000, vxw40000, app(ty_Maybe, ehc)) -> new_esEs25(vxw3000, vxw40000, ehc) 21.88/7.88 new_primEqInt(Neg(Succ(vxw30000)), Neg(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) 21.88/7.88 new_esEs32(vxw79, vxw81, app(ty_[], eh)) -> new_esEs27(vxw79, vxw81, eh) 21.88/7.88 new_primCmpInt(Neg(Zero), Pos(Succ(vxw40000))) -> LT 21.88/7.88 new_ltEs20(vxw48, vxw49, app(app(ty_Either, cfe), cff)) -> new_ltEs13(vxw48, vxw49, cfe, cff) 21.88/7.88 new_ltEs21(vxw41, vxw42, app(ty_Maybe, egh)) -> new_ltEs18(vxw41, vxw42, egh) 21.88/7.88 new_compare7(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, cc) -> new_compare28(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs4(vxw300, vxw4000, cb), new_esEs5(vxw301, vxw4001, cc)), cb, cc) 21.88/7.88 new_primMulInt(Pos(vxw40000), Pos(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.88 new_esEs27([], [], dgf) -> True 21.88/7.88 new_ltEs11(vxw41, vxw42) -> new_fsEs(new_compare16(vxw41, vxw42)) 21.88/7.88 new_esEs9(vxw301, vxw4001, ty_@0) -> new_esEs26(vxw301, vxw4001) 21.88/7.88 new_esEs11(vxw300, vxw4000, app(app(ty_Either, eeg), eeh)) -> new_esEs19(vxw300, vxw4000, eeg, eeh) 21.88/7.88 new_lt21(vxw410, vxw420, app(app(ty_Either, fd), ff)) -> new_lt13(vxw410, vxw420, fd, ff) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.88 new_lt9(vxw60, vxw63, ty_Double) -> new_lt12(vxw60, vxw63) 21.88/7.88 new_compare11(@0, @0) -> EQ 21.88/7.88 new_primMulNat0(Succ(vxw400000), Zero) -> Zero 21.88/7.88 new_primMulNat0(Zero, Succ(vxw30100)) -> Zero 21.88/7.88 new_esEs9(vxw301, vxw4001, app(ty_Maybe, ebd)) -> new_esEs25(vxw301, vxw4001, ebd) 21.88/7.88 new_esEs8(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.88 new_esEs6(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.88 new_compare8(False, False) -> EQ 21.88/7.88 new_esEs8(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Float) -> new_ltEs16(vxw410, vxw420) 21.88/7.88 new_compare210(vxw41, vxw42, False, fbf, hh) -> new_compare111(vxw41, vxw42, new_ltEs21(vxw41, vxw42, fbf), fbf, hh) 21.88/7.88 new_lt9(vxw60, vxw63, app(ty_Maybe, ccc)) -> new_lt17(vxw60, vxw63, ccc) 21.88/7.88 new_esEs34(vxw3001, vxw40001, app(ty_[], fbc)) -> new_esEs27(vxw3001, vxw40001, fbc) 21.88/7.88 new_lt14(vxw79, vxw81, ed, ee, ef) -> new_esEs12(new_compare18(vxw79, vxw81, ed, ee, ef), LT) 21.88/7.88 new_esEs7(vxw300, vxw4000, app(app(ty_Either, fed), fee)) -> new_esEs19(vxw300, vxw4000, fed, fee) 21.88/7.88 new_lt8(vxw59, vxw62, app(app(app(ty_@3, caf), cag), cah)) -> new_lt14(vxw59, vxw62, caf, cag, cah) 21.88/7.88 new_compare19(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.88 new_compare15(LT, LT) -> EQ 21.88/7.88 new_lt12(vxw79, vxw81) -> new_esEs12(new_compare16(vxw79, vxw81), LT) 21.88/7.88 new_esEs7(vxw300, vxw4000, app(ty_Maybe, fde)) -> new_esEs25(vxw300, vxw4000, fde) 21.88/7.88 new_primPlusNat1(Succ(vxw15900), Zero) -> Succ(vxw15900) 21.88/7.88 new_primPlusNat1(Zero, Succ(vxw301000)) -> Succ(vxw301000) 21.88/7.88 new_lt23(vxw411, vxw421, app(app(ty_Either, bec), bed)) -> new_lt13(vxw411, vxw421, bec, bed) 21.88/7.88 new_esEs8(vxw300, vxw4000, app(ty_[], eah)) -> new_esEs27(vxw300, vxw4000, eah) 21.88/7.88 new_compare15(EQ, EQ) -> EQ 21.88/7.88 new_compare27(vxw70, vxw71, False, fbg) -> new_compare114(vxw70, vxw71, new_ltEs22(vxw70, vxw71, fbg), fbg) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_@2, ba), bb)) -> new_compare7(vxw23, vxw24, ba, bb) 21.88/7.88 new_ltEs8(vxw61, vxw64, ty_Integer) -> new_ltEs17(vxw61, vxw64) 21.88/7.88 new_lt8(vxw59, vxw62, app(app(ty_Either, cad), cae)) -> new_lt13(vxw59, vxw62, cad, cae) 21.88/7.88 new_esEs33(vxw3000, vxw40000, app(app(ty_Either, fab), fac)) -> new_esEs19(vxw3000, vxw40000, fab, fac) 21.88/7.88 new_esEs31(vxw3000, vxw40000, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.88 new_lt9(vxw60, vxw63, ty_Integer) -> new_lt4(vxw60, vxw63) 21.88/7.88 new_esEs10(vxw302, vxw4002, app(ty_Maybe, ecf)) -> new_esEs25(vxw302, vxw4002, ecf) 21.88/7.88 new_fsEs(vxw153) -> new_not(new_esEs12(vxw153, GT)) 21.88/7.88 new_esEs9(vxw301, vxw4001, app(ty_[], ecb)) -> new_esEs27(vxw301, vxw4001, ecb) 21.88/7.88 new_esEs32(vxw79, vxw81, app(ty_Maybe, eg)) -> new_esEs25(vxw79, vxw81, eg) 21.88/7.88 new_compare6(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Integer) -> new_compare5(new_sr0(vxw300, vxw4001), new_sr0(vxw4000, vxw301)) 21.88/7.88 new_esEs32(vxw79, vxw81, ty_Double) -> new_esEs17(vxw79, vxw81) 21.88/7.88 new_lt11(vxw79, vxw81) -> new_esEs12(new_compare15(vxw79, vxw81), LT) 21.88/7.88 new_lt20(vxw79, vxw81, app(ty_Ratio, cgd)) -> new_lt5(vxw79, vxw81, cgd) 21.88/7.88 new_esEs34(vxw3001, vxw40001, ty_@0) -> new_esEs26(vxw3001, vxw40001) 21.88/7.88 new_compare17(Left(vxw300), Right(vxw4000), hf, hg) -> LT 21.88/7.88 new_compare16(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.88 new_lt9(vxw60, vxw63, ty_Char) -> new_lt16(vxw60, vxw63) 21.88/7.88 new_esEs11(vxw300, vxw4000, app(ty_Ratio, edg)) -> new_esEs21(vxw300, vxw4000, edg) 21.88/7.88 new_esEs8(vxw300, vxw4000, app(app(ty_Either, eba), ebb)) -> new_esEs19(vxw300, vxw4000, eba, ebb) 21.88/7.88 new_esEs13(vxw59, vxw62, ty_Int) -> new_esEs16(vxw59, vxw62) 21.88/7.88 new_lt23(vxw411, vxw421, ty_Double) -> new_lt12(vxw411, vxw421) 21.88/7.88 new_esEs39(vxw411, vxw421, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs20(vxw411, vxw421, bee, bef, beg) 21.88/7.88 new_esEs36(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.88 new_esEs31(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.88 new_ltEs8(vxw61, vxw64, ty_Int) -> new_ltEs10(vxw61, vxw64) 21.88/7.88 new_compare26(Nothing, Just(vxw4000), cdf) -> LT 21.88/7.88 new_esEs11(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.88 new_ltEs23(vxw411, vxw421, ty_Double) -> new_ltEs11(vxw411, vxw421) 21.88/7.88 new_esEs34(vxw3001, vxw40001, ty_Char) -> new_esEs24(vxw3001, vxw40001) 21.88/7.88 new_esEs13(vxw59, vxw62, ty_Integer) -> new_esEs23(vxw59, vxw62) 21.88/7.88 new_esEs29(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) 21.88/7.88 new_lt20(vxw79, vxw81, app(app(ty_Either, eb), ec)) -> new_lt13(vxw79, vxw81, eb, ec) 21.88/7.88 new_ltEs24(vxw412, vxw422, ty_Float) -> new_ltEs16(vxw412, vxw422) 21.88/7.88 new_esEs29(vxw3001, vxw40001, ty_Int) -> new_esEs16(vxw3001, vxw40001) 21.88/7.88 new_esEs9(vxw301, vxw4001, app(app(ty_@2, ebe), ebf)) -> new_esEs18(vxw301, vxw4001, ebe, ebf) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), ty_Bool) -> new_ltEs9(vxw410, vxw420) 21.88/7.88 new_esEs35(vxw410, vxw420, ty_Int) -> new_esEs16(vxw410, vxw420) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.88 new_esEs35(vxw410, vxw420, ty_Ordering) -> new_esEs12(vxw410, vxw420) 21.88/7.88 new_esEs38(vxw410, vxw420, ty_Bool) -> new_esEs15(vxw410, vxw420) 21.88/7.88 new_esEs14(vxw60, vxw63, app(app(ty_Either, cbf), cbg)) -> new_esEs19(vxw60, vxw63, cbf, cbg) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), app(ty_Maybe, bhb)) -> new_ltEs18(vxw410, vxw420, bhb) 21.88/7.88 new_lt22(vxw410, vxw420, app(ty_Maybe, bdf)) -> new_lt17(vxw410, vxw420, bdf) 21.88/7.88 new_esEs4(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.88 new_esEs12(GT, GT) -> True 21.88/7.88 new_compare114(vxw119, vxw120, True, fca) -> LT 21.88/7.88 new_esEs5(vxw301, vxw4001, ty_Float) -> new_esEs22(vxw301, vxw4001) 21.88/7.88 new_lt22(vxw410, vxw420, app(app(app(ty_@3, bdc), bdd), bde)) -> new_lt14(vxw410, vxw420, bdc, bdd, bde) 21.88/7.88 new_esEs31(vxw3000, vxw40000, app(ty_[], dhf)) -> new_esEs27(vxw3000, vxw40000, dhf) 21.88/7.88 new_compare4(vxw30, vxw400, app(ty_Ratio, chc)) -> new_compare6(vxw30, vxw400, chc) 21.88/7.88 new_lt21(vxw410, vxw420, ty_@0) -> new_lt18(vxw410, vxw420) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Bool, egb) -> new_esEs15(vxw3000, vxw40000) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(ty_[], fha)) -> new_esEs27(vxw3000, vxw40000, fha) 21.88/7.88 new_esEs32(vxw79, vxw81, app(app(ty_@2, dg), dh)) -> new_esEs18(vxw79, vxw81, dg, dh) 21.88/7.88 new_lt8(vxw59, vxw62, ty_@0) -> new_lt18(vxw59, vxw62) 21.88/7.88 new_esEs38(vxw410, vxw420, ty_Integer) -> new_esEs23(vxw410, vxw420) 21.88/7.88 new_esEs9(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) 21.88/7.88 new_esEs30(vxw3002, vxw40002, app(ty_Ratio, dce)) -> new_esEs21(vxw3002, vxw40002, dce) 21.88/7.88 new_ltEs23(vxw411, vxw421, app(app(ty_@2, ge), gf)) -> new_ltEs12(vxw411, vxw421, ge, gf) 21.88/7.88 new_ltEs20(vxw48, vxw49, ty_Float) -> new_ltEs16(vxw48, vxw49) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, app(app(app(ty_@3, be), bf), bg)) -> new_compare18(vxw23, vxw24, be, bf, bg) 21.88/7.88 new_primCmpInt(Pos(Succ(vxw3000)), Pos(vxw4000)) -> new_primCmpNat0(Succ(vxw3000), vxw4000) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs14(vxw410, vxw420, bgg, bgh, bha) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), app(ty_[], ffg), egb) -> new_esEs27(vxw3000, vxw40000, ffg) 21.88/7.88 new_esEs38(vxw410, vxw420, ty_Char) -> new_esEs24(vxw410, vxw420) 21.88/7.88 new_compare15(LT, GT) -> LT 21.88/7.88 new_esEs39(vxw411, vxw421, app(app(ty_Either, bec), bed)) -> new_esEs19(vxw411, vxw421, bec, bed) 21.88/7.88 new_esEs12(EQ, EQ) -> True 21.88/7.88 new_esEs39(vxw411, vxw421, ty_Char) -> new_esEs24(vxw411, vxw421) 21.88/7.88 new_esEs14(vxw60, vxw63, ty_@0) -> new_esEs26(vxw60, vxw63) 21.88/7.88 new_esEs34(vxw3001, vxw40001, app(app(ty_Either, fbd), fbe)) -> new_esEs19(vxw3001, vxw40001, fbd, fbe) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, app(ty_Ratio, che)) -> new_compare6(vxw23, vxw24, che) 21.88/7.88 new_esEs11(vxw300, vxw4000, app(ty_Maybe, edh)) -> new_esEs25(vxw300, vxw4000, edh) 21.88/7.88 new_compare17(Right(vxw300), Left(vxw4000), hf, hg) -> GT 21.88/7.88 new_ltEs6(EQ, LT) -> False 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_@0) -> new_ltEs5(vxw410, vxw420) 21.88/7.88 new_compare9([], [], ceh) -> EQ 21.88/7.88 new_lt20(vxw79, vxw81, ty_@0) -> new_lt18(vxw79, vxw81) 21.88/7.88 new_lt23(vxw411, vxw421, ty_Bool) -> new_lt7(vxw411, vxw421) 21.88/7.88 new_lt23(vxw411, vxw421, ty_Integer) -> new_lt4(vxw411, vxw421) 21.88/7.88 new_ltEs20(vxw48, vxw49, app(ty_Maybe, cgb)) -> new_ltEs18(vxw48, vxw49, cgb) 21.88/7.88 new_esEs31(vxw3000, vxw40000, app(app(ty_@2, dha), dhb)) -> new_esEs18(vxw3000, vxw40000, dha, dhb) 21.88/7.88 new_lt9(vxw60, vxw63, ty_@0) -> new_lt18(vxw60, vxw63) 21.88/7.88 new_esEs8(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Bool) -> new_ltEs9(vxw410, vxw420) 21.88/7.88 new_lt9(vxw60, vxw63, ty_Float) -> new_lt15(vxw60, vxw63) 21.88/7.88 new_esEs33(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.88 new_esEs29(vxw3001, vxw40001, app(ty_[], dcb)) -> new_esEs27(vxw3001, vxw40001, dcb) 21.88/7.88 new_compare26(Just(vxw300), Just(vxw4000), cdf) -> new_compare27(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, cdf), cdf) 21.88/7.88 new_esEs31(vxw3000, vxw40000, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_esEs20(vxw3000, vxw40000, dhc, dhd, dhe) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), ty_Int, bac) -> new_ltEs10(vxw410, vxw420) 21.88/7.88 new_ltEs8(vxw61, vxw64, app(ty_[], cde)) -> new_ltEs4(vxw61, vxw64, cde) 21.88/7.88 new_esEs10(vxw302, vxw4002, ty_Int) -> new_esEs16(vxw302, vxw4002) 21.88/7.88 new_ltEs22(vxw70, vxw71, app(app(ty_@2, cdg), cdh)) -> new_ltEs12(vxw70, vxw71, cdg, cdh) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Char) -> new_ltEs7(vxw410, vxw420) 21.88/7.88 new_esEs10(vxw302, vxw4002, ty_Ordering) -> new_esEs12(vxw302, vxw4002) 21.88/7.88 new_ltEs19(vxw80, vxw82, app(ty_Maybe, de)) -> new_ltEs18(vxw80, vxw82, de) 21.88/7.88 new_compare4(vxw30, vxw400, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare18(vxw30, vxw400, bhe, bhf, bhg) 21.88/7.88 new_esEs34(vxw3001, vxw40001, ty_Integer) -> new_esEs23(vxw3001, vxw40001) 21.88/7.88 new_lt23(vxw411, vxw421, app(ty_Maybe, beh)) -> new_lt17(vxw411, vxw421, beh) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(ty_Maybe, bcc)) -> new_ltEs18(vxw410, vxw420, bcc) 21.88/7.88 new_esEs5(vxw301, vxw4001, app(ty_Maybe, deb)) -> new_esEs25(vxw301, vxw4001, deb) 21.88/7.88 new_esEs35(vxw410, vxw420, app(app(ty_Either, fd), ff)) -> new_esEs19(vxw410, vxw420, fd, ff) 21.88/7.88 new_compare14(vxw30, vxw400) -> new_primCmpInt(vxw30, vxw400) 21.88/7.88 new_compare28(vxw79, vxw80, vxw81, vxw82, False, cd, ea) -> new_compare112(vxw79, vxw80, vxw81, vxw82, new_lt20(vxw79, vxw81, cd), new_asAs(new_esEs32(vxw79, vxw81, cd), new_ltEs19(vxw80, vxw82, ea)), cd, ea) 21.88/7.88 new_esEs39(vxw411, vxw421, ty_Integer) -> new_esEs23(vxw411, vxw421) 21.88/7.88 new_esEs13(vxw59, vxw62, ty_Bool) -> new_esEs15(vxw59, vxw62) 21.88/7.88 new_ltEs22(vxw70, vxw71, app(ty_[], ceg)) -> new_ltEs4(vxw70, vxw71, ceg) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), app(app(ty_Either, dgd), dge)) -> new_esEs19(vxw3000, vxw40000, dgd, dge) 21.88/7.88 new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, cge, cgf, cgg) -> GT 21.88/7.88 new_lt20(vxw79, vxw81, ty_Integer) -> new_lt4(vxw79, vxw81) 21.88/7.88 new_ltEs24(vxw412, vxw422, app(app(ty_@2, bfb), bfc)) -> new_ltEs12(vxw412, vxw422, bfb, bfc) 21.88/7.88 new_esEs4(vxw300, vxw4000, app(ty_Maybe, dfc)) -> new_esEs25(vxw300, vxw4000, dfc) 21.88/7.88 new_compare4(vxw30, vxw400, ty_Ordering) -> new_compare15(vxw30, vxw400) 21.88/7.88 new_lt21(vxw410, vxw420, app(ty_Maybe, gb)) -> new_lt17(vxw410, vxw420, gb) 21.88/7.88 new_esEs5(vxw301, vxw4001, ty_@0) -> new_esEs26(vxw301, vxw4001) 21.88/7.88 new_esEs38(vxw410, vxw420, app(app(ty_Either, bda), bdb)) -> new_esEs19(vxw410, vxw420, bda, bdb) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), ty_Ordering) -> new_ltEs6(vxw410, vxw420) 21.88/7.88 new_esEs29(vxw3001, vxw40001, app(app(ty_@2, dbe), dbf)) -> new_esEs18(vxw3001, vxw40001, dbe, dbf) 21.88/7.88 new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, cge, cgf, cgg) -> LT 21.88/7.88 new_esEs28(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.88 new_esEs14(vxw60, vxw63, ty_Integer) -> new_esEs23(vxw60, vxw63) 21.88/7.88 new_ltEs24(vxw412, vxw422, ty_Double) -> new_ltEs11(vxw412, vxw422) 21.88/7.88 new_esEs20(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), chf, chg, chh) -> new_asAs(new_esEs28(vxw3000, vxw40000, chf), new_asAs(new_esEs29(vxw3001, vxw40001, chg), new_esEs30(vxw3002, vxw40002, chh))) 21.88/7.88 new_compare15(GT, LT) -> GT 21.88/7.88 new_esEs28(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.88 new_esEs6(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.88 new_esEs37(vxw3001, vxw40001, ty_Integer) -> new_esEs23(vxw3001, vxw40001) 21.88/7.88 new_compare4(vxw30, vxw400, ty_Bool) -> new_compare8(vxw30, vxw400) 21.88/7.88 new_esEs29(vxw3001, vxw40001, app(ty_Ratio, dbc)) -> new_esEs21(vxw3001, vxw40001, dbc) 21.88/7.88 new_esEs4(vxw300, vxw4000, app(app(ty_Either, ega), egb)) -> new_esEs19(vxw300, vxw4000, ega, egb) 21.88/7.88 new_esEs32(vxw79, vxw81, ty_Bool) -> new_esEs15(vxw79, vxw81) 21.88/7.88 new_esEs39(vxw411, vxw421, ty_@0) -> new_esEs26(vxw411, vxw421) 21.88/7.88 new_compare4(vxw30, vxw400, ty_@0) -> new_compare11(vxw30, vxw400) 21.88/7.88 new_compare110(vxw129, vxw130, vxw131, vxw132, False, efa, efb) -> GT 21.88/7.88 new_primPlusNat0(Succ(vxw1590), vxw30100) -> Succ(Succ(new_primPlusNat1(vxw1590, vxw30100))) 21.88/7.88 new_esEs13(vxw59, vxw62, app(app(ty_Either, cad), cae)) -> new_esEs19(vxw59, vxw62, cad, cae) 21.88/7.88 new_ltEs21(vxw41, vxw42, app(ty_[], bhd)) -> new_ltEs4(vxw41, vxw42, bhd) 21.88/7.88 new_esEs13(vxw59, vxw62, app(ty_Maybe, cba)) -> new_esEs25(vxw59, vxw62, cba) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, ty_Char) -> new_compare12(vxw23, vxw24) 21.88/7.88 new_esEs35(vxw410, vxw420, ty_Integer) -> new_esEs23(vxw410, vxw420) 21.88/7.88 new_esEs35(vxw410, vxw420, ty_Char) -> new_esEs24(vxw410, vxw420) 21.88/7.88 new_primPlusNat1(Zero, Zero) -> Zero 21.88/7.88 new_esEs35(vxw410, vxw420, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs20(vxw410, vxw420, fg, fh, ga) 21.88/7.88 new_ltEs22(vxw70, vxw71, ty_Double) -> new_ltEs11(vxw70, vxw71) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.88 new_lt21(vxw410, vxw420, ty_Float) -> new_lt15(vxw410, vxw420) 21.88/7.88 new_esEs32(vxw79, vxw81, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs20(vxw79, vxw81, ed, ee, ef) 21.88/7.88 new_esEs32(vxw79, vxw81, ty_Int) -> new_esEs16(vxw79, vxw81) 21.88/7.88 new_esEs10(vxw302, vxw4002, app(app(app(ty_@3, eda), edb), edc)) -> new_esEs20(vxw302, vxw4002, eda, edb, edc) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Integer, egb) -> new_esEs23(vxw3000, vxw40000) 21.88/7.88 new_esEs15(False, True) -> False 21.88/7.88 new_esEs15(True, False) -> False 21.88/7.88 new_esEs31(vxw3000, vxw40000, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.88 new_esEs34(vxw3001, vxw40001, ty_Bool) -> new_esEs15(vxw3001, vxw40001) 21.88/7.88 new_esEs39(vxw411, vxw421, ty_Float) -> new_esEs22(vxw411, vxw421) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), ty_Ordering, bac) -> new_ltEs6(vxw410, vxw420) 21.88/7.88 new_lt21(vxw410, vxw420, ty_Bool) -> new_lt7(vxw410, vxw420) 21.88/7.88 new_esEs33(vxw3000, vxw40000, app(app(app(ty_@3, ehf), ehg), ehh)) -> new_esEs20(vxw3000, vxw40000, ehf, ehg, ehh) 21.88/7.88 new_compare15(LT, EQ) -> LT 21.88/7.88 new_compare29(vxw48, vxw49, True, cfb, egd) -> EQ 21.88/7.88 new_esEs10(vxw302, vxw4002, ty_Bool) -> new_esEs15(vxw302, vxw4002) 21.88/7.88 new_esEs38(vxw410, vxw420, ty_Float) -> new_esEs22(vxw410, vxw420) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, ty_@0) -> new_compare11(vxw23, vxw24) 21.88/7.88 new_primCmpNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primCmpNat0(vxw3000, vxw40000) 21.88/7.88 new_lt20(vxw79, vxw81, ty_Char) -> new_lt16(vxw79, vxw81) 21.88/7.88 new_esEs14(vxw60, vxw63, ty_Char) -> new_esEs24(vxw60, vxw63) 21.88/7.88 new_lt8(vxw59, vxw62, ty_Float) -> new_lt15(vxw59, vxw62) 21.88/7.88 new_esEs30(vxw3002, vxw40002, ty_Int) -> new_esEs16(vxw3002, vxw40002) 21.88/7.88 new_compare110(vxw129, vxw130, vxw131, vxw132, True, efa, efb) -> LT 21.88/7.88 new_esEs11(vxw300, vxw4000, app(app(app(ty_@3, eec), eed), eee)) -> new_esEs20(vxw300, vxw4000, eec, eed, eee) 21.88/7.88 new_compare4(vxw30, vxw400, ty_Integer) -> new_compare5(vxw30, vxw400) 21.88/7.88 new_compare8(False, True) -> LT 21.88/7.88 new_esEs31(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.88 new_lt20(vxw79, vxw81, ty_Bool) -> new_lt7(vxw79, vxw81) 21.88/7.88 new_esEs13(vxw59, vxw62, ty_Char) -> new_esEs24(vxw59, vxw62) 21.88/7.88 new_esEs27(:(vxw3000, vxw3001), :(vxw40000, vxw40001), dgf) -> new_asAs(new_esEs31(vxw3000, vxw40000, dgf), new_esEs27(vxw3001, vxw40001, dgf)) 21.88/7.88 new_ltEs19(vxw80, vxw82, ty_Float) -> new_ltEs16(vxw80, vxw82) 21.88/7.88 new_esEs34(vxw3001, vxw40001, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs20(vxw3001, vxw40001, fah, fba, fbb) 21.88/7.88 new_lt23(vxw411, vxw421, ty_Float) -> new_lt15(vxw411, vxw421) 21.88/7.88 new_lt17(vxw79, vxw81, eg) -> new_esEs12(new_compare26(vxw79, vxw81, eg), LT) 21.88/7.88 new_esEs11(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.88 new_ltEs20(vxw48, vxw49, app(ty_[], cgc)) -> new_ltEs4(vxw48, vxw49, cgc) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, ty_Ordering) -> new_compare15(vxw23, vxw24) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Char, egb) -> new_esEs24(vxw3000, vxw40000) 21.88/7.88 new_esEs30(vxw3002, vxw40002, ty_Ordering) -> new_esEs12(vxw3002, vxw40002) 21.88/7.88 new_esEs38(vxw410, vxw420, app(ty_Maybe, bdf)) -> new_esEs25(vxw410, vxw420, bdf) 21.88/7.88 new_lt22(vxw410, vxw420, ty_Float) -> new_lt15(vxw410, vxw420) 21.88/7.88 new_compare16(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.88 new_compare16(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.88 new_ltEs19(vxw80, vxw82, app(ty_[], df)) -> new_ltEs4(vxw80, vxw82, df) 21.88/7.88 new_compare15(GT, GT) -> EQ 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), app(app(app(ty_@3, baf), bag), bah), bac) -> new_ltEs14(vxw410, vxw420, baf, bag, bah) 21.88/7.88 new_lt20(vxw79, vxw81, app(ty_Maybe, eg)) -> new_lt17(vxw79, vxw81, eg) 21.88/7.88 new_esEs19(Left(vxw3000), Right(vxw40000), ega, egb) -> False 21.88/7.88 new_esEs19(Right(vxw3000), Left(vxw40000), ega, egb) -> False 21.88/7.88 new_lt22(vxw410, vxw420, ty_@0) -> new_lt18(vxw410, vxw420) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), ty_@0) -> new_ltEs5(vxw410, vxw420) 21.88/7.88 new_esEs4(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.88 new_esEs33(vxw3000, vxw40000, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.88 new_esEs28(vxw3000, vxw40000, app(ty_Ratio, daa)) -> new_esEs21(vxw3000, vxw40000, daa) 21.88/7.88 new_ltEs6(GT, LT) -> False 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), ty_Char) -> new_ltEs7(vxw410, vxw420) 21.88/7.88 new_ltEs6(EQ, EQ) -> True 21.88/7.88 new_lt23(vxw411, vxw421, ty_@0) -> new_lt18(vxw411, vxw421) 21.88/7.88 new_ltEs23(vxw411, vxw421, ty_Ordering) -> new_ltEs6(vxw411, vxw421) 21.88/7.88 new_primCmpInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> LT 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, ty_Bool) -> new_compare8(vxw23, vxw24) 21.88/7.88 new_esEs27(:(vxw3000, vxw3001), [], dgf) -> False 21.88/7.88 new_esEs27([], :(vxw40000, vxw40001), dgf) -> False 21.88/7.88 new_esEs38(vxw410, vxw420, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs20(vxw410, vxw420, bdc, bdd, bde) 21.88/7.88 new_esEs7(vxw300, vxw4000, ty_Float) -> new_esEs22(vxw300, vxw4000) 21.88/7.88 new_ltEs4(vxw41, vxw42, bhd) -> new_fsEs(new_compare9(vxw41, vxw42, bhd)) 21.88/7.88 new_ltEs6(GT, GT) -> True 21.88/7.88 new_esEs28(vxw3000, vxw40000, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.88 new_esEs28(vxw3000, vxw40000, app(app(ty_@2, dac), dad)) -> new_esEs18(vxw3000, vxw40000, dac, dad) 21.88/7.88 new_esEs9(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 21.88/7.88 new_esEs38(vxw410, vxw420, app(ty_[], bdg)) -> new_esEs27(vxw410, vxw420, bdg) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(ty_Ratio, ddh)) -> new_ltEs15(vxw410, vxw420, ddh) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), ty_Integer) -> new_ltEs17(vxw410, vxw420) 21.88/7.88 new_esEs7(vxw300, vxw4000, app(app(ty_@2, fdf), fdg)) -> new_esEs18(vxw300, vxw4000, fdf, fdg) 21.88/7.88 new_esEs7(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.88 new_ltEs22(vxw70, vxw71, ty_Float) -> new_ltEs16(vxw70, vxw71) 21.88/7.88 new_esEs37(vxw3001, vxw40001, ty_Int) -> new_esEs16(vxw3001, vxw40001) 21.88/7.88 new_primCmpInt(Pos(Zero), Neg(Succ(vxw40000))) -> GT 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), ty_Int) -> new_ltEs10(vxw410, vxw420) 21.88/7.88 new_lt5(vxw79, vxw81, cgd) -> new_esEs12(new_compare6(vxw79, vxw81, cgd), LT) 21.88/7.88 new_esEs32(vxw79, vxw81, app(ty_Ratio, cgd)) -> new_esEs21(vxw79, vxw81, cgd) 21.88/7.88 new_esEs4(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.88 new_lt22(vxw410, vxw420, app(app(ty_@2, bce), bcf)) -> new_lt6(vxw410, vxw420, bce, bcf) 21.88/7.88 new_ltEs24(vxw412, vxw422, ty_Int) -> new_ltEs10(vxw412, vxw422) 21.88/7.88 new_lt15(vxw79, vxw81) -> new_esEs12(new_compare19(vxw79, vxw81), LT) 21.88/7.88 new_primCmpInt(Neg(Succ(vxw3000)), Neg(vxw4000)) -> new_primCmpNat0(vxw4000, Succ(vxw3000)) 21.88/7.88 new_ltEs24(vxw412, vxw422, app(ty_Ratio, fhf)) -> new_ltEs15(vxw412, vxw422, fhf) 21.88/7.88 new_esEs14(vxw60, vxw63, app(ty_Maybe, ccc)) -> new_esEs25(vxw60, vxw63, ccc) 21.88/7.88 new_ltEs6(EQ, GT) -> True 21.88/7.88 new_ltEs8(vxw61, vxw64, ty_Double) -> new_ltEs11(vxw61, vxw64) 21.88/7.88 new_esEs9(vxw301, vxw4001, app(ty_Ratio, ebc)) -> new_esEs21(vxw301, vxw4001, ebc) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), ty_Bool, bac) -> new_ltEs9(vxw410, vxw420) 21.88/7.88 new_compare28(vxw79, vxw80, vxw81, vxw82, True, cd, ea) -> EQ 21.88/7.88 new_esEs15(False, False) -> True 21.88/7.88 new_esEs5(vxw301, vxw4001, ty_Char) -> new_esEs24(vxw301, vxw4001) 21.88/7.88 new_primEqInt(Pos(Succ(vxw30000)), Pos(Zero)) -> False 21.88/7.88 new_primEqInt(Pos(Zero), Pos(Succ(vxw400000))) -> False 21.88/7.88 new_ltEs9(False, True) -> True 21.88/7.88 new_compare210(vxw41, vxw42, True, fbf, hh) -> EQ 21.88/7.88 new_esEs28(vxw3000, vxw40000, app(ty_[], dah)) -> new_esEs27(vxw3000, vxw40000, dah) 21.88/7.88 new_lt21(vxw410, vxw420, ty_Integer) -> new_lt4(vxw410, vxw420) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, ty_Integer) -> new_compare5(vxw23, vxw24) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), app(app(ty_Either, bge), bgf)) -> new_ltEs13(vxw410, vxw420, bge, bgf) 21.88/7.88 new_esEs13(vxw59, vxw62, ty_Double) -> new_esEs17(vxw59, vxw62) 21.88/7.88 new_esEs39(vxw411, vxw421, app(ty_Maybe, beh)) -> new_esEs25(vxw411, vxw421, beh) 21.88/7.88 new_lt9(vxw60, vxw63, app(app(ty_@2, cbd), cbe)) -> new_lt6(vxw60, vxw63, cbd, cbe) 21.88/7.88 new_esEs33(vxw3000, vxw40000, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.88 new_esEs7(vxw300, vxw4000, app(ty_[], fec)) -> new_esEs27(vxw300, vxw4000, fec) 21.88/7.88 new_primCmpNat0(Zero, Zero) -> EQ 21.88/7.88 new_ltEs15(vxw41, vxw42, efc) -> new_fsEs(new_compare6(vxw41, vxw42, efc)) 21.88/7.88 new_lt6(vxw79, vxw81, dg, dh) -> new_esEs12(new_compare7(vxw79, vxw81, dg, dh), LT) 21.88/7.88 new_esEs13(vxw59, vxw62, ty_@0) -> new_esEs26(vxw59, vxw62) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), app(app(ty_@2, ffb), ffc), egb) -> new_esEs18(vxw3000, vxw40000, ffb, ffc) 21.88/7.88 new_esEs32(vxw79, vxw81, ty_Ordering) -> new_esEs12(vxw79, vxw81) 21.88/7.88 new_esEs30(vxw3002, vxw40002, ty_Float) -> new_esEs22(vxw3002, vxw40002) 21.88/7.88 new_esEs18(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), efg, efh) -> new_asAs(new_esEs33(vxw3000, vxw40000, efg), new_esEs34(vxw3001, vxw40001, efh)) 21.88/7.88 new_ltEs6(LT, GT) -> True 21.88/7.88 new_lt8(vxw59, vxw62, ty_Integer) -> new_lt4(vxw59, vxw62) 21.88/7.88 new_esEs30(vxw3002, vxw40002, app(app(ty_@2, dcg), dch)) -> new_esEs18(vxw3002, vxw40002, dcg, dch) 21.88/7.88 new_esEs30(vxw3002, vxw40002, ty_Double) -> new_esEs17(vxw3002, vxw40002) 21.88/7.88 new_compare27(vxw70, vxw71, True, fbg) -> EQ 21.88/7.88 new_esEs12(LT, LT) -> True 21.88/7.88 new_lt21(vxw410, vxw420, ty_Char) -> new_lt16(vxw410, vxw420) 21.88/7.88 new_esEs38(vxw410, vxw420, ty_@0) -> new_esEs26(vxw410, vxw420) 21.88/7.88 new_lt8(vxw59, vxw62, app(ty_Maybe, cba)) -> new_lt17(vxw59, vxw62, cba) 21.88/7.88 new_compare4(vxw30, vxw400, ty_Char) -> new_compare12(vxw30, vxw400) 21.88/7.88 new_esEs35(vxw410, vxw420, ty_Bool) -> new_esEs15(vxw410, vxw420) 21.88/7.88 new_ltEs20(vxw48, vxw49, ty_Double) -> new_ltEs11(vxw48, vxw49) 21.88/7.88 new_esEs34(vxw3001, vxw40001, app(ty_Maybe, fae)) -> new_esEs25(vxw3001, vxw40001, fae) 21.88/7.88 new_ltEs8(vxw61, vxw64, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs14(vxw61, vxw64, cda, cdb, cdc) 21.88/7.88 new_compare114(vxw119, vxw120, False, fca) -> GT 21.88/7.88 new_esEs6(vxw300, vxw4000, app(app(ty_Either, fdb), fdc)) -> new_esEs19(vxw300, vxw4000, fdb, fdc) 21.88/7.88 new_esEs7(vxw300, vxw4000, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs20(vxw300, vxw4000, fdh, fea, feb) 21.88/7.88 new_esEs24(Char(vxw3000), Char(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 21.88/7.88 new_ltEs22(vxw70, vxw71, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs14(vxw70, vxw71, cec, ced, cee) 21.88/7.88 new_lt4(vxw79, vxw81) -> new_esEs12(new_compare5(vxw79, vxw81), LT) 21.88/7.88 new_ltEs8(vxw61, vxw64, ty_Float) -> new_ltEs16(vxw61, vxw64) 21.88/7.88 new_esEs13(vxw59, vxw62, ty_Float) -> new_esEs22(vxw59, vxw62) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), app(ty_Ratio, eha)) -> new_ltEs15(vxw410, vxw420, eha) 21.88/7.88 new_lt23(vxw411, vxw421, app(ty_[], bfa)) -> new_lt19(vxw411, vxw421, bfa) 21.88/7.88 new_esEs13(vxw59, vxw62, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs20(vxw59, vxw62, caf, cag, cah) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(ty_Ratio, fgb)) -> new_esEs21(vxw3000, vxw40000, fgb) 21.88/7.88 new_esEs28(vxw3000, vxw40000, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.88 new_esEs13(vxw59, vxw62, app(ty_[], cbb)) -> new_esEs27(vxw59, vxw62, cbb) 21.88/7.88 new_esEs7(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.88 new_esEs23(Integer(vxw3000), Integer(vxw40000)) -> new_primEqInt(vxw3000, vxw40000) 21.88/7.88 new_lt8(vxw59, vxw62, ty_Bool) -> new_lt7(vxw59, vxw62) 21.88/7.88 new_esEs29(vxw3001, vxw40001, app(ty_Maybe, dbd)) -> new_esEs25(vxw3001, vxw40001, dbd) 21.88/7.88 new_ltEs8(vxw61, vxw64, app(app(ty_@2, cce), ccf)) -> new_ltEs12(vxw61, vxw64, cce, ccf) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), app(ty_Maybe, dfe)) -> new_esEs25(vxw3000, vxw40000, dfe) 21.88/7.88 new_ltEs24(vxw412, vxw422, ty_Integer) -> new_ltEs17(vxw412, vxw422) 21.88/7.88 new_esEs30(vxw3002, vxw40002, app(ty_[], ddd)) -> new_esEs27(vxw3002, vxw40002, ddd) 21.88/7.88 new_ltEs20(vxw48, vxw49, ty_@0) -> new_ltEs5(vxw48, vxw49) 21.88/7.88 new_esEs9(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) 21.88/7.88 new_esEs13(vxw59, vxw62, app(app(ty_@2, bhh), caa)) -> new_esEs18(vxw59, vxw62, bhh, caa) 21.88/7.88 new_lt20(vxw79, vxw81, app(app(app(ty_@3, ed), ee), ef)) -> new_lt14(vxw79, vxw81, ed, ee, ef) 21.88/7.88 new_esEs4(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.88 new_ltEs21(vxw41, vxw42, ty_Bool) -> new_ltEs9(vxw41, vxw42) 21.88/7.88 new_esEs11(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.88 new_esEs12(EQ, GT) -> False 21.88/7.88 new_esEs12(GT, EQ) -> False 21.88/7.88 new_lt18(vxw79, vxw81) -> new_esEs12(new_compare11(vxw79, vxw81), LT) 21.88/7.88 new_compare4(vxw30, vxw400, app(app(ty_Either, hf), hg)) -> new_compare17(vxw30, vxw400, hf, hg) 21.88/7.88 new_compare9(:(vxw300, vxw301), [], ceh) -> GT 21.88/7.88 new_esEs9(vxw301, vxw4001, ty_Int) -> new_esEs16(vxw301, vxw4001) 21.88/7.88 new_ltEs23(vxw411, vxw421, app(ty_[], he)) -> new_ltEs4(vxw411, vxw421, he) 21.88/7.88 new_primCmpNat0(Succ(vxw3000), Zero) -> GT 21.88/7.88 new_esEs10(vxw302, vxw4002, app(ty_Ratio, ece)) -> new_esEs21(vxw302, vxw4002, ece) 21.88/7.88 new_esEs35(vxw410, vxw420, app(app(ty_@2, fa), fb)) -> new_esEs18(vxw410, vxw420, fa, fb) 21.88/7.88 new_lt8(vxw59, vxw62, ty_Char) -> new_lt16(vxw59, vxw62) 21.88/7.88 new_pePe(False, vxw158) -> vxw158 21.88/7.88 new_lt22(vxw410, vxw420, app(ty_Ratio, fhd)) -> new_lt5(vxw410, vxw420, fhd) 21.88/7.88 new_esEs10(vxw302, vxw4002, ty_Double) -> new_esEs17(vxw302, vxw4002) 21.88/7.88 new_lt22(vxw410, vxw420, ty_Ordering) -> new_lt11(vxw410, vxw420) 21.88/7.88 new_esEs17(Double(vxw3000, vxw3001), Double(vxw40000, vxw40001)) -> new_esEs16(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) 21.88/7.88 new_ltEs13(Left(vxw410), Right(vxw420), bbc, bac) -> True 21.88/7.88 new_esEs33(vxw3000, vxw40000, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.88 new_ltEs19(vxw80, vxw82, ty_Int) -> new_ltEs10(vxw80, vxw82) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.88 new_ltEs9(True, True) -> True 21.88/7.88 new_compare15(EQ, LT) -> GT 21.88/7.88 new_esEs30(vxw3002, vxw40002, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs20(vxw3002, vxw40002, dda, ddb, ddc) 21.88/7.88 new_lt9(vxw60, vxw63, ty_Int) -> new_lt10(vxw60, vxw63) 21.88/7.88 new_ltEs6(LT, LT) -> True 21.88/7.88 new_ltEs19(vxw80, vxw82, ty_Integer) -> new_ltEs17(vxw80, vxw82) 21.88/7.88 new_compare112(vxw129, vxw130, vxw131, vxw132, True, vxw134, efa, efb) -> new_compare110(vxw129, vxw130, vxw131, vxw132, True, efa, efb) 21.88/7.88 new_lt21(vxw410, vxw420, ty_Double) -> new_lt12(vxw410, vxw420) 21.88/7.88 new_esEs35(vxw410, vxw420, app(ty_Ratio, fef)) -> new_esEs21(vxw410, vxw420, fef) 21.88/7.88 new_esEs30(vxw3002, vxw40002, ty_Bool) -> new_esEs15(vxw3002, vxw40002) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), app(app(ty_Either, bad), bae), bac) -> new_ltEs13(vxw410, vxw420, bad, bae) 21.88/7.88 new_primEqInt(Pos(Zero), Neg(Succ(vxw400000))) -> False 21.88/7.88 new_primEqInt(Neg(Zero), Pos(Succ(vxw400000))) -> False 21.88/7.88 new_esEs10(vxw302, vxw4002, ty_Float) -> new_esEs22(vxw302, vxw4002) 21.88/7.88 new_esEs33(vxw3000, vxw40000, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.88 new_esEs34(vxw3001, vxw40001, ty_Int) -> new_esEs16(vxw3001, vxw40001) 21.88/7.88 new_ltEs20(vxw48, vxw49, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs14(vxw48, vxw49, cfg, cfh, cga) 21.88/7.88 new_esEs9(vxw301, vxw4001, app(app(ty_Either, ecc), ecd)) -> new_esEs19(vxw301, vxw4001, ecc, ecd) 21.88/7.88 new_lt16(vxw79, vxw81) -> new_esEs12(new_compare12(vxw79, vxw81), LT) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.88 new_esEs10(vxw302, vxw4002, ty_Integer) -> new_esEs23(vxw302, vxw4002) 21.88/7.88 new_esEs6(vxw300, vxw4000, app(ty_Maybe, fcc)) -> new_esEs25(vxw300, vxw4000, fcc) 21.88/7.88 new_esEs29(vxw3001, vxw40001, ty_Char) -> new_esEs24(vxw3001, vxw40001) 21.88/7.88 new_esEs34(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs14(vxw410, vxw420, bbh, bca, bcb) 21.88/7.88 new_esEs22(Float(vxw3000, vxw3001), Float(vxw40000, vxw40001)) -> new_esEs16(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) 21.88/7.88 new_compare16(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.88 new_esEs30(vxw3002, vxw40002, ty_Integer) -> new_esEs23(vxw3002, vxw40002) 21.88/7.88 new_lt9(vxw60, vxw63, app(app(ty_Either, cbf), cbg)) -> new_lt13(vxw60, vxw63, cbf, cbg) 21.88/7.88 new_esEs8(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.88 new_esEs31(vxw3000, vxw40000, app(ty_Maybe, dgh)) -> new_esEs25(vxw3000, vxw40000, dgh) 21.88/7.88 new_compare8(True, True) -> EQ 21.88/7.88 new_primPlusNat0(Zero, vxw30100) -> Succ(vxw30100) 21.88/7.88 new_esEs5(vxw301, vxw4001, app(app(app(ty_@3, dee), def), deg)) -> new_esEs20(vxw301, vxw4001, dee, def, deg) 21.88/7.88 new_ltEs6(LT, EQ) -> True 21.88/7.88 new_compare4(vxw30, vxw400, app(app(ty_@2, cb), cc)) -> new_compare7(vxw30, vxw400, cb, cc) 21.88/7.88 new_esEs33(vxw3000, vxw40000, ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Ordering, egb) -> new_esEs12(vxw3000, vxw40000) 21.88/7.88 new_lt9(vxw60, vxw63, app(app(app(ty_@3, cbh), cca), ccb)) -> new_lt14(vxw60, vxw63, cbh, cca, ccb) 21.88/7.88 new_ltEs19(vxw80, vxw82, ty_Bool) -> new_ltEs9(vxw80, vxw82) 21.88/7.88 new_ltEs19(vxw80, vxw82, app(app(ty_Either, cg), da)) -> new_ltEs13(vxw80, vxw82, cg, da) 21.88/7.88 new_esEs35(vxw410, vxw420, ty_Float) -> new_esEs22(vxw410, vxw420) 21.88/7.88 new_lt23(vxw411, vxw421, ty_Char) -> new_lt16(vxw411, vxw421) 21.88/7.88 new_esEs16(vxw300, vxw4000) -> new_primEqInt(vxw300, vxw4000) 21.88/7.88 new_lt8(vxw59, vxw62, ty_Double) -> new_lt12(vxw59, vxw62) 21.88/7.88 new_compare4(vxw30, vxw400, ty_Int) -> new_compare14(vxw30, vxw400) 21.88/7.88 new_ltEs10(vxw41, vxw42) -> new_fsEs(new_compare14(vxw41, vxw42)) 21.88/7.88 new_ltEs20(vxw48, vxw49, app(app(ty_@2, cfc), cfd)) -> new_ltEs12(vxw48, vxw49, cfc, cfd) 21.88/7.88 new_ltEs21(vxw41, vxw42, ty_Int) -> new_ltEs10(vxw41, vxw42) 21.88/7.88 new_esEs8(vxw300, vxw4000, app(ty_Maybe, eab)) -> new_esEs25(vxw300, vxw4000, eab) 21.88/7.88 new_esEs32(vxw79, vxw81, ty_Integer) -> new_esEs23(vxw79, vxw81) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Int, egb) -> new_esEs16(vxw3000, vxw40000) 21.88/7.88 new_esEs11(vxw300, vxw4000, app(ty_[], eef)) -> new_esEs27(vxw300, vxw4000, eef) 21.88/7.88 new_esEs28(vxw3000, vxw40000, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.88 new_ltEs16(vxw41, vxw42) -> new_fsEs(new_compare19(vxw41, vxw42)) 21.88/7.88 new_esEs6(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.88 new_ltEs21(vxw41, vxw42, ty_Integer) -> new_ltEs17(vxw41, vxw42) 21.88/7.88 new_esEs28(vxw3000, vxw40000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs20(vxw3000, vxw40000, dae, daf, dag) 21.88/7.88 new_esEs35(vxw410, vxw420, ty_@0) -> new_esEs26(vxw410, vxw420) 21.88/7.88 new_esEs10(vxw302, vxw4002, app(app(ty_Either, ede), edf)) -> new_esEs19(vxw302, vxw4002, ede, edf) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), app(ty_Maybe, ffa), egb) -> new_esEs25(vxw3000, vxw40000, ffa) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Ordering) -> new_ltEs6(vxw410, vxw420) 21.88/7.88 new_compare26(Nothing, Nothing, cdf) -> EQ 21.88/7.88 new_esEs7(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 21.88/7.88 new_esEs11(vxw300, vxw4000, ty_@0) -> new_esEs26(vxw300, vxw4000) 21.88/7.88 new_lt22(vxw410, vxw420, app(app(ty_Either, bda), bdb)) -> new_lt13(vxw410, vxw420, bda, bdb) 21.88/7.88 new_esEs31(vxw3000, vxw40000, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.88 new_lt20(vxw79, vxw81, ty_Ordering) -> new_lt11(vxw79, vxw81) 21.88/7.88 new_compare12(Char(vxw300), Char(vxw4000)) -> new_primCmpNat0(vxw300, vxw4000) 21.88/7.88 new_primMulInt(Neg(vxw40000), Neg(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.88 new_primCmpInt(Pos(Zero), Pos(Succ(vxw40000))) -> new_primCmpNat0(Zero, Succ(vxw40000)) 21.88/7.88 new_compare4(vxw30, vxw400, app(ty_Maybe, cdf)) -> new_compare26(vxw30, vxw400, cdf) 21.88/7.88 new_ltEs22(vxw70, vxw71, ty_Integer) -> new_ltEs17(vxw70, vxw71) 21.88/7.88 new_esEs9(vxw301, vxw4001, ty_Float) -> new_esEs22(vxw301, vxw4001) 21.88/7.88 new_esEs4(vxw300, vxw4000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs20(vxw300, vxw4000, chf, chg, chh) 21.88/7.88 new_ltEs22(vxw70, vxw71, ty_Int) -> new_ltEs10(vxw70, vxw71) 21.88/7.88 new_esEs32(vxw79, vxw81, app(app(ty_Either, eb), ec)) -> new_esEs19(vxw79, vxw81, eb, ec) 21.88/7.88 new_ltEs8(vxw61, vxw64, app(ty_Maybe, cdd)) -> new_ltEs18(vxw61, vxw64, cdd) 21.88/7.88 new_compare26(Just(vxw300), Nothing, cdf) -> GT 21.88/7.88 new_compare19(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.88 new_lt23(vxw411, vxw421, app(app(app(ty_@3, bee), bef), beg)) -> new_lt14(vxw411, vxw421, bee, bef, beg) 21.88/7.88 new_esEs10(vxw302, vxw4002, app(app(ty_@2, ecg), ech)) -> new_esEs18(vxw302, vxw4002, ecg, ech) 21.88/7.88 new_esEs34(vxw3001, vxw40001, app(ty_Ratio, fad)) -> new_esEs21(vxw3001, vxw40001, fad) 21.88/7.88 new_esEs33(vxw3000, vxw40000, app(app(ty_@2, ehd), ehe)) -> new_esEs18(vxw3000, vxw40000, ehd, ehe) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), app(app(ty_@2, baa), bab), bac) -> new_ltEs12(vxw410, vxw420, baa, bab) 21.88/7.88 new_esEs33(vxw3000, vxw40000, app(ty_[], faa)) -> new_esEs27(vxw3000, vxw40000, faa) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), app(ty_[], bbb), bac) -> new_ltEs4(vxw410, vxw420, bbb) 21.88/7.88 new_ltEs22(vxw70, vxw71, app(ty_Maybe, cef)) -> new_ltEs18(vxw70, vxw71, cef) 21.88/7.88 new_esEs10(vxw302, vxw4002, app(ty_[], edd)) -> new_esEs27(vxw302, vxw4002, edd) 21.88/7.88 new_compare113(vxw109, vxw110, True, egf, egg) -> LT 21.88/7.88 new_ltEs24(vxw412, vxw422, app(ty_Maybe, bga)) -> new_ltEs18(vxw412, vxw422, bga) 21.88/7.88 new_esEs11(vxw300, vxw4000, app(app(ty_@2, eea), eeb)) -> new_esEs18(vxw300, vxw4000, eea, eeb) 21.88/7.88 new_primMulInt(Pos(vxw40000), Neg(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.88 new_primMulInt(Neg(vxw40000), Pos(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) 21.88/7.88 new_esEs7(vxw300, vxw4000, ty_Char) -> new_esEs24(vxw300, vxw4000) 21.88/7.88 new_ltEs18(Nothing, Nothing, egh) -> True 21.88/7.88 new_compare112(vxw129, vxw130, vxw131, vxw132, False, vxw134, efa, efb) -> new_compare110(vxw129, vxw130, vxw131, vxw132, vxw134, efa, efb) 21.88/7.88 new_esEs8(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.88 new_esEs28(vxw3000, vxw40000, ty_Integer) -> new_esEs23(vxw3000, vxw40000) 21.88/7.88 new_ltEs6(GT, EQ) -> False 21.88/7.88 new_esEs14(vxw60, vxw63, ty_Ordering) -> new_esEs12(vxw60, vxw63) 21.88/7.88 new_lt21(vxw410, vxw420, app(ty_[], gc)) -> new_lt19(vxw410, vxw420, gc) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), app(app(ty_Either, ffh), fga), egb) -> new_esEs19(vxw3000, vxw40000, ffh, fga) 21.88/7.88 new_compare6(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Int) -> new_compare14(new_sr(vxw300, vxw4001), new_sr(vxw4000, vxw301)) 21.88/7.88 new_esEs31(vxw3000, vxw40000, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.88 new_ltEs24(vxw412, vxw422, ty_Bool) -> new_ltEs9(vxw412, vxw422) 21.88/7.88 new_esEs11(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.88 new_lt23(vxw411, vxw421, ty_Ordering) -> new_lt11(vxw411, vxw421) 21.88/7.88 new_compare25(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, cac) -> new_compare13(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, new_lt8(vxw59, vxw62, cbc), new_asAs(new_esEs13(vxw59, vxw62, cbc), new_pePe(new_lt9(vxw60, vxw63, cab), new_asAs(new_esEs14(vxw60, vxw63, cab), new_ltEs8(vxw61, vxw64, cac)))), cbc, cab, cac) 21.88/7.88 new_sr0(Integer(vxw40000), Integer(vxw3010)) -> Integer(new_primMulInt(vxw40000, vxw3010)) 21.88/7.88 new_esEs30(vxw3002, vxw40002, app(app(ty_Either, dde), ddf)) -> new_esEs19(vxw3002, vxw40002, dde, ddf) 21.88/7.88 new_esEs8(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.88 new_compare13(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, vxw151, cge, cgf, cgg) -> new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, cge, cgf, cgg) 21.88/7.88 new_ltEs8(vxw61, vxw64, ty_Ordering) -> new_ltEs6(vxw61, vxw64) 21.88/7.88 new_ltEs24(vxw412, vxw422, ty_Char) -> new_ltEs7(vxw412, vxw422) 21.88/7.88 new_lt20(vxw79, vxw81, ty_Int) -> new_lt10(vxw79, vxw81) 21.88/7.88 new_lt22(vxw410, vxw420, ty_Double) -> new_lt12(vxw410, vxw420) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), ty_Integer, bac) -> new_ltEs17(vxw410, vxw420) 21.88/7.88 new_asAs(True, vxw97) -> vxw97 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs20(vxw3000, vxw40000, dfh, dga, dgb) 21.88/7.88 new_esEs14(vxw60, vxw63, ty_Int) -> new_esEs16(vxw60, vxw63) 21.88/7.88 new_esEs4(vxw300, vxw4000, app(ty_[], dgf)) -> new_esEs27(vxw300, vxw4000, dgf) 21.88/7.88 new_ltEs8(vxw61, vxw64, app(app(ty_Either, ccg), cch)) -> new_ltEs13(vxw61, vxw64, ccg, cch) 21.88/7.88 new_esEs13(vxw59, vxw62, app(ty_Ratio, cgh)) -> new_esEs21(vxw59, vxw62, cgh) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, app(app(ty_Either, bbf), bbg)) -> new_ltEs13(vxw410, vxw420, bbf, bbg) 21.88/7.88 new_esEs5(vxw301, vxw4001, app(app(ty_@2, dec), ded)) -> new_esEs18(vxw301, vxw4001, dec, ded) 21.88/7.88 new_esEs32(vxw79, vxw81, ty_Float) -> new_esEs22(vxw79, vxw81) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), ty_Float) -> new_ltEs16(vxw410, vxw420) 21.88/7.88 new_compare111(vxw102, vxw103, False, efd, efe) -> GT 21.88/7.88 new_ltEs18(Just(vxw410), Nothing, egh) -> False 21.88/7.88 new_esEs30(vxw3002, vxw40002, ty_Char) -> new_esEs24(vxw3002, vxw40002) 21.88/7.88 new_esEs10(vxw302, vxw4002, ty_@0) -> new_esEs26(vxw302, vxw4002) 21.88/7.88 new_ltEs19(vxw80, vxw82, ty_Ordering) -> new_ltEs6(vxw80, vxw82) 21.88/7.88 new_lt21(vxw410, vxw420, app(ty_Ratio, fef)) -> new_lt5(vxw410, vxw420, fef) 21.88/7.88 new_lt7(vxw79, vxw81) -> new_esEs12(new_compare8(vxw79, vxw81), LT) 21.88/7.88 new_sr(vxw4000, vxw301) -> new_primMulInt(vxw4000, vxw301) 21.88/7.88 new_esEs38(vxw410, vxw420, app(ty_Ratio, fhd)) -> new_esEs21(vxw410, vxw420, fhd) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, ty_Float) -> new_compare19(vxw23, vxw24) 21.88/7.88 new_compare9(:(vxw300, vxw301), :(vxw4000, vxw4001), ceh) -> new_primCompAux1(vxw300, vxw4000, vxw301, vxw4001, ceh) 21.88/7.88 new_lt8(vxw59, vxw62, app(ty_[], cbb)) -> new_lt19(vxw59, vxw62, cbb) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(app(app(ty_@3, fgf), fgg), fgh)) -> new_esEs20(vxw3000, vxw40000, fgf, fgg, fgh) 21.88/7.88 new_primMulNat0(Zero, Zero) -> Zero 21.88/7.88 new_ltEs9(False, False) -> True 21.88/7.88 new_esEs4(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.88 new_ltEs5(vxw41, vxw42) -> new_fsEs(new_compare11(vxw41, vxw42)) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, ty_Double) -> new_compare16(vxw23, vxw24) 21.88/7.88 new_esEs7(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.88 new_ltEs20(vxw48, vxw49, ty_Bool) -> new_ltEs9(vxw48, vxw49) 21.88/7.88 new_ltEs17(vxw41, vxw42) -> new_fsEs(new_compare5(vxw41, vxw42)) 21.88/7.88 new_ltEs22(vxw70, vxw71, app(app(ty_Either, cea), ceb)) -> new_ltEs13(vxw70, vxw71, cea, ceb) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), app(app(ty_@2, dff), dfg)) -> new_esEs18(vxw3000, vxw40000, dff, dfg) 21.88/7.88 new_lt9(vxw60, vxw63, app(ty_[], ccd)) -> new_lt19(vxw60, vxw63, ccd) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.88 new_primCompAux00(vxw23, vxw24, EQ, app(ty_[], ca)) -> new_compare9(vxw23, vxw24, ca) 21.88/7.88 new_esEs4(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.88 new_esEs35(vxw410, vxw420, app(ty_[], gc)) -> new_esEs27(vxw410, vxw420, gc) 21.88/7.88 new_lt8(vxw59, vxw62, app(ty_Ratio, cgh)) -> new_lt5(vxw59, vxw62, cgh) 21.88/7.88 new_esEs4(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Double) -> new_esEs17(vxw3000, vxw40000) 21.88/7.88 new_compare13(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, vxw151, cge, cgf, cgg) -> new_compare10(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, vxw151, cge, cgf, cgg) 21.88/7.88 new_ltEs9(True, False) -> False 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), app(ty_[], dgc)) -> new_esEs27(vxw3000, vxw40000, dgc) 21.88/7.88 new_compare4(vxw30, vxw400, ty_Float) -> new_compare19(vxw30, vxw400) 21.88/7.88 new_esEs39(vxw411, vxw421, ty_Ordering) -> new_esEs12(vxw411, vxw421) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), app(ty_Maybe, bba), bac) -> new_ltEs18(vxw410, vxw420, bba) 21.88/7.88 new_ltEs20(vxw48, vxw49, ty_Char) -> new_ltEs7(vxw48, vxw49) 21.88/7.88 new_primEqInt(Neg(Succ(vxw30000)), Neg(Zero)) -> False 21.88/7.88 new_primEqInt(Neg(Zero), Neg(Succ(vxw400000))) -> False 21.88/7.88 new_lt19(vxw79, vxw81, eh) -> new_esEs12(new_compare9(vxw79, vxw81, eh), LT) 21.88/7.88 new_ltEs13(Right(vxw410), Right(vxw420), bbc, ty_Double) -> new_ltEs11(vxw410, vxw420) 21.88/7.88 new_compare15(EQ, GT) -> LT 21.88/7.88 new_esEs21(:%(vxw3000, vxw3001), :%(vxw40000, vxw40001), eff) -> new_asAs(new_esEs36(vxw3000, vxw40000, eff), new_esEs37(vxw3001, vxw40001, eff)) 21.88/7.88 new_esEs39(vxw411, vxw421, ty_Int) -> new_esEs16(vxw411, vxw421) 21.88/7.88 new_primEqInt(Pos(Succ(vxw30000)), Pos(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) 21.88/7.88 new_lt8(vxw59, vxw62, ty_Int) -> new_lt10(vxw59, vxw62) 21.88/7.88 new_compare4(vxw30, vxw400, ty_Double) -> new_compare16(vxw30, vxw400) 21.88/7.88 new_esEs5(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) 21.88/7.88 new_ltEs12(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, fc) -> new_pePe(new_lt21(vxw410, vxw420, gd), new_asAs(new_esEs35(vxw410, vxw420, gd), new_ltEs23(vxw411, vxw421, fc))) 21.88/7.88 new_esEs28(vxw3000, vxw40000, ty_Char) -> new_esEs24(vxw3000, vxw40000) 21.88/7.88 new_compare4(vxw30, vxw400, app(ty_[], ceh)) -> new_compare9(vxw30, vxw400, ceh) 21.88/7.88 new_esEs6(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.88 new_primEqInt(Pos(Succ(vxw30000)), Neg(vxw40000)) -> False 21.88/7.88 new_primEqInt(Neg(Succ(vxw30000)), Pos(vxw40000)) -> False 21.88/7.88 new_esEs26(@0, @0) -> True 21.88/7.88 new_lt20(vxw79, vxw81, app(app(ty_@2, dg), dh)) -> new_lt6(vxw79, vxw81, dg, dh) 21.88/7.88 new_primCmpInt(Neg(Zero), Neg(Succ(vxw40000))) -> new_primCmpNat0(Succ(vxw40000), Zero) 21.88/7.88 new_esEs14(vxw60, vxw63, app(ty_Ratio, cha)) -> new_esEs21(vxw60, vxw63, cha) 21.88/7.88 new_ltEs21(vxw41, vxw42, app(app(ty_Either, bbc), bac)) -> new_ltEs13(vxw41, vxw42, bbc, bac) 21.88/7.88 new_esEs7(vxw300, vxw4000, app(ty_Ratio, fdd)) -> new_esEs21(vxw300, vxw4000, fdd) 21.88/7.88 new_ltEs8(vxw61, vxw64, app(ty_Ratio, chb)) -> new_ltEs15(vxw61, vxw64, chb) 21.88/7.88 new_esEs29(vxw3001, vxw40001, app(app(ty_Either, dcc), dcd)) -> new_esEs19(vxw3001, vxw40001, dcc, dcd) 21.88/7.88 new_esEs31(vxw3000, vxw40000, ty_Float) -> new_esEs22(vxw3000, vxw40000) 21.88/7.88 new_ltEs22(vxw70, vxw71, app(ty_Ratio, fbh)) -> new_ltEs15(vxw70, vxw71, fbh) 21.88/7.88 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 21.88/7.88 new_lt20(vxw79, vxw81, app(ty_[], eh)) -> new_lt19(vxw79, vxw81, eh) 21.88/7.88 new_lt23(vxw411, vxw421, app(app(ty_@2, bea), beb)) -> new_lt6(vxw411, vxw421, bea, beb) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), app(app(ty_@2, bgc), bgd)) -> new_ltEs12(vxw410, vxw420, bgc, bgd) 21.88/7.88 new_primCompAux00(vxw23, vxw24, LT, chd) -> LT 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(app(ty_Either, fhb), fhc)) -> new_esEs19(vxw3000, vxw40000, fhb, fhc) 21.88/7.88 new_esEs6(vxw300, vxw4000, app(ty_Ratio, fcb)) -> new_esEs21(vxw300, vxw4000, fcb) 21.88/7.88 new_ltEs18(Just(vxw410), Just(vxw420), ty_Double) -> new_ltEs11(vxw410, vxw420) 21.88/7.88 new_esEs35(vxw410, vxw420, ty_Double) -> new_esEs17(vxw410, vxw420) 21.88/7.88 new_not(False) -> True 21.88/7.88 new_esEs39(vxw411, vxw421, app(ty_[], bfa)) -> new_esEs27(vxw411, vxw421, bfa) 21.88/7.88 new_compare19(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare14(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) 21.88/7.88 new_compare19(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare14(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) 21.88/7.88 new_esEs12(LT, EQ) -> False 21.88/7.88 new_esEs12(EQ, LT) -> False 21.88/7.88 new_esEs7(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), app(ty_Ratio, dfd)) -> new_esEs21(vxw3000, vxw40000, dfd) 21.88/7.88 new_esEs14(vxw60, vxw63, app(app(ty_@2, cbd), cbe)) -> new_esEs18(vxw60, vxw63, cbd, cbe) 21.88/7.88 new_lt21(vxw410, vxw420, app(app(ty_@2, fa), fb)) -> new_lt6(vxw410, vxw420, fa, fb) 21.88/7.88 new_esEs5(vxw301, vxw4001, app(ty_[], deh)) -> new_esEs27(vxw301, vxw4001, deh) 21.88/7.88 new_compare5(Integer(vxw300), Integer(vxw4000)) -> new_primCmpInt(vxw300, vxw4000) 21.88/7.88 new_esEs28(vxw3000, vxw40000, app(app(ty_Either, dba), dbb)) -> new_esEs19(vxw3000, vxw40000, dba, dbb) 21.88/7.88 new_esEs12(LT, GT) -> False 21.88/7.88 new_esEs12(GT, LT) -> False 21.88/7.88 new_esEs7(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.88 new_esEs30(vxw3002, vxw40002, ty_@0) -> new_esEs26(vxw3002, vxw40002) 21.88/7.88 new_ltEs21(vxw41, vxw42, app(ty_Ratio, efc)) -> new_ltEs15(vxw41, vxw42, efc) 21.88/7.88 new_ltEs22(vxw70, vxw71, ty_Ordering) -> new_ltEs6(vxw70, vxw71) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, app(ty_Maybe, fgc)) -> new_esEs25(vxw3000, vxw40000, fgc) 21.88/7.88 new_esEs8(vxw300, vxw4000, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs20(vxw300, vxw4000, eae, eaf, eag) 21.88/7.88 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 21.88/7.88 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 21.88/7.88 new_ltEs24(vxw412, vxw422, ty_@0) -> new_ltEs5(vxw412, vxw422) 21.88/7.88 new_esEs5(vxw301, vxw4001, ty_Int) -> new_esEs16(vxw301, vxw4001) 21.88/7.88 new_esEs14(vxw60, vxw63, app(ty_[], ccd)) -> new_esEs27(vxw60, vxw63, ccd) 21.88/7.88 new_lt22(vxw410, vxw420, app(ty_[], bdg)) -> new_lt19(vxw410, vxw420, bdg) 21.88/7.88 new_esEs29(vxw3001, vxw40001, ty_Float) -> new_esEs22(vxw3001, vxw40001) 21.88/7.88 new_ltEs13(Left(vxw410), Left(vxw420), ty_Float, bac) -> new_ltEs16(vxw410, vxw420) 21.88/7.88 new_compare15(GT, EQ) -> GT 21.88/7.88 new_ltEs23(vxw411, vxw421, app(app(ty_Either, gg), gh)) -> new_ltEs13(vxw411, vxw421, gg, gh) 21.88/7.88 new_esEs5(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) 21.88/7.88 new_ltEs22(vxw70, vxw71, ty_Char) -> new_ltEs7(vxw70, vxw71) 21.88/7.88 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 21.88/7.88 new_esEs38(vxw410, vxw420, ty_Double) -> new_esEs17(vxw410, vxw420) 21.88/7.88 new_primMulNat0(Succ(vxw400000), Succ(vxw30100)) -> new_primPlusNat0(new_primMulNat0(vxw400000, Succ(vxw30100)), vxw30100) 21.88/7.88 new_ltEs23(vxw411, vxw421, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs14(vxw411, vxw421, ha, hb, hc) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Ordering) -> new_esEs12(vxw3000, vxw40000) 21.88/7.88 new_lt9(vxw60, vxw63, app(ty_Ratio, cha)) -> new_lt5(vxw60, vxw63, cha) 21.88/7.88 new_esEs19(Right(vxw3000), Right(vxw40000), ega, ty_Bool) -> new_esEs15(vxw3000, vxw40000) 21.88/7.88 new_ltEs8(vxw61, vxw64, ty_Char) -> new_ltEs7(vxw61, vxw64) 21.88/7.88 new_lt22(vxw410, vxw420, ty_Int) -> new_lt10(vxw410, vxw420) 21.88/7.88 new_ltEs8(vxw61, vxw64, ty_@0) -> new_ltEs5(vxw61, vxw64) 21.88/7.88 new_esEs25(Just(vxw3000), Just(vxw40000), ty_Int) -> new_esEs16(vxw3000, vxw40000) 21.88/7.88 new_ltEs19(vxw80, vxw82, app(ty_Ratio, egc)) -> new_ltEs15(vxw80, vxw82, egc) 21.88/7.88 new_lt9(vxw60, vxw63, ty_Ordering) -> new_lt11(vxw60, vxw63) 21.88/7.88 new_esEs8(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) 21.88/7.88 new_ltEs20(vxw48, vxw49, ty_Ordering) -> new_ltEs6(vxw48, vxw49) 21.88/7.88 new_esEs39(vxw411, vxw421, app(ty_Ratio, fhe)) -> new_esEs21(vxw411, vxw421, fhe) 21.88/7.88 new_compare17(Left(vxw300), Left(vxw4000), hf, hg) -> new_compare210(vxw300, vxw4000, new_esEs6(vxw300, vxw4000, hf), hf, hg) 21.88/7.88 new_esEs38(vxw410, vxw420, app(app(ty_@2, bce), bcf)) -> new_esEs18(vxw410, vxw420, bce, bcf) 21.88/7.88 new_ltEs23(vxw411, vxw421, ty_Char) -> new_ltEs7(vxw411, vxw421) 21.88/7.88 new_ltEs22(vxw70, vxw71, ty_@0) -> new_ltEs5(vxw70, vxw71) 21.88/7.88 new_esEs39(vxw411, vxw421, app(app(ty_@2, bea), beb)) -> new_esEs18(vxw411, vxw421, bea, beb) 21.88/7.88 new_esEs4(vxw300, vxw4000, app(app(ty_@2, efg), efh)) -> new_esEs18(vxw300, vxw4000, efg, efh) 21.88/7.88 new_compare9([], :(vxw4000, vxw4001), ceh) -> LT 21.88/7.88 new_esEs29(vxw3001, vxw40001, ty_@0) -> new_esEs26(vxw3001, vxw40001) 21.88/7.88 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 21.88/7.88 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 21.88/7.88 new_ltEs20(vxw48, vxw49, app(ty_Ratio, ege)) -> new_ltEs15(vxw48, vxw49, ege) 21.88/7.88 new_ltEs23(vxw411, vxw421, ty_Bool) -> new_ltEs9(vxw411, vxw421) 21.88/7.88 new_primEqNat0(Zero, Zero) -> True 21.88/7.88 new_esEs25(Nothing, Nothing, dfc) -> True 21.88/7.88 new_esEs9(vxw301, vxw4001, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs20(vxw301, vxw4001, ebg, ebh, eca) 21.88/7.88 new_esEs25(Nothing, Just(vxw40000), dfc) -> False 21.88/7.88 new_esEs25(Just(vxw3000), Nothing, dfc) -> False 21.88/7.88 new_esEs9(vxw301, vxw4001, ty_Bool) -> new_esEs15(vxw301, vxw4001) 21.88/7.88 new_ltEs21(vxw41, vxw42, ty_Ordering) -> new_ltEs6(vxw41, vxw42) 21.88/7.88 new_ltEs23(vxw411, vxw421, ty_@0) -> new_ltEs5(vxw411, vxw421) 21.88/7.88 new_lt8(vxw59, vxw62, app(app(ty_@2, bhh), caa)) -> new_lt6(vxw59, vxw62, bhh, caa) 21.88/7.88 new_esEs28(vxw3000, vxw40000, ty_@0) -> new_esEs26(vxw3000, vxw40000) 21.88/7.88 new_esEs6(vxw300, vxw4000, ty_Int) -> new_esEs16(vxw300, vxw4000) 21.88/7.88 new_esEs4(vxw300, vxw4000, app(ty_Ratio, eff)) -> new_esEs21(vxw300, vxw4000, eff) 21.88/7.88 new_asAs(False, vxw97) -> False 21.88/7.88 new_lt21(vxw410, vxw420, ty_Int) -> new_lt10(vxw410, vxw420) 21.88/7.88 new_ltEs24(vxw412, vxw422, app(app(ty_Either, bfd), bfe)) -> new_ltEs13(vxw412, vxw422, bfd, bfe) 21.88/7.88 new_esEs6(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) 21.88/7.88 new_esEs14(vxw60, vxw63, ty_Double) -> new_esEs17(vxw60, vxw63) 21.88/7.88 new_esEs19(Left(vxw3000), Left(vxw40000), ty_Double, egb) -> new_esEs17(vxw3000, vxw40000) 21.88/7.88 new_ltEs24(vxw412, vxw422, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs14(vxw412, vxw422, bff, bfg, bfh) 21.88/7.88 21.88/7.88 The set Q consists of the following terms: 21.88/7.88 21.88/7.88 new_ltEs23(x0, x1, ty_Integer) 21.88/7.88 new_compare12(Char(x0), Char(x1)) 21.88/7.88 new_esEs32(x0, x1, ty_Bool) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 21.88/7.88 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs36(x0, x1, ty_Integer) 21.88/7.88 new_esEs34(x0, x1, app(ty_[], x2)) 21.88/7.88 new_compare17(Left(x0), Right(x1), x2, x3) 21.88/7.88 new_compare17(Right(x0), Left(x1), x2, x3) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), ty_Bool) 21.88/7.88 new_compare11(@0, @0) 21.88/7.88 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs4(x0, x1, ty_Float) 21.88/7.88 new_primPlusNat1(Zero, Zero) 21.88/7.88 new_ltEs4(x0, x1, x2) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 21.88/7.88 new_esEs32(x0, x1, ty_@0) 21.88/7.88 new_compare15(LT, GT) 21.88/7.88 new_compare15(GT, LT) 21.88/7.88 new_lt8(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), ty_@0) 21.88/7.88 new_esEs13(x0, x1, app(ty_[], x2)) 21.88/7.88 new_compare4(x0, x1, ty_Int) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) 21.88/7.88 new_lt23(x0, x1, app(ty_[], x2)) 21.88/7.88 new_primEqInt(Pos(Zero), Pos(Zero)) 21.88/7.88 new_lt9(x0, x1, ty_Float) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 21.88/7.88 new_sr0(Integer(x0), Integer(x1)) 21.88/7.88 new_lt9(x0, x1, app(ty_[], x2)) 21.88/7.88 new_compare5(Integer(x0), Integer(x1)) 21.88/7.88 new_lt23(x0, x1, ty_Char) 21.88/7.88 new_ltEs23(x0, x1, ty_Bool) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 21.88/7.88 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs38(x0, x1, app(ty_[], x2)) 21.88/7.88 new_compare28(x0, x1, x2, x3, True, x4, x5) 21.88/7.88 new_esEs35(x0, x1, app(ty_[], x2)) 21.88/7.88 new_primEqInt(Neg(Zero), Neg(Zero)) 21.88/7.88 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt22(x0, x1, ty_Int) 21.88/7.88 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 21.88/7.88 new_ltEs9(True, True) 21.88/7.88 new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) 21.88/7.88 new_lt20(x0, x1, app(ty_[], x2)) 21.88/7.88 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs7(x0, x1, ty_Int) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 21.88/7.88 new_esEs33(x0, x1, ty_Double) 21.88/7.88 new_lt22(x0, x1, ty_@0) 21.88/7.88 new_esEs28(x0, x1, ty_Int) 21.88/7.88 new_ltEs20(x0, x1, ty_Double) 21.88/7.88 new_esEs28(x0, x1, ty_Bool) 21.88/7.88 new_ltEs23(x0, x1, ty_Float) 21.88/7.88 new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 21.88/7.88 new_compare15(EQ, GT) 21.88/7.88 new_compare15(GT, EQ) 21.88/7.88 new_compare114(x0, x1, True, x2) 21.88/7.88 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 21.88/7.88 new_esEs28(x0, x1, ty_@0) 21.88/7.88 new_esEs31(x0, x1, app(ty_[], x2)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 21.88/7.88 new_primPlusNat1(Succ(x0), Zero) 21.88/7.88 new_esEs31(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_primEqInt(Pos(Zero), Neg(Zero)) 21.88/7.88 new_primEqInt(Neg(Zero), Pos(Zero)) 21.88/7.88 new_esEs28(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs13(x0, x1, ty_Float) 21.88/7.88 new_esEs12(LT, GT) 21.88/7.88 new_esEs12(GT, LT) 21.88/7.88 new_esEs13(x0, x1, ty_@0) 21.88/7.88 new_compare4(x0, x1, ty_@0) 21.88/7.88 new_ltEs20(x0, x1, ty_Char) 21.88/7.88 new_compare26(Nothing, Just(x0), x1) 21.88/7.88 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_compare17(Left(x0), Left(x1), x2, x3) 21.88/7.88 new_esEs8(x0, x1, ty_Integer) 21.88/7.88 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs15(False, False) 21.88/7.88 new_esEs5(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 21.88/7.88 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 21.88/7.88 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 21.88/7.88 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs23(x0, x1, ty_@0) 21.88/7.88 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 21.88/7.88 new_compare111(x0, x1, True, x2, x3) 21.88/7.88 new_ltEs22(x0, x1, ty_Int) 21.88/7.88 new_esEs34(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs33(x0, x1, ty_Char) 21.88/7.88 new_esEs4(x0, x1, ty_@0) 21.88/7.88 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs30(x0, x1, ty_Integer) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 21.88/7.88 new_esEs24(Char(x0), Char(x1)) 21.88/7.88 new_ltEs8(x0, x1, ty_Int) 21.88/7.88 new_lt21(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs29(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 21.88/7.88 new_esEs4(x0, x1, ty_Bool) 21.88/7.88 new_esEs11(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_primMulNat0(Zero, Succ(x0)) 21.88/7.88 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs34(x0, x1, ty_@0) 21.88/7.88 new_esEs4(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs12(GT, GT) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 21.88/7.88 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 21.88/7.88 new_lt23(x0, x1, ty_Double) 21.88/7.88 new_esEs38(x0, x1, ty_Float) 21.88/7.88 new_compare4(x0, x1, ty_Bool) 21.88/7.88 new_compare9(:(x0, x1), [], x2) 21.88/7.88 new_esEs39(x0, x1, ty_Int) 21.88/7.88 new_lt8(x0, x1, ty_Ordering) 21.88/7.88 new_lt23(x0, x1, ty_Ordering) 21.88/7.88 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 21.88/7.88 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs28(x0, x1, ty_Integer) 21.88/7.88 new_esEs38(x0, x1, ty_Char) 21.88/7.88 new_ltEs5(x0, x1) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 21.88/7.88 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt9(x0, x1, ty_Integer) 21.88/7.88 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 21.88/7.88 new_esEs38(x0, x1, ty_Ordering) 21.88/7.88 new_esEs8(x0, x1, ty_Bool) 21.88/7.88 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_compare8(False, False) 21.88/7.88 new_esEs33(x0, x1, ty_Float) 21.88/7.88 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs13(x0, x1, ty_Bool) 21.88/7.88 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_compare26(Just(x0), Just(x1), x2) 21.88/7.88 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 21.88/7.88 new_esEs29(x0, x1, ty_Char) 21.88/7.88 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs4(x0, x1, ty_Integer) 21.88/7.88 new_esEs8(x0, x1, ty_Int) 21.88/7.88 new_esEs22(Float(x0, x1), Float(x2, x3)) 21.88/7.88 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 21.88/7.88 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 21.88/7.88 new_esEs10(x0, x1, ty_Double) 21.88/7.88 new_esEs25(Nothing, Just(x0), x1) 21.88/7.88 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_ltEs22(x0, x1, ty_Integer) 21.88/7.88 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 21.88/7.88 new_ltEs24(x0, x1, ty_Double) 21.88/7.88 new_esEs30(x0, x1, ty_@0) 21.88/7.88 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 21.88/7.88 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs35(x0, x1, ty_Double) 21.88/7.88 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_primMulInt(Pos(x0), Neg(x1)) 21.88/7.88 new_primMulInt(Neg(x0), Pos(x1)) 21.88/7.88 new_lt23(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs8(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs27([], :(x0, x1), x2) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 21.88/7.88 new_ltEs18(Nothing, Nothing, x0) 21.88/7.88 new_esEs27([], [], x0) 21.88/7.88 new_esEs5(x0, x1, ty_Char) 21.88/7.88 new_asAs(True, x0) 21.88/7.88 new_lt9(x0, x1, ty_Bool) 21.88/7.88 new_lt23(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 21.88/7.88 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_compare9([], :(x0, x1), x2) 21.88/7.88 new_esEs8(x0, x1, ty_Float) 21.88/7.88 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs10(x0, x1, ty_@0) 21.88/7.88 new_esEs31(x0, x1, ty_@0) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_@0) 21.88/7.88 new_ltEs19(x0, x1, ty_Float) 21.88/7.88 new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 21.88/7.88 new_esEs13(x0, x1, ty_Integer) 21.88/7.88 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs11(x0, x1, ty_@0) 21.88/7.88 new_ltEs24(x0, x1, app(ty_[], x2)) 21.88/7.88 new_compare4(x0, x1, ty_Integer) 21.88/7.88 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs9(x0, x1, ty_Double) 21.88/7.88 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs30(x0, x1, ty_Int) 21.88/7.88 new_esEs38(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs10(x0, x1, ty_Char) 21.88/7.88 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs6(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs38(x0, x1, ty_Integer) 21.88/7.88 new_lt9(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs21(x0, x1, ty_Int) 21.88/7.88 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 21.88/7.88 new_esEs4(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs14(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs11(x0, x1, ty_Float) 21.88/7.88 new_lt9(x0, x1, ty_Int) 21.88/7.88 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs8(x0, x1, ty_@0) 21.88/7.88 new_lt20(x0, x1, ty_Double) 21.88/7.88 new_lt18(x0, x1) 21.88/7.88 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 21.88/7.88 new_esEs10(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs7(x0, x1, ty_Float) 21.88/7.88 new_ltEs6(EQ, EQ) 21.88/7.88 new_esEs14(x0, x1, ty_@0) 21.88/7.88 new_ltEs21(x0, x1, ty_Char) 21.88/7.88 new_esEs6(x0, x1, ty_Ordering) 21.88/7.88 new_esEs34(x0, x1, ty_Float) 21.88/7.88 new_esEs14(x0, x1, ty_Char) 21.88/7.88 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs30(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 21.88/7.88 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 21.88/7.88 new_primMulNat0(Succ(x0), Succ(x1)) 21.88/7.88 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_Ordering) 21.88/7.88 new_esEs6(x0, x1, ty_Double) 21.88/7.88 new_esEs39(x0, x1, ty_Integer) 21.88/7.88 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 21.88/7.88 new_esEs14(x0, x1, ty_Int) 21.88/7.88 new_ltEs20(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs33(x0, x1, ty_Integer) 21.88/7.88 new_esEs34(x0, x1, ty_Integer) 21.88/7.88 new_esEs7(x0, x1, ty_Integer) 21.88/7.88 new_lt20(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs38(x0, x1, ty_@0) 21.88/7.88 new_esEs4(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs30(x0, x1, ty_Char) 21.88/7.88 new_primMulInt(Neg(x0), Neg(x1)) 21.88/7.88 new_esEs30(x0, x1, ty_Double) 21.88/7.88 new_esEs10(x0, x1, ty_Bool) 21.88/7.88 new_lt20(x0, x1, ty_Ordering) 21.88/7.88 new_esEs39(x0, x1, ty_Bool) 21.88/7.88 new_esEs33(x0, x1, ty_@0) 21.88/7.88 new_esEs11(x0, x1, ty_Integer) 21.88/7.88 new_esEs4(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs34(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_not(True) 21.88/7.88 new_lt21(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_lt5(x0, x1, x2) 21.88/7.88 new_lt21(x0, x1, ty_Ordering) 21.88/7.88 new_esEs28(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_compare27(x0, x1, True, x2) 21.88/7.88 new_ltEs23(x0, x1, ty_Double) 21.88/7.88 new_esEs14(x0, x1, ty_Bool) 21.88/7.88 new_compare114(x0, x1, False, x2) 21.88/7.88 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 21.88/7.88 new_lt8(x0, x1, ty_Double) 21.88/7.88 new_lt13(x0, x1, x2, x3) 21.88/7.88 new_esEs6(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs22(x0, x1, ty_Bool) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 21.88/7.88 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 21.88/7.88 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 21.88/7.88 new_ltEs22(x0, x1, ty_Float) 21.88/7.88 new_ltEs19(x0, x1, ty_Ordering) 21.88/7.88 new_lt22(x0, x1, ty_Float) 21.88/7.88 new_esEs16(x0, x1) 21.88/7.88 new_esEs10(x0, x1, ty_Integer) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 21.88/7.88 new_esEs31(x0, x1, ty_Integer) 21.88/7.88 new_esEs14(x0, x1, ty_Integer) 21.88/7.88 new_primPlusNat0(Succ(x0), x1) 21.88/7.88 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 21.88/7.88 new_esEs7(x0, x1, ty_Bool) 21.88/7.88 new_esEs12(LT, LT) 21.88/7.88 new_esEs9(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs33(x0, x1, ty_Bool) 21.88/7.88 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 21.88/7.88 new_esEs8(x0, x1, ty_Ordering) 21.88/7.88 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) 21.88/7.88 new_compare15(LT, EQ) 21.88/7.88 new_compare15(EQ, LT) 21.88/7.88 new_ltEs24(x0, x1, ty_Ordering) 21.88/7.88 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs7(x0, x1) 21.88/7.88 new_fsEs(x0) 21.88/7.88 new_compare4(x0, x1, ty_Float) 21.88/7.88 new_compare15(GT, GT) 21.88/7.88 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_primPlusNat1(Zero, Succ(x0)) 21.88/7.88 new_esEs32(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs28(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs36(x0, x1, ty_Int) 21.88/7.88 new_esEs32(x0, x1, ty_Ordering) 21.88/7.88 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), ty_Ordering) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 21.88/7.88 new_lt8(x0, x1, ty_Char) 21.88/7.88 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_compare8(True, True) 21.88/7.88 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Integer) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 21.88/7.88 new_esEs7(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 21.88/7.88 new_esEs31(x0, x1, ty_Char) 21.88/7.88 new_esEs7(x0, x1, ty_@0) 21.88/7.88 new_lt22(x0, x1, ty_Integer) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 21.88/7.88 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs10(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs10(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_lt23(x0, x1, ty_Float) 21.88/7.88 new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 21.88/7.88 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs11(x0, x1, ty_Bool) 21.88/7.88 new_esEs30(x0, x1, ty_Bool) 21.88/7.88 new_primCmpNat0(Succ(x0), Zero) 21.88/7.88 new_compare111(x0, x1, False, x2, x3) 21.88/7.88 new_primEqNat0(Zero, Succ(x0)) 21.88/7.88 new_ltEs19(x0, x1, ty_Double) 21.88/7.88 new_esEs28(x0, x1, ty_Float) 21.88/7.88 new_esEs15(False, True) 21.88/7.88 new_esEs15(True, False) 21.88/7.88 new_lt8(x0, x1, ty_Int) 21.88/7.88 new_esEs35(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 21.88/7.88 new_compare4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs39(x0, x1, ty_@0) 21.88/7.88 new_lt22(x0, x1, app(ty_[], x2)) 21.88/7.88 new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Bool) 21.88/7.88 new_esEs8(x0, x1, app(ty_[], x2)) 21.88/7.88 new_primEqNat0(Zero, Zero) 21.88/7.88 new_esEs31(x0, x1, ty_Bool) 21.88/7.88 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs34(x0, x1, ty_Int) 21.88/7.88 new_esEs31(x0, x1, ty_Float) 21.88/7.88 new_lt9(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Float) 21.88/7.88 new_ltEs9(False, False) 21.88/7.88 new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) 21.88/7.88 new_not(False) 21.88/7.88 new_ltEs20(x0, x1, ty_Ordering) 21.88/7.88 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt11(x0, x1) 21.88/7.88 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 21.88/7.88 new_esEs13(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs26(@0, @0) 21.88/7.88 new_esEs13(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_lt4(x0, x1) 21.88/7.88 new_esEs9(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs11(x0, x1, ty_Char) 21.88/7.88 new_compare112(x0, x1, x2, x3, True, x4, x5, x6) 21.88/7.88 new_esEs27(:(x0, x1), [], x2) 21.88/7.88 new_lt8(x0, x1, ty_Float) 21.88/7.88 new_lt22(x0, x1, ty_Bool) 21.88/7.88 new_esEs8(x0, x1, ty_Double) 21.88/7.88 new_esEs31(x0, x1, ty_Int) 21.88/7.88 new_esEs30(x0, x1, ty_Float) 21.88/7.88 new_esEs30(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Int) 21.88/7.88 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt9(x0, x1, ty_Double) 21.88/7.88 new_esEs5(x0, x1, ty_@0) 21.88/7.88 new_ltEs21(x0, x1, ty_@0) 21.88/7.88 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_lt16(x0, x1) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 21.88/7.88 new_esEs10(x0, x1, ty_Int) 21.88/7.88 new_ltEs23(x0, x1, ty_Ordering) 21.88/7.88 new_esEs34(x0, x1, ty_Char) 21.88/7.88 new_primCmpNat0(Succ(x0), Succ(x1)) 21.88/7.88 new_compare29(x0, x1, True, x2, x3) 21.88/7.88 new_esEs34(x0, x1, ty_Bool) 21.88/7.88 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_compare4(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_ltEs11(x0, x1) 21.88/7.88 new_esEs9(x0, x1, ty_Ordering) 21.88/7.88 new_esEs11(x0, x1, ty_Int) 21.88/7.88 new_esEs10(x0, x1, ty_Float) 21.88/7.88 new_esEs29(x0, x1, ty_Double) 21.88/7.88 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs9(x0, x1, ty_Float) 21.88/7.88 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_lt8(x0, x1, ty_Integer) 21.88/7.88 new_pePe(True, x0) 21.88/7.88 new_esEs29(x0, x1, ty_@0) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 21.88/7.88 new_esEs12(EQ, EQ) 21.88/7.88 new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) 21.88/7.88 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_lt20(x0, x1, ty_Float) 21.88/7.88 new_lt22(x0, x1, ty_Char) 21.88/7.88 new_esEs35(x0, x1, ty_Integer) 21.88/7.88 new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs29(x0, x1, ty_Bool) 21.88/7.88 new_compare4(x0, x1, ty_Ordering) 21.88/7.88 new_esEs11(x0, x1, ty_Double) 21.88/7.88 new_esEs25(Just(x0), Just(x1), ty_Char) 21.88/7.88 new_esEs5(x0, x1, ty_Float) 21.88/7.88 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 21.88/7.88 new_esEs6(x0, x1, ty_Float) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 21.88/7.88 new_ltEs6(LT, LT) 21.88/7.88 new_esEs37(x0, x1, ty_Integer) 21.88/7.88 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_compare4(x0, x1, ty_Double) 21.88/7.88 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_compare26(Just(x0), Nothing, x1) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_Float) 21.88/7.88 new_lt8(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_compare110(x0, x1, x2, x3, True, x4, x5) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 21.88/7.88 new_compare4(x0, x1, ty_Char) 21.88/7.88 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_lt22(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs16(x0, x1) 21.88/7.88 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_primCompAux00(x0, x1, EQ, ty_Integer) 21.88/7.88 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 21.88/7.88 new_primCompAux1(x0, x1, x2, x3, x4) 21.88/7.88 new_lt8(x0, x1, ty_@0) 21.88/7.88 new_lt23(x0, x1, ty_@0) 21.88/7.88 new_compare29(x0, x1, False, x2, x3) 21.88/7.88 new_compare9([], [], x0) 21.88/7.88 new_esEs35(x0, x1, ty_@0) 21.88/7.88 new_compare4(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 21.88/7.88 new_lt23(x0, x1, ty_Int) 21.88/7.88 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 21.88/7.88 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_esEs38(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 21.88/7.88 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_esEs31(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs20(x0, x1, ty_Bool) 21.88/7.88 new_esEs29(x0, x1, ty_Integer) 21.88/7.88 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 21.88/7.88 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 21.88/7.88 new_esEs34(x0, x1, ty_Ordering) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 21.88/7.88 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 21.88/7.88 new_lt23(x0, x1, ty_Integer) 21.88/7.88 new_esEs39(x0, x1, ty_Double) 21.88/7.88 new_compare27(x0, x1, False, x2) 21.88/7.88 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs35(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_sr(x0, x1) 21.88/7.88 new_esEs11(x0, x1, ty_Ordering) 21.88/7.88 new_esEs8(x0, x1, app(ty_Ratio, x2)) 21.88/7.88 new_ltEs22(x0, x1, ty_Char) 21.88/7.88 new_compare14(x0, x1) 21.88/7.88 new_lt23(x0, x1, ty_Bool) 21.88/7.88 new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 21.88/7.88 new_esEs14(x0, x1, app(ty_[], x2)) 21.88/7.88 new_esEs7(x0, x1, ty_Double) 21.88/7.88 new_primEqNat0(Succ(x0), Succ(x1)) 21.88/7.88 new_ltEs24(x0, x1, ty_Integer) 21.88/7.88 new_esEs7(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_lt22(x0, x1, app(ty_Maybe, x2)) 21.88/7.88 new_compare26(Nothing, Nothing, x0) 21.88/7.88 new_compare8(True, False) 21.88/7.88 new_compare8(False, True) 21.88/7.88 new_ltEs22(x0, x1, ty_Double) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 21.88/7.88 new_lt8(x0, x1, ty_Bool) 21.88/7.88 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 21.88/7.88 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.88 new_lt15(x0, x1) 21.88/7.88 new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 21.88/7.88 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.88 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 21.88/7.88 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.88 new_primEqNat0(Succ(x0), Zero) 21.88/7.89 new_ltEs20(x0, x1, ty_@0) 21.88/7.89 new_esEs7(x0, x1, ty_Char) 21.88/7.89 new_compare28(x0, x1, x2, x3, False, x4, x5) 21.88/7.89 new_ltEs21(x0, x1, ty_Integer) 21.88/7.89 new_esEs25(Just(x0), Just(x1), ty_Ordering) 21.88/7.89 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 21.88/7.89 new_esEs28(x0, x1, ty_Char) 21.88/7.89 new_esEs28(x0, x1, ty_Double) 21.88/7.89 new_ltEs20(x0, x1, ty_Int) 21.88/7.89 new_primCompAux00(x0, x1, EQ, ty_Bool) 21.88/7.89 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.89 new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) 21.88/7.89 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 21.88/7.89 new_esEs32(x0, x1, ty_Double) 21.88/7.89 new_lt19(x0, x1, x2) 21.88/7.89 new_esEs29(x0, x1, ty_Float) 21.88/7.89 new_compare15(EQ, EQ) 21.88/7.89 new_lt20(x0, x1, ty_Bool) 21.88/7.89 new_esEs9(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 21.88/7.89 new_esEs39(x0, x1, ty_Char) 21.88/7.89 new_esEs5(x0, x1, ty_Integer) 21.88/7.89 new_ltEs8(x0, x1, ty_Ordering) 21.88/7.89 new_primPlusNat1(Succ(x0), Succ(x1)) 21.88/7.89 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 21.88/7.89 new_esEs33(x0, x1, ty_Int) 21.88/7.89 new_esEs12(LT, EQ) 21.88/7.89 new_esEs12(EQ, LT) 21.88/7.89 new_esEs5(x0, x1, ty_Bool) 21.88/7.89 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 21.88/7.89 new_ltEs8(x0, x1, ty_Char) 21.88/7.89 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 21.88/7.89 new_esEs6(x0, x1, ty_@0) 21.88/7.89 new_ltEs21(x0, x1, ty_Bool) 21.88/7.89 new_esEs6(x0, x1, app(ty_[], x2)) 21.88/7.89 new_ltEs23(x0, x1, app(ty_[], x2)) 21.88/7.89 new_lt9(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_primCompAux00(x0, x1, EQ, ty_@0) 21.88/7.89 new_esEs7(x0, x1, app(ty_[], x2)) 21.88/7.89 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 21.88/7.89 new_lt14(x0, x1, x2, x3, x4) 21.88/7.89 new_esEs25(Nothing, Nothing, x0) 21.88/7.89 new_esEs38(x0, x1, ty_Int) 21.88/7.89 new_compare4(x0, x1, app(ty_[], x2)) 21.88/7.89 new_ltEs18(Just(x0), Just(x1), ty_Double) 21.88/7.89 new_lt22(x0, x1, ty_Double) 21.88/7.89 new_primCompAux00(x0, x1, GT, x2) 21.88/7.89 new_primCmpInt(Neg(Zero), Neg(Zero)) 21.88/7.89 new_esEs39(x0, x1, app(ty_[], x2)) 21.88/7.89 new_ltEs9(False, True) 21.88/7.89 new_ltEs9(True, False) 21.88/7.89 new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 21.88/7.89 new_esEs31(x0, x1, ty_Double) 21.88/7.89 new_lt7(x0, x1) 21.88/7.89 new_esEs25(Just(x0), Just(x1), ty_Double) 21.88/7.89 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 21.88/7.89 new_esEs32(x0, x1, app(ty_[], x2)) 21.88/7.89 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 21.88/7.89 new_ltEs6(GT, LT) 21.88/7.89 new_ltEs6(LT, GT) 21.88/7.89 new_lt21(x0, x1, ty_Double) 21.88/7.89 new_primCmpInt(Pos(Zero), Neg(Zero)) 21.88/7.89 new_primCmpInt(Neg(Zero), Pos(Zero)) 21.88/7.89 new_esEs39(x0, x1, ty_Float) 21.88/7.89 new_ltEs6(EQ, GT) 21.88/7.89 new_ltEs6(GT, EQ) 21.88/7.89 new_esEs15(True, True) 21.88/7.89 new_ltEs19(x0, x1, ty_Int) 21.88/7.89 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_esEs14(x0, x1, ty_Float) 21.88/7.89 new_compare112(x0, x1, x2, x3, False, x4, x5, x6) 21.88/7.89 new_esEs28(x0, x1, ty_Ordering) 21.88/7.89 new_esEs37(x0, x1, ty_Int) 21.88/7.89 new_esEs8(x0, x1, ty_Char) 21.88/7.89 new_esEs34(x0, x1, ty_Double) 21.88/7.89 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 21.88/7.89 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.89 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_ltEs8(x0, x1, ty_Integer) 21.88/7.89 new_esEs13(x0, x1, ty_Ordering) 21.88/7.89 new_lt9(x0, x1, ty_Char) 21.88/7.89 new_esEs38(x0, x1, ty_Bool) 21.88/7.89 new_esEs29(x0, x1, ty_Int) 21.88/7.89 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 21.88/7.89 new_esEs5(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_lt21(x0, x1, ty_@0) 21.88/7.89 new_ltEs21(x0, x1, ty_Float) 21.88/7.89 new_ltEs22(x0, x1, ty_Ordering) 21.88/7.89 new_esEs5(x0, x1, ty_Int) 21.88/7.89 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 21.88/7.89 new_esEs17(Double(x0, x1), Double(x2, x3)) 21.88/7.89 new_ltEs24(x0, x1, ty_@0) 21.88/7.89 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 21.88/7.89 new_lt8(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_esEs35(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_esEs19(Left(x0), Right(x1), x2, x3) 21.88/7.89 new_esEs19(Right(x0), Left(x1), x2, x3) 21.88/7.89 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.89 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 21.88/7.89 new_esEs39(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_ltEs21(x0, x1, ty_Ordering) 21.88/7.89 new_lt17(x0, x1, x2) 21.88/7.89 new_ltEs8(x0, x1, ty_Bool) 21.88/7.89 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 21.88/7.89 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 21.88/7.89 new_primMulNat0(Zero, Zero) 21.88/7.89 new_esEs5(x0, x1, ty_Ordering) 21.88/7.89 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 21.88/7.89 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.89 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_lt21(x0, x1, ty_Char) 21.88/7.89 new_esEs30(x0, x1, ty_Ordering) 21.88/7.89 new_esEs33(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_primMulInt(Pos(x0), Pos(x1)) 21.88/7.89 new_esEs5(x0, x1, app(ty_[], x2)) 21.88/7.89 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 21.88/7.89 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 21.88/7.89 new_esEs30(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_compare210(x0, x1, True, x2, x3) 21.88/7.89 new_esEs13(x0, x1, ty_Double) 21.88/7.89 new_lt20(x0, x1, ty_Int) 21.88/7.89 new_ltEs21(x0, x1, ty_Double) 21.88/7.89 new_esEs29(x0, x1, app(ty_[], x2)) 21.88/7.89 new_asAs(False, x0) 21.88/7.89 new_ltEs15(x0, x1, x2) 21.88/7.89 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.89 new_esEs32(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 21.88/7.89 new_ltEs19(x0, x1, ty_Char) 21.88/7.89 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.89 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.89 new_esEs6(x0, x1, ty_Int) 21.88/7.89 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.89 new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 21.88/7.89 new_primCompAux00(x0, x1, EQ, ty_Int) 21.88/7.89 new_esEs10(x0, x1, ty_Ordering) 21.88/7.89 new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) 21.88/7.89 new_esEs13(x0, x1, ty_Int) 21.88/7.89 new_esEs12(EQ, GT) 21.88/7.89 new_esEs12(GT, EQ) 21.88/7.89 new_esEs14(x0, x1, ty_Ordering) 21.88/7.89 new_ltEs19(x0, x1, app(ty_[], x2)) 21.88/7.89 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.89 new_compare7(@2(x0, x1), @2(x2, x3), x4, x5) 21.88/7.89 new_compare15(LT, LT) 21.88/7.89 new_lt6(x0, x1, x2, x3) 21.88/7.89 new_primPlusNat0(Zero, x0) 21.88/7.89 new_ltEs19(x0, x1, ty_Bool) 21.88/7.89 new_lt20(x0, x1, ty_Char) 21.88/7.89 new_compare113(x0, x1, True, x2, x3) 21.88/7.89 new_ltEs20(x0, x1, ty_Float) 21.88/7.89 new_lt20(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_esEs33(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_esEs13(x0, x1, ty_Char) 21.88/7.89 new_primCompAux00(x0, x1, EQ, ty_Char) 21.88/7.89 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_esEs9(x0, x1, ty_Char) 21.88/7.89 new_compare4(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_compare4(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_ltEs22(x0, x1, ty_@0) 21.88/7.89 new_esEs9(x0, x1, ty_Int) 21.88/7.89 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 21.88/7.89 new_primCompAux00(x0, x1, EQ, ty_Double) 21.88/7.89 new_ltEs19(x0, x1, ty_Integer) 21.88/7.89 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.89 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.89 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_esEs4(x0, x1, ty_Int) 21.88/7.89 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.89 new_ltEs8(x0, x1, ty_Float) 21.88/7.89 new_ltEs13(Right(x0), Left(x1), x2, x3) 21.88/7.89 new_esEs11(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_ltEs13(Left(x0), Right(x1), x2, x3) 21.88/7.89 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.89 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 21.88/7.89 new_esEs25(Just(x0), Nothing, x1) 21.88/7.89 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_esEs9(x0, x1, ty_@0) 21.88/7.89 new_lt12(x0, x1) 21.88/7.89 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_lt21(x0, x1, ty_Integer) 21.88/7.89 new_ltEs23(x0, x1, ty_Int) 21.88/7.89 new_esEs4(x0, x1, ty_Double) 21.88/7.89 new_esEs4(x0, x1, ty_Char) 21.88/7.89 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.89 new_primCmpInt(Pos(Zero), Pos(Zero)) 21.88/7.89 new_ltEs18(Nothing, Just(x0), x1) 21.88/7.89 new_esEs32(x0, x1, ty_Float) 21.88/7.89 new_esEs23(Integer(x0), Integer(x1)) 21.88/7.89 new_ltEs6(EQ, LT) 21.88/7.89 new_ltEs6(LT, EQ) 21.88/7.89 new_esEs9(x0, x1, ty_Bool) 21.88/7.89 new_ltEs6(GT, GT) 21.88/7.89 new_ltEs23(x0, x1, ty_Char) 21.88/7.89 new_pePe(False, x0) 21.88/7.89 new_esEs35(x0, x1, ty_Int) 21.88/7.89 new_ltEs18(Just(x0), Just(x1), ty_Float) 21.88/7.89 new_ltEs8(x0, x1, app(ty_[], x2)) 21.88/7.89 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_esEs14(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_esEs35(x0, x1, ty_Char) 21.88/7.89 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.89 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 21.88/7.89 new_lt22(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_compare17(Right(x0), Right(x1), x2, x3) 21.88/7.89 new_ltEs22(x0, x1, app(ty_[], x2)) 21.88/7.89 new_esEs32(x0, x1, ty_Int) 21.88/7.89 new_lt20(x0, x1, ty_Integer) 21.88/7.89 new_esEs27(:(x0, x1), :(x2, x3), x4) 21.88/7.89 new_lt9(x0, x1, ty_@0) 21.88/7.89 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 21.88/7.89 new_esEs38(x0, x1, ty_Double) 21.88/7.89 new_ltEs18(Just(x0), Just(x1), ty_Int) 21.88/7.89 new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 21.88/7.89 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 21.88/7.89 new_ltEs10(x0, x1) 21.88/7.89 new_ltEs18(Just(x0), Nothing, x1) 21.88/7.89 new_esEs29(x0, x1, app(ty_Maybe, x2)) 21.88/7.89 new_esEs6(x0, x1, ty_Char) 21.88/7.89 new_esEs35(x0, x1, ty_Float) 21.88/7.89 new_esEs29(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_esEs14(x0, x1, ty_Double) 21.88/7.89 new_esEs32(x0, x1, ty_Char) 21.88/7.89 new_ltEs8(x0, x1, ty_Double) 21.88/7.89 new_ltEs18(Just(x0), Just(x1), ty_Char) 21.88/7.89 new_lt20(x0, x1, ty_@0) 21.88/7.89 new_esEs39(x0, x1, ty_Ordering) 21.88/7.89 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_lt21(x0, x1, ty_Bool) 21.88/7.89 new_esEs39(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_lt10(x0, x1) 21.88/7.89 new_lt21(x0, x1, ty_Float) 21.88/7.89 new_primCmpNat0(Zero, Succ(x0)) 21.88/7.89 new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 21.88/7.89 new_ltEs24(x0, x1, ty_Bool) 21.88/7.89 new_ltEs21(x0, x1, app(ty_[], x2)) 21.88/7.89 new_ltEs24(x0, x1, ty_Float) 21.88/7.89 new_esEs33(x0, x1, ty_Ordering) 21.88/7.89 new_ltEs19(x0, x1, ty_@0) 21.88/7.89 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 21.88/7.89 new_ltEs17(x0, x1) 21.88/7.89 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.89 new_esEs7(x0, x1, ty_Ordering) 21.88/7.89 new_esEs6(x0, x1, ty_Integer) 21.88/7.89 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 21.88/7.89 new_compare113(x0, x1, False, x2, x3) 21.88/7.89 new_lt21(x0, x1, ty_Int) 21.88/7.89 new_primMulNat0(Succ(x0), Zero) 21.88/7.89 new_ltEs20(x0, x1, ty_Integer) 21.88/7.89 new_esEs5(x0, x1, ty_Double) 21.88/7.89 new_esEs20(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 21.88/7.89 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.89 new_ltEs24(x0, x1, ty_Char) 21.88/7.89 new_esEs6(x0, x1, ty_Bool) 21.88/7.89 new_esEs32(x0, x1, ty_Integer) 21.88/7.89 new_esEs9(x0, x1, ty_Integer) 21.88/7.89 new_compare9(:(x0, x1), :(x2, x3), x4) 21.88/7.89 new_compare210(x0, x1, False, x2, x3) 21.88/7.89 new_esEs31(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_ltEs18(Just(x0), Just(x1), ty_Integer) 21.88/7.89 new_ltEs24(x0, x1, ty_Int) 21.88/7.89 new_esEs11(x0, x1, app(ty_Ratio, x2)) 21.88/7.89 new_primCompAux00(x0, x1, LT, x2) 21.88/7.89 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 21.88/7.89 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 21.88/7.89 new_esEs35(x0, x1, ty_Bool) 21.88/7.89 new_esEs33(x0, x1, app(ty_[], x2)) 21.88/7.89 new_compare110(x0, x1, x2, x3, False, x4, x5) 21.88/7.89 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 21.88/7.89 new_lt21(x0, x1, app(ty_[], x2)) 21.88/7.89 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 21.88/7.89 new_primCmpNat0(Zero, Zero) 21.88/7.89 new_esEs8(x0, x1, ty_@0) 21.88/7.89 21.88/7.89 We have to consider all minimal (P,Q,R)-chains. 21.88/7.89 ---------------------------------------- 21.88/7.89 21.88/7.89 (30) QDPSizeChangeProof (EQUIVALENT) 21.88/7.89 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 21.88/7.89 21.88/7.89 From the DPs we obtained the following set of size-change graphs: 21.88/7.89 *new_compare3(:(vxw300, vxw301), :(vxw4000, vxw4001), ceh) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, ceh) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 3 >= 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_primCompAux(vxw30, vxw400, vxw31, vxw401, cfa) -> new_primCompAux0(vxw31, vxw401, new_compare4(vxw30, vxw400, cfa), app(ty_[], cfa)) 21.88/7.89 The graph contains the following edges 3 >= 1, 4 >= 2 21.88/7.89 21.88/7.89 21.88/7.89 *new_primCompAux(:(vxw300, vxw301), :(vxw4000, vxw4001), vxw31, vxw401, app(ty_[], ceh)) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, ceh) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 5 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_primCompAux0(vxw23, vxw24, EQ, app(ty_[], ca)) -> new_compare3(vxw23, vxw24, ca) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_primCompAux(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), vxw31, vxw401, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare23(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs8(vxw300, vxw4000, bhe), new_asAs(new_esEs9(vxw301, vxw4001, bhf), new_esEs10(vxw302, vxw4002, bhg))), bhe, bhf, bhg) 21.88/7.89 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 5 > 8, 5 > 9, 5 > 10 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bhe, bhf, bhg) -> new_compare23(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs8(vxw300, vxw4000, bhe), new_asAs(new_esEs9(vxw301, vxw4001, bhf), new_esEs10(vxw302, vxw4002, bhg))), bhe, bhf, bhg) 21.88/7.89 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(app(ty_@2, cce), ccf)) -> new_ltEs(vxw61, vxw64, cce, ccf) 21.88/7.89 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(app(ty_@2, ge), gf)) -> new_ltEs(vxw411, vxw421, ge, gf) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs2(Just(vxw410), Just(vxw420), app(app(ty_@2, bgc), bgd)) -> new_ltEs(vxw410, vxw420, bgc, bgd) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(ty_Maybe, cdd)) -> new_ltEs2(vxw61, vxw64, cdd) 21.88/7.89 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(ty_Maybe, hd)) -> new_ltEs2(vxw411, vxw421, hd) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs2(Just(vxw410), Just(vxw420), app(ty_Maybe, bhb)) -> new_ltEs2(vxw410, vxw420, bhb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(app(ty_@2, bfb), bfc)) -> new_ltEs(vxw412, vxw422, bfb, bfc) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(ty_Maybe, bga)) -> new_ltEs2(vxw412, vxw422, bga) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs1(vxw61, vxw64, cda, cdb, cdc) 21.88/7.89 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs1(vxw411, vxw421, ha, hb, hc) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs2(Just(vxw410), Just(vxw420), app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs1(vxw410, vxw420, bgg, bgh, bha) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs1(vxw412, vxw422, bff, bfg, bfh) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(app(ty_Either, ccg), cch)) -> new_ltEs0(vxw61, vxw64, ccg, cch) 21.88/7.89 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(app(ty_Either, gg), gh)) -> new_ltEs0(vxw411, vxw421, gg, gh) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs2(Just(vxw410), Just(vxw420), app(app(ty_Either, bge), bgf)) -> new_ltEs0(vxw410, vxw420, bge, bgf) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs2(Just(vxw410), Just(vxw420), app(ty_[], bhc)) -> new_ltEs3(vxw410, vxw420, bhc) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(app(ty_Either, bfd), bfe)) -> new_ltEs0(vxw412, vxw422, bfd, bfe) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs3(vxw41, vxw42, bhd) -> new_compare3(vxw41, vxw42, bhd) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, cab, app(ty_[], cde)) -> new_ltEs3(vxw61, vxw64, cde) 21.88/7.89 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), gd, app(ty_[], he)) -> new_ltEs3(vxw411, vxw421, he) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, bcg, app(ty_[], bgb)) -> new_ltEs3(vxw412, vxw422, bgb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_lt0(vxw79, vxw81, eb, ec) -> new_compare0(vxw79, vxw81, eb, ec) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(app(ty_Either, fd), ff), fc) -> new_lt0(vxw410, vxw420, fd, ff) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare22(vxw48, vxw49, False, cfb, app(app(ty_@2, cfc), cfd)) -> new_ltEs(vxw48, vxw49, cfc, cfd) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare22(vxw48, vxw49, False, cfb, app(ty_Maybe, cgb)) -> new_ltEs2(vxw48, vxw49, cgb) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare22(vxw48, vxw49, False, cfb, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs1(vxw48, vxw49, cfg, cfh, cga) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare22(vxw48, vxw49, False, cfb, app(app(ty_Either, cfe), cff)) -> new_ltEs0(vxw48, vxw49, cfe, cff) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare22(vxw48, vxw49, False, cfb, app(ty_[], cgc)) -> new_ltEs3(vxw48, vxw49, cgc) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_Either, eb), ec), ea) -> new_compare0(vxw79, vxw81, eb, ec) 21.88/7.89 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_primCompAux(Right(vxw300), Right(vxw4000), vxw31, vxw401, app(app(ty_Either, hf), hg)) -> new_compare22(vxw300, vxw4000, new_esEs7(vxw300, vxw4000, hg), hf, hg) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare0(Right(vxw300), Right(vxw4000), hf, hg) -> new_compare22(vxw300, vxw4000, new_esEs7(vxw300, vxw4000, hg), hf, hg) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare0(Left(vxw300), Left(vxw4000), hf, hg) -> new_compare21(vxw300, vxw4000, new_esEs6(vxw300, vxw4000, hf), hf, hg) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_lt1(vxw79, vxw81, ed, ee, ef) -> new_compare1(vxw79, vxw81, ed, ee, ef) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(app(app(ty_@3, fg), fh), ga), fc) -> new_lt1(vxw410, vxw420, fg, fh, ga) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(app(app(ty_@3, ed), ee), ef), ea) -> new_compare1(vxw79, vxw81, ed, ee, ef) 21.88/7.89 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_lt3(vxw79, vxw81, eh) -> new_compare3(vxw79, vxw81, eh) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(ty_[], gc), fc) -> new_lt3(vxw410, vxw420, gc) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_lt(vxw79, vxw81, dg, dh) -> new_compare(vxw79, vxw81, dg, dh) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(app(ty_@2, fa), fb), fc) -> new_lt(vxw410, vxw420, fa, fb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs(@2(vxw410, vxw411), @2(vxw420, vxw421), app(ty_Maybe, gb), fc) -> new_lt2(vxw410, vxw420, gb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, cc) -> new_compare20(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs4(vxw300, vxw4000, cb), new_esEs5(vxw301, vxw4001, cc)), cb, cc) 21.88/7.89 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(ty_[], eh), ea) -> new_compare3(vxw79, vxw81, eh) 21.88/7.89 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(vxw41, vxw42, False, app(ty_[], bhd), hh) -> new_compare3(vxw41, vxw42, bhd) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(vxw80, vxw82, ce, cf) 21.88/7.89 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(ty_Maybe, de)) -> new_ltEs2(vxw80, vxw82, de) 21.88/7.89 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs1(vxw80, vxw82, db, dc, dd) 21.88/7.89 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(app(ty_Either, cg), da)) -> new_ltEs0(vxw80, vxw82, cg, da) 21.88/7.89 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare20(vxw79, vxw80, vxw81, vxw82, False, cd, app(ty_[], df)) -> new_ltEs3(vxw80, vxw82, df) 21.88/7.89 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_@2, dg), dh), ea) -> new_compare(vxw79, vxw81, dg, dh) 21.88/7.89 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare20(vxw79, vxw80, vxw81, vxw82, False, app(ty_Maybe, eg), ea) -> new_compare2(vxw79, vxw81, eg) 21.88/7.89 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_primCompAux(@2(vxw300, vxw301), @2(vxw4000, vxw4001), vxw31, vxw401, app(app(ty_@2, cb), cc)) -> new_compare20(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs4(vxw300, vxw4000, cb), new_esEs5(vxw301, vxw4001, cc)), cb, cc) 21.88/7.89 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 5 > 6, 5 > 7 21.88/7.89 21.88/7.89 21.88/7.89 *new_lt2(vxw79, vxw81, eg) -> new_compare2(vxw79, vxw81, eg) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare2(Just(vxw300), Just(vxw4000), cdf) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, cdf), cdf) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare24(vxw70, vxw71, False, app(app(ty_@2, cdg), cdh)) -> new_ltEs(vxw70, vxw71, cdg, cdh) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare24(vxw70, vxw71, False, app(ty_Maybe, cef)) -> new_ltEs2(vxw70, vxw71, cef) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare24(vxw70, vxw71, False, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs1(vxw70, vxw71, cec, ced, cee) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare24(vxw70, vxw71, False, app(app(ty_Either, cea), ceb)) -> new_ltEs0(vxw70, vxw71, cea, ceb) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare24(vxw70, vxw71, False, app(ty_[], ceg)) -> new_ltEs3(vxw70, vxw71, ceg) 21.88/7.89 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_primCompAux(Just(vxw300), Just(vxw4000), vxw31, vxw401, app(ty_Maybe, cdf)) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, cdf), cdf) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_primCompAux(Left(vxw300), Left(vxw4000), vxw31, vxw401, app(app(ty_Either, hf), hg)) -> new_compare21(vxw300, vxw4000, new_esEs6(vxw300, vxw4000, hf), hf, hg) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(app(ty_Either, cad), cae), cab, cac) -> new_lt0(vxw59, vxw62, cad, cae) 21.88/7.89 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(app(ty_Either, cbf), cbg), cac) -> new_lt0(vxw60, vxw63, cbf, cbg) 21.88/7.89 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(app(app(ty_@3, caf), cag), cah), cab, cac) -> new_lt1(vxw59, vxw62, caf, cag, cah) 21.88/7.89 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(app(app(ty_@3, cbh), cca), ccb), cac) -> new_lt1(vxw60, vxw63, cbh, cca, ccb) 21.88/7.89 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(ty_[], cbb), cab, cac) -> new_lt3(vxw59, vxw62, cbb) 21.88/7.89 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(ty_[], ccd), cac) -> new_lt3(vxw60, vxw63, ccd) 21.88/7.89 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(app(ty_@2, bhh), caa), cab, cac) -> new_lt(vxw59, vxw62, bhh, caa) 21.88/7.89 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(app(ty_@2, cbd), cbe), cac) -> new_lt(vxw60, vxw63, cbd, cbe) 21.88/7.89 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, cbc, app(ty_Maybe, ccc), cac) -> new_lt2(vxw60, vxw63, ccc) 21.88/7.89 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare23(vxw59, vxw60, vxw61, vxw62, vxw63, vxw64, False, app(ty_Maybe, cba), cab, cac) -> new_lt2(vxw59, vxw62, cba) 21.88/7.89 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs0(Left(vxw410), Left(vxw420), app(app(ty_@2, baa), bab), bac) -> new_ltEs(vxw410, vxw420, baa, bab) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(app(ty_@2, bbd), bbe)) -> new_ltEs(vxw410, vxw420, bbd, bbe) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(app(ty_@2, bgc), bgd)), hh) -> new_ltEs(vxw410, vxw420, bgc, bgd) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(app(ty_@2, ge), gf)), hh) -> new_ltEs(vxw411, vxw421, ge, gf) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(app(ty_@2, baa), bab)), bac), hh) -> new_ltEs(vxw410, vxw420, baa, bab) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(app(ty_@2, bfb), bfc)), hh) -> new_ltEs(vxw412, vxw422, bfb, bfc) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(app(ty_@2, bbd), bbe)), hh) -> new_ltEs(vxw410, vxw420, bbd, bbe) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs0(Left(vxw410), Left(vxw420), app(ty_Maybe, bba), bac) -> new_ltEs2(vxw410, vxw420, bba) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(ty_Maybe, bcc)) -> new_ltEs2(vxw410, vxw420, bcc) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(ty_Maybe, bcc)), hh) -> new_ltEs2(vxw410, vxw420, bcc) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(ty_Maybe, bhb)), hh) -> new_ltEs2(vxw410, vxw420, bhb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(ty_Maybe, bba)), bac), hh) -> new_ltEs2(vxw410, vxw420, bba) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(ty_Maybe, bga)), hh) -> new_ltEs2(vxw412, vxw422, bga) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(ty_Maybe, hd)), hh) -> new_ltEs2(vxw411, vxw421, hd) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(app(ty_Either, bda), bdb), bcg, bch) -> new_lt0(vxw410, vxw420, bda, bdb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(app(ty_Either, bec), bed), bch) -> new_lt0(vxw411, vxw421, bec, bed) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(app(app(ty_@3, bee), bef), beg), bch) -> new_lt1(vxw411, vxw421, bee, bef, beg) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(app(app(ty_@3, bdc), bdd), bde), bcg, bch) -> new_lt1(vxw410, vxw420, bdc, bdd, bde) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(ty_[], bdg), bcg, bch) -> new_lt3(vxw410, vxw420, bdg) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(ty_[], bfa), bch) -> new_lt3(vxw411, vxw421, bfa) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(app(ty_@2, bce), bcf), bcg, bch) -> new_lt(vxw410, vxw420, bce, bcf) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(app(ty_@2, bea), beb), bch) -> new_lt(vxw411, vxw421, bea, beb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), bdh, app(ty_Maybe, beh), bch) -> new_lt2(vxw411, vxw421, beh) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs1(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), app(ty_Maybe, bdf), bcg, bch) -> new_lt2(vxw410, vxw420, bdf) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs1(vxw410, vxw420, bbh, bca, bcb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs0(Left(vxw410), Left(vxw420), app(app(app(ty_@3, baf), bag), bah), bac) -> new_ltEs1(vxw410, vxw420, baf, bag, bah) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(app(ty_Either, bbf), bbg)) -> new_ltEs0(vxw410, vxw420, bbf, bbg) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs0(Left(vxw410), Left(vxw420), app(app(ty_Either, bad), bae), bac) -> new_ltEs0(vxw410, vxw420, bad, bae) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs0(Right(vxw410), Right(vxw420), bbc, app(ty_[], bcd)) -> new_ltEs3(vxw410, vxw420, bcd) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_ltEs0(Left(vxw410), Left(vxw420), app(ty_[], bbb), bac) -> new_ltEs3(vxw410, vxw420, bbb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(app(app(ty_@3, bgg), bgh), bha)), hh) -> new_ltEs1(vxw410, vxw420, bgg, bgh, bha) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(app(app(ty_@3, bbh), bca), bcb)), hh) -> new_ltEs1(vxw410, vxw420, bbh, bca, bcb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(app(app(ty_@3, ha), hb), hc)), hh) -> new_ltEs1(vxw411, vxw421, ha, hb, hc) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(app(app(ty_@3, bff), bfg), bfh)), hh) -> new_ltEs1(vxw412, vxw422, bff, bfg, bfh) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(app(app(ty_@3, baf), bag), bah)), bac), hh) -> new_ltEs1(vxw410, vxw420, baf, bag, bah) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(app(ty_Either, bbf), bbg)), hh) -> new_ltEs0(vxw410, vxw420, bbf, bbg) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(app(ty_Either, gg), gh)), hh) -> new_ltEs0(vxw411, vxw421, gg, gh) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(app(ty_Either, bfd), bfe)), hh) -> new_ltEs0(vxw412, vxw422, bfd, bfe) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(app(ty_Either, bge), bgf)), hh) -> new_ltEs0(vxw410, vxw420, bge, bgf) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(app(ty_Either, bad), bae)), bac), hh) -> new_ltEs0(vxw410, vxw420, bad, bae) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Left(vxw410), Left(vxw420), False, app(app(ty_Either, app(ty_[], bbb)), bac), hh) -> new_ltEs3(vxw410, vxw420, bbb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Right(vxw410), Right(vxw420), False, app(app(ty_Either, bbc), app(ty_[], bcd)), hh) -> new_ltEs3(vxw410, vxw420, bcd) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), bcg), app(ty_[], bgb)), hh) -> new_ltEs3(vxw412, vxw422, bgb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, gd), app(ty_[], he)), hh) -> new_ltEs3(vxw411, vxw421, he) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(Just(vxw410), Just(vxw420), False, app(ty_Maybe, app(ty_[], bhc)), hh) -> new_ltEs3(vxw410, vxw420, bhc) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(app(ty_Either, fd), ff)), fc), hh) -> new_lt0(vxw410, vxw420, fd, ff) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(app(ty_Either, bec), bed)), bch), hh) -> new_lt0(vxw411, vxw421, bec, bed) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(app(ty_Either, bda), bdb)), bcg), bch), hh) -> new_lt0(vxw410, vxw420, bda, bdb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(app(app(ty_@3, bee), bef), beg)), bch), hh) -> new_lt1(vxw411, vxw421, bee, bef, beg) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(app(app(ty_@3, bdc), bdd), bde)), bcg), bch), hh) -> new_lt1(vxw410, vxw420, bdc, bdd, bde) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(app(app(ty_@3, fg), fh), ga)), fc), hh) -> new_lt1(vxw410, vxw420, fg, fh, ga) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(ty_[], bfa)), bch), hh) -> new_lt3(vxw411, vxw421, bfa) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(ty_[], gc)), fc), hh) -> new_lt3(vxw410, vxw420, gc) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(ty_[], bdg)), bcg), bch), hh) -> new_lt3(vxw410, vxw420, bdg) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(app(ty_@2, bea), beb)), bch), hh) -> new_lt(vxw411, vxw421, bea, beb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(app(ty_@2, fa), fb)), fc), hh) -> new_lt(vxw410, vxw420, fa, fb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(app(ty_@2, bce), bcf)), bcg), bch), hh) -> new_lt(vxw410, vxw420, bce, bcf) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, app(ty_Maybe, bdf)), bcg), bch), hh) -> new_lt2(vxw410, vxw420, bdf) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@2(vxw410, vxw411), @2(vxw420, vxw421), False, app(app(ty_@2, app(ty_Maybe, gb)), fc), hh) -> new_lt2(vxw410, vxw420, gb) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 *new_compare21(@3(vxw410, vxw411, vxw412), @3(vxw420, vxw421, vxw422), False, app(app(app(ty_@3, bdh), app(ty_Maybe, beh)), bch), hh) -> new_lt2(vxw411, vxw421, beh) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 21.88/7.89 21.88/7.89 21.88/7.89 ---------------------------------------- 21.88/7.89 21.88/7.89 (31) 21.88/7.89 YES 21.88/7.89 21.88/7.89 ---------------------------------------- 21.88/7.89 21.88/7.89 (32) 21.88/7.89 Obligation: 21.88/7.89 Q DP problem: 21.88/7.89 The TRS P consists of the following rules: 21.88/7.89 21.88/7.89 new_primEqNat(Succ(vxw30000), Succ(vxw400000)) -> new_primEqNat(vxw30000, vxw400000) 21.88/7.89 21.88/7.89 R is empty. 21.88/7.89 Q is empty. 21.88/7.89 We have to consider all minimal (P,Q,R)-chains. 21.88/7.89 ---------------------------------------- 21.88/7.89 21.88/7.89 (33) QDPSizeChangeProof (EQUIVALENT) 21.88/7.89 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 21.88/7.89 21.88/7.89 From the DPs we obtained the following set of size-change graphs: 21.88/7.89 *new_primEqNat(Succ(vxw30000), Succ(vxw400000)) -> new_primEqNat(vxw30000, vxw400000) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2 21.88/7.89 21.88/7.89 21.88/7.89 ---------------------------------------- 21.88/7.89 21.88/7.89 (34) 21.88/7.89 YES 21.88/7.89 21.88/7.89 ---------------------------------------- 21.88/7.89 21.88/7.89 (35) 21.88/7.89 Obligation: 21.88/7.89 Q DP problem: 21.88/7.89 The TRS P consists of the following rules: 21.88/7.89 21.88/7.89 new_primPlusNat(Succ(vxw15900), Succ(vxw301000)) -> new_primPlusNat(vxw15900, vxw301000) 21.88/7.89 21.88/7.89 R is empty. 21.88/7.89 Q is empty. 21.88/7.89 We have to consider all minimal (P,Q,R)-chains. 21.88/7.89 ---------------------------------------- 21.88/7.89 21.88/7.89 (36) QDPSizeChangeProof (EQUIVALENT) 21.88/7.89 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 21.88/7.89 21.88/7.89 From the DPs we obtained the following set of size-change graphs: 21.88/7.89 *new_primPlusNat(Succ(vxw15900), Succ(vxw301000)) -> new_primPlusNat(vxw15900, vxw301000) 21.88/7.89 The graph contains the following edges 1 > 1, 2 > 2 21.88/7.89 21.88/7.89 21.88/7.89 ---------------------------------------- 21.88/7.89 21.88/7.89 (37) 21.88/7.89 YES 21.98/9.37 EOF