25.69/12.72 YES 28.26/13.42 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 28.26/13.42 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 28.26/13.42 28.26/13.42 28.26/13.42 H-Termination with start terms of the given HASKELL could be proven: 28.26/13.42 28.26/13.42 (0) HASKELL 28.26/13.42 (1) CR [EQUIVALENT, 0 ms] 28.26/13.42 (2) HASKELL 28.26/13.42 (3) IFR [EQUIVALENT, 0 ms] 28.26/13.42 (4) HASKELL 28.26/13.42 (5) BR [EQUIVALENT, 4 ms] 28.26/13.42 (6) HASKELL 28.26/13.42 (7) COR [EQUIVALENT, 0 ms] 28.26/13.42 (8) HASKELL 28.26/13.42 (9) LetRed [EQUIVALENT, 3 ms] 28.26/13.42 (10) HASKELL 28.26/13.42 (11) NumRed [SOUND, 0 ms] 28.26/13.42 (12) HASKELL 28.26/13.42 (13) Narrow [SOUND, 0 ms] 28.26/13.42 (14) AND 28.26/13.42 (15) QDP 28.26/13.42 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.26/13.42 (17) YES 28.26/13.42 (18) QDP 28.26/13.42 (19) QDPSizeChangeProof [EQUIVALENT, 154 ms] 28.26/13.42 (20) YES 28.26/13.42 (21) QDP 28.26/13.42 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.26/13.42 (23) YES 28.26/13.42 (24) QDP 28.26/13.42 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.26/13.42 (26) YES 28.26/13.42 (27) QDP 28.26/13.42 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.26/13.42 (29) YES 28.26/13.42 (30) QDP 28.26/13.42 (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.26/13.42 (32) YES 28.26/13.42 (33) QDP 28.26/13.42 (34) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.26/13.42 (35) YES 28.26/13.42 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (0) 28.26/13.42 Obligation: 28.26/13.42 mainModule Main 28.26/13.42 module Maybe where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 module List where { 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 insert :: Ord a => a -> [a] -> [a]; 28.26/13.42 insert e ls = insertBy compare e ls; 28.26/13.42 28.26/13.42 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 28.26/13.42 insertBy _ x [] = x : []; 28.26/13.42 insertBy cmp x ys@(y : ys') = case cmp x y of { 28.26/13.42 GT-> y : insertBy cmp x ys'; 28.26/13.42 _-> x : ys; 28.26/13.42 } ; 28.26/13.42 28.26/13.42 } 28.26/13.42 module Main where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (1) CR (EQUIVALENT) 28.26/13.42 Case Reductions: 28.26/13.42 The following Case expression 28.26/13.42 "case compare x y of { 28.26/13.42 EQ -> o; 28.26/13.42 LT -> LT; 28.26/13.42 GT -> GT} 28.26/13.42 " 28.26/13.42 is transformed to 28.26/13.42 "primCompAux0 o EQ = o; 28.26/13.42 primCompAux0 o LT = LT; 28.26/13.42 primCompAux0 o GT = GT; 28.26/13.42 " 28.26/13.42 The following Case expression 28.26/13.42 "case cmp x y of { 28.26/13.42 GT -> y : insertBy cmp x ys'; 28.26/13.42 _ -> x : ys} 28.26/13.42 " 28.26/13.42 is transformed to 28.26/13.42 "insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 28.26/13.42 insertBy0 y cmp x ys' ys _ = x : ys; 28.26/13.42 " 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (2) 28.26/13.42 Obligation: 28.26/13.42 mainModule Main 28.26/13.42 module Maybe where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 module List where { 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 insert :: Ord a => a -> [a] -> [a]; 28.26/13.42 insert e ls = insertBy compare e ls; 28.26/13.42 28.26/13.42 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 28.26/13.42 insertBy _ x [] = x : []; 28.26/13.42 insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); 28.26/13.42 28.26/13.42 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 28.26/13.42 insertBy0 y cmp x ys' ys _ = x : ys; 28.26/13.42 28.26/13.42 } 28.26/13.42 module Main where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (3) IFR (EQUIVALENT) 28.26/13.42 If Reductions: 28.26/13.42 The following If expression 28.26/13.42 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 28.26/13.42 is transformed to 28.26/13.42 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 28.26/13.42 primDivNatS0 x y False = Zero; 28.26/13.42 " 28.26/13.42 The following If expression 28.26/13.42 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 28.26/13.42 is transformed to 28.26/13.42 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 28.26/13.42 primModNatS0 x y False = Succ x; 28.26/13.42 " 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (4) 28.26/13.42 Obligation: 28.26/13.42 mainModule Main 28.26/13.42 module Maybe where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 module List where { 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 insert :: Ord a => a -> [a] -> [a]; 28.26/13.42 insert e ls = insertBy compare e ls; 28.26/13.42 28.26/13.42 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 28.26/13.42 insertBy _ x [] = x : []; 28.26/13.42 insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); 28.26/13.42 28.26/13.42 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 28.26/13.42 insertBy0 y cmp x ys' ys _ = x : ys; 28.26/13.42 28.26/13.42 } 28.26/13.42 module Main where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (5) BR (EQUIVALENT) 28.26/13.42 Replaced joker patterns by fresh variables and removed binding patterns. 28.26/13.42 28.26/13.42 Binding Reductions: 28.26/13.42 The bind variable of the following binding Pattern 28.26/13.42 "ys@(vuu : vuv)" 28.26/13.42 is replaced by the following term 28.26/13.42 "vuu : vuv" 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (6) 28.26/13.42 Obligation: 28.26/13.42 mainModule Main 28.26/13.42 module Maybe where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 module List where { 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 insert :: Ord a => a -> [a] -> [a]; 28.26/13.42 insert e ls = insertBy compare e ls; 28.26/13.42 28.26/13.42 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 28.26/13.42 insertBy zz x [] = x : []; 28.26/13.42 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 28.26/13.42 28.26/13.42 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 28.26/13.42 insertBy0 y cmp x ys' ys zy = x : ys; 28.26/13.42 28.26/13.42 } 28.26/13.42 module Main where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (7) COR (EQUIVALENT) 28.26/13.42 Cond Reductions: 28.26/13.42 The following Function with conditions 28.26/13.42 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 28.26/13.42 " 28.26/13.42 is transformed to 28.26/13.42 "compare x y = compare3 x y; 28.26/13.42 " 28.26/13.42 "compare0 x y True = GT; 28.26/13.42 " 28.26/13.42 "compare1 x y True = LT; 28.26/13.42 compare1 x y False = compare0 x y otherwise; 28.26/13.42 " 28.26/13.42 "compare2 x y True = EQ; 28.26/13.42 compare2 x y False = compare1 x y (x <= y); 28.26/13.42 " 28.26/13.42 "compare3 x y = compare2 x y (x == y); 28.26/13.42 " 28.26/13.42 The following Function with conditions 28.26/13.42 "absReal x|x >= 0x|otherwise`negate` x; 28.26/13.42 " 28.26/13.42 is transformed to 28.26/13.42 "absReal x = absReal2 x; 28.26/13.42 " 28.26/13.42 "absReal1 x True = x; 28.26/13.42 absReal1 x False = absReal0 x otherwise; 28.26/13.42 " 28.26/13.42 "absReal0 x True = `negate` x; 28.26/13.42 " 28.26/13.42 "absReal2 x = absReal1 x (x >= 0); 28.26/13.42 " 28.26/13.42 The following Function with conditions 28.26/13.42 "gcd' x 0 = x; 28.26/13.42 gcd' x y = gcd' y (x `rem` y); 28.26/13.42 " 28.26/13.42 is transformed to 28.26/13.42 "gcd' x vuw = gcd'2 x vuw; 28.26/13.42 gcd' x y = gcd'0 x y; 28.26/13.42 " 28.26/13.42 "gcd'0 x y = gcd' y (x `rem` y); 28.26/13.42 " 28.26/13.42 "gcd'1 True x vuw = x; 28.26/13.42 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 28.26/13.42 " 28.26/13.42 "gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 28.26/13.42 gcd'2 vvu vvv = gcd'0 vvu vvv; 28.26/13.42 " 28.26/13.42 The following Function with conditions 28.26/13.42 "gcd 0 0 = error []; 28.26/13.42 gcd x y = gcd' (abs x) (abs y) where { 28.26/13.42 gcd' x 0 = x; 28.26/13.42 gcd' x y = gcd' y (x `rem` y); 28.26/13.42 } 28.26/13.42 ; 28.26/13.42 " 28.26/13.42 is transformed to 28.26/13.42 "gcd vvw vvx = gcd3 vvw vvx; 28.26/13.42 gcd x y = gcd0 x y; 28.26/13.42 " 28.26/13.42 "gcd0 x y = gcd' (abs x) (abs y) where { 28.26/13.42 gcd' x vuw = gcd'2 x vuw; 28.26/13.42 gcd' x y = gcd'0 x y; 28.26/13.42 ; 28.26/13.42 gcd'0 x y = gcd' y (x `rem` y); 28.26/13.42 ; 28.26/13.42 gcd'1 True x vuw = x; 28.26/13.42 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 28.26/13.42 ; 28.26/13.42 gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 28.26/13.42 gcd'2 vvu vvv = gcd'0 vvu vvv; 28.26/13.42 } 28.26/13.42 ; 28.26/13.42 " 28.26/13.42 "gcd1 True vvw vvx = error []; 28.26/13.42 gcd1 vvy vvz vwu = gcd0 vvz vwu; 28.26/13.42 " 28.26/13.42 "gcd2 True vvw vvx = gcd1 (vvx == 0) vvw vvx; 28.26/13.42 gcd2 vwv vww vwx = gcd0 vww vwx; 28.26/13.42 " 28.26/13.42 "gcd3 vvw vvx = gcd2 (vvw == 0) vvw vvx; 28.26/13.42 gcd3 vwy vwz = gcd0 vwy vwz; 28.26/13.42 " 28.26/13.42 The following Function with conditions 28.26/13.42 "undefined |Falseundefined; 28.26/13.42 " 28.26/13.42 is transformed to 28.26/13.42 "undefined = undefined1; 28.26/13.42 " 28.26/13.42 "undefined0 True = undefined; 28.26/13.42 " 28.26/13.42 "undefined1 = undefined0 False; 28.26/13.42 " 28.26/13.42 The following Function with conditions 28.26/13.42 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 28.26/13.42 d = gcd x y; 28.26/13.42 } 28.26/13.42 ; 28.26/13.42 " 28.26/13.42 is transformed to 28.26/13.42 "reduce x y = reduce2 x y; 28.26/13.42 " 28.26/13.42 "reduce2 x y = reduce1 x y (y == 0) where { 28.26/13.42 d = gcd x y; 28.26/13.42 ; 28.26/13.42 reduce0 x y True = x `quot` d :% (y `quot` d); 28.26/13.42 ; 28.26/13.42 reduce1 x y True = error []; 28.26/13.42 reduce1 x y False = reduce0 x y otherwise; 28.26/13.42 } 28.26/13.42 ; 28.26/13.42 " 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (8) 28.26/13.42 Obligation: 28.26/13.42 mainModule Main 28.26/13.42 module Maybe where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 module List where { 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 insert :: Ord a => a -> [a] -> [a]; 28.26/13.42 insert e ls = insertBy compare e ls; 28.26/13.42 28.26/13.42 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 28.26/13.42 insertBy zz x [] = x : []; 28.26/13.42 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 28.26/13.42 28.26/13.42 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 28.26/13.42 insertBy0 y cmp x ys' ys zy = x : ys; 28.26/13.42 28.26/13.42 } 28.26/13.42 module Main where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (9) LetRed (EQUIVALENT) 28.26/13.42 Let/Where Reductions: 28.26/13.42 The bindings of the following Let/Where expression 28.26/13.42 "gcd' (abs x) (abs y) where { 28.26/13.42 gcd' x vuw = gcd'2 x vuw; 28.26/13.42 gcd' x y = gcd'0 x y; 28.26/13.42 ; 28.26/13.42 gcd'0 x y = gcd' y (x `rem` y); 28.26/13.42 ; 28.26/13.42 gcd'1 True x vuw = x; 28.26/13.42 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 28.26/13.42 ; 28.26/13.42 gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 28.26/13.42 gcd'2 vvu vvv = gcd'0 vvu vvv; 28.26/13.42 } 28.26/13.42 " 28.26/13.42 are unpacked to the following functions on top level 28.26/13.42 "gcd0Gcd'1 True x vuw = x; 28.26/13.42 gcd0Gcd'1 vux vuy vuz = gcd0Gcd'0 vuy vuz; 28.26/13.42 " 28.26/13.42 "gcd0Gcd' x vuw = gcd0Gcd'2 x vuw; 28.26/13.42 gcd0Gcd' x y = gcd0Gcd'0 x y; 28.26/13.42 " 28.26/13.42 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 28.26/13.42 " 28.26/13.42 "gcd0Gcd'2 x vuw = gcd0Gcd'1 (vuw == 0) x vuw; 28.26/13.42 gcd0Gcd'2 vvu vvv = gcd0Gcd'0 vvu vvv; 28.26/13.42 " 28.26/13.42 The bindings of the following Let/Where expression 28.26/13.42 "reduce1 x y (y == 0) where { 28.26/13.42 d = gcd x y; 28.26/13.42 ; 28.26/13.42 reduce0 x y True = x `quot` d :% (y `quot` d); 28.26/13.42 ; 28.26/13.42 reduce1 x y True = error []; 28.26/13.42 reduce1 x y False = reduce0 x y otherwise; 28.26/13.42 } 28.26/13.42 " 28.26/13.42 are unpacked to the following functions on top level 28.26/13.42 "reduce2D vxu vxv = gcd vxu vxv; 28.26/13.42 " 28.26/13.42 "reduce2Reduce1 vxu vxv x y True = error []; 28.26/13.42 reduce2Reduce1 vxu vxv x y False = reduce2Reduce0 vxu vxv x y otherwise; 28.26/13.42 " 28.26/13.42 "reduce2Reduce0 vxu vxv x y True = x `quot` reduce2D vxu vxv :% (y `quot` reduce2D vxu vxv); 28.26/13.42 " 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (10) 28.26/13.42 Obligation: 28.26/13.42 mainModule Main 28.26/13.42 module Maybe where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 module List where { 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 insert :: Ord a => a -> [a] -> [a]; 28.26/13.42 insert e ls = insertBy compare e ls; 28.26/13.42 28.26/13.42 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 28.26/13.42 insertBy zz x [] = x : []; 28.26/13.42 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 28.26/13.42 28.26/13.42 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 28.26/13.42 insertBy0 y cmp x ys' ys zy = x : ys; 28.26/13.42 28.26/13.42 } 28.26/13.42 module Main where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (11) NumRed (SOUND) 28.26/13.42 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (12) 28.26/13.42 Obligation: 28.26/13.42 mainModule Main 28.26/13.42 module Maybe where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 module List where { 28.26/13.42 import qualified Main; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 insert :: Ord a => a -> [a] -> [a]; 28.26/13.42 insert e ls = insertBy compare e ls; 28.26/13.42 28.26/13.42 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 28.26/13.42 insertBy zz x [] = x : []; 28.26/13.42 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 28.26/13.42 28.26/13.42 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 28.26/13.42 insertBy0 y cmp x ys' ys zy = x : ys; 28.26/13.42 28.26/13.42 } 28.26/13.42 module Main where { 28.26/13.42 import qualified List; 28.26/13.42 import qualified Maybe; 28.26/13.42 import qualified Prelude; 28.26/13.42 } 28.26/13.42 28.26/13.42 ---------------------------------------- 28.26/13.42 28.26/13.42 (13) Narrow (SOUND) 28.26/13.42 Haskell To QDPs 28.26/13.42 28.26/13.42 digraph dp_graph { 28.26/13.42 node [outthreshold=100, inthreshold=100];1[label="List.insert",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 28.26/13.42 3[label="List.insert vxw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 28.26/13.42 4[label="List.insert vxw3 vxw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 28.26/13.42 5[label="List.insertBy compare vxw3 vxw4",fontsize=16,color="burlywood",shape="triangle"];2682[label="vxw4/vxw40 : vxw41",fontsize=10,color="white",style="solid",shape="box"];5 -> 2682[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2682 -> 6[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2683[label="vxw4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 2683[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2683 -> 7[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 6[label="List.insertBy compare vxw3 (vxw40 : vxw41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 28.26/13.42 7[label="List.insertBy compare vxw3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 28.26/13.42 8 -> 10[label="",style="dashed", color="red", weight=0]; 28.26/13.42 8[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare vxw3 vxw40)",fontsize=16,color="magenta"];8 -> 11[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 8 -> 12[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 8 -> 13[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 8 -> 14[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 9[label="vxw3 : []",fontsize=16,color="green",shape="box"];11[label="vxw40",fontsize=16,color="green",shape="box"];12[label="vxw3",fontsize=16,color="green",shape="box"];13[label="vxw41",fontsize=16,color="green",shape="box"];14[label="compare vxw3 vxw40",fontsize=16,color="blue",shape="box"];2684[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2684[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2684 -> 15[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2685[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2685[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2685 -> 16[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2686[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2686[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2686 -> 17[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2687[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2687[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2687 -> 18[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2688[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2688[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2688 -> 19[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2689[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2689[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2689 -> 20[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2690[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2690[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2690 -> 21[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2691[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2691[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2691 -> 22[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2692[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2692[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2692 -> 23[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2693[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2693[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2693 -> 24[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2694[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2694[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2694 -> 25[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2695[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2695[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2695 -> 26[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2696[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2696[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2696 -> 27[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2697[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2697[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2697 -> 28[label="",style="solid", color="blue", weight=3]; 28.26/13.42 10[label="List.insertBy0 vxw10 compare vxw11 vxw12 (vxw10 : vxw12) vxw13",fontsize=16,color="burlywood",shape="triangle"];2698[label="vxw13/LT",fontsize=10,color="white",style="solid",shape="box"];10 -> 2698[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2698 -> 29[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2699[label="vxw13/EQ",fontsize=10,color="white",style="solid",shape="box"];10 -> 2699[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2699 -> 30[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2700[label="vxw13/GT",fontsize=10,color="white",style="solid",shape="box"];10 -> 2700[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2700 -> 31[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 15[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];15 -> 32[label="",style="solid", color="black", weight=3]; 28.26/13.42 16[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];16 -> 33[label="",style="solid", color="black", weight=3]; 28.26/13.42 17[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];17 -> 34[label="",style="solid", color="black", weight=3]; 28.26/13.42 18[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];18 -> 35[label="",style="solid", color="black", weight=3]; 28.26/13.42 19[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];19 -> 36[label="",style="solid", color="black", weight=3]; 28.26/13.42 20[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];20 -> 37[label="",style="solid", color="black", weight=3]; 28.26/13.42 21[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];21 -> 38[label="",style="solid", color="black", weight=3]; 28.26/13.42 22[label="compare vxw3 vxw40",fontsize=16,color="burlywood",shape="triangle"];2701[label="vxw3/vxw30 :% vxw31",fontsize=10,color="white",style="solid",shape="box"];22 -> 2701[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2701 -> 39[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 23[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];23 -> 40[label="",style="solid", color="black", weight=3]; 28.26/13.42 24[label="compare vxw3 vxw40",fontsize=16,color="burlywood",shape="triangle"];2702[label="vxw3/Integer vxw30",fontsize=10,color="white",style="solid",shape="box"];24 -> 2702[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2702 -> 41[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 25[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];25 -> 42[label="",style="solid", color="black", weight=3]; 28.26/13.42 26[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];26 -> 43[label="",style="solid", color="black", weight=3]; 28.26/13.42 27[label="compare vxw3 vxw40",fontsize=16,color="burlywood",shape="triangle"];2703[label="vxw3/()",fontsize=10,color="white",style="solid",shape="box"];27 -> 2703[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2703 -> 44[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 28[label="compare vxw3 vxw40",fontsize=16,color="burlywood",shape="triangle"];2704[label="vxw3/vxw30 : vxw31",fontsize=10,color="white",style="solid",shape="box"];28 -> 2704[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2704 -> 45[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2705[label="vxw3/[]",fontsize=10,color="white",style="solid",shape="box"];28 -> 2705[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2705 -> 46[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 29[label="List.insertBy0 vxw10 compare vxw11 vxw12 (vxw10 : vxw12) LT",fontsize=16,color="black",shape="box"];29 -> 47[label="",style="solid", color="black", weight=3]; 28.26/13.42 30[label="List.insertBy0 vxw10 compare vxw11 vxw12 (vxw10 : vxw12) EQ",fontsize=16,color="black",shape="box"];30 -> 48[label="",style="solid", color="black", weight=3]; 28.26/13.42 31[label="List.insertBy0 vxw10 compare vxw11 vxw12 (vxw10 : vxw12) GT",fontsize=16,color="black",shape="box"];31 -> 49[label="",style="solid", color="black", weight=3]; 28.26/13.42 32[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];32 -> 50[label="",style="solid", color="black", weight=3]; 28.26/13.42 33[label="primCmpInt vxw3 vxw40",fontsize=16,color="burlywood",shape="triangle"];2706[label="vxw3/Pos vxw30",fontsize=10,color="white",style="solid",shape="box"];33 -> 2706[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2706 -> 51[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2707[label="vxw3/Neg vxw30",fontsize=10,color="white",style="solid",shape="box"];33 -> 2707[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2707 -> 52[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 34[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];34 -> 53[label="",style="solid", color="black", weight=3]; 28.26/13.42 35[label="primCmpDouble vxw3 vxw40",fontsize=16,color="burlywood",shape="box"];2708[label="vxw3/Double vxw30 vxw31",fontsize=10,color="white",style="solid",shape="box"];35 -> 2708[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2708 -> 54[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 36[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];36 -> 55[label="",style="solid", color="black", weight=3]; 28.26/13.42 37[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];37 -> 56[label="",style="solid", color="black", weight=3]; 28.26/13.42 38[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];38 -> 57[label="",style="solid", color="black", weight=3]; 28.26/13.42 39[label="compare (vxw30 :% vxw31) vxw40",fontsize=16,color="burlywood",shape="box"];2709[label="vxw40/vxw400 :% vxw401",fontsize=10,color="white",style="solid",shape="box"];39 -> 2709[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2709 -> 58[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 40[label="primCmpFloat vxw3 vxw40",fontsize=16,color="burlywood",shape="box"];2710[label="vxw3/Float vxw30 vxw31",fontsize=10,color="white",style="solid",shape="box"];40 -> 2710[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2710 -> 59[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 41[label="compare (Integer vxw30) vxw40",fontsize=16,color="burlywood",shape="box"];2711[label="vxw40/Integer vxw400",fontsize=10,color="white",style="solid",shape="box"];41 -> 2711[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2711 -> 60[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 42[label="primCmpChar vxw3 vxw40",fontsize=16,color="burlywood",shape="box"];2712[label="vxw3/Char vxw30",fontsize=10,color="white",style="solid",shape="box"];42 -> 2712[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2712 -> 61[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 43[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];43 -> 62[label="",style="solid", color="black", weight=3]; 28.26/13.42 44[label="compare () vxw40",fontsize=16,color="burlywood",shape="box"];2713[label="vxw40/()",fontsize=10,color="white",style="solid",shape="box"];44 -> 2713[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2713 -> 63[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 45[label="compare (vxw30 : vxw31) vxw40",fontsize=16,color="burlywood",shape="box"];2714[label="vxw40/vxw400 : vxw401",fontsize=10,color="white",style="solid",shape="box"];45 -> 2714[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2714 -> 64[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2715[label="vxw40/[]",fontsize=10,color="white",style="solid",shape="box"];45 -> 2715[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2715 -> 65[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 46[label="compare [] vxw40",fontsize=16,color="burlywood",shape="box"];2716[label="vxw40/vxw400 : vxw401",fontsize=10,color="white",style="solid",shape="box"];46 -> 2716[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2716 -> 66[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2717[label="vxw40/[]",fontsize=10,color="white",style="solid",shape="box"];46 -> 2717[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2717 -> 67[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 47[label="vxw11 : vxw10 : vxw12",fontsize=16,color="green",shape="box"];48[label="vxw11 : vxw10 : vxw12",fontsize=16,color="green",shape="box"];49[label="vxw10 : List.insertBy compare vxw11 vxw12",fontsize=16,color="green",shape="box"];49 -> 68[label="",style="dashed", color="green", weight=3]; 28.26/13.42 50[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2718[label="vxw3/False",fontsize=10,color="white",style="solid",shape="box"];50 -> 2718[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2718 -> 69[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2719[label="vxw3/True",fontsize=10,color="white",style="solid",shape="box"];50 -> 2719[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2719 -> 70[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 51[label="primCmpInt (Pos vxw30) vxw40",fontsize=16,color="burlywood",shape="box"];2720[label="vxw30/Succ vxw300",fontsize=10,color="white",style="solid",shape="box"];51 -> 2720[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2720 -> 71[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2721[label="vxw30/Zero",fontsize=10,color="white",style="solid",shape="box"];51 -> 2721[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2721 -> 72[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 52[label="primCmpInt (Neg vxw30) vxw40",fontsize=16,color="burlywood",shape="box"];2722[label="vxw30/Succ vxw300",fontsize=10,color="white",style="solid",shape="box"];52 -> 2722[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2722 -> 73[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2723[label="vxw30/Zero",fontsize=10,color="white",style="solid",shape="box"];52 -> 2723[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2723 -> 74[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 53[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2724[label="vxw3/LT",fontsize=10,color="white",style="solid",shape="box"];53 -> 2724[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2724 -> 75[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2725[label="vxw3/EQ",fontsize=10,color="white",style="solid",shape="box"];53 -> 2725[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2725 -> 76[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2726[label="vxw3/GT",fontsize=10,color="white",style="solid",shape="box"];53 -> 2726[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2726 -> 77[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 54[label="primCmpDouble (Double vxw30 vxw31) vxw40",fontsize=16,color="burlywood",shape="box"];2727[label="vxw31/Pos vxw310",fontsize=10,color="white",style="solid",shape="box"];54 -> 2727[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2727 -> 78[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2728[label="vxw31/Neg vxw310",fontsize=10,color="white",style="solid",shape="box"];54 -> 2728[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2728 -> 79[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 55[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2729[label="vxw3/(vxw30,vxw31)",fontsize=10,color="white",style="solid",shape="box"];55 -> 2729[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2729 -> 80[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 56[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2730[label="vxw3/Left vxw30",fontsize=10,color="white",style="solid",shape="box"];56 -> 2730[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2730 -> 81[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2731[label="vxw3/Right vxw30",fontsize=10,color="white",style="solid",shape="box"];56 -> 2731[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2731 -> 82[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 57[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2732[label="vxw3/(vxw30,vxw31,vxw32)",fontsize=10,color="white",style="solid",shape="box"];57 -> 2732[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2732 -> 83[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 58[label="compare (vxw30 :% vxw31) (vxw400 :% vxw401)",fontsize=16,color="black",shape="box"];58 -> 84[label="",style="solid", color="black", weight=3]; 28.26/13.42 59[label="primCmpFloat (Float vxw30 vxw31) vxw40",fontsize=16,color="burlywood",shape="box"];2733[label="vxw31/Pos vxw310",fontsize=10,color="white",style="solid",shape="box"];59 -> 2733[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2733 -> 85[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2734[label="vxw31/Neg vxw310",fontsize=10,color="white",style="solid",shape="box"];59 -> 2734[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2734 -> 86[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 60[label="compare (Integer vxw30) (Integer vxw400)",fontsize=16,color="black",shape="box"];60 -> 87[label="",style="solid", color="black", weight=3]; 28.26/13.42 61[label="primCmpChar (Char vxw30) vxw40",fontsize=16,color="burlywood",shape="box"];2735[label="vxw40/Char vxw400",fontsize=10,color="white",style="solid",shape="box"];61 -> 2735[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2735 -> 88[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 62[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2736[label="vxw3/Nothing",fontsize=10,color="white",style="solid",shape="box"];62 -> 2736[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2736 -> 89[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2737[label="vxw3/Just vxw30",fontsize=10,color="white",style="solid",shape="box"];62 -> 2737[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2737 -> 90[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 63[label="compare () ()",fontsize=16,color="black",shape="box"];63 -> 91[label="",style="solid", color="black", weight=3]; 28.26/13.42 64[label="compare (vxw30 : vxw31) (vxw400 : vxw401)",fontsize=16,color="black",shape="box"];64 -> 92[label="",style="solid", color="black", weight=3]; 28.26/13.42 65[label="compare (vxw30 : vxw31) []",fontsize=16,color="black",shape="box"];65 -> 93[label="",style="solid", color="black", weight=3]; 28.26/13.42 66[label="compare [] (vxw400 : vxw401)",fontsize=16,color="black",shape="box"];66 -> 94[label="",style="solid", color="black", weight=3]; 28.26/13.42 67[label="compare [] []",fontsize=16,color="black",shape="box"];67 -> 95[label="",style="solid", color="black", weight=3]; 28.26/13.42 68 -> 5[label="",style="dashed", color="red", weight=0]; 28.26/13.42 68[label="List.insertBy compare vxw11 vxw12",fontsize=16,color="magenta"];68 -> 96[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 68 -> 97[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 69[label="compare2 False vxw40 (False == vxw40)",fontsize=16,color="burlywood",shape="box"];2738[label="vxw40/False",fontsize=10,color="white",style="solid",shape="box"];69 -> 2738[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2738 -> 98[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2739[label="vxw40/True",fontsize=10,color="white",style="solid",shape="box"];69 -> 2739[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2739 -> 99[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 70[label="compare2 True vxw40 (True == vxw40)",fontsize=16,color="burlywood",shape="box"];2740[label="vxw40/False",fontsize=10,color="white",style="solid",shape="box"];70 -> 2740[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2740 -> 100[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2741[label="vxw40/True",fontsize=10,color="white",style="solid",shape="box"];70 -> 2741[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2741 -> 101[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 71[label="primCmpInt (Pos (Succ vxw300)) vxw40",fontsize=16,color="burlywood",shape="box"];2742[label="vxw40/Pos vxw400",fontsize=10,color="white",style="solid",shape="box"];71 -> 2742[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2742 -> 102[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2743[label="vxw40/Neg vxw400",fontsize=10,color="white",style="solid",shape="box"];71 -> 2743[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2743 -> 103[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 72[label="primCmpInt (Pos Zero) vxw40",fontsize=16,color="burlywood",shape="box"];2744[label="vxw40/Pos vxw400",fontsize=10,color="white",style="solid",shape="box"];72 -> 2744[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2744 -> 104[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2745[label="vxw40/Neg vxw400",fontsize=10,color="white",style="solid",shape="box"];72 -> 2745[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2745 -> 105[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 73[label="primCmpInt (Neg (Succ vxw300)) vxw40",fontsize=16,color="burlywood",shape="box"];2746[label="vxw40/Pos vxw400",fontsize=10,color="white",style="solid",shape="box"];73 -> 2746[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2746 -> 106[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2747[label="vxw40/Neg vxw400",fontsize=10,color="white",style="solid",shape="box"];73 -> 2747[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2747 -> 107[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 74[label="primCmpInt (Neg Zero) vxw40",fontsize=16,color="burlywood",shape="box"];2748[label="vxw40/Pos vxw400",fontsize=10,color="white",style="solid",shape="box"];74 -> 2748[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2748 -> 108[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2749[label="vxw40/Neg vxw400",fontsize=10,color="white",style="solid",shape="box"];74 -> 2749[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2749 -> 109[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 75[label="compare2 LT vxw40 (LT == vxw40)",fontsize=16,color="burlywood",shape="box"];2750[label="vxw40/LT",fontsize=10,color="white",style="solid",shape="box"];75 -> 2750[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2750 -> 110[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2751[label="vxw40/EQ",fontsize=10,color="white",style="solid",shape="box"];75 -> 2751[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2751 -> 111[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2752[label="vxw40/GT",fontsize=10,color="white",style="solid",shape="box"];75 -> 2752[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2752 -> 112[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 76[label="compare2 EQ vxw40 (EQ == vxw40)",fontsize=16,color="burlywood",shape="box"];2753[label="vxw40/LT",fontsize=10,color="white",style="solid",shape="box"];76 -> 2753[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2753 -> 113[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2754[label="vxw40/EQ",fontsize=10,color="white",style="solid",shape="box"];76 -> 2754[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2754 -> 114[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2755[label="vxw40/GT",fontsize=10,color="white",style="solid",shape="box"];76 -> 2755[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2755 -> 115[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 77[label="compare2 GT vxw40 (GT == vxw40)",fontsize=16,color="burlywood",shape="box"];2756[label="vxw40/LT",fontsize=10,color="white",style="solid",shape="box"];77 -> 2756[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2756 -> 116[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2757[label="vxw40/EQ",fontsize=10,color="white",style="solid",shape="box"];77 -> 2757[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2757 -> 117[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2758[label="vxw40/GT",fontsize=10,color="white",style="solid",shape="box"];77 -> 2758[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2758 -> 118[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 78[label="primCmpDouble (Double vxw30 (Pos vxw310)) vxw40",fontsize=16,color="burlywood",shape="box"];2759[label="vxw40/Double vxw400 vxw401",fontsize=10,color="white",style="solid",shape="box"];78 -> 2759[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2759 -> 119[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 79[label="primCmpDouble (Double vxw30 (Neg vxw310)) vxw40",fontsize=16,color="burlywood",shape="box"];2760[label="vxw40/Double vxw400 vxw401",fontsize=10,color="white",style="solid",shape="box"];79 -> 2760[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2760 -> 120[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 80[label="compare2 (vxw30,vxw31) vxw40 ((vxw30,vxw31) == vxw40)",fontsize=16,color="burlywood",shape="box"];2761[label="vxw40/(vxw400,vxw401)",fontsize=10,color="white",style="solid",shape="box"];80 -> 2761[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2761 -> 121[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 81[label="compare2 (Left vxw30) vxw40 (Left vxw30 == vxw40)",fontsize=16,color="burlywood",shape="box"];2762[label="vxw40/Left vxw400",fontsize=10,color="white",style="solid",shape="box"];81 -> 2762[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2762 -> 122[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2763[label="vxw40/Right vxw400",fontsize=10,color="white",style="solid",shape="box"];81 -> 2763[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2763 -> 123[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 82[label="compare2 (Right vxw30) vxw40 (Right vxw30 == vxw40)",fontsize=16,color="burlywood",shape="box"];2764[label="vxw40/Left vxw400",fontsize=10,color="white",style="solid",shape="box"];82 -> 2764[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2764 -> 124[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2765[label="vxw40/Right vxw400",fontsize=10,color="white",style="solid",shape="box"];82 -> 2765[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2765 -> 125[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 83[label="compare2 (vxw30,vxw31,vxw32) vxw40 ((vxw30,vxw31,vxw32) == vxw40)",fontsize=16,color="burlywood",shape="box"];2766[label="vxw40/(vxw400,vxw401,vxw402)",fontsize=10,color="white",style="solid",shape="box"];83 -> 2766[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2766 -> 126[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 84[label="compare (vxw30 * vxw401) (vxw400 * vxw31)",fontsize=16,color="blue",shape="box"];2767[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];84 -> 2767[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2767 -> 127[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2768[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];84 -> 2768[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2768 -> 128[label="",style="solid", color="blue", weight=3]; 28.26/13.42 85[label="primCmpFloat (Float vxw30 (Pos vxw310)) vxw40",fontsize=16,color="burlywood",shape="box"];2769[label="vxw40/Float vxw400 vxw401",fontsize=10,color="white",style="solid",shape="box"];85 -> 2769[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2769 -> 129[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 86[label="primCmpFloat (Float vxw30 (Neg vxw310)) vxw40",fontsize=16,color="burlywood",shape="box"];2770[label="vxw40/Float vxw400 vxw401",fontsize=10,color="white",style="solid",shape="box"];86 -> 2770[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2770 -> 130[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 87 -> 33[label="",style="dashed", color="red", weight=0]; 28.26/13.42 87[label="primCmpInt vxw30 vxw400",fontsize=16,color="magenta"];87 -> 131[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 87 -> 132[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 88[label="primCmpChar (Char vxw30) (Char vxw400)",fontsize=16,color="black",shape="box"];88 -> 133[label="",style="solid", color="black", weight=3]; 28.26/13.42 89[label="compare2 Nothing vxw40 (Nothing == vxw40)",fontsize=16,color="burlywood",shape="box"];2771[label="vxw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];89 -> 2771[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2771 -> 134[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2772[label="vxw40/Just vxw400",fontsize=10,color="white",style="solid",shape="box"];89 -> 2772[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2772 -> 135[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 90[label="compare2 (Just vxw30) vxw40 (Just vxw30 == vxw40)",fontsize=16,color="burlywood",shape="box"];2773[label="vxw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];90 -> 2773[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2773 -> 136[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2774[label="vxw40/Just vxw400",fontsize=10,color="white",style="solid",shape="box"];90 -> 2774[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2774 -> 137[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 91[label="EQ",fontsize=16,color="green",shape="box"];92 -> 138[label="",style="dashed", color="red", weight=0]; 28.26/13.42 92[label="primCompAux vxw30 vxw400 (compare vxw31 vxw401)",fontsize=16,color="magenta"];92 -> 139[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 93[label="GT",fontsize=16,color="green",shape="box"];94[label="LT",fontsize=16,color="green",shape="box"];95[label="EQ",fontsize=16,color="green",shape="box"];96[label="vxw11",fontsize=16,color="green",shape="box"];97[label="vxw12",fontsize=16,color="green",shape="box"];98[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];98 -> 140[label="",style="solid", color="black", weight=3]; 28.26/13.42 99[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];99 -> 141[label="",style="solid", color="black", weight=3]; 28.26/13.42 100[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];100 -> 142[label="",style="solid", color="black", weight=3]; 28.26/13.42 101[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];101 -> 143[label="",style="solid", color="black", weight=3]; 28.26/13.42 102[label="primCmpInt (Pos (Succ vxw300)) (Pos vxw400)",fontsize=16,color="black",shape="box"];102 -> 144[label="",style="solid", color="black", weight=3]; 28.26/13.42 103[label="primCmpInt (Pos (Succ vxw300)) (Neg vxw400)",fontsize=16,color="black",shape="box"];103 -> 145[label="",style="solid", color="black", weight=3]; 28.26/13.42 104[label="primCmpInt (Pos Zero) (Pos vxw400)",fontsize=16,color="burlywood",shape="box"];2775[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];104 -> 2775[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2775 -> 146[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2776[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];104 -> 2776[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2776 -> 147[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 105[label="primCmpInt (Pos Zero) (Neg vxw400)",fontsize=16,color="burlywood",shape="box"];2777[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];105 -> 2777[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2777 -> 148[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2778[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];105 -> 2778[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2778 -> 149[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 106[label="primCmpInt (Neg (Succ vxw300)) (Pos vxw400)",fontsize=16,color="black",shape="box"];106 -> 150[label="",style="solid", color="black", weight=3]; 28.26/13.42 107[label="primCmpInt (Neg (Succ vxw300)) (Neg vxw400)",fontsize=16,color="black",shape="box"];107 -> 151[label="",style="solid", color="black", weight=3]; 28.26/13.42 108[label="primCmpInt (Neg Zero) (Pos vxw400)",fontsize=16,color="burlywood",shape="box"];2779[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];108 -> 2779[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2779 -> 152[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2780[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];108 -> 2780[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2780 -> 153[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 109[label="primCmpInt (Neg Zero) (Neg vxw400)",fontsize=16,color="burlywood",shape="box"];2781[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];109 -> 2781[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2781 -> 154[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2782[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];109 -> 2782[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2782 -> 155[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 110[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];110 -> 156[label="",style="solid", color="black", weight=3]; 28.26/13.42 111[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];111 -> 157[label="",style="solid", color="black", weight=3]; 28.26/13.42 112[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];112 -> 158[label="",style="solid", color="black", weight=3]; 28.26/13.42 113[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];113 -> 159[label="",style="solid", color="black", weight=3]; 28.26/13.42 114[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];114 -> 160[label="",style="solid", color="black", weight=3]; 28.26/13.42 115[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];115 -> 161[label="",style="solid", color="black", weight=3]; 28.26/13.42 116[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];116 -> 162[label="",style="solid", color="black", weight=3]; 28.26/13.42 117[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];117 -> 163[label="",style="solid", color="black", weight=3]; 28.26/13.42 118[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];118 -> 164[label="",style="solid", color="black", weight=3]; 28.26/13.42 119[label="primCmpDouble (Double vxw30 (Pos vxw310)) (Double vxw400 vxw401)",fontsize=16,color="burlywood",shape="box"];2783[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];119 -> 2783[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2783 -> 165[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2784[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];119 -> 2784[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2784 -> 166[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 120[label="primCmpDouble (Double vxw30 (Neg vxw310)) (Double vxw400 vxw401)",fontsize=16,color="burlywood",shape="box"];2785[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];120 -> 2785[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2785 -> 167[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2786[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];120 -> 2786[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2786 -> 168[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 121[label="compare2 (vxw30,vxw31) (vxw400,vxw401) ((vxw30,vxw31) == (vxw400,vxw401))",fontsize=16,color="black",shape="box"];121 -> 169[label="",style="solid", color="black", weight=3]; 28.26/13.42 122[label="compare2 (Left vxw30) (Left vxw400) (Left vxw30 == Left vxw400)",fontsize=16,color="black",shape="box"];122 -> 170[label="",style="solid", color="black", weight=3]; 28.26/13.42 123[label="compare2 (Left vxw30) (Right vxw400) (Left vxw30 == Right vxw400)",fontsize=16,color="black",shape="box"];123 -> 171[label="",style="solid", color="black", weight=3]; 28.26/13.42 124[label="compare2 (Right vxw30) (Left vxw400) (Right vxw30 == Left vxw400)",fontsize=16,color="black",shape="box"];124 -> 172[label="",style="solid", color="black", weight=3]; 28.26/13.42 125[label="compare2 (Right vxw30) (Right vxw400) (Right vxw30 == Right vxw400)",fontsize=16,color="black",shape="box"];125 -> 173[label="",style="solid", color="black", weight=3]; 28.26/13.42 126[label="compare2 (vxw30,vxw31,vxw32) (vxw400,vxw401,vxw402) ((vxw30,vxw31,vxw32) == (vxw400,vxw401,vxw402))",fontsize=16,color="black",shape="box"];126 -> 174[label="",style="solid", color="black", weight=3]; 28.26/13.42 127 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.42 127[label="compare (vxw30 * vxw401) (vxw400 * vxw31)",fontsize=16,color="magenta"];127 -> 175[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 127 -> 176[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 128 -> 24[label="",style="dashed", color="red", weight=0]; 28.26/13.42 128[label="compare (vxw30 * vxw401) (vxw400 * vxw31)",fontsize=16,color="magenta"];128 -> 177[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 128 -> 178[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 129[label="primCmpFloat (Float vxw30 (Pos vxw310)) (Float vxw400 vxw401)",fontsize=16,color="burlywood",shape="box"];2787[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];129 -> 2787[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2787 -> 179[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2788[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];129 -> 2788[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2788 -> 180[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 130[label="primCmpFloat (Float vxw30 (Neg vxw310)) (Float vxw400 vxw401)",fontsize=16,color="burlywood",shape="box"];2789[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];130 -> 2789[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2789 -> 181[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2790[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];130 -> 2790[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2790 -> 182[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 131[label="vxw30",fontsize=16,color="green",shape="box"];132[label="vxw400",fontsize=16,color="green",shape="box"];133[label="primCmpNat vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2791[label="vxw30/Succ vxw300",fontsize=10,color="white",style="solid",shape="box"];133 -> 2791[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2791 -> 183[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2792[label="vxw30/Zero",fontsize=10,color="white",style="solid",shape="box"];133 -> 2792[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2792 -> 184[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 134[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];134 -> 185[label="",style="solid", color="black", weight=3]; 28.26/13.42 135[label="compare2 Nothing (Just vxw400) (Nothing == Just vxw400)",fontsize=16,color="black",shape="box"];135 -> 186[label="",style="solid", color="black", weight=3]; 28.26/13.42 136[label="compare2 (Just vxw30) Nothing (Just vxw30 == Nothing)",fontsize=16,color="black",shape="box"];136 -> 187[label="",style="solid", color="black", weight=3]; 28.26/13.42 137[label="compare2 (Just vxw30) (Just vxw400) (Just vxw30 == Just vxw400)",fontsize=16,color="black",shape="box"];137 -> 188[label="",style="solid", color="black", weight=3]; 28.26/13.42 139 -> 28[label="",style="dashed", color="red", weight=0]; 28.26/13.42 139[label="compare vxw31 vxw401",fontsize=16,color="magenta"];139 -> 189[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 139 -> 190[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 138[label="primCompAux vxw30 vxw400 vxw14",fontsize=16,color="black",shape="triangle"];138 -> 191[label="",style="solid", color="black", weight=3]; 28.26/13.42 140[label="compare2 False False True",fontsize=16,color="black",shape="box"];140 -> 192[label="",style="solid", color="black", weight=3]; 28.26/13.42 141[label="compare2 False True False",fontsize=16,color="black",shape="box"];141 -> 193[label="",style="solid", color="black", weight=3]; 28.26/13.42 142[label="compare2 True False False",fontsize=16,color="black",shape="box"];142 -> 194[label="",style="solid", color="black", weight=3]; 28.26/13.42 143[label="compare2 True True True",fontsize=16,color="black",shape="box"];143 -> 195[label="",style="solid", color="black", weight=3]; 28.26/13.42 144 -> 133[label="",style="dashed", color="red", weight=0]; 28.26/13.42 144[label="primCmpNat (Succ vxw300) vxw400",fontsize=16,color="magenta"];144 -> 196[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 144 -> 197[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 145[label="GT",fontsize=16,color="green",shape="box"];146[label="primCmpInt (Pos Zero) (Pos (Succ vxw4000))",fontsize=16,color="black",shape="box"];146 -> 198[label="",style="solid", color="black", weight=3]; 28.26/13.42 147[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];147 -> 199[label="",style="solid", color="black", weight=3]; 28.26/13.42 148[label="primCmpInt (Pos Zero) (Neg (Succ vxw4000))",fontsize=16,color="black",shape="box"];148 -> 200[label="",style="solid", color="black", weight=3]; 28.26/13.42 149[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];149 -> 201[label="",style="solid", color="black", weight=3]; 28.26/13.42 150[label="LT",fontsize=16,color="green",shape="box"];151 -> 133[label="",style="dashed", color="red", weight=0]; 28.26/13.42 151[label="primCmpNat vxw400 (Succ vxw300)",fontsize=16,color="magenta"];151 -> 202[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 151 -> 203[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 152[label="primCmpInt (Neg Zero) (Pos (Succ vxw4000))",fontsize=16,color="black",shape="box"];152 -> 204[label="",style="solid", color="black", weight=3]; 28.26/13.42 153[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];153 -> 205[label="",style="solid", color="black", weight=3]; 28.26/13.42 154[label="primCmpInt (Neg Zero) (Neg (Succ vxw4000))",fontsize=16,color="black",shape="box"];154 -> 206[label="",style="solid", color="black", weight=3]; 28.26/13.42 155[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];155 -> 207[label="",style="solid", color="black", weight=3]; 28.26/13.42 156[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];156 -> 208[label="",style="solid", color="black", weight=3]; 28.26/13.42 157[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];157 -> 209[label="",style="solid", color="black", weight=3]; 28.26/13.42 158[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];158 -> 210[label="",style="solid", color="black", weight=3]; 28.26/13.42 159[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];159 -> 211[label="",style="solid", color="black", weight=3]; 28.26/13.42 160[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];160 -> 212[label="",style="solid", color="black", weight=3]; 28.26/13.42 161[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];161 -> 213[label="",style="solid", color="black", weight=3]; 28.26/13.42 162[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];162 -> 214[label="",style="solid", color="black", weight=3]; 28.26/13.42 163[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];163 -> 215[label="",style="solid", color="black", weight=3]; 28.26/13.42 164[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];164 -> 216[label="",style="solid", color="black", weight=3]; 28.26/13.42 165[label="primCmpDouble (Double vxw30 (Pos vxw310)) (Double vxw400 (Pos vxw4010))",fontsize=16,color="black",shape="box"];165 -> 217[label="",style="solid", color="black", weight=3]; 28.26/13.42 166[label="primCmpDouble (Double vxw30 (Pos vxw310)) (Double vxw400 (Neg vxw4010))",fontsize=16,color="black",shape="box"];166 -> 218[label="",style="solid", color="black", weight=3]; 28.26/13.42 167[label="primCmpDouble (Double vxw30 (Neg vxw310)) (Double vxw400 (Pos vxw4010))",fontsize=16,color="black",shape="box"];167 -> 219[label="",style="solid", color="black", weight=3]; 28.26/13.42 168[label="primCmpDouble (Double vxw30 (Neg vxw310)) (Double vxw400 (Neg vxw4010))",fontsize=16,color="black",shape="box"];168 -> 220[label="",style="solid", color="black", weight=3]; 28.26/13.42 169 -> 669[label="",style="dashed", color="red", weight=0]; 28.26/13.42 169[label="compare2 (vxw30,vxw31) (vxw400,vxw401) (vxw30 == vxw400 && vxw31 == vxw401)",fontsize=16,color="magenta"];169 -> 670[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 169 -> 671[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 169 -> 672[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 169 -> 673[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 169 -> 674[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 170 -> 227[label="",style="dashed", color="red", weight=0]; 28.26/13.42 170[label="compare2 (Left vxw30) (Left vxw400) (vxw30 == vxw400)",fontsize=16,color="magenta"];170 -> 228[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 170 -> 229[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 170 -> 230[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 171[label="compare2 (Left vxw30) (Right vxw400) False",fontsize=16,color="black",shape="box"];171 -> 231[label="",style="solid", color="black", weight=3]; 28.26/13.42 172[label="compare2 (Right vxw30) (Left vxw400) False",fontsize=16,color="black",shape="box"];172 -> 232[label="",style="solid", color="black", weight=3]; 28.26/13.42 173 -> 233[label="",style="dashed", color="red", weight=0]; 28.26/13.42 173[label="compare2 (Right vxw30) (Right vxw400) (vxw30 == vxw400)",fontsize=16,color="magenta"];173 -> 234[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 173 -> 235[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 173 -> 236[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 174 -> 716[label="",style="dashed", color="red", weight=0]; 28.26/13.42 174[label="compare2 (vxw30,vxw31,vxw32) (vxw400,vxw401,vxw402) (vxw30 == vxw400 && vxw31 == vxw401 && vxw32 == vxw402)",fontsize=16,color="magenta"];174 -> 717[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 174 -> 718[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 174 -> 719[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 174 -> 720[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 174 -> 721[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 174 -> 722[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 174 -> 723[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 175[label="vxw30 * vxw401",fontsize=16,color="black",shape="triangle"];175 -> 245[label="",style="solid", color="black", weight=3]; 28.26/13.42 176 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 176[label="vxw400 * vxw31",fontsize=16,color="magenta"];176 -> 246[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 176 -> 247[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 177[label="vxw30 * vxw401",fontsize=16,color="burlywood",shape="triangle"];2793[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];177 -> 2793[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2793 -> 248[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 178 -> 177[label="",style="dashed", color="red", weight=0]; 28.26/13.42 178[label="vxw400 * vxw31",fontsize=16,color="magenta"];178 -> 249[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 178 -> 250[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 179[label="primCmpFloat (Float vxw30 (Pos vxw310)) (Float vxw400 (Pos vxw4010))",fontsize=16,color="black",shape="box"];179 -> 251[label="",style="solid", color="black", weight=3]; 28.26/13.42 180[label="primCmpFloat (Float vxw30 (Pos vxw310)) (Float vxw400 (Neg vxw4010))",fontsize=16,color="black",shape="box"];180 -> 252[label="",style="solid", color="black", weight=3]; 28.26/13.42 181[label="primCmpFloat (Float vxw30 (Neg vxw310)) (Float vxw400 (Pos vxw4010))",fontsize=16,color="black",shape="box"];181 -> 253[label="",style="solid", color="black", weight=3]; 28.26/13.42 182[label="primCmpFloat (Float vxw30 (Neg vxw310)) (Float vxw400 (Neg vxw4010))",fontsize=16,color="black",shape="box"];182 -> 254[label="",style="solid", color="black", weight=3]; 28.26/13.42 183[label="primCmpNat (Succ vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2794[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];183 -> 2794[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2794 -> 255[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2795[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];183 -> 2795[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2795 -> 256[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 184[label="primCmpNat Zero vxw400",fontsize=16,color="burlywood",shape="box"];2796[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];184 -> 2796[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2796 -> 257[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2797[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];184 -> 2797[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2797 -> 258[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 185[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];185 -> 259[label="",style="solid", color="black", weight=3]; 28.26/13.42 186[label="compare2 Nothing (Just vxw400) False",fontsize=16,color="black",shape="box"];186 -> 260[label="",style="solid", color="black", weight=3]; 28.26/13.42 187[label="compare2 (Just vxw30) Nothing False",fontsize=16,color="black",shape="box"];187 -> 261[label="",style="solid", color="black", weight=3]; 28.26/13.42 188 -> 262[label="",style="dashed", color="red", weight=0]; 28.26/13.42 188[label="compare2 (Just vxw30) (Just vxw400) (vxw30 == vxw400)",fontsize=16,color="magenta"];188 -> 263[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 188 -> 264[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 188 -> 265[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 189[label="vxw31",fontsize=16,color="green",shape="box"];190[label="vxw401",fontsize=16,color="green",shape="box"];191 -> 266[label="",style="dashed", color="red", weight=0]; 28.26/13.42 191[label="primCompAux0 vxw14 (compare vxw30 vxw400)",fontsize=16,color="magenta"];191 -> 267[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 191 -> 268[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 192[label="EQ",fontsize=16,color="green",shape="box"];193[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];193 -> 269[label="",style="solid", color="black", weight=3]; 28.26/13.42 194[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];194 -> 270[label="",style="solid", color="black", weight=3]; 28.26/13.42 195[label="EQ",fontsize=16,color="green",shape="box"];196[label="vxw400",fontsize=16,color="green",shape="box"];197[label="Succ vxw300",fontsize=16,color="green",shape="box"];198 -> 133[label="",style="dashed", color="red", weight=0]; 28.26/13.42 198[label="primCmpNat Zero (Succ vxw4000)",fontsize=16,color="magenta"];198 -> 271[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 198 -> 272[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 199[label="EQ",fontsize=16,color="green",shape="box"];200[label="GT",fontsize=16,color="green",shape="box"];201[label="EQ",fontsize=16,color="green",shape="box"];202[label="Succ vxw300",fontsize=16,color="green",shape="box"];203[label="vxw400",fontsize=16,color="green",shape="box"];204[label="LT",fontsize=16,color="green",shape="box"];205[label="EQ",fontsize=16,color="green",shape="box"];206 -> 133[label="",style="dashed", color="red", weight=0]; 28.26/13.42 206[label="primCmpNat (Succ vxw4000) Zero",fontsize=16,color="magenta"];206 -> 273[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 206 -> 274[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 207[label="EQ",fontsize=16,color="green",shape="box"];208[label="EQ",fontsize=16,color="green",shape="box"];209[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];209 -> 275[label="",style="solid", color="black", weight=3]; 28.26/13.42 210[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];210 -> 276[label="",style="solid", color="black", weight=3]; 28.26/13.42 211[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];211 -> 277[label="",style="solid", color="black", weight=3]; 28.26/13.42 212[label="EQ",fontsize=16,color="green",shape="box"];213[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];213 -> 278[label="",style="solid", color="black", weight=3]; 28.26/13.42 214[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];214 -> 279[label="",style="solid", color="black", weight=3]; 28.26/13.42 215[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];215 -> 280[label="",style="solid", color="black", weight=3]; 28.26/13.42 216[label="EQ",fontsize=16,color="green",shape="box"];217 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.42 217[label="compare (vxw30 * Pos vxw4010) (Pos vxw310 * vxw400)",fontsize=16,color="magenta"];217 -> 281[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 217 -> 282[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 218 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.42 218[label="compare (vxw30 * Pos vxw4010) (Neg vxw310 * vxw400)",fontsize=16,color="magenta"];218 -> 283[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 218 -> 284[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 219 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.42 219[label="compare (vxw30 * Neg vxw4010) (Pos vxw310 * vxw400)",fontsize=16,color="magenta"];219 -> 285[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 219 -> 286[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 220 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.42 220[label="compare (vxw30 * Neg vxw4010) (Neg vxw310 * vxw400)",fontsize=16,color="magenta"];220 -> 287[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 220 -> 288[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 670 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.42 670[label="vxw30 == vxw400 && vxw31 == vxw401",fontsize=16,color="magenta"];670 -> 749[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 670 -> 750[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 671[label="vxw400",fontsize=16,color="green",shape="box"];672[label="vxw401",fontsize=16,color="green",shape="box"];673[label="vxw30",fontsize=16,color="green",shape="box"];674[label="vxw31",fontsize=16,color="green",shape="box"];669[label="compare2 (vxw73,vxw74) (vxw75,vxw76) vxw77",fontsize=16,color="burlywood",shape="triangle"];2798[label="vxw77/False",fontsize=10,color="white",style="solid",shape="box"];669 -> 2798[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2798 -> 694[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2799[label="vxw77/True",fontsize=10,color="white",style="solid",shape="box"];669 -> 2799[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2799 -> 695[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 228[label="vxw400",fontsize=16,color="green",shape="box"];229[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2800[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2800[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2800 -> 305[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2801[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2801[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2801 -> 306[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2802[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2802[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2802 -> 307[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2803[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2803[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2803 -> 308[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2804[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2804[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2804 -> 309[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2805[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2805[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2805 -> 310[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2806[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2806[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2806 -> 311[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2807[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2807[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2807 -> 312[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2808[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2808[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2808 -> 313[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2809[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2809[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2809 -> 314[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2810[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2810[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2810 -> 315[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2811[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2811[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2811 -> 316[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2812[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2812[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2812 -> 317[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2813[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2813[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2813 -> 318[label="",style="solid", color="blue", weight=3]; 28.26/13.42 230[label="vxw30",fontsize=16,color="green",shape="box"];227[label="compare2 (Left vxw30) (Left vxw31) vxw32",fontsize=16,color="burlywood",shape="triangle"];2814[label="vxw32/False",fontsize=10,color="white",style="solid",shape="box"];227 -> 2814[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2814 -> 319[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2815[label="vxw32/True",fontsize=10,color="white",style="solid",shape="box"];227 -> 2815[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2815 -> 320[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 231[label="compare1 (Left vxw30) (Right vxw400) (Left vxw30 <= Right vxw400)",fontsize=16,color="black",shape="box"];231 -> 321[label="",style="solid", color="black", weight=3]; 28.26/13.42 232[label="compare1 (Right vxw30) (Left vxw400) (Right vxw30 <= Left vxw400)",fontsize=16,color="black",shape="box"];232 -> 322[label="",style="solid", color="black", weight=3]; 28.26/13.42 234[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2816[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2816[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2816 -> 323[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2817[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2817[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2817 -> 324[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2818[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2818[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2818 -> 325[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2819[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2819[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2819 -> 326[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2820[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2820[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2820 -> 327[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2821[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2821[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2821 -> 328[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2822[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2822[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2822 -> 329[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2823[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2823[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2823 -> 330[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2824[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2824[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2824 -> 331[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2825[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2825[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2825 -> 332[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2826[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2826[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2826 -> 333[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2827[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2827[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2827 -> 334[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2828[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2828[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2828 -> 335[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2829[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];234 -> 2829[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2829 -> 336[label="",style="solid", color="blue", weight=3]; 28.26/13.42 235[label="vxw400",fontsize=16,color="green",shape="box"];236[label="vxw30",fontsize=16,color="green",shape="box"];233[label="compare2 (Right vxw37) (Right vxw38) vxw39",fontsize=16,color="burlywood",shape="triangle"];2830[label="vxw39/False",fontsize=10,color="white",style="solid",shape="box"];233 -> 2830[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2830 -> 337[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2831[label="vxw39/True",fontsize=10,color="white",style="solid",shape="box"];233 -> 2831[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2831 -> 338[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 717[label="vxw32",fontsize=16,color="green",shape="box"];718[label="vxw31",fontsize=16,color="green",shape="box"];719[label="vxw402",fontsize=16,color="green",shape="box"];720 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.42 720[label="vxw30 == vxw400 && vxw31 == vxw401 && vxw32 == vxw402",fontsize=16,color="magenta"];720 -> 751[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 720 -> 752[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 721[label="vxw400",fontsize=16,color="green",shape="box"];722[label="vxw401",fontsize=16,color="green",shape="box"];723[label="vxw30",fontsize=16,color="green",shape="box"];716[label="compare2 (vxw48,vxw49,vxw50) (vxw51,vxw52,vxw53) vxw85",fontsize=16,color="burlywood",shape="triangle"];2832[label="vxw85/False",fontsize=10,color="white",style="solid",shape="box"];716 -> 2832[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2832 -> 732[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2833[label="vxw85/True",fontsize=10,color="white",style="solid",shape="box"];716 -> 2833[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2833 -> 733[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 245[label="primMulInt vxw30 vxw401",fontsize=16,color="burlywood",shape="triangle"];2834[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];245 -> 2834[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2834 -> 355[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2835[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];245 -> 2835[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2835 -> 356[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 246[label="vxw31",fontsize=16,color="green",shape="box"];247[label="vxw400",fontsize=16,color="green",shape="box"];248[label="Integer vxw300 * vxw401",fontsize=16,color="burlywood",shape="box"];2836[label="vxw401/Integer vxw4010",fontsize=10,color="white",style="solid",shape="box"];248 -> 2836[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2836 -> 357[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 249[label="vxw31",fontsize=16,color="green",shape="box"];250[label="vxw400",fontsize=16,color="green",shape="box"];251 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.42 251[label="compare (vxw30 * Pos vxw4010) (Pos vxw310 * vxw400)",fontsize=16,color="magenta"];251 -> 358[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 251 -> 359[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 252 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.42 252[label="compare (vxw30 * Pos vxw4010) (Neg vxw310 * vxw400)",fontsize=16,color="magenta"];252 -> 360[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 252 -> 361[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 253 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.42 253[label="compare (vxw30 * Neg vxw4010) (Pos vxw310 * vxw400)",fontsize=16,color="magenta"];253 -> 362[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 253 -> 363[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 254 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.42 254[label="compare (vxw30 * Neg vxw4010) (Neg vxw310 * vxw400)",fontsize=16,color="magenta"];254 -> 364[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 254 -> 365[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 255[label="primCmpNat (Succ vxw300) (Succ vxw4000)",fontsize=16,color="black",shape="box"];255 -> 366[label="",style="solid", color="black", weight=3]; 28.26/13.42 256[label="primCmpNat (Succ vxw300) Zero",fontsize=16,color="black",shape="box"];256 -> 367[label="",style="solid", color="black", weight=3]; 28.26/13.42 257[label="primCmpNat Zero (Succ vxw4000)",fontsize=16,color="black",shape="box"];257 -> 368[label="",style="solid", color="black", weight=3]; 28.26/13.42 258[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];258 -> 369[label="",style="solid", color="black", weight=3]; 28.26/13.42 259[label="EQ",fontsize=16,color="green",shape="box"];260[label="compare1 Nothing (Just vxw400) (Nothing <= Just vxw400)",fontsize=16,color="black",shape="box"];260 -> 370[label="",style="solid", color="black", weight=3]; 28.26/13.42 261[label="compare1 (Just vxw30) Nothing (Just vxw30 <= Nothing)",fontsize=16,color="black",shape="box"];261 -> 371[label="",style="solid", color="black", weight=3]; 28.26/13.42 263[label="vxw30",fontsize=16,color="green",shape="box"];264[label="vxw400",fontsize=16,color="green",shape="box"];265[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2837[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2837[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2837 -> 372[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2838[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2838[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2838 -> 373[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2839[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2839[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2839 -> 374[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2840[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2840[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2840 -> 375[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2841[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2841[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2841 -> 376[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2842[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2842[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2842 -> 377[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2843[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2843[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2843 -> 378[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2844[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2844[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2844 -> 379[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2845[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2845[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2845 -> 380[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2846[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2846[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2846 -> 381[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2847[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2847[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2847 -> 382[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2848[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2848[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2848 -> 383[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2849[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2849[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2849 -> 384[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2850[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];265 -> 2850[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2850 -> 385[label="",style="solid", color="blue", weight=3]; 28.26/13.42 262[label="compare2 (Just vxw59) (Just vxw60) vxw61",fontsize=16,color="burlywood",shape="triangle"];2851[label="vxw61/False",fontsize=10,color="white",style="solid",shape="box"];262 -> 2851[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2851 -> 386[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2852[label="vxw61/True",fontsize=10,color="white",style="solid",shape="box"];262 -> 2852[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2852 -> 387[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 267[label="vxw14",fontsize=16,color="green",shape="box"];268[label="compare vxw30 vxw400",fontsize=16,color="blue",shape="box"];2853[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2853[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2853 -> 388[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2854[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2854[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2854 -> 389[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2855[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2855[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2855 -> 390[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2856[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2856[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2856 -> 391[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2857[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2857[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2857 -> 392[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2858[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2858[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2858 -> 393[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2859[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2859[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2859 -> 394[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2860[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2860[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2860 -> 395[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2861[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2861[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2861 -> 396[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2862[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2862[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2862 -> 397[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2863[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2863[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2863 -> 398[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2864[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2864[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2864 -> 399[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2865[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2865[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2865 -> 400[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2866[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];268 -> 2866[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2866 -> 401[label="",style="solid", color="blue", weight=3]; 28.26/13.42 266[label="primCompAux0 vxw65 vxw66",fontsize=16,color="burlywood",shape="triangle"];2867[label="vxw66/LT",fontsize=10,color="white",style="solid",shape="box"];266 -> 2867[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2867 -> 402[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2868[label="vxw66/EQ",fontsize=10,color="white",style="solid",shape="box"];266 -> 2868[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2868 -> 403[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2869[label="vxw66/GT",fontsize=10,color="white",style="solid",shape="box"];266 -> 2869[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2869 -> 404[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 269[label="compare1 False True True",fontsize=16,color="black",shape="box"];269 -> 405[label="",style="solid", color="black", weight=3]; 28.26/13.42 270[label="compare1 True False False",fontsize=16,color="black",shape="box"];270 -> 406[label="",style="solid", color="black", weight=3]; 28.26/13.42 271[label="Succ vxw4000",fontsize=16,color="green",shape="box"];272[label="Zero",fontsize=16,color="green",shape="box"];273[label="Zero",fontsize=16,color="green",shape="box"];274[label="Succ vxw4000",fontsize=16,color="green",shape="box"];275[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];275 -> 407[label="",style="solid", color="black", weight=3]; 28.26/13.42 276[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];276 -> 408[label="",style="solid", color="black", weight=3]; 28.26/13.42 277[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];277 -> 409[label="",style="solid", color="black", weight=3]; 28.26/13.42 278[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];278 -> 410[label="",style="solid", color="black", weight=3]; 28.26/13.42 279[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];279 -> 411[label="",style="solid", color="black", weight=3]; 28.26/13.42 280[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];280 -> 412[label="",style="solid", color="black", weight=3]; 28.26/13.42 281 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 281[label="vxw30 * Pos vxw4010",fontsize=16,color="magenta"];281 -> 413[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 281 -> 414[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 282 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 282[label="Pos vxw310 * vxw400",fontsize=16,color="magenta"];282 -> 415[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 282 -> 416[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 283 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 283[label="vxw30 * Pos vxw4010",fontsize=16,color="magenta"];283 -> 417[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 283 -> 418[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 284 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 284[label="Neg vxw310 * vxw400",fontsize=16,color="magenta"];284 -> 419[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 284 -> 420[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 285 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 285[label="vxw30 * Neg vxw4010",fontsize=16,color="magenta"];285 -> 421[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 285 -> 422[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 286 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 286[label="Pos vxw310 * vxw400",fontsize=16,color="magenta"];286 -> 423[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 286 -> 424[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 287 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 287[label="vxw30 * Neg vxw4010",fontsize=16,color="magenta"];287 -> 425[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 287 -> 426[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 288 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 288[label="Neg vxw310 * vxw400",fontsize=16,color="magenta"];288 -> 427[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 288 -> 428[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 749[label="vxw31 == vxw401",fontsize=16,color="blue",shape="box"];2870[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2870[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2870 -> 757[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2871[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2871[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2871 -> 758[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2872[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2872[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2872 -> 759[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2873[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2873[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2873 -> 760[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2874[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2874[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2874 -> 761[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2875[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2875[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2875 -> 762[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2876[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2876[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2876 -> 763[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2877[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2877[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2877 -> 764[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2878[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2878[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2878 -> 765[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2879[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2879[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2879 -> 766[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2880[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2880[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2880 -> 767[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2881[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2881[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2881 -> 768[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2882[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2882[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2882 -> 769[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2883[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2883[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2883 -> 770[label="",style="solid", color="blue", weight=3]; 28.26/13.42 750[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2884[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2884[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2884 -> 771[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2885[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2885[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2885 -> 772[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2886[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2886[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2886 -> 773[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2887[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2887[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2887 -> 774[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2888[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2888[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2888 -> 775[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2889[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2889[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2889 -> 776[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2890[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2890[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2890 -> 777[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2891[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2891[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2891 -> 778[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2892[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2892[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2892 -> 779[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2893[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2893[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2893 -> 780[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2894[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2894[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2894 -> 781[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2895[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2895[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2895 -> 782[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2896[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2896[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2896 -> 783[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2897[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2897[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2897 -> 784[label="",style="solid", color="blue", weight=3]; 28.26/13.42 748[label="vxw90 && vxw91",fontsize=16,color="burlywood",shape="triangle"];2898[label="vxw90/False",fontsize=10,color="white",style="solid",shape="box"];748 -> 2898[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2898 -> 785[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2899[label="vxw90/True",fontsize=10,color="white",style="solid",shape="box"];748 -> 2899[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2899 -> 786[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 694[label="compare2 (vxw73,vxw74) (vxw75,vxw76) False",fontsize=16,color="black",shape="box"];694 -> 787[label="",style="solid", color="black", weight=3]; 28.26/13.42 695[label="compare2 (vxw73,vxw74) (vxw75,vxw76) True",fontsize=16,color="black",shape="box"];695 -> 788[label="",style="solid", color="black", weight=3]; 28.26/13.42 305 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.42 305[label="vxw30 == vxw400",fontsize=16,color="magenta"];305 -> 451[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 305 -> 452[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 306 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.42 306[label="vxw30 == vxw400",fontsize=16,color="magenta"];306 -> 453[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 306 -> 454[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 307 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.42 307[label="vxw30 == vxw400",fontsize=16,color="magenta"];307 -> 455[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 307 -> 456[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 308 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.42 308[label="vxw30 == vxw400",fontsize=16,color="magenta"];308 -> 457[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 308 -> 458[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 309 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.42 309[label="vxw30 == vxw400",fontsize=16,color="magenta"];309 -> 459[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 309 -> 460[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 310 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.42 310[label="vxw30 == vxw400",fontsize=16,color="magenta"];310 -> 461[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 310 -> 462[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 311 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.42 311[label="vxw30 == vxw400",fontsize=16,color="magenta"];311 -> 463[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 311 -> 464[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 312 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.42 312[label="vxw30 == vxw400",fontsize=16,color="magenta"];312 -> 465[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 312 -> 466[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 313 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.42 313[label="vxw30 == vxw400",fontsize=16,color="magenta"];313 -> 467[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 313 -> 468[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 314 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.42 314[label="vxw30 == vxw400",fontsize=16,color="magenta"];314 -> 469[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 314 -> 470[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 315 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.42 315[label="vxw30 == vxw400",fontsize=16,color="magenta"];315 -> 471[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 315 -> 472[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 316 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.42 316[label="vxw30 == vxw400",fontsize=16,color="magenta"];316 -> 473[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 316 -> 474[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 317 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.42 317[label="vxw30 == vxw400",fontsize=16,color="magenta"];317 -> 475[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 317 -> 476[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 318 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.42 318[label="vxw30 == vxw400",fontsize=16,color="magenta"];318 -> 477[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 318 -> 478[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 319[label="compare2 (Left vxw30) (Left vxw31) False",fontsize=16,color="black",shape="box"];319 -> 479[label="",style="solid", color="black", weight=3]; 28.26/13.42 320[label="compare2 (Left vxw30) (Left vxw31) True",fontsize=16,color="black",shape="box"];320 -> 480[label="",style="solid", color="black", weight=3]; 28.26/13.42 321[label="compare1 (Left vxw30) (Right vxw400) True",fontsize=16,color="black",shape="box"];321 -> 481[label="",style="solid", color="black", weight=3]; 28.26/13.42 322[label="compare1 (Right vxw30) (Left vxw400) False",fontsize=16,color="black",shape="box"];322 -> 482[label="",style="solid", color="black", weight=3]; 28.26/13.42 323 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.42 323[label="vxw30 == vxw400",fontsize=16,color="magenta"];323 -> 483[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 323 -> 484[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 324 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.42 324[label="vxw30 == vxw400",fontsize=16,color="magenta"];324 -> 485[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 324 -> 486[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 325 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.42 325[label="vxw30 == vxw400",fontsize=16,color="magenta"];325 -> 487[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 325 -> 488[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 326 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.42 326[label="vxw30 == vxw400",fontsize=16,color="magenta"];326 -> 489[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 326 -> 490[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 327 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.42 327[label="vxw30 == vxw400",fontsize=16,color="magenta"];327 -> 491[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 327 -> 492[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 328 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.42 328[label="vxw30 == vxw400",fontsize=16,color="magenta"];328 -> 493[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 328 -> 494[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 329 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.42 329[label="vxw30 == vxw400",fontsize=16,color="magenta"];329 -> 495[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 329 -> 496[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 330 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.42 330[label="vxw30 == vxw400",fontsize=16,color="magenta"];330 -> 497[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 330 -> 498[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 331 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.42 331[label="vxw30 == vxw400",fontsize=16,color="magenta"];331 -> 499[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 331 -> 500[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 332 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.42 332[label="vxw30 == vxw400",fontsize=16,color="magenta"];332 -> 501[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 332 -> 502[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 333 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.42 333[label="vxw30 == vxw400",fontsize=16,color="magenta"];333 -> 503[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 333 -> 504[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 334 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.42 334[label="vxw30 == vxw400",fontsize=16,color="magenta"];334 -> 505[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 334 -> 506[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 335 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.42 335[label="vxw30 == vxw400",fontsize=16,color="magenta"];335 -> 507[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 335 -> 508[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 336 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.42 336[label="vxw30 == vxw400",fontsize=16,color="magenta"];336 -> 509[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 336 -> 510[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 337[label="compare2 (Right vxw37) (Right vxw38) False",fontsize=16,color="black",shape="box"];337 -> 511[label="",style="solid", color="black", weight=3]; 28.26/13.42 338[label="compare2 (Right vxw37) (Right vxw38) True",fontsize=16,color="black",shape="box"];338 -> 512[label="",style="solid", color="black", weight=3]; 28.26/13.42 751 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.42 751[label="vxw31 == vxw401 && vxw32 == vxw402",fontsize=16,color="magenta"];751 -> 789[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 751 -> 790[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 752[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2900[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2900[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2900 -> 791[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2901[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2901[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2901 -> 792[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2902[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2902[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2902 -> 793[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2903[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2903[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2903 -> 794[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2904[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2904[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2904 -> 795[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2905[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2905[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2905 -> 796[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2906[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2906[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2906 -> 797[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2907[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2907[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2907 -> 798[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2908[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2908[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2908 -> 799[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2909[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2909[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2909 -> 800[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2910[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2910[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2910 -> 801[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2911[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2911[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2911 -> 802[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2912[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2912[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2912 -> 803[label="",style="solid", color="blue", weight=3]; 28.26/13.42 2913[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 2913[label="",style="solid", color="blue", weight=9]; 28.26/13.42 2913 -> 804[label="",style="solid", color="blue", weight=3]; 28.26/13.42 732[label="compare2 (vxw48,vxw49,vxw50) (vxw51,vxw52,vxw53) False",fontsize=16,color="black",shape="box"];732 -> 805[label="",style="solid", color="black", weight=3]; 28.26/13.42 733[label="compare2 (vxw48,vxw49,vxw50) (vxw51,vxw52,vxw53) True",fontsize=16,color="black",shape="box"];733 -> 806[label="",style="solid", color="black", weight=3]; 28.26/13.42 355[label="primMulInt (Pos vxw300) vxw401",fontsize=16,color="burlywood",shape="box"];2914[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];355 -> 2914[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2914 -> 543[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2915[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];355 -> 2915[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2915 -> 544[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 356[label="primMulInt (Neg vxw300) vxw401",fontsize=16,color="burlywood",shape="box"];2916[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];356 -> 2916[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2916 -> 545[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 2917[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];356 -> 2917[label="",style="solid", color="burlywood", weight=9]; 28.26/13.42 2917 -> 546[label="",style="solid", color="burlywood", weight=3]; 28.26/13.42 357[label="Integer vxw300 * Integer vxw4010",fontsize=16,color="black",shape="box"];357 -> 547[label="",style="solid", color="black", weight=3]; 28.26/13.42 358 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 358[label="vxw30 * Pos vxw4010",fontsize=16,color="magenta"];358 -> 548[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 358 -> 549[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 359 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 359[label="Pos vxw310 * vxw400",fontsize=16,color="magenta"];359 -> 550[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 359 -> 551[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 360 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 360[label="vxw30 * Pos vxw4010",fontsize=16,color="magenta"];360 -> 552[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 360 -> 553[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 361 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 361[label="Neg vxw310 * vxw400",fontsize=16,color="magenta"];361 -> 554[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 361 -> 555[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 362 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 362[label="vxw30 * Neg vxw4010",fontsize=16,color="magenta"];362 -> 556[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 362 -> 557[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 363 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 363[label="Pos vxw310 * vxw400",fontsize=16,color="magenta"];363 -> 558[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 363 -> 559[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 364 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 364[label="vxw30 * Neg vxw4010",fontsize=16,color="magenta"];364 -> 560[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 364 -> 561[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 365 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.42 365[label="Neg vxw310 * vxw400",fontsize=16,color="magenta"];365 -> 562[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 365 -> 563[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 366 -> 133[label="",style="dashed", color="red", weight=0]; 28.26/13.42 366[label="primCmpNat vxw300 vxw4000",fontsize=16,color="magenta"];366 -> 564[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 366 -> 565[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 367[label="GT",fontsize=16,color="green",shape="box"];368[label="LT",fontsize=16,color="green",shape="box"];369[label="EQ",fontsize=16,color="green",shape="box"];370[label="compare1 Nothing (Just vxw400) True",fontsize=16,color="black",shape="box"];370 -> 566[label="",style="solid", color="black", weight=3]; 28.26/13.42 371[label="compare1 (Just vxw30) Nothing False",fontsize=16,color="black",shape="box"];371 -> 567[label="",style="solid", color="black", weight=3]; 28.26/13.42 372 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.42 372[label="vxw30 == vxw400",fontsize=16,color="magenta"];372 -> 568[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 372 -> 569[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 373 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.42 373[label="vxw30 == vxw400",fontsize=16,color="magenta"];373 -> 570[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 373 -> 571[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 374 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.42 374[label="vxw30 == vxw400",fontsize=16,color="magenta"];374 -> 572[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 374 -> 573[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 375 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.42 375[label="vxw30 == vxw400",fontsize=16,color="magenta"];375 -> 574[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 375 -> 575[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 376 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.42 376[label="vxw30 == vxw400",fontsize=16,color="magenta"];376 -> 576[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 376 -> 577[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 377 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.42 377[label="vxw30 == vxw400",fontsize=16,color="magenta"];377 -> 578[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 377 -> 579[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 378 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.42 378[label="vxw30 == vxw400",fontsize=16,color="magenta"];378 -> 580[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 378 -> 581[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 379 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.42 379[label="vxw30 == vxw400",fontsize=16,color="magenta"];379 -> 582[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 379 -> 583[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 380 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.42 380[label="vxw30 == vxw400",fontsize=16,color="magenta"];380 -> 584[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 380 -> 585[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 381 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.42 381[label="vxw30 == vxw400",fontsize=16,color="magenta"];381 -> 586[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 381 -> 587[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 382 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.42 382[label="vxw30 == vxw400",fontsize=16,color="magenta"];382 -> 588[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 382 -> 589[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 383 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.42 383[label="vxw30 == vxw400",fontsize=16,color="magenta"];383 -> 590[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 383 -> 591[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 384 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.42 384[label="vxw30 == vxw400",fontsize=16,color="magenta"];384 -> 592[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 384 -> 593[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 385 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.42 385[label="vxw30 == vxw400",fontsize=16,color="magenta"];385 -> 594[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 385 -> 595[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 386[label="compare2 (Just vxw59) (Just vxw60) False",fontsize=16,color="black",shape="box"];386 -> 596[label="",style="solid", color="black", weight=3]; 28.26/13.42 387[label="compare2 (Just vxw59) (Just vxw60) True",fontsize=16,color="black",shape="box"];387 -> 597[label="",style="solid", color="black", weight=3]; 28.26/13.42 388 -> 15[label="",style="dashed", color="red", weight=0]; 28.26/13.42 388[label="compare vxw30 vxw400",fontsize=16,color="magenta"];388 -> 598[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 388 -> 599[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 389 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.42 389[label="compare vxw30 vxw400",fontsize=16,color="magenta"];389 -> 600[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 389 -> 601[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 390 -> 17[label="",style="dashed", color="red", weight=0]; 28.26/13.42 390[label="compare vxw30 vxw400",fontsize=16,color="magenta"];390 -> 602[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 390 -> 603[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 391 -> 18[label="",style="dashed", color="red", weight=0]; 28.26/13.42 391[label="compare vxw30 vxw400",fontsize=16,color="magenta"];391 -> 604[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 391 -> 605[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 392 -> 19[label="",style="dashed", color="red", weight=0]; 28.26/13.42 392[label="compare vxw30 vxw400",fontsize=16,color="magenta"];392 -> 606[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 392 -> 607[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 393 -> 20[label="",style="dashed", color="red", weight=0]; 28.26/13.42 393[label="compare vxw30 vxw400",fontsize=16,color="magenta"];393 -> 608[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 393 -> 609[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 394 -> 21[label="",style="dashed", color="red", weight=0]; 28.26/13.42 394[label="compare vxw30 vxw400",fontsize=16,color="magenta"];394 -> 610[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 394 -> 611[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 395 -> 22[label="",style="dashed", color="red", weight=0]; 28.26/13.42 395[label="compare vxw30 vxw400",fontsize=16,color="magenta"];395 -> 612[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 395 -> 613[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 396 -> 23[label="",style="dashed", color="red", weight=0]; 28.26/13.42 396[label="compare vxw30 vxw400",fontsize=16,color="magenta"];396 -> 614[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 396 -> 615[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 397 -> 24[label="",style="dashed", color="red", weight=0]; 28.26/13.42 397[label="compare vxw30 vxw400",fontsize=16,color="magenta"];397 -> 616[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 397 -> 617[label="",style="dashed", color="magenta", weight=3]; 28.26/13.42 398 -> 25[label="",style="dashed", color="red", weight=0]; 28.26/13.42 398[label="compare vxw30 vxw400",fontsize=16,color="magenta"];398 -> 618[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 398 -> 619[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 399 -> 26[label="",style="dashed", color="red", weight=0]; 28.26/13.43 399[label="compare vxw30 vxw400",fontsize=16,color="magenta"];399 -> 620[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 399 -> 621[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 400 -> 27[label="",style="dashed", color="red", weight=0]; 28.26/13.43 400[label="compare vxw30 vxw400",fontsize=16,color="magenta"];400 -> 622[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 400 -> 623[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 401 -> 28[label="",style="dashed", color="red", weight=0]; 28.26/13.43 401[label="compare vxw30 vxw400",fontsize=16,color="magenta"];401 -> 624[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 401 -> 625[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 402[label="primCompAux0 vxw65 LT",fontsize=16,color="black",shape="box"];402 -> 626[label="",style="solid", color="black", weight=3]; 28.26/13.43 403[label="primCompAux0 vxw65 EQ",fontsize=16,color="black",shape="box"];403 -> 627[label="",style="solid", color="black", weight=3]; 28.26/13.43 404[label="primCompAux0 vxw65 GT",fontsize=16,color="black",shape="box"];404 -> 628[label="",style="solid", color="black", weight=3]; 28.26/13.43 405[label="LT",fontsize=16,color="green",shape="box"];406[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];406 -> 629[label="",style="solid", color="black", weight=3]; 28.26/13.43 407[label="LT",fontsize=16,color="green",shape="box"];408[label="LT",fontsize=16,color="green",shape="box"];409[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];409 -> 630[label="",style="solid", color="black", weight=3]; 28.26/13.43 410[label="LT",fontsize=16,color="green",shape="box"];411[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];411 -> 631[label="",style="solid", color="black", weight=3]; 28.26/13.43 412[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];412 -> 632[label="",style="solid", color="black", weight=3]; 28.26/13.43 413[label="Pos vxw4010",fontsize=16,color="green",shape="box"];414[label="vxw30",fontsize=16,color="green",shape="box"];415[label="vxw400",fontsize=16,color="green",shape="box"];416[label="Pos vxw310",fontsize=16,color="green",shape="box"];417[label="Pos vxw4010",fontsize=16,color="green",shape="box"];418[label="vxw30",fontsize=16,color="green",shape="box"];419[label="vxw400",fontsize=16,color="green",shape="box"];420[label="Neg vxw310",fontsize=16,color="green",shape="box"];421[label="Neg vxw4010",fontsize=16,color="green",shape="box"];422[label="vxw30",fontsize=16,color="green",shape="box"];423[label="vxw400",fontsize=16,color="green",shape="box"];424[label="Pos vxw310",fontsize=16,color="green",shape="box"];425[label="Neg vxw4010",fontsize=16,color="green",shape="box"];426[label="vxw30",fontsize=16,color="green",shape="box"];427[label="vxw400",fontsize=16,color="green",shape="box"];428[label="Neg vxw310",fontsize=16,color="green",shape="box"];757 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 757[label="vxw31 == vxw401",fontsize=16,color="magenta"];757 -> 825[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 757 -> 826[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 758 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 758[label="vxw31 == vxw401",fontsize=16,color="magenta"];758 -> 827[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 758 -> 828[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 759 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 759[label="vxw31 == vxw401",fontsize=16,color="magenta"];759 -> 829[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 759 -> 830[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 760 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 760[label="vxw31 == vxw401",fontsize=16,color="magenta"];760 -> 831[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 760 -> 832[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 761 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 761[label="vxw31 == vxw401",fontsize=16,color="magenta"];761 -> 833[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 761 -> 834[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 762 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 762[label="vxw31 == vxw401",fontsize=16,color="magenta"];762 -> 835[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 762 -> 836[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 763 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 763[label="vxw31 == vxw401",fontsize=16,color="magenta"];763 -> 837[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 763 -> 838[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 764 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.43 764[label="vxw31 == vxw401",fontsize=16,color="magenta"];764 -> 839[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 764 -> 840[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 765 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 765[label="vxw31 == vxw401",fontsize=16,color="magenta"];765 -> 841[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 765 -> 842[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 766 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.43 766[label="vxw31 == vxw401",fontsize=16,color="magenta"];766 -> 843[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 766 -> 844[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 767 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.43 767[label="vxw31 == vxw401",fontsize=16,color="magenta"];767 -> 845[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 767 -> 846[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 768 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.43 768[label="vxw31 == vxw401",fontsize=16,color="magenta"];768 -> 847[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 768 -> 848[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 769 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 769[label="vxw31 == vxw401",fontsize=16,color="magenta"];769 -> 849[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 769 -> 850[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 770 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.43 770[label="vxw31 == vxw401",fontsize=16,color="magenta"];770 -> 851[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 770 -> 852[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 771 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 771[label="vxw30 == vxw400",fontsize=16,color="magenta"];772 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 772[label="vxw30 == vxw400",fontsize=16,color="magenta"];773 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 773[label="vxw30 == vxw400",fontsize=16,color="magenta"];774 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 774[label="vxw30 == vxw400",fontsize=16,color="magenta"];775 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 775[label="vxw30 == vxw400",fontsize=16,color="magenta"];776 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 776[label="vxw30 == vxw400",fontsize=16,color="magenta"];777 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 777[label="vxw30 == vxw400",fontsize=16,color="magenta"];778 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.43 778[label="vxw30 == vxw400",fontsize=16,color="magenta"];779 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 779[label="vxw30 == vxw400",fontsize=16,color="magenta"];780 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.43 780[label="vxw30 == vxw400",fontsize=16,color="magenta"];781 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.43 781[label="vxw30 == vxw400",fontsize=16,color="magenta"];782 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.43 782[label="vxw30 == vxw400",fontsize=16,color="magenta"];783 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 783[label="vxw30 == vxw400",fontsize=16,color="magenta"];784 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.43 784[label="vxw30 == vxw400",fontsize=16,color="magenta"];785[label="False && vxw91",fontsize=16,color="black",shape="box"];785 -> 853[label="",style="solid", color="black", weight=3]; 28.26/13.43 786[label="True && vxw91",fontsize=16,color="black",shape="box"];786 -> 854[label="",style="solid", color="black", weight=3]; 28.26/13.43 787[label="compare1 (vxw73,vxw74) (vxw75,vxw76) ((vxw73,vxw74) <= (vxw75,vxw76))",fontsize=16,color="black",shape="box"];787 -> 855[label="",style="solid", color="black", weight=3]; 28.26/13.43 788[label="EQ",fontsize=16,color="green",shape="box"];451[label="vxw400",fontsize=16,color="green",shape="box"];452[label="vxw30",fontsize=16,color="green",shape="box"];289[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];289 -> 429[label="",style="solid", color="black", weight=3]; 28.26/13.43 453[label="vxw400",fontsize=16,color="green",shape="box"];454[label="vxw30",fontsize=16,color="green",shape="box"];290[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2918[label="vxw30/vxw300 :% vxw301",fontsize=10,color="white",style="solid",shape="box"];290 -> 2918[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2918 -> 430[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 455[label="vxw400",fontsize=16,color="green",shape="box"];456[label="vxw30",fontsize=16,color="green",shape="box"];291[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2919[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];291 -> 2919[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2919 -> 431[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2920[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];291 -> 2920[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2920 -> 432[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 457[label="vxw400",fontsize=16,color="green",shape="box"];458[label="vxw30",fontsize=16,color="green",shape="box"];292[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2921[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];292 -> 2921[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2921 -> 433[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 459[label="vxw400",fontsize=16,color="green",shape="box"];460[label="vxw30",fontsize=16,color="green",shape="box"];293[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];293 -> 434[label="",style="solid", color="black", weight=3]; 28.26/13.43 461[label="vxw400",fontsize=16,color="green",shape="box"];462[label="vxw30",fontsize=16,color="green",shape="box"];294[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2922[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];294 -> 2922[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2922 -> 435[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 463[label="vxw400",fontsize=16,color="green",shape="box"];464[label="vxw30",fontsize=16,color="green",shape="box"];295[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2923[label="vxw30/vxw300 : vxw301",fontsize=10,color="white",style="solid",shape="box"];295 -> 2923[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2923 -> 436[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2924[label="vxw30/[]",fontsize=10,color="white",style="solid",shape="box"];295 -> 2924[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2924 -> 437[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 465[label="vxw400",fontsize=16,color="green",shape="box"];466[label="vxw30",fontsize=16,color="green",shape="box"];296[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];296 -> 438[label="",style="solid", color="black", weight=3]; 28.26/13.43 467[label="vxw400",fontsize=16,color="green",shape="box"];468[label="vxw30",fontsize=16,color="green",shape="box"];297[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2925[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];297 -> 2925[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2925 -> 439[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 469[label="vxw400",fontsize=16,color="green",shape="box"];470[label="vxw30",fontsize=16,color="green",shape="box"];298[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2926[label="vxw30/()",fontsize=10,color="white",style="solid",shape="box"];298 -> 2926[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2926 -> 440[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 471[label="vxw400",fontsize=16,color="green",shape="box"];472[label="vxw30",fontsize=16,color="green",shape="box"];299[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];299 -> 441[label="",style="solid", color="black", weight=3]; 28.26/13.43 473[label="vxw400",fontsize=16,color="green",shape="box"];474[label="vxw30",fontsize=16,color="green",shape="box"];300[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2927[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];300 -> 2927[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2927 -> 442[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2928[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];300 -> 2928[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2928 -> 443[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 475[label="vxw400",fontsize=16,color="green",shape="box"];476[label="vxw30",fontsize=16,color="green",shape="box"];301[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2929[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];301 -> 2929[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2929 -> 444[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2930[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];301 -> 2930[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2930 -> 445[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2931[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];301 -> 2931[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2931 -> 446[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 477[label="vxw400",fontsize=16,color="green",shape="box"];478[label="vxw30",fontsize=16,color="green",shape="box"];302[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2932[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];302 -> 2932[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2932 -> 447[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2933[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];302 -> 2933[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2933 -> 448[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 479 -> 818[label="",style="dashed", color="red", weight=0]; 28.26/13.43 479[label="compare1 (Left vxw30) (Left vxw31) (Left vxw30 <= Left vxw31)",fontsize=16,color="magenta"];479 -> 819[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 479 -> 820[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 479 -> 821[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 480[label="EQ",fontsize=16,color="green",shape="box"];481[label="LT",fontsize=16,color="green",shape="box"];482[label="compare0 (Right vxw30) (Left vxw400) otherwise",fontsize=16,color="black",shape="box"];482 -> 713[label="",style="solid", color="black", weight=3]; 28.26/13.43 483[label="vxw400",fontsize=16,color="green",shape="box"];484[label="vxw30",fontsize=16,color="green",shape="box"];485[label="vxw400",fontsize=16,color="green",shape="box"];486[label="vxw30",fontsize=16,color="green",shape="box"];487[label="vxw400",fontsize=16,color="green",shape="box"];488[label="vxw30",fontsize=16,color="green",shape="box"];489[label="vxw400",fontsize=16,color="green",shape="box"];490[label="vxw30",fontsize=16,color="green",shape="box"];491[label="vxw400",fontsize=16,color="green",shape="box"];492[label="vxw30",fontsize=16,color="green",shape="box"];493[label="vxw400",fontsize=16,color="green",shape="box"];494[label="vxw30",fontsize=16,color="green",shape="box"];495[label="vxw400",fontsize=16,color="green",shape="box"];496[label="vxw30",fontsize=16,color="green",shape="box"];497[label="vxw400",fontsize=16,color="green",shape="box"];498[label="vxw30",fontsize=16,color="green",shape="box"];499[label="vxw400",fontsize=16,color="green",shape="box"];500[label="vxw30",fontsize=16,color="green",shape="box"];501[label="vxw400",fontsize=16,color="green",shape="box"];502[label="vxw30",fontsize=16,color="green",shape="box"];503[label="vxw400",fontsize=16,color="green",shape="box"];504[label="vxw30",fontsize=16,color="green",shape="box"];505[label="vxw400",fontsize=16,color="green",shape="box"];506[label="vxw30",fontsize=16,color="green",shape="box"];507[label="vxw400",fontsize=16,color="green",shape="box"];508[label="vxw30",fontsize=16,color="green",shape="box"];509[label="vxw400",fontsize=16,color="green",shape="box"];510[label="vxw30",fontsize=16,color="green",shape="box"];511 -> 917[label="",style="dashed", color="red", weight=0]; 28.26/13.43 511[label="compare1 (Right vxw37) (Right vxw38) (Right vxw37 <= Right vxw38)",fontsize=16,color="magenta"];511 -> 918[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 511 -> 919[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 511 -> 920[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 512[label="EQ",fontsize=16,color="green",shape="box"];789[label="vxw32 == vxw402",fontsize=16,color="blue",shape="box"];2934[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2934[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2934 -> 856[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2935[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2935[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2935 -> 857[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2936[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2936[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2936 -> 858[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2937[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2937[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2937 -> 859[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2938[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2938[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2938 -> 860[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2939[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2939[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2939 -> 861[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2940[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2940[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2940 -> 862[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2941[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2941[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2941 -> 863[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2942[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2942[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2942 -> 864[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2943[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2943[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2943 -> 865[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2944[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2944[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2944 -> 866[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2945[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2945[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2945 -> 867[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2946[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2946[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2946 -> 868[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2947[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2947[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2947 -> 869[label="",style="solid", color="blue", weight=3]; 28.26/13.43 790[label="vxw31 == vxw401",fontsize=16,color="blue",shape="box"];2948[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2948[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2948 -> 870[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2949[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2949[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2949 -> 871[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2950[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2950[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2950 -> 872[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2951[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2951[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2951 -> 873[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2952[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2952[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2952 -> 874[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2953[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2953[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2953 -> 875[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2954[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2954[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2954 -> 876[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2955[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2955[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2955 -> 877[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2956[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2956[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2956 -> 878[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2957[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2957[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2957 -> 879[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2958[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2958[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2958 -> 880[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2959[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2959[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2959 -> 881[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2960[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2960[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2960 -> 882[label="",style="solid", color="blue", weight=3]; 28.26/13.43 2961[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];790 -> 2961[label="",style="solid", color="blue", weight=9]; 28.26/13.43 2961 -> 883[label="",style="solid", color="blue", weight=3]; 28.26/13.43 791 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 791[label="vxw30 == vxw400",fontsize=16,color="magenta"];791 -> 884[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 791 -> 885[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 792 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 792[label="vxw30 == vxw400",fontsize=16,color="magenta"];792 -> 886[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 792 -> 887[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 793 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 793[label="vxw30 == vxw400",fontsize=16,color="magenta"];793 -> 888[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 793 -> 889[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 794 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 794[label="vxw30 == vxw400",fontsize=16,color="magenta"];794 -> 890[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 794 -> 891[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 795 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 795[label="vxw30 == vxw400",fontsize=16,color="magenta"];795 -> 892[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 795 -> 893[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 796 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 796[label="vxw30 == vxw400",fontsize=16,color="magenta"];796 -> 894[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 796 -> 895[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 797 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 797[label="vxw30 == vxw400",fontsize=16,color="magenta"];797 -> 896[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 797 -> 897[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 798 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.43 798[label="vxw30 == vxw400",fontsize=16,color="magenta"];798 -> 898[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 798 -> 899[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 799 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 799[label="vxw30 == vxw400",fontsize=16,color="magenta"];799 -> 900[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 799 -> 901[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 800 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.43 800[label="vxw30 == vxw400",fontsize=16,color="magenta"];800 -> 902[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 800 -> 903[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 801 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.43 801[label="vxw30 == vxw400",fontsize=16,color="magenta"];801 -> 904[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 801 -> 905[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 802 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.43 802[label="vxw30 == vxw400",fontsize=16,color="magenta"];802 -> 906[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 802 -> 907[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 803 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 803[label="vxw30 == vxw400",fontsize=16,color="magenta"];803 -> 908[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 803 -> 909[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 804 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.43 804[label="vxw30 == vxw400",fontsize=16,color="magenta"];804 -> 910[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 804 -> 911[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 805[label="compare1 (vxw48,vxw49,vxw50) (vxw51,vxw52,vxw53) ((vxw48,vxw49,vxw50) <= (vxw51,vxw52,vxw53))",fontsize=16,color="black",shape="box"];805 -> 912[label="",style="solid", color="black", weight=3]; 28.26/13.43 806[label="EQ",fontsize=16,color="green",shape="box"];543[label="primMulInt (Pos vxw300) (Pos vxw4010)",fontsize=16,color="black",shape="box"];543 -> 807[label="",style="solid", color="black", weight=3]; 28.26/13.43 544[label="primMulInt (Pos vxw300) (Neg vxw4010)",fontsize=16,color="black",shape="box"];544 -> 808[label="",style="solid", color="black", weight=3]; 28.26/13.43 545[label="primMulInt (Neg vxw300) (Pos vxw4010)",fontsize=16,color="black",shape="box"];545 -> 809[label="",style="solid", color="black", weight=3]; 28.26/13.43 546[label="primMulInt (Neg vxw300) (Neg vxw4010)",fontsize=16,color="black",shape="box"];546 -> 810[label="",style="solid", color="black", weight=3]; 28.26/13.43 547[label="Integer (primMulInt vxw300 vxw4010)",fontsize=16,color="green",shape="box"];547 -> 811[label="",style="dashed", color="green", weight=3]; 28.26/13.43 548[label="Pos vxw4010",fontsize=16,color="green",shape="box"];549[label="vxw30",fontsize=16,color="green",shape="box"];550[label="vxw400",fontsize=16,color="green",shape="box"];551[label="Pos vxw310",fontsize=16,color="green",shape="box"];552[label="Pos vxw4010",fontsize=16,color="green",shape="box"];553[label="vxw30",fontsize=16,color="green",shape="box"];554[label="vxw400",fontsize=16,color="green",shape="box"];555[label="Neg vxw310",fontsize=16,color="green",shape="box"];556[label="Neg vxw4010",fontsize=16,color="green",shape="box"];557[label="vxw30",fontsize=16,color="green",shape="box"];558[label="vxw400",fontsize=16,color="green",shape="box"];559[label="Pos vxw310",fontsize=16,color="green",shape="box"];560[label="Neg vxw4010",fontsize=16,color="green",shape="box"];561[label="vxw30",fontsize=16,color="green",shape="box"];562[label="vxw400",fontsize=16,color="green",shape="box"];563[label="Neg vxw310",fontsize=16,color="green",shape="box"];564[label="vxw4000",fontsize=16,color="green",shape="box"];565[label="vxw300",fontsize=16,color="green",shape="box"];566[label="LT",fontsize=16,color="green",shape="box"];567[label="compare0 (Just vxw30) Nothing otherwise",fontsize=16,color="black",shape="box"];567 -> 812[label="",style="solid", color="black", weight=3]; 28.26/13.43 568[label="vxw400",fontsize=16,color="green",shape="box"];569[label="vxw30",fontsize=16,color="green",shape="box"];570[label="vxw400",fontsize=16,color="green",shape="box"];571[label="vxw30",fontsize=16,color="green",shape="box"];572[label="vxw400",fontsize=16,color="green",shape="box"];573[label="vxw30",fontsize=16,color="green",shape="box"];574[label="vxw400",fontsize=16,color="green",shape="box"];575[label="vxw30",fontsize=16,color="green",shape="box"];576[label="vxw400",fontsize=16,color="green",shape="box"];577[label="vxw30",fontsize=16,color="green",shape="box"];578[label="vxw400",fontsize=16,color="green",shape="box"];579[label="vxw30",fontsize=16,color="green",shape="box"];580[label="vxw400",fontsize=16,color="green",shape="box"];581[label="vxw30",fontsize=16,color="green",shape="box"];582[label="vxw400",fontsize=16,color="green",shape="box"];583[label="vxw30",fontsize=16,color="green",shape="box"];584[label="vxw400",fontsize=16,color="green",shape="box"];585[label="vxw30",fontsize=16,color="green",shape="box"];586[label="vxw400",fontsize=16,color="green",shape="box"];587[label="vxw30",fontsize=16,color="green",shape="box"];588[label="vxw400",fontsize=16,color="green",shape="box"];589[label="vxw30",fontsize=16,color="green",shape="box"];590[label="vxw400",fontsize=16,color="green",shape="box"];591[label="vxw30",fontsize=16,color="green",shape="box"];592[label="vxw400",fontsize=16,color="green",shape="box"];593[label="vxw30",fontsize=16,color="green",shape="box"];594[label="vxw400",fontsize=16,color="green",shape="box"];595[label="vxw30",fontsize=16,color="green",shape="box"];596 -> 994[label="",style="dashed", color="red", weight=0]; 28.26/13.43 596[label="compare1 (Just vxw59) (Just vxw60) (Just vxw59 <= Just vxw60)",fontsize=16,color="magenta"];596 -> 995[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 596 -> 996[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 596 -> 997[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 597[label="EQ",fontsize=16,color="green",shape="box"];598[label="vxw30",fontsize=16,color="green",shape="box"];599[label="vxw400",fontsize=16,color="green",shape="box"];600[label="vxw30",fontsize=16,color="green",shape="box"];601[label="vxw400",fontsize=16,color="green",shape="box"];602[label="vxw30",fontsize=16,color="green",shape="box"];603[label="vxw400",fontsize=16,color="green",shape="box"];604[label="vxw30",fontsize=16,color="green",shape="box"];605[label="vxw400",fontsize=16,color="green",shape="box"];606[label="vxw30",fontsize=16,color="green",shape="box"];607[label="vxw400",fontsize=16,color="green",shape="box"];608[label="vxw30",fontsize=16,color="green",shape="box"];609[label="vxw400",fontsize=16,color="green",shape="box"];610[label="vxw30",fontsize=16,color="green",shape="box"];611[label="vxw400",fontsize=16,color="green",shape="box"];612[label="vxw30",fontsize=16,color="green",shape="box"];613[label="vxw400",fontsize=16,color="green",shape="box"];614[label="vxw30",fontsize=16,color="green",shape="box"];615[label="vxw400",fontsize=16,color="green",shape="box"];616[label="vxw30",fontsize=16,color="green",shape="box"];617[label="vxw400",fontsize=16,color="green",shape="box"];618[label="vxw30",fontsize=16,color="green",shape="box"];619[label="vxw400",fontsize=16,color="green",shape="box"];620[label="vxw30",fontsize=16,color="green",shape="box"];621[label="vxw400",fontsize=16,color="green",shape="box"];622[label="vxw30",fontsize=16,color="green",shape="box"];623[label="vxw400",fontsize=16,color="green",shape="box"];624[label="vxw30",fontsize=16,color="green",shape="box"];625[label="vxw400",fontsize=16,color="green",shape="box"];626[label="LT",fontsize=16,color="green",shape="box"];627[label="vxw65",fontsize=16,color="green",shape="box"];628[label="GT",fontsize=16,color="green",shape="box"];629[label="compare0 True False True",fontsize=16,color="black",shape="box"];629 -> 814[label="",style="solid", color="black", weight=3]; 28.26/13.43 630[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];630 -> 815[label="",style="solid", color="black", weight=3]; 28.26/13.43 631[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];631 -> 816[label="",style="solid", color="black", weight=3]; 28.26/13.43 632[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];632 -> 817[label="",style="solid", color="black", weight=3]; 28.26/13.43 825[label="vxw401",fontsize=16,color="green",shape="box"];826[label="vxw31",fontsize=16,color="green",shape="box"];827[label="vxw401",fontsize=16,color="green",shape="box"];828[label="vxw31",fontsize=16,color="green",shape="box"];829[label="vxw401",fontsize=16,color="green",shape="box"];830[label="vxw31",fontsize=16,color="green",shape="box"];831[label="vxw401",fontsize=16,color="green",shape="box"];832[label="vxw31",fontsize=16,color="green",shape="box"];833[label="vxw401",fontsize=16,color="green",shape="box"];834[label="vxw31",fontsize=16,color="green",shape="box"];835[label="vxw401",fontsize=16,color="green",shape="box"];836[label="vxw31",fontsize=16,color="green",shape="box"];837[label="vxw401",fontsize=16,color="green",shape="box"];838[label="vxw31",fontsize=16,color="green",shape="box"];839[label="vxw401",fontsize=16,color="green",shape="box"];840[label="vxw31",fontsize=16,color="green",shape="box"];841[label="vxw401",fontsize=16,color="green",shape="box"];842[label="vxw31",fontsize=16,color="green",shape="box"];843[label="vxw401",fontsize=16,color="green",shape="box"];844[label="vxw31",fontsize=16,color="green",shape="box"];845[label="vxw401",fontsize=16,color="green",shape="box"];846[label="vxw31",fontsize=16,color="green",shape="box"];847[label="vxw401",fontsize=16,color="green",shape="box"];848[label="vxw31",fontsize=16,color="green",shape="box"];849[label="vxw401",fontsize=16,color="green",shape="box"];850[label="vxw31",fontsize=16,color="green",shape="box"];851[label="vxw401",fontsize=16,color="green",shape="box"];852[label="vxw31",fontsize=16,color="green",shape="box"];853[label="False",fontsize=16,color="green",shape="box"];854[label="vxw91",fontsize=16,color="green",shape="box"];855 -> 1006[label="",style="dashed", color="red", weight=0]; 28.26/13.43 855[label="compare1 (vxw73,vxw74) (vxw75,vxw76) (vxw73 < vxw75 || vxw73 == vxw75 && vxw74 <= vxw76)",fontsize=16,color="magenta"];855 -> 1007[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 855 -> 1008[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 855 -> 1009[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 855 -> 1010[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 855 -> 1011[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 855 -> 1012[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 429[label="primEqInt vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2962[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];429 -> 2962[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2962 -> 633[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2963[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];429 -> 2963[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2963 -> 634[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 430[label="vxw300 :% vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];2964[label="vxw400/vxw4000 :% vxw4001",fontsize=10,color="white",style="solid",shape="box"];430 -> 2964[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2964 -> 635[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 431[label="Nothing == vxw400",fontsize=16,color="burlywood",shape="box"];2965[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];431 -> 2965[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2965 -> 636[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2966[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];431 -> 2966[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2966 -> 637[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 432[label="Just vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2967[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];432 -> 2967[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2967 -> 638[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2968[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];432 -> 2968[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2968 -> 639[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 433[label="(vxw300,vxw301) == vxw400",fontsize=16,color="burlywood",shape="box"];2969[label="vxw400/(vxw4000,vxw4001)",fontsize=10,color="white",style="solid",shape="box"];433 -> 2969[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2969 -> 640[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 434[label="primEqFloat vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2970[label="vxw30/Float vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];434 -> 2970[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2970 -> 641[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 435[label="(vxw300,vxw301,vxw302) == vxw400",fontsize=16,color="burlywood",shape="box"];2971[label="vxw400/(vxw4000,vxw4001,vxw4002)",fontsize=10,color="white",style="solid",shape="box"];435 -> 2971[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2971 -> 642[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 436[label="vxw300 : vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];2972[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];436 -> 2972[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2972 -> 643[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2973[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];436 -> 2973[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2973 -> 644[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 437[label="[] == vxw400",fontsize=16,color="burlywood",shape="box"];2974[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];437 -> 2974[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2974 -> 645[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2975[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];437 -> 2975[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2975 -> 646[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 438[label="primEqDouble vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2976[label="vxw30/Double vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];438 -> 2976[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2976 -> 647[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 439[label="Integer vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2977[label="vxw400/Integer vxw4000",fontsize=10,color="white",style="solid",shape="box"];439 -> 2977[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2977 -> 648[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 440[label="() == vxw400",fontsize=16,color="burlywood",shape="box"];2978[label="vxw400/()",fontsize=10,color="white",style="solid",shape="box"];440 -> 2978[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2978 -> 649[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 441[label="primEqChar vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2979[label="vxw30/Char vxw300",fontsize=10,color="white",style="solid",shape="box"];441 -> 2979[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2979 -> 650[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 442[label="Left vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2980[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];442 -> 2980[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2980 -> 651[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2981[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];442 -> 2981[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2981 -> 652[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 443[label="Right vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2982[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];443 -> 2982[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2982 -> 653[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2983[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];443 -> 2983[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2983 -> 654[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 444[label="LT == vxw400",fontsize=16,color="burlywood",shape="box"];2984[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];444 -> 2984[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2984 -> 655[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2985[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];444 -> 2985[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2985 -> 656[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2986[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];444 -> 2986[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2986 -> 657[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 445[label="EQ == vxw400",fontsize=16,color="burlywood",shape="box"];2987[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];445 -> 2987[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2987 -> 658[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2988[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];445 -> 2988[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2988 -> 659[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2989[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];445 -> 2989[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2989 -> 660[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 446[label="GT == vxw400",fontsize=16,color="burlywood",shape="box"];2990[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];446 -> 2990[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2990 -> 661[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2991[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];446 -> 2991[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2991 -> 662[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2992[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];446 -> 2992[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2992 -> 663[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 447[label="False == vxw400",fontsize=16,color="burlywood",shape="box"];2993[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];447 -> 2993[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2993 -> 664[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2994[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];447 -> 2994[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2994 -> 665[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 448[label="True == vxw400",fontsize=16,color="burlywood",shape="box"];2995[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];448 -> 2995[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2995 -> 666[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2996[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];448 -> 2996[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2996 -> 667[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 819[label="vxw31",fontsize=16,color="green",shape="box"];820[label="Left vxw30 <= Left vxw31",fontsize=16,color="black",shape="box"];820 -> 913[label="",style="solid", color="black", weight=3]; 28.26/13.43 821[label="vxw30",fontsize=16,color="green",shape="box"];818[label="compare1 (Left vxw96) (Left vxw97) vxw98",fontsize=16,color="burlywood",shape="triangle"];2997[label="vxw98/False",fontsize=10,color="white",style="solid",shape="box"];818 -> 2997[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2997 -> 914[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 2998[label="vxw98/True",fontsize=10,color="white",style="solid",shape="box"];818 -> 2998[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2998 -> 915[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 713[label="compare0 (Right vxw30) (Left vxw400) True",fontsize=16,color="black",shape="box"];713 -> 916[label="",style="solid", color="black", weight=3]; 28.26/13.43 918[label="vxw37",fontsize=16,color="green",shape="box"];919[label="vxw38",fontsize=16,color="green",shape="box"];920[label="Right vxw37 <= Right vxw38",fontsize=16,color="black",shape="box"];920 -> 926[label="",style="solid", color="black", weight=3]; 28.26/13.43 917[label="compare1 (Right vxw103) (Right vxw104) vxw105",fontsize=16,color="burlywood",shape="triangle"];2999[label="vxw105/False",fontsize=10,color="white",style="solid",shape="box"];917 -> 2999[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 2999 -> 927[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3000[label="vxw105/True",fontsize=10,color="white",style="solid",shape="box"];917 -> 3000[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3000 -> 928[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 856 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 856[label="vxw32 == vxw402",fontsize=16,color="magenta"];856 -> 929[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 856 -> 930[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 857 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 857[label="vxw32 == vxw402",fontsize=16,color="magenta"];857 -> 931[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 857 -> 932[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 858 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 858[label="vxw32 == vxw402",fontsize=16,color="magenta"];858 -> 933[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 858 -> 934[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 859 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 859[label="vxw32 == vxw402",fontsize=16,color="magenta"];859 -> 935[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 859 -> 936[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 860 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 860[label="vxw32 == vxw402",fontsize=16,color="magenta"];860 -> 937[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 860 -> 938[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 861 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 861[label="vxw32 == vxw402",fontsize=16,color="magenta"];861 -> 939[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 861 -> 940[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 862 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 862[label="vxw32 == vxw402",fontsize=16,color="magenta"];862 -> 941[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 862 -> 942[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 863 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.43 863[label="vxw32 == vxw402",fontsize=16,color="magenta"];863 -> 943[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 863 -> 944[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 864 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 864[label="vxw32 == vxw402",fontsize=16,color="magenta"];864 -> 945[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 864 -> 946[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 865 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.43 865[label="vxw32 == vxw402",fontsize=16,color="magenta"];865 -> 947[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 865 -> 948[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 866 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.43 866[label="vxw32 == vxw402",fontsize=16,color="magenta"];866 -> 949[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 866 -> 950[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 867 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.43 867[label="vxw32 == vxw402",fontsize=16,color="magenta"];867 -> 951[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 867 -> 952[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 868 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 868[label="vxw32 == vxw402",fontsize=16,color="magenta"];868 -> 953[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 868 -> 954[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 869 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.43 869[label="vxw32 == vxw402",fontsize=16,color="magenta"];869 -> 955[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 869 -> 956[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 870 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 870[label="vxw31 == vxw401",fontsize=16,color="magenta"];870 -> 957[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 870 -> 958[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 871 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 871[label="vxw31 == vxw401",fontsize=16,color="magenta"];871 -> 959[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 871 -> 960[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 872 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 872[label="vxw31 == vxw401",fontsize=16,color="magenta"];872 -> 961[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 872 -> 962[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 873 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 873[label="vxw31 == vxw401",fontsize=16,color="magenta"];873 -> 963[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 873 -> 964[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 874 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 874[label="vxw31 == vxw401",fontsize=16,color="magenta"];874 -> 965[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 874 -> 966[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 875 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 875[label="vxw31 == vxw401",fontsize=16,color="magenta"];875 -> 967[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 875 -> 968[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 876 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 876[label="vxw31 == vxw401",fontsize=16,color="magenta"];876 -> 969[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 876 -> 970[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 877 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.43 877[label="vxw31 == vxw401",fontsize=16,color="magenta"];877 -> 971[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 877 -> 972[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 878 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 878[label="vxw31 == vxw401",fontsize=16,color="magenta"];878 -> 973[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 878 -> 974[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 879 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.43 879[label="vxw31 == vxw401",fontsize=16,color="magenta"];879 -> 975[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 879 -> 976[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 880 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.43 880[label="vxw31 == vxw401",fontsize=16,color="magenta"];880 -> 977[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 880 -> 978[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 881 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.43 881[label="vxw31 == vxw401",fontsize=16,color="magenta"];881 -> 979[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 881 -> 980[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 882 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 882[label="vxw31 == vxw401",fontsize=16,color="magenta"];882 -> 981[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 882 -> 982[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 883 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.43 883[label="vxw31 == vxw401",fontsize=16,color="magenta"];883 -> 983[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 883 -> 984[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 884[label="vxw400",fontsize=16,color="green",shape="box"];885[label="vxw30",fontsize=16,color="green",shape="box"];886[label="vxw400",fontsize=16,color="green",shape="box"];887[label="vxw30",fontsize=16,color="green",shape="box"];888[label="vxw400",fontsize=16,color="green",shape="box"];889[label="vxw30",fontsize=16,color="green",shape="box"];890[label="vxw400",fontsize=16,color="green",shape="box"];891[label="vxw30",fontsize=16,color="green",shape="box"];892[label="vxw400",fontsize=16,color="green",shape="box"];893[label="vxw30",fontsize=16,color="green",shape="box"];894[label="vxw400",fontsize=16,color="green",shape="box"];895[label="vxw30",fontsize=16,color="green",shape="box"];896[label="vxw400",fontsize=16,color="green",shape="box"];897[label="vxw30",fontsize=16,color="green",shape="box"];898[label="vxw400",fontsize=16,color="green",shape="box"];899[label="vxw30",fontsize=16,color="green",shape="box"];900[label="vxw400",fontsize=16,color="green",shape="box"];901[label="vxw30",fontsize=16,color="green",shape="box"];902[label="vxw400",fontsize=16,color="green",shape="box"];903[label="vxw30",fontsize=16,color="green",shape="box"];904[label="vxw400",fontsize=16,color="green",shape="box"];905[label="vxw30",fontsize=16,color="green",shape="box"];906[label="vxw400",fontsize=16,color="green",shape="box"];907[label="vxw30",fontsize=16,color="green",shape="box"];908[label="vxw400",fontsize=16,color="green",shape="box"];909[label="vxw30",fontsize=16,color="green",shape="box"];910[label="vxw400",fontsize=16,color="green",shape="box"];911[label="vxw30",fontsize=16,color="green",shape="box"];912 -> 1108[label="",style="dashed", color="red", weight=0]; 28.26/13.43 912[label="compare1 (vxw48,vxw49,vxw50) (vxw51,vxw52,vxw53) (vxw48 < vxw51 || vxw48 == vxw51 && (vxw49 < vxw52 || vxw49 == vxw52 && vxw50 <= vxw53))",fontsize=16,color="magenta"];912 -> 1109[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 912 -> 1110[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 912 -> 1111[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 912 -> 1112[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 912 -> 1113[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 912 -> 1114[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 912 -> 1115[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 912 -> 1116[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 807[label="Pos (primMulNat vxw300 vxw4010)",fontsize=16,color="green",shape="box"];807 -> 987[label="",style="dashed", color="green", weight=3]; 28.26/13.43 808[label="Neg (primMulNat vxw300 vxw4010)",fontsize=16,color="green",shape="box"];808 -> 988[label="",style="dashed", color="green", weight=3]; 28.26/13.43 809[label="Neg (primMulNat vxw300 vxw4010)",fontsize=16,color="green",shape="box"];809 -> 989[label="",style="dashed", color="green", weight=3]; 28.26/13.43 810[label="Pos (primMulNat vxw300 vxw4010)",fontsize=16,color="green",shape="box"];810 -> 990[label="",style="dashed", color="green", weight=3]; 28.26/13.43 811 -> 245[label="",style="dashed", color="red", weight=0]; 28.26/13.43 811[label="primMulInt vxw300 vxw4010",fontsize=16,color="magenta"];811 -> 991[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 811 -> 992[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 812[label="compare0 (Just vxw30) Nothing True",fontsize=16,color="black",shape="box"];812 -> 993[label="",style="solid", color="black", weight=3]; 28.26/13.43 995[label="Just vxw59 <= Just vxw60",fontsize=16,color="black",shape="box"];995 -> 1001[label="",style="solid", color="black", weight=3]; 28.26/13.43 996[label="vxw60",fontsize=16,color="green",shape="box"];997[label="vxw59",fontsize=16,color="green",shape="box"];994[label="compare1 (Just vxw113) (Just vxw114) vxw115",fontsize=16,color="burlywood",shape="triangle"];3001[label="vxw115/False",fontsize=10,color="white",style="solid",shape="box"];994 -> 3001[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3001 -> 1002[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3002[label="vxw115/True",fontsize=10,color="white",style="solid",shape="box"];994 -> 3002[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3002 -> 1003[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 814[label="GT",fontsize=16,color="green",shape="box"];815[label="GT",fontsize=16,color="green",shape="box"];816[label="GT",fontsize=16,color="green",shape="box"];817[label="GT",fontsize=16,color="green",shape="box"];1007[label="vxw73 < vxw75",fontsize=16,color="blue",shape="box"];3003[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3003[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3003 -> 1019[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3004[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3004[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3004 -> 1020[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3005[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3005[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3005 -> 1021[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3006[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3006[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3006 -> 1022[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3007[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3007[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3007 -> 1023[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3008[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3008[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3008 -> 1024[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3009[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3009[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3009 -> 1025[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3010[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3010[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3010 -> 1026[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3011[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3011[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3011 -> 1027[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3012[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3012[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3012 -> 1028[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3013[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3013[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3013 -> 1029[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3014[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3014[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3014 -> 1030[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3015[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3015[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3015 -> 1031[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3016[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 3016[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3016 -> 1032[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1008[label="vxw76",fontsize=16,color="green",shape="box"];1009 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1009[label="vxw73 == vxw75 && vxw74 <= vxw76",fontsize=16,color="magenta"];1009 -> 1033[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1009 -> 1034[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1010[label="vxw73",fontsize=16,color="green",shape="box"];1011[label="vxw75",fontsize=16,color="green",shape="box"];1012[label="vxw74",fontsize=16,color="green",shape="box"];1006[label="compare1 (vxw123,vxw124) (vxw125,vxw126) (vxw127 || vxw128)",fontsize=16,color="burlywood",shape="triangle"];3017[label="vxw127/False",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3017[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3017 -> 1035[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3018[label="vxw127/True",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3018[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3018 -> 1036[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 633[label="primEqInt (Pos vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];3019[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];633 -> 3019[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3019 -> 1037[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3020[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];633 -> 3020[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3020 -> 1038[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 634[label="primEqInt (Neg vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];3021[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];634 -> 3021[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3021 -> 1039[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3022[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];634 -> 3022[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3022 -> 1040[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 635[label="vxw300 :% vxw301 == vxw4000 :% vxw4001",fontsize=16,color="black",shape="box"];635 -> 1041[label="",style="solid", color="black", weight=3]; 28.26/13.43 636[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];636 -> 1042[label="",style="solid", color="black", weight=3]; 28.26/13.43 637[label="Nothing == Just vxw4000",fontsize=16,color="black",shape="box"];637 -> 1043[label="",style="solid", color="black", weight=3]; 28.26/13.43 638[label="Just vxw300 == Nothing",fontsize=16,color="black",shape="box"];638 -> 1044[label="",style="solid", color="black", weight=3]; 28.26/13.43 639[label="Just vxw300 == Just vxw4000",fontsize=16,color="black",shape="box"];639 -> 1045[label="",style="solid", color="black", weight=3]; 28.26/13.43 640[label="(vxw300,vxw301) == (vxw4000,vxw4001)",fontsize=16,color="black",shape="box"];640 -> 1046[label="",style="solid", color="black", weight=3]; 28.26/13.43 641[label="primEqFloat (Float vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];3023[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];641 -> 3023[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3023 -> 1047[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 642[label="(vxw300,vxw301,vxw302) == (vxw4000,vxw4001,vxw4002)",fontsize=16,color="black",shape="box"];642 -> 1048[label="",style="solid", color="black", weight=3]; 28.26/13.43 643[label="vxw300 : vxw301 == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];643 -> 1049[label="",style="solid", color="black", weight=3]; 28.26/13.43 644[label="vxw300 : vxw301 == []",fontsize=16,color="black",shape="box"];644 -> 1050[label="",style="solid", color="black", weight=3]; 28.26/13.43 645[label="[] == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];645 -> 1051[label="",style="solid", color="black", weight=3]; 28.26/13.43 646[label="[] == []",fontsize=16,color="black",shape="box"];646 -> 1052[label="",style="solid", color="black", weight=3]; 28.26/13.43 647[label="primEqDouble (Double vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];3024[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];647 -> 3024[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3024 -> 1053[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 648[label="Integer vxw300 == Integer vxw4000",fontsize=16,color="black",shape="box"];648 -> 1054[label="",style="solid", color="black", weight=3]; 28.26/13.43 649[label="() == ()",fontsize=16,color="black",shape="box"];649 -> 1055[label="",style="solid", color="black", weight=3]; 28.26/13.43 650[label="primEqChar (Char vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];3025[label="vxw400/Char vxw4000",fontsize=10,color="white",style="solid",shape="box"];650 -> 3025[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3025 -> 1056[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 651[label="Left vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];651 -> 1057[label="",style="solid", color="black", weight=3]; 28.26/13.43 652[label="Left vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];652 -> 1058[label="",style="solid", color="black", weight=3]; 28.26/13.43 653[label="Right vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];653 -> 1059[label="",style="solid", color="black", weight=3]; 28.26/13.43 654[label="Right vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];654 -> 1060[label="",style="solid", color="black", weight=3]; 28.26/13.43 655[label="LT == LT",fontsize=16,color="black",shape="box"];655 -> 1061[label="",style="solid", color="black", weight=3]; 28.26/13.43 656[label="LT == EQ",fontsize=16,color="black",shape="box"];656 -> 1062[label="",style="solid", color="black", weight=3]; 28.26/13.43 657[label="LT == GT",fontsize=16,color="black",shape="box"];657 -> 1063[label="",style="solid", color="black", weight=3]; 28.26/13.43 658[label="EQ == LT",fontsize=16,color="black",shape="box"];658 -> 1064[label="",style="solid", color="black", weight=3]; 28.26/13.43 659[label="EQ == EQ",fontsize=16,color="black",shape="box"];659 -> 1065[label="",style="solid", color="black", weight=3]; 28.26/13.43 660[label="EQ == GT",fontsize=16,color="black",shape="box"];660 -> 1066[label="",style="solid", color="black", weight=3]; 28.26/13.43 661[label="GT == LT",fontsize=16,color="black",shape="box"];661 -> 1067[label="",style="solid", color="black", weight=3]; 28.26/13.43 662[label="GT == EQ",fontsize=16,color="black",shape="box"];662 -> 1068[label="",style="solid", color="black", weight=3]; 28.26/13.43 663[label="GT == GT",fontsize=16,color="black",shape="box"];663 -> 1069[label="",style="solid", color="black", weight=3]; 28.26/13.43 664[label="False == False",fontsize=16,color="black",shape="box"];664 -> 1070[label="",style="solid", color="black", weight=3]; 28.26/13.43 665[label="False == True",fontsize=16,color="black",shape="box"];665 -> 1071[label="",style="solid", color="black", weight=3]; 28.26/13.43 666[label="True == False",fontsize=16,color="black",shape="box"];666 -> 1072[label="",style="solid", color="black", weight=3]; 28.26/13.43 667[label="True == True",fontsize=16,color="black",shape="box"];667 -> 1073[label="",style="solid", color="black", weight=3]; 28.26/13.43 913[label="vxw30 <= vxw31",fontsize=16,color="blue",shape="box"];3026[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3026[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3026 -> 1074[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3027[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3027[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3027 -> 1075[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3028[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3028[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3028 -> 1076[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3029[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3029[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3029 -> 1077[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3030[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3030[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3030 -> 1078[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3031[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3031[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3031 -> 1079[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3032[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3032[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3032 -> 1080[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3033[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3033[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3033 -> 1081[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3034[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3034[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3034 -> 1082[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3035[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3035[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3035 -> 1083[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3036[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3036[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3036 -> 1084[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3037[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3037[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3037 -> 1085[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3038[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3038[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3038 -> 1086[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3039[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];913 -> 3039[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3039 -> 1087[label="",style="solid", color="blue", weight=3]; 28.26/13.43 914[label="compare1 (Left vxw96) (Left vxw97) False",fontsize=16,color="black",shape="box"];914 -> 1088[label="",style="solid", color="black", weight=3]; 28.26/13.43 915[label="compare1 (Left vxw96) (Left vxw97) True",fontsize=16,color="black",shape="box"];915 -> 1089[label="",style="solid", color="black", weight=3]; 28.26/13.43 916[label="GT",fontsize=16,color="green",shape="box"];926[label="vxw37 <= vxw38",fontsize=16,color="blue",shape="box"];3040[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3040[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3040 -> 1090[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3041[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3041[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3041 -> 1091[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3042[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3042[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3042 -> 1092[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3043[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3043[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3043 -> 1093[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3044[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3044[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3044 -> 1094[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3045[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3045[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3045 -> 1095[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3046[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3046[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3046 -> 1096[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3047[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3047[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3047 -> 1097[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3048[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3048[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3048 -> 1098[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3049[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3049[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3049 -> 1099[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3050[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3050[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3050 -> 1100[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3051[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3051[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3051 -> 1101[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3052[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3052[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3052 -> 1102[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3053[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];926 -> 3053[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3053 -> 1103[label="",style="solid", color="blue", weight=3]; 28.26/13.43 927[label="compare1 (Right vxw103) (Right vxw104) False",fontsize=16,color="black",shape="box"];927 -> 1104[label="",style="solid", color="black", weight=3]; 28.26/13.43 928[label="compare1 (Right vxw103) (Right vxw104) True",fontsize=16,color="black",shape="box"];928 -> 1105[label="",style="solid", color="black", weight=3]; 28.26/13.43 929[label="vxw402",fontsize=16,color="green",shape="box"];930[label="vxw32",fontsize=16,color="green",shape="box"];931[label="vxw402",fontsize=16,color="green",shape="box"];932[label="vxw32",fontsize=16,color="green",shape="box"];933[label="vxw402",fontsize=16,color="green",shape="box"];934[label="vxw32",fontsize=16,color="green",shape="box"];935[label="vxw402",fontsize=16,color="green",shape="box"];936[label="vxw32",fontsize=16,color="green",shape="box"];937[label="vxw402",fontsize=16,color="green",shape="box"];938[label="vxw32",fontsize=16,color="green",shape="box"];939[label="vxw402",fontsize=16,color="green",shape="box"];940[label="vxw32",fontsize=16,color="green",shape="box"];941[label="vxw402",fontsize=16,color="green",shape="box"];942[label="vxw32",fontsize=16,color="green",shape="box"];943[label="vxw402",fontsize=16,color="green",shape="box"];944[label="vxw32",fontsize=16,color="green",shape="box"];945[label="vxw402",fontsize=16,color="green",shape="box"];946[label="vxw32",fontsize=16,color="green",shape="box"];947[label="vxw402",fontsize=16,color="green",shape="box"];948[label="vxw32",fontsize=16,color="green",shape="box"];949[label="vxw402",fontsize=16,color="green",shape="box"];950[label="vxw32",fontsize=16,color="green",shape="box"];951[label="vxw402",fontsize=16,color="green",shape="box"];952[label="vxw32",fontsize=16,color="green",shape="box"];953[label="vxw402",fontsize=16,color="green",shape="box"];954[label="vxw32",fontsize=16,color="green",shape="box"];955[label="vxw402",fontsize=16,color="green",shape="box"];956[label="vxw32",fontsize=16,color="green",shape="box"];957[label="vxw401",fontsize=16,color="green",shape="box"];958[label="vxw31",fontsize=16,color="green",shape="box"];959[label="vxw401",fontsize=16,color="green",shape="box"];960[label="vxw31",fontsize=16,color="green",shape="box"];961[label="vxw401",fontsize=16,color="green",shape="box"];962[label="vxw31",fontsize=16,color="green",shape="box"];963[label="vxw401",fontsize=16,color="green",shape="box"];964[label="vxw31",fontsize=16,color="green",shape="box"];965[label="vxw401",fontsize=16,color="green",shape="box"];966[label="vxw31",fontsize=16,color="green",shape="box"];967[label="vxw401",fontsize=16,color="green",shape="box"];968[label="vxw31",fontsize=16,color="green",shape="box"];969[label="vxw401",fontsize=16,color="green",shape="box"];970[label="vxw31",fontsize=16,color="green",shape="box"];971[label="vxw401",fontsize=16,color="green",shape="box"];972[label="vxw31",fontsize=16,color="green",shape="box"];973[label="vxw401",fontsize=16,color="green",shape="box"];974[label="vxw31",fontsize=16,color="green",shape="box"];975[label="vxw401",fontsize=16,color="green",shape="box"];976[label="vxw31",fontsize=16,color="green",shape="box"];977[label="vxw401",fontsize=16,color="green",shape="box"];978[label="vxw31",fontsize=16,color="green",shape="box"];979[label="vxw401",fontsize=16,color="green",shape="box"];980[label="vxw31",fontsize=16,color="green",shape="box"];981[label="vxw401",fontsize=16,color="green",shape="box"];982[label="vxw31",fontsize=16,color="green",shape="box"];983[label="vxw401",fontsize=16,color="green",shape="box"];984[label="vxw31",fontsize=16,color="green",shape="box"];1109[label="vxw49",fontsize=16,color="green",shape="box"];1110[label="vxw52",fontsize=16,color="green",shape="box"];1111[label="vxw53",fontsize=16,color="green",shape="box"];1112 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1112[label="vxw48 == vxw51 && (vxw49 < vxw52 || vxw49 == vxw52 && vxw50 <= vxw53)",fontsize=16,color="magenta"];1112 -> 1125[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1112 -> 1126[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1113[label="vxw50",fontsize=16,color="green",shape="box"];1114[label="vxw51",fontsize=16,color="green",shape="box"];1115[label="vxw48 < vxw51",fontsize=16,color="blue",shape="box"];3054[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3054[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3054 -> 1127[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3055[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3055[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3055 -> 1128[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3056[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3056[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3056 -> 1129[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3057[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3057[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3057 -> 1130[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3058[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3058[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3058 -> 1131[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3059[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3059[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3059 -> 1132[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3060[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3060[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3060 -> 1133[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3061[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3061[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3061 -> 1134[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3062[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3062[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3062 -> 1135[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3063[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3063[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3063 -> 1136[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3064[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3064[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3064 -> 1137[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3065[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3065[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3065 -> 1138[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3066[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3066[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3066 -> 1139[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3067[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3067[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3067 -> 1140[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1116[label="vxw48",fontsize=16,color="green",shape="box"];1108[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) (vxw144 || vxw145)",fontsize=16,color="burlywood",shape="triangle"];3068[label="vxw144/False",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3068[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3068 -> 1141[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3069[label="vxw144/True",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3069[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3069 -> 1142[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 987[label="primMulNat vxw300 vxw4010",fontsize=16,color="burlywood",shape="triangle"];3070[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];987 -> 3070[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3070 -> 1143[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3071[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];987 -> 3071[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3071 -> 1144[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 988 -> 987[label="",style="dashed", color="red", weight=0]; 28.26/13.43 988[label="primMulNat vxw300 vxw4010",fontsize=16,color="magenta"];988 -> 1145[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 989 -> 987[label="",style="dashed", color="red", weight=0]; 28.26/13.43 989[label="primMulNat vxw300 vxw4010",fontsize=16,color="magenta"];989 -> 1146[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 990 -> 987[label="",style="dashed", color="red", weight=0]; 28.26/13.43 990[label="primMulNat vxw300 vxw4010",fontsize=16,color="magenta"];990 -> 1147[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 990 -> 1148[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 991[label="vxw4010",fontsize=16,color="green",shape="box"];992[label="vxw300",fontsize=16,color="green",shape="box"];993[label="GT",fontsize=16,color="green",shape="box"];1001[label="vxw59 <= vxw60",fontsize=16,color="blue",shape="box"];3072[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3072[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3072 -> 1149[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3073[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3073[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3073 -> 1150[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3074[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3074[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3074 -> 1151[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3075[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3075[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3075 -> 1152[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3076[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3076[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3076 -> 1153[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3077[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3077[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3077 -> 1154[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3078[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3078[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3078 -> 1155[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3079[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3079[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3079 -> 1156[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3080[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3080[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3080 -> 1157[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3081[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3081[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3081 -> 1158[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3082[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3082[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3082 -> 1159[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3083[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3083[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3083 -> 1160[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3084[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3084[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3084 -> 1161[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3085[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1001 -> 3085[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3085 -> 1162[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1002[label="compare1 (Just vxw113) (Just vxw114) False",fontsize=16,color="black",shape="box"];1002 -> 1163[label="",style="solid", color="black", weight=3]; 28.26/13.43 1003[label="compare1 (Just vxw113) (Just vxw114) True",fontsize=16,color="black",shape="box"];1003 -> 1164[label="",style="solid", color="black", weight=3]; 28.26/13.43 1019[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1019 -> 1165[label="",style="solid", color="black", weight=3]; 28.26/13.43 1020[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1020 -> 1166[label="",style="solid", color="black", weight=3]; 28.26/13.43 1021[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1021 -> 1167[label="",style="solid", color="black", weight=3]; 28.26/13.43 1022[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1022 -> 1168[label="",style="solid", color="black", weight=3]; 28.26/13.43 1023[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1023 -> 1169[label="",style="solid", color="black", weight=3]; 28.26/13.43 1024[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1024 -> 1170[label="",style="solid", color="black", weight=3]; 28.26/13.43 1025[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1025 -> 1171[label="",style="solid", color="black", weight=3]; 28.26/13.43 1026[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1026 -> 1172[label="",style="solid", color="black", weight=3]; 28.26/13.43 1027[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1027 -> 1173[label="",style="solid", color="black", weight=3]; 28.26/13.43 1028[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1028 -> 1174[label="",style="solid", color="black", weight=3]; 28.26/13.43 1029[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1029 -> 1175[label="",style="solid", color="black", weight=3]; 28.26/13.43 1030[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1030 -> 1176[label="",style="solid", color="black", weight=3]; 28.26/13.43 1031[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1031 -> 1177[label="",style="solid", color="black", weight=3]; 28.26/13.43 1032[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1032 -> 1178[label="",style="solid", color="black", weight=3]; 28.26/13.43 1033[label="vxw74 <= vxw76",fontsize=16,color="blue",shape="box"];3086[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3086[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3086 -> 1179[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3087[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3087[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3087 -> 1180[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3088[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3088[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3088 -> 1181[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3089[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3089[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3089 -> 1182[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3090[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3090[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3090 -> 1183[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3091[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3091[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3091 -> 1184[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3092[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3092[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3092 -> 1185[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3093[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3093[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3093 -> 1186[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3094[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3094[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3094 -> 1187[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3095[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3095[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3095 -> 1188[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3096[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3096[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3096 -> 1189[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3097[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3097[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3097 -> 1190[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3098[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3098[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3098 -> 1191[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3099[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1033 -> 3099[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3099 -> 1192[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1034[label="vxw73 == vxw75",fontsize=16,color="blue",shape="box"];3100[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3100[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3100 -> 1193[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3101[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3101[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3101 -> 1194[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3102[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3102[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3102 -> 1195[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3103[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3103[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3103 -> 1196[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3104[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3104[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3104 -> 1197[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3105[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3105[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3105 -> 1198[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3106[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3106[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3106 -> 1199[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3107[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3107[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3107 -> 1200[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3108[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3108[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3108 -> 1201[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3109[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3109[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3109 -> 1202[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3110[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3110[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3110 -> 1203[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3111[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3111[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3111 -> 1204[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3112[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3112[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3112 -> 1205[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3113[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3113[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3113 -> 1206[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1035[label="compare1 (vxw123,vxw124) (vxw125,vxw126) (False || vxw128)",fontsize=16,color="black",shape="box"];1035 -> 1207[label="",style="solid", color="black", weight=3]; 28.26/13.43 1036[label="compare1 (vxw123,vxw124) (vxw125,vxw126) (True || vxw128)",fontsize=16,color="black",shape="box"];1036 -> 1208[label="",style="solid", color="black", weight=3]; 28.26/13.43 1037[label="primEqInt (Pos (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];3114[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3114[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3114 -> 1209[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3115[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3115[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3115 -> 1210[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1038[label="primEqInt (Pos Zero) vxw400",fontsize=16,color="burlywood",shape="box"];3116[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];1038 -> 3116[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3116 -> 1211[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3117[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];1038 -> 3117[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3117 -> 1212[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1039[label="primEqInt (Neg (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];3118[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3118[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3118 -> 1213[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3119[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3119[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3119 -> 1214[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1040[label="primEqInt (Neg Zero) vxw400",fontsize=16,color="burlywood",shape="box"];3120[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3120[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3120 -> 1215[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3121[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3121[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3121 -> 1216[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1041 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1041[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];1041 -> 1217[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1041 -> 1218[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1042[label="True",fontsize=16,color="green",shape="box"];1043[label="False",fontsize=16,color="green",shape="box"];1044[label="False",fontsize=16,color="green",shape="box"];1045[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3122[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3122[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3122 -> 1219[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3123[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3123[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3123 -> 1220[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3124[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3124[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3124 -> 1221[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3125[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3125[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3125 -> 1222[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3126[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3126[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3126 -> 1223[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3127[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3127[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3127 -> 1224[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3128[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3128[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3128 -> 1225[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3129[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3129[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3129 -> 1226[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3130[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3130[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3130 -> 1227[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3131[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3131[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3131 -> 1228[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3132[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3132[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3132 -> 1229[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3133[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3133[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3133 -> 1230[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3134[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3134[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3134 -> 1231[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3135[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3135[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3135 -> 1232[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1046 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1046[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];1046 -> 1233[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1046 -> 1234[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1047[label="primEqFloat (Float vxw300 vxw301) (Float vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];1047 -> 1235[label="",style="solid", color="black", weight=3]; 28.26/13.43 1048 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1048[label="vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];1048 -> 1236[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1048 -> 1237[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1049 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1049[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];1049 -> 1238[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1049 -> 1239[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1050[label="False",fontsize=16,color="green",shape="box"];1051[label="False",fontsize=16,color="green",shape="box"];1052[label="True",fontsize=16,color="green",shape="box"];1053[label="primEqDouble (Double vxw300 vxw301) (Double vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];1053 -> 1240[label="",style="solid", color="black", weight=3]; 28.26/13.43 1054 -> 429[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1054[label="primEqInt vxw300 vxw4000",fontsize=16,color="magenta"];1054 -> 1241[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1054 -> 1242[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1055[label="True",fontsize=16,color="green",shape="box"];1056[label="primEqChar (Char vxw300) (Char vxw4000)",fontsize=16,color="black",shape="box"];1056 -> 1243[label="",style="solid", color="black", weight=3]; 28.26/13.43 1057[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3136[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3136[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3136 -> 1244[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3137[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3137[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3137 -> 1245[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3138[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3138[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3138 -> 1246[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3139[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3139[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3139 -> 1247[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3140[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3140[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3140 -> 1248[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3141[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3141[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3141 -> 1249[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3142[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3142[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3142 -> 1250[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3143[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3143[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3143 -> 1251[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3144[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3144[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3144 -> 1252[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3145[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3145[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3145 -> 1253[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3146[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3146[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3146 -> 1254[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3147[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3147[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3147 -> 1255[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3148[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3148[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3148 -> 1256[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3149[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3149[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3149 -> 1257[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1058[label="False",fontsize=16,color="green",shape="box"];1059[label="False",fontsize=16,color="green",shape="box"];1060[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3150[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3150[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3150 -> 1258[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3151[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3151[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3151 -> 1259[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3152[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3152[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3152 -> 1260[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3153[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3153[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3153 -> 1261[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3154[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3154[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3154 -> 1262[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3155[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3155[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3155 -> 1263[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3156[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3156[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3156 -> 1264[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3157[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3157[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3157 -> 1265[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3158[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3158[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3158 -> 1266[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3159[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3159[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3159 -> 1267[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3160[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3160[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3160 -> 1268[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3161[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3161[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3161 -> 1269[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3162[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3162[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3162 -> 1270[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3163[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 3163[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3163 -> 1271[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1061[label="True",fontsize=16,color="green",shape="box"];1062[label="False",fontsize=16,color="green",shape="box"];1063[label="False",fontsize=16,color="green",shape="box"];1064[label="False",fontsize=16,color="green",shape="box"];1065[label="True",fontsize=16,color="green",shape="box"];1066[label="False",fontsize=16,color="green",shape="box"];1067[label="False",fontsize=16,color="green",shape="box"];1068[label="False",fontsize=16,color="green",shape="box"];1069[label="True",fontsize=16,color="green",shape="box"];1070[label="True",fontsize=16,color="green",shape="box"];1071[label="False",fontsize=16,color="green",shape="box"];1072[label="False",fontsize=16,color="green",shape="box"];1073[label="True",fontsize=16,color="green",shape="box"];1074[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3164[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];1074 -> 3164[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3164 -> 1272[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3165[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];1074 -> 3165[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3165 -> 1273[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1075[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1075 -> 1274[label="",style="solid", color="black", weight=3]; 28.26/13.43 1076[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3166[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];1076 -> 3166[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3166 -> 1275[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3167[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];1076 -> 3167[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3167 -> 1276[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3168[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];1076 -> 3168[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3168 -> 1277[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1077[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1077 -> 1278[label="",style="solid", color="black", weight=3]; 28.26/13.43 1078[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3169[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];1078 -> 3169[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3169 -> 1279[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1079[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3170[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3170[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3170 -> 1280[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3171[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3171[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3171 -> 1281[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1080[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3172[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3172[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3172 -> 1282[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1081[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1081 -> 1283[label="",style="solid", color="black", weight=3]; 28.26/13.43 1082[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1082 -> 1284[label="",style="solid", color="black", weight=3]; 28.26/13.43 1083[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1083 -> 1285[label="",style="solid", color="black", weight=3]; 28.26/13.43 1084[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1084 -> 1286[label="",style="solid", color="black", weight=3]; 28.26/13.43 1085[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3173[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];1085 -> 3173[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3173 -> 1287[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3174[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];1085 -> 3174[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3174 -> 1288[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1086[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1086 -> 1289[label="",style="solid", color="black", weight=3]; 28.26/13.43 1087[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1087 -> 1290[label="",style="solid", color="black", weight=3]; 28.26/13.43 1088[label="compare0 (Left vxw96) (Left vxw97) otherwise",fontsize=16,color="black",shape="box"];1088 -> 1291[label="",style="solid", color="black", weight=3]; 28.26/13.43 1089[label="LT",fontsize=16,color="green",shape="box"];1090 -> 1074[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1090[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1090 -> 1292[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1090 -> 1293[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1091 -> 1075[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1091[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1091 -> 1294[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1091 -> 1295[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1092 -> 1076[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1092[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1092 -> 1296[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1092 -> 1297[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1093 -> 1077[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1093[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1093 -> 1298[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1093 -> 1299[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1094 -> 1078[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1094[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1094 -> 1300[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1094 -> 1301[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1095 -> 1079[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1095[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1095 -> 1302[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1095 -> 1303[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1096 -> 1080[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1096[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1096 -> 1304[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1096 -> 1305[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1097 -> 1081[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1097[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1097 -> 1306[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1097 -> 1307[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1098 -> 1082[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1098[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1098 -> 1308[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1098 -> 1309[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1099 -> 1083[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1099[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1099 -> 1310[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1099 -> 1311[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1100 -> 1084[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1100[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1100 -> 1312[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1100 -> 1313[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1101 -> 1085[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1101[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1101 -> 1314[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1101 -> 1315[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1102 -> 1086[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1102[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1102 -> 1316[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1102 -> 1317[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1103 -> 1087[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1103[label="vxw37 <= vxw38",fontsize=16,color="magenta"];1103 -> 1318[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1103 -> 1319[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1104[label="compare0 (Right vxw103) (Right vxw104) otherwise",fontsize=16,color="black",shape="box"];1104 -> 1320[label="",style="solid", color="black", weight=3]; 28.26/13.43 1105[label="LT",fontsize=16,color="green",shape="box"];1125 -> 1691[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1125[label="vxw49 < vxw52 || vxw49 == vxw52 && vxw50 <= vxw53",fontsize=16,color="magenta"];1125 -> 1692[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1125 -> 1693[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1126[label="vxw48 == vxw51",fontsize=16,color="blue",shape="box"];3175[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3175[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3175 -> 1323[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3176[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3176[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3176 -> 1324[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3177[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3177[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3177 -> 1325[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3178[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3178[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3178 -> 1326[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3179[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3179[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3179 -> 1327[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3180[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3180[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3180 -> 1328[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3181[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3181[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3181 -> 1329[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3182[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3182[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3182 -> 1330[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3183[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3183[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3183 -> 1331[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3184[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3184[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3184 -> 1332[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3185[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3185[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3185 -> 1333[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3186[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3186[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3186 -> 1334[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3187[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3187[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3187 -> 1335[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3188[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3188[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3188 -> 1336[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1127 -> 1019[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1127[label="vxw48 < vxw51",fontsize=16,color="magenta"];1127 -> 1337[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1127 -> 1338[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1128 -> 1020[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1128[label="vxw48 < vxw51",fontsize=16,color="magenta"];1128 -> 1339[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1128 -> 1340[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1129 -> 1021[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1129[label="vxw48 < vxw51",fontsize=16,color="magenta"];1129 -> 1341[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1129 -> 1342[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1130 -> 1022[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1130[label="vxw48 < vxw51",fontsize=16,color="magenta"];1130 -> 1343[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1130 -> 1344[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1131 -> 1023[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1131[label="vxw48 < vxw51",fontsize=16,color="magenta"];1131 -> 1345[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1131 -> 1346[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1132 -> 1024[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1132[label="vxw48 < vxw51",fontsize=16,color="magenta"];1132 -> 1347[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1132 -> 1348[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1133 -> 1025[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1133[label="vxw48 < vxw51",fontsize=16,color="magenta"];1133 -> 1349[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1133 -> 1350[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1134 -> 1026[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1134[label="vxw48 < vxw51",fontsize=16,color="magenta"];1134 -> 1351[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1134 -> 1352[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1135 -> 1027[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1135[label="vxw48 < vxw51",fontsize=16,color="magenta"];1135 -> 1353[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1135 -> 1354[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1136 -> 1028[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1136[label="vxw48 < vxw51",fontsize=16,color="magenta"];1136 -> 1355[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1136 -> 1356[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1137 -> 1029[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1137[label="vxw48 < vxw51",fontsize=16,color="magenta"];1137 -> 1357[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1137 -> 1358[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1138 -> 1030[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1138[label="vxw48 < vxw51",fontsize=16,color="magenta"];1138 -> 1359[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1138 -> 1360[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1139 -> 1031[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1139[label="vxw48 < vxw51",fontsize=16,color="magenta"];1139 -> 1361[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1139 -> 1362[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1140 -> 1032[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1140[label="vxw48 < vxw51",fontsize=16,color="magenta"];1140 -> 1363[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1140 -> 1364[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1141[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) (False || vxw145)",fontsize=16,color="black",shape="box"];1141 -> 1365[label="",style="solid", color="black", weight=3]; 28.26/13.43 1142[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) (True || vxw145)",fontsize=16,color="black",shape="box"];1142 -> 1366[label="",style="solid", color="black", weight=3]; 28.26/13.43 1143[label="primMulNat (Succ vxw3000) vxw4010",fontsize=16,color="burlywood",shape="box"];3189[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3189[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3189 -> 1367[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3190[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3190[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3190 -> 1368[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1144[label="primMulNat Zero vxw4010",fontsize=16,color="burlywood",shape="box"];3191[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3191[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3191 -> 1369[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3192[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3192[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3192 -> 1370[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1145[label="vxw4010",fontsize=16,color="green",shape="box"];1146[label="vxw300",fontsize=16,color="green",shape="box"];1147[label="vxw300",fontsize=16,color="green",shape="box"];1148[label="vxw4010",fontsize=16,color="green",shape="box"];1149 -> 1074[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1149[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1149 -> 1371[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1149 -> 1372[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1150 -> 1075[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1150[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1150 -> 1373[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1150 -> 1374[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1151 -> 1076[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1151[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1151 -> 1375[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1151 -> 1376[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1152 -> 1077[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1152[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1152 -> 1377[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1152 -> 1378[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1153 -> 1078[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1153[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1153 -> 1379[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1153 -> 1380[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1154 -> 1079[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1154[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1154 -> 1381[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1154 -> 1382[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1155 -> 1080[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1155[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1155 -> 1383[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1155 -> 1384[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1156 -> 1081[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1156[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1156 -> 1385[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1156 -> 1386[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1157 -> 1082[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1157[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1157 -> 1387[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1157 -> 1388[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1158 -> 1083[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1158[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1158 -> 1389[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1158 -> 1390[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1159 -> 1084[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1159[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1159 -> 1391[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1159 -> 1392[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1160 -> 1085[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1160[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1160 -> 1393[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1160 -> 1394[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1161 -> 1086[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1161[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1161 -> 1395[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1161 -> 1396[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1162 -> 1087[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1162[label="vxw59 <= vxw60",fontsize=16,color="magenta"];1162 -> 1397[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1162 -> 1398[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1163[label="compare0 (Just vxw113) (Just vxw114) otherwise",fontsize=16,color="black",shape="box"];1163 -> 1399[label="",style="solid", color="black", weight=3]; 28.26/13.43 1164[label="LT",fontsize=16,color="green",shape="box"];1165 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1165[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1165 -> 1400[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1165 -> 1401[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1166 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1166[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1166 -> 1402[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1166 -> 1403[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1167 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1167[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1167 -> 1404[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1167 -> 1405[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1168 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1168[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1168 -> 1406[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1168 -> 1407[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1169 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1169[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1169 -> 1408[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1169 -> 1409[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1170 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1170[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1170 -> 1410[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1170 -> 1411[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1171 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1171[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1171 -> 1412[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1171 -> 1413[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1172 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1172[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1172 -> 1414[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1172 -> 1415[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1173 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1173[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1173 -> 1416[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1173 -> 1417[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1174 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1174[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1174 -> 1418[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1174 -> 1419[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1175 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1175[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1175 -> 1420[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1175 -> 1421[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1176 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1176[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1176 -> 1422[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1176 -> 1423[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1177 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1177[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1177 -> 1424[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1177 -> 1425[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1178 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1178[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1178 -> 1426[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1178 -> 1427[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1179 -> 1074[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1179[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1179 -> 1428[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1179 -> 1429[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1180 -> 1075[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1180[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1180 -> 1430[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1180 -> 1431[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1181 -> 1076[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1181[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1181 -> 1432[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1181 -> 1433[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1182 -> 1077[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1182[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1182 -> 1434[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1182 -> 1435[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1183 -> 1078[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1183[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1183 -> 1436[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1183 -> 1437[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1184 -> 1079[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1184[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1184 -> 1438[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1184 -> 1439[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1185 -> 1080[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1185[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1185 -> 1440[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1185 -> 1441[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1186 -> 1081[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1186[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1186 -> 1442[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1186 -> 1443[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1187 -> 1082[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1187[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1187 -> 1444[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1187 -> 1445[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1188 -> 1083[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1188[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1188 -> 1446[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1188 -> 1447[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1189 -> 1084[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1189[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1189 -> 1448[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1189 -> 1449[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1190 -> 1085[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1190[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1190 -> 1450[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1190 -> 1451[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1191 -> 1086[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1191[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1191 -> 1452[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1191 -> 1453[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1192 -> 1087[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1192[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1192 -> 1454[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1192 -> 1455[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1193 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1193[label="vxw73 == vxw75",fontsize=16,color="magenta"];1193 -> 1456[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1193 -> 1457[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1194 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1194[label="vxw73 == vxw75",fontsize=16,color="magenta"];1194 -> 1458[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1194 -> 1459[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1195 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1195[label="vxw73 == vxw75",fontsize=16,color="magenta"];1195 -> 1460[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1195 -> 1461[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1196 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1196[label="vxw73 == vxw75",fontsize=16,color="magenta"];1196 -> 1462[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1196 -> 1463[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1197 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1197[label="vxw73 == vxw75",fontsize=16,color="magenta"];1197 -> 1464[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1197 -> 1465[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1198 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1198[label="vxw73 == vxw75",fontsize=16,color="magenta"];1198 -> 1466[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1198 -> 1467[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1199 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1199[label="vxw73 == vxw75",fontsize=16,color="magenta"];1199 -> 1468[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1199 -> 1469[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1200 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1200[label="vxw73 == vxw75",fontsize=16,color="magenta"];1200 -> 1470[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1200 -> 1471[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1201 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1201[label="vxw73 == vxw75",fontsize=16,color="magenta"];1201 -> 1472[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1201 -> 1473[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1202 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1202[label="vxw73 == vxw75",fontsize=16,color="magenta"];1202 -> 1474[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1202 -> 1475[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1203 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1203[label="vxw73 == vxw75",fontsize=16,color="magenta"];1203 -> 1476[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1203 -> 1477[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1204 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1204[label="vxw73 == vxw75",fontsize=16,color="magenta"];1204 -> 1478[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1204 -> 1479[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1205 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1205[label="vxw73 == vxw75",fontsize=16,color="magenta"];1205 -> 1480[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1205 -> 1481[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1206 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1206[label="vxw73 == vxw75",fontsize=16,color="magenta"];1206 -> 1482[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1206 -> 1483[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1207[label="compare1 (vxw123,vxw124) (vxw125,vxw126) vxw128",fontsize=16,color="burlywood",shape="triangle"];3193[label="vxw128/False",fontsize=10,color="white",style="solid",shape="box"];1207 -> 3193[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3193 -> 1484[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3194[label="vxw128/True",fontsize=10,color="white",style="solid",shape="box"];1207 -> 3194[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3194 -> 1485[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1208 -> 1207[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1208[label="compare1 (vxw123,vxw124) (vxw125,vxw126) True",fontsize=16,color="magenta"];1208 -> 1486[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1209[label="primEqInt (Pos (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];3195[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1209 -> 3195[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3195 -> 1487[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3196[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1209 -> 3196[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3196 -> 1488[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1210[label="primEqInt (Pos (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];1210 -> 1489[label="",style="solid", color="black", weight=3]; 28.26/13.43 1211[label="primEqInt (Pos Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];3197[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1211 -> 3197[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3197 -> 1490[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3198[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1211 -> 3198[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3198 -> 1491[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1212[label="primEqInt (Pos Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];3199[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3199[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3199 -> 1492[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3200[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3200[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3200 -> 1493[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1213[label="primEqInt (Neg (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];1213 -> 1494[label="",style="solid", color="black", weight=3]; 28.26/13.43 1214[label="primEqInt (Neg (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];3201[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3201[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3201 -> 1495[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3202[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3202[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3202 -> 1496[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1215[label="primEqInt (Neg Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];3203[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1215 -> 3203[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3203 -> 1497[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3204[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1215 -> 3204[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3204 -> 1498[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1216[label="primEqInt (Neg Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];3205[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1216 -> 3205[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3205 -> 1499[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3206[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1216 -> 3206[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3206 -> 1500[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1217[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];3207[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3207[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3207 -> 1501[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3208[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3208[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3208 -> 1502[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1218[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3209[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3209[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3209 -> 1503[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3210[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3210[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3210 -> 1504[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1219 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1219[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1219 -> 1505[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1219 -> 1506[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1220 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1220[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1220 -> 1507[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1220 -> 1508[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1221 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1221[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1221 -> 1509[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1221 -> 1510[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1222 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1222[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1222 -> 1511[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1222 -> 1512[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1223 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1223[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1223 -> 1513[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1223 -> 1514[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1224 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1224[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1224 -> 1515[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1224 -> 1516[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1225 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1225[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1225 -> 1517[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1225 -> 1518[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1226 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1226[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1226 -> 1519[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1226 -> 1520[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1227 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1227[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1227 -> 1521[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1227 -> 1522[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1228 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1228[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1228 -> 1523[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1228 -> 1524[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1229 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1229[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1229 -> 1525[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1229 -> 1526[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1230 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1230[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1230 -> 1527[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1230 -> 1528[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1231 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1231[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1231 -> 1529[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1231 -> 1530[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1232 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1232[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1232 -> 1531[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1232 -> 1532[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1233[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];3211[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3211[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3211 -> 1533[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3212[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3212[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3212 -> 1534[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3213[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3213[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3213 -> 1535[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3214[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3214[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3214 -> 1536[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3215[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3215[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3215 -> 1537[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3216[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3216[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3216 -> 1538[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3217[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3217[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3217 -> 1539[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3218[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3218[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3218 -> 1540[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3219[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3219[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3219 -> 1541[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3220[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3220[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3220 -> 1542[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3221[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3221[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3221 -> 1543[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3222[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3222[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3222 -> 1544[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3223[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3223[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3223 -> 1545[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3224[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3224[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3224 -> 1546[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1234[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3225[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3225[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3225 -> 1547[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3226[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3226[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3226 -> 1548[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3227[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3227[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3227 -> 1549[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3228[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3228[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3228 -> 1550[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3229[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3229[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3229 -> 1551[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3230[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3230[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3230 -> 1552[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3231[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3231[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3231 -> 1553[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3232[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3232[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3232 -> 1554[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3233[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3233[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3233 -> 1555[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3234[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3234[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3234 -> 1556[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3235[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3235[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3235 -> 1557[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3236[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3236[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3236 -> 1558[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3237[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3237[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3237 -> 1559[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3238[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3238[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3238 -> 1560[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1235 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1235[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];1235 -> 1561[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1235 -> 1562[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1236 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1236[label="vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];1236 -> 1563[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1236 -> 1564[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1237[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3239[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3239[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3239 -> 1565[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3240[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3240[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3240 -> 1566[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3241[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3241[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3241 -> 1567[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3242[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3242[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3242 -> 1568[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3243[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3243[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3243 -> 1569[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3244[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3244[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3244 -> 1570[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3245[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3245[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3245 -> 1571[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3246[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3246[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3246 -> 1572[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3247[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3247[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3247 -> 1573[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3248[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3248[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3248 -> 1574[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3249[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3249[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3249 -> 1575[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3250[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3250[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3250 -> 1576[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3251[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3251[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3251 -> 1577[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3252[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3252[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3252 -> 1578[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1238 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1238[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1238 -> 1579[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1238 -> 1580[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1239[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3253[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3253[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3253 -> 1581[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3254[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3254[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3254 -> 1582[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3255[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3255[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3255 -> 1583[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3256[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3256[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3256 -> 1584[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3257[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3257[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3257 -> 1585[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3258[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3258[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3258 -> 1586[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3259[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3259[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3259 -> 1587[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3260[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3260[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3260 -> 1588[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3261[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3261[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3261 -> 1589[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3262[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3262[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3262 -> 1590[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3263[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3263[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3263 -> 1591[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3264[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3264[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3264 -> 1592[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3265[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3265[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3265 -> 1593[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3266[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 3266[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3266 -> 1594[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1240 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1240[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];1240 -> 1595[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1240 -> 1596[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1241[label="vxw4000",fontsize=16,color="green",shape="box"];1242[label="vxw300",fontsize=16,color="green",shape="box"];1243[label="primEqNat vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];3267[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];1243 -> 3267[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3267 -> 1597[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3268[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1243 -> 3268[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3268 -> 1598[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1244 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1244[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1244 -> 1599[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1244 -> 1600[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1245 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1245[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1245 -> 1601[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1245 -> 1602[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1246 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1246[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1246 -> 1603[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1246 -> 1604[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1247 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1247[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1247 -> 1605[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1247 -> 1606[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1248 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1248[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1248 -> 1607[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1248 -> 1608[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1249 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1249[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1249 -> 1609[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1249 -> 1610[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1250 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1250[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1250 -> 1611[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1250 -> 1612[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1251 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1251[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1251 -> 1613[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1251 -> 1614[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1252 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1252[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1252 -> 1615[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1252 -> 1616[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1253 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1253[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1253 -> 1617[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1253 -> 1618[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1254 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1254[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1254 -> 1619[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1254 -> 1620[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1255 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1255[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1255 -> 1621[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1255 -> 1622[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1256 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1256[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1256 -> 1623[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1256 -> 1624[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1257 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1257[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1257 -> 1625[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1257 -> 1626[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1258 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1258[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1258 -> 1627[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1258 -> 1628[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1259 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1259[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1259 -> 1629[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1259 -> 1630[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1260 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1260[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1260 -> 1631[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1260 -> 1632[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1261 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1261[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1261 -> 1633[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1261 -> 1634[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1262 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1262[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1262 -> 1635[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1262 -> 1636[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1263 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1263[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1263 -> 1637[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1263 -> 1638[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1264 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1264[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1264 -> 1639[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1264 -> 1640[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1265 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1265[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1265 -> 1641[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1265 -> 1642[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1266 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1266[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1266 -> 1643[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1266 -> 1644[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1267 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1267[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1267 -> 1645[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1267 -> 1646[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1268 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1268[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1268 -> 1647[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1268 -> 1648[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1269 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1269[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1269 -> 1649[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1269 -> 1650[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1270 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1270[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1270 -> 1651[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1270 -> 1652[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1271 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1271[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1271 -> 1653[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1271 -> 1654[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1272[label="False <= vxw31",fontsize=16,color="burlywood",shape="box"];3269[label="vxw31/False",fontsize=10,color="white",style="solid",shape="box"];1272 -> 3269[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3269 -> 1655[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3270[label="vxw31/True",fontsize=10,color="white",style="solid",shape="box"];1272 -> 3270[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3270 -> 1656[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1273[label="True <= vxw31",fontsize=16,color="burlywood",shape="box"];3271[label="vxw31/False",fontsize=10,color="white",style="solid",shape="box"];1273 -> 3271[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3271 -> 1657[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3272[label="vxw31/True",fontsize=10,color="white",style="solid",shape="box"];1273 -> 3272[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3272 -> 1658[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1274 -> 1659[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1274[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1274 -> 1660[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1275[label="LT <= vxw31",fontsize=16,color="burlywood",shape="box"];3273[label="vxw31/LT",fontsize=10,color="white",style="solid",shape="box"];1275 -> 3273[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3273 -> 1668[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3274[label="vxw31/EQ",fontsize=10,color="white",style="solid",shape="box"];1275 -> 3274[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3274 -> 1669[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3275[label="vxw31/GT",fontsize=10,color="white",style="solid",shape="box"];1275 -> 3275[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3275 -> 1670[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1276[label="EQ <= vxw31",fontsize=16,color="burlywood",shape="box"];3276[label="vxw31/LT",fontsize=10,color="white",style="solid",shape="box"];1276 -> 3276[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3276 -> 1671[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3277[label="vxw31/EQ",fontsize=10,color="white",style="solid",shape="box"];1276 -> 3277[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3277 -> 1672[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3278[label="vxw31/GT",fontsize=10,color="white",style="solid",shape="box"];1276 -> 3278[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3278 -> 1673[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1277[label="GT <= vxw31",fontsize=16,color="burlywood",shape="box"];3279[label="vxw31/LT",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3279[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3279 -> 1674[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3280[label="vxw31/EQ",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3280[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3280 -> 1675[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3281[label="vxw31/GT",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3281[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3281 -> 1676[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1278 -> 1659[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1278[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1278 -> 1661[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1279[label="(vxw300,vxw301) <= vxw31",fontsize=16,color="burlywood",shape="box"];3282[label="vxw31/(vxw310,vxw311)",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3282[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3282 -> 1677[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1280[label="Left vxw300 <= vxw31",fontsize=16,color="burlywood",shape="box"];3283[label="vxw31/Left vxw310",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3283[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3283 -> 1678[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3284[label="vxw31/Right vxw310",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3284[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3284 -> 1679[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1281[label="Right vxw300 <= vxw31",fontsize=16,color="burlywood",shape="box"];3285[label="vxw31/Left vxw310",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3285[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3285 -> 1680[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3286[label="vxw31/Right vxw310",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3286[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3286 -> 1681[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1282[label="(vxw300,vxw301,vxw302) <= vxw31",fontsize=16,color="burlywood",shape="box"];3287[label="vxw31/(vxw310,vxw311,vxw312)",fontsize=10,color="white",style="solid",shape="box"];1282 -> 3287[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3287 -> 1682[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1283 -> 1659[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1283[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1283 -> 1662[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1284 -> 1659[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1284[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1284 -> 1663[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1285 -> 1659[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1285[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1285 -> 1664[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1286 -> 1659[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1286[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1286 -> 1665[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1287[label="Nothing <= vxw31",fontsize=16,color="burlywood",shape="box"];3288[label="vxw31/Nothing",fontsize=10,color="white",style="solid",shape="box"];1287 -> 3288[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3288 -> 1683[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3289[label="vxw31/Just vxw310",fontsize=10,color="white",style="solid",shape="box"];1287 -> 3289[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3289 -> 1684[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1288[label="Just vxw300 <= vxw31",fontsize=16,color="burlywood",shape="box"];3290[label="vxw31/Nothing",fontsize=10,color="white",style="solid",shape="box"];1288 -> 3290[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3290 -> 1685[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3291[label="vxw31/Just vxw310",fontsize=10,color="white",style="solid",shape="box"];1288 -> 3291[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3291 -> 1686[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1289 -> 1659[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1289[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1289 -> 1666[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1290 -> 1659[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1290[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1290 -> 1667[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1291[label="compare0 (Left vxw96) (Left vxw97) True",fontsize=16,color="black",shape="box"];1291 -> 1687[label="",style="solid", color="black", weight=3]; 28.26/13.43 1292[label="vxw38",fontsize=16,color="green",shape="box"];1293[label="vxw37",fontsize=16,color="green",shape="box"];1294[label="vxw38",fontsize=16,color="green",shape="box"];1295[label="vxw37",fontsize=16,color="green",shape="box"];1296[label="vxw38",fontsize=16,color="green",shape="box"];1297[label="vxw37",fontsize=16,color="green",shape="box"];1298[label="vxw38",fontsize=16,color="green",shape="box"];1299[label="vxw37",fontsize=16,color="green",shape="box"];1300[label="vxw38",fontsize=16,color="green",shape="box"];1301[label="vxw37",fontsize=16,color="green",shape="box"];1302[label="vxw38",fontsize=16,color="green",shape="box"];1303[label="vxw37",fontsize=16,color="green",shape="box"];1304[label="vxw38",fontsize=16,color="green",shape="box"];1305[label="vxw37",fontsize=16,color="green",shape="box"];1306[label="vxw38",fontsize=16,color="green",shape="box"];1307[label="vxw37",fontsize=16,color="green",shape="box"];1308[label="vxw38",fontsize=16,color="green",shape="box"];1309[label="vxw37",fontsize=16,color="green",shape="box"];1310[label="vxw38",fontsize=16,color="green",shape="box"];1311[label="vxw37",fontsize=16,color="green",shape="box"];1312[label="vxw38",fontsize=16,color="green",shape="box"];1313[label="vxw37",fontsize=16,color="green",shape="box"];1314[label="vxw38",fontsize=16,color="green",shape="box"];1315[label="vxw37",fontsize=16,color="green",shape="box"];1316[label="vxw38",fontsize=16,color="green",shape="box"];1317[label="vxw37",fontsize=16,color="green",shape="box"];1318[label="vxw38",fontsize=16,color="green",shape="box"];1319[label="vxw37",fontsize=16,color="green",shape="box"];1320[label="compare0 (Right vxw103) (Right vxw104) True",fontsize=16,color="black",shape="box"];1320 -> 1688[label="",style="solid", color="black", weight=3]; 28.26/13.43 1692[label="vxw49 < vxw52",fontsize=16,color="blue",shape="box"];3292[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3292[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3292 -> 1696[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3293[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3293[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3293 -> 1697[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3294[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3294[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3294 -> 1698[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3295[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3295[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3295 -> 1699[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3296[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3296[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3296 -> 1700[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3297[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3297[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3297 -> 1701[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3298[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3298[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3298 -> 1702[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3299[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3299[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3299 -> 1703[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3300[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3300[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3300 -> 1704[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3301[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3301[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3301 -> 1705[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3302[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3302[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3302 -> 1706[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3303[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3303[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3303 -> 1707[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3304[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3304[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3304 -> 1708[label="",style="solid", color="blue", weight=3]; 28.26/13.43 3305[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3305[label="",style="solid", color="blue", weight=9]; 28.26/13.43 3305 -> 1709[label="",style="solid", color="blue", weight=3]; 28.26/13.43 1693 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1693[label="vxw49 == vxw52 && vxw50 <= vxw53",fontsize=16,color="magenta"];1693 -> 1710[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1693 -> 1711[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1691[label="vxw151 || vxw152",fontsize=16,color="burlywood",shape="triangle"];3306[label="vxw151/False",fontsize=10,color="white",style="solid",shape="box"];1691 -> 3306[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3306 -> 1712[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3307[label="vxw151/True",fontsize=10,color="white",style="solid",shape="box"];1691 -> 3307[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3307 -> 1713[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1323 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1323[label="vxw48 == vxw51",fontsize=16,color="magenta"];1323 -> 1714[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1323 -> 1715[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1324 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1324[label="vxw48 == vxw51",fontsize=16,color="magenta"];1324 -> 1716[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1324 -> 1717[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1325 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1325[label="vxw48 == vxw51",fontsize=16,color="magenta"];1325 -> 1718[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1325 -> 1719[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1326 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1326[label="vxw48 == vxw51",fontsize=16,color="magenta"];1326 -> 1720[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1326 -> 1721[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1327 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1327[label="vxw48 == vxw51",fontsize=16,color="magenta"];1327 -> 1722[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1327 -> 1723[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1328 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1328[label="vxw48 == vxw51",fontsize=16,color="magenta"];1328 -> 1724[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1328 -> 1725[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1329 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1329[label="vxw48 == vxw51",fontsize=16,color="magenta"];1329 -> 1726[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1329 -> 1727[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1330 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1330[label="vxw48 == vxw51",fontsize=16,color="magenta"];1330 -> 1728[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1330 -> 1729[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1331 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1331[label="vxw48 == vxw51",fontsize=16,color="magenta"];1331 -> 1730[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1331 -> 1731[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1332 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1332[label="vxw48 == vxw51",fontsize=16,color="magenta"];1332 -> 1732[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1332 -> 1733[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1333 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1333[label="vxw48 == vxw51",fontsize=16,color="magenta"];1333 -> 1734[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1333 -> 1735[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1334 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1334[label="vxw48 == vxw51",fontsize=16,color="magenta"];1334 -> 1736[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1334 -> 1737[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1335 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1335[label="vxw48 == vxw51",fontsize=16,color="magenta"];1335 -> 1738[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1335 -> 1739[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1336 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1336[label="vxw48 == vxw51",fontsize=16,color="magenta"];1336 -> 1740[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1336 -> 1741[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1337[label="vxw51",fontsize=16,color="green",shape="box"];1338[label="vxw48",fontsize=16,color="green",shape="box"];1339[label="vxw51",fontsize=16,color="green",shape="box"];1340[label="vxw48",fontsize=16,color="green",shape="box"];1341[label="vxw51",fontsize=16,color="green",shape="box"];1342[label="vxw48",fontsize=16,color="green",shape="box"];1343[label="vxw51",fontsize=16,color="green",shape="box"];1344[label="vxw48",fontsize=16,color="green",shape="box"];1345[label="vxw51",fontsize=16,color="green",shape="box"];1346[label="vxw48",fontsize=16,color="green",shape="box"];1347[label="vxw51",fontsize=16,color="green",shape="box"];1348[label="vxw48",fontsize=16,color="green",shape="box"];1349[label="vxw51",fontsize=16,color="green",shape="box"];1350[label="vxw48",fontsize=16,color="green",shape="box"];1351[label="vxw51",fontsize=16,color="green",shape="box"];1352[label="vxw48",fontsize=16,color="green",shape="box"];1353[label="vxw51",fontsize=16,color="green",shape="box"];1354[label="vxw48",fontsize=16,color="green",shape="box"];1355[label="vxw51",fontsize=16,color="green",shape="box"];1356[label="vxw48",fontsize=16,color="green",shape="box"];1357[label="vxw51",fontsize=16,color="green",shape="box"];1358[label="vxw48",fontsize=16,color="green",shape="box"];1359[label="vxw51",fontsize=16,color="green",shape="box"];1360[label="vxw48",fontsize=16,color="green",shape="box"];1361[label="vxw51",fontsize=16,color="green",shape="box"];1362[label="vxw48",fontsize=16,color="green",shape="box"];1363[label="vxw51",fontsize=16,color="green",shape="box"];1364[label="vxw48",fontsize=16,color="green",shape="box"];1365[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) vxw145",fontsize=16,color="burlywood",shape="triangle"];3308[label="vxw145/False",fontsize=10,color="white",style="solid",shape="box"];1365 -> 3308[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3308 -> 1742[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 3309[label="vxw145/True",fontsize=10,color="white",style="solid",shape="box"];1365 -> 3309[label="",style="solid", color="burlywood", weight=9]; 28.26/13.43 3309 -> 1743[label="",style="solid", color="burlywood", weight=3]; 28.26/13.43 1366 -> 1365[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1366[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) True",fontsize=16,color="magenta"];1366 -> 1744[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1367[label="primMulNat (Succ vxw3000) (Succ vxw40100)",fontsize=16,color="black",shape="box"];1367 -> 1745[label="",style="solid", color="black", weight=3]; 28.26/13.43 1368[label="primMulNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];1368 -> 1746[label="",style="solid", color="black", weight=3]; 28.26/13.43 1369[label="primMulNat Zero (Succ vxw40100)",fontsize=16,color="black",shape="box"];1369 -> 1747[label="",style="solid", color="black", weight=3]; 28.26/13.43 1370[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1370 -> 1748[label="",style="solid", color="black", weight=3]; 28.26/13.43 1371[label="vxw60",fontsize=16,color="green",shape="box"];1372[label="vxw59",fontsize=16,color="green",shape="box"];1373[label="vxw60",fontsize=16,color="green",shape="box"];1374[label="vxw59",fontsize=16,color="green",shape="box"];1375[label="vxw60",fontsize=16,color="green",shape="box"];1376[label="vxw59",fontsize=16,color="green",shape="box"];1377[label="vxw60",fontsize=16,color="green",shape="box"];1378[label="vxw59",fontsize=16,color="green",shape="box"];1379[label="vxw60",fontsize=16,color="green",shape="box"];1380[label="vxw59",fontsize=16,color="green",shape="box"];1381[label="vxw60",fontsize=16,color="green",shape="box"];1382[label="vxw59",fontsize=16,color="green",shape="box"];1383[label="vxw60",fontsize=16,color="green",shape="box"];1384[label="vxw59",fontsize=16,color="green",shape="box"];1385[label="vxw60",fontsize=16,color="green",shape="box"];1386[label="vxw59",fontsize=16,color="green",shape="box"];1387[label="vxw60",fontsize=16,color="green",shape="box"];1388[label="vxw59",fontsize=16,color="green",shape="box"];1389[label="vxw60",fontsize=16,color="green",shape="box"];1390[label="vxw59",fontsize=16,color="green",shape="box"];1391[label="vxw60",fontsize=16,color="green",shape="box"];1392[label="vxw59",fontsize=16,color="green",shape="box"];1393[label="vxw60",fontsize=16,color="green",shape="box"];1394[label="vxw59",fontsize=16,color="green",shape="box"];1395[label="vxw60",fontsize=16,color="green",shape="box"];1396[label="vxw59",fontsize=16,color="green",shape="box"];1397[label="vxw60",fontsize=16,color="green",shape="box"];1398[label="vxw59",fontsize=16,color="green",shape="box"];1399[label="compare0 (Just vxw113) (Just vxw114) True",fontsize=16,color="black",shape="box"];1399 -> 1749[label="",style="solid", color="black", weight=3]; 28.26/13.43 1400[label="LT",fontsize=16,color="green",shape="box"];1401 -> 15[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1401[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1401 -> 1750[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1401 -> 1751[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1402[label="LT",fontsize=16,color="green",shape="box"];1403 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1403[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1403 -> 1752[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1403 -> 1753[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1404[label="LT",fontsize=16,color="green",shape="box"];1405 -> 17[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1405[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1405 -> 1754[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1405 -> 1755[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1406[label="LT",fontsize=16,color="green",shape="box"];1407 -> 18[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1407[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1407 -> 1756[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1407 -> 1757[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1408[label="LT",fontsize=16,color="green",shape="box"];1409 -> 19[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1409[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1409 -> 1758[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1409 -> 1759[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1410[label="LT",fontsize=16,color="green",shape="box"];1411 -> 20[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1411[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1411 -> 1760[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1411 -> 1761[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1412[label="LT",fontsize=16,color="green",shape="box"];1413 -> 21[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1413[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1413 -> 1762[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1413 -> 1763[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1414[label="LT",fontsize=16,color="green",shape="box"];1415 -> 22[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1415[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1415 -> 1764[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1415 -> 1765[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1416[label="LT",fontsize=16,color="green",shape="box"];1417 -> 23[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1417[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1417 -> 1766[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1417 -> 1767[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1418[label="LT",fontsize=16,color="green",shape="box"];1419 -> 24[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1419[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1419 -> 1768[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1419 -> 1769[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1420[label="LT",fontsize=16,color="green",shape="box"];1421 -> 25[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1421[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1421 -> 1770[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1421 -> 1771[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1422[label="LT",fontsize=16,color="green",shape="box"];1423 -> 26[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1423[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1423 -> 1772[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1423 -> 1773[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1424[label="LT",fontsize=16,color="green",shape="box"];1425 -> 27[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1425[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1425 -> 1774[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1425 -> 1775[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1426[label="LT",fontsize=16,color="green",shape="box"];1427 -> 28[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1427[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1427 -> 1776[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1427 -> 1777[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1428[label="vxw76",fontsize=16,color="green",shape="box"];1429[label="vxw74",fontsize=16,color="green",shape="box"];1430[label="vxw76",fontsize=16,color="green",shape="box"];1431[label="vxw74",fontsize=16,color="green",shape="box"];1432[label="vxw76",fontsize=16,color="green",shape="box"];1433[label="vxw74",fontsize=16,color="green",shape="box"];1434[label="vxw76",fontsize=16,color="green",shape="box"];1435[label="vxw74",fontsize=16,color="green",shape="box"];1436[label="vxw76",fontsize=16,color="green",shape="box"];1437[label="vxw74",fontsize=16,color="green",shape="box"];1438[label="vxw76",fontsize=16,color="green",shape="box"];1439[label="vxw74",fontsize=16,color="green",shape="box"];1440[label="vxw76",fontsize=16,color="green",shape="box"];1441[label="vxw74",fontsize=16,color="green",shape="box"];1442[label="vxw76",fontsize=16,color="green",shape="box"];1443[label="vxw74",fontsize=16,color="green",shape="box"];1444[label="vxw76",fontsize=16,color="green",shape="box"];1445[label="vxw74",fontsize=16,color="green",shape="box"];1446[label="vxw76",fontsize=16,color="green",shape="box"];1447[label="vxw74",fontsize=16,color="green",shape="box"];1448[label="vxw76",fontsize=16,color="green",shape="box"];1449[label="vxw74",fontsize=16,color="green",shape="box"];1450[label="vxw76",fontsize=16,color="green",shape="box"];1451[label="vxw74",fontsize=16,color="green",shape="box"];1452[label="vxw76",fontsize=16,color="green",shape="box"];1453[label="vxw74",fontsize=16,color="green",shape="box"];1454[label="vxw76",fontsize=16,color="green",shape="box"];1455[label="vxw74",fontsize=16,color="green",shape="box"];1456[label="vxw75",fontsize=16,color="green",shape="box"];1457[label="vxw73",fontsize=16,color="green",shape="box"];1458[label="vxw75",fontsize=16,color="green",shape="box"];1459[label="vxw73",fontsize=16,color="green",shape="box"];1460[label="vxw75",fontsize=16,color="green",shape="box"];1461[label="vxw73",fontsize=16,color="green",shape="box"];1462[label="vxw75",fontsize=16,color="green",shape="box"];1463[label="vxw73",fontsize=16,color="green",shape="box"];1464[label="vxw75",fontsize=16,color="green",shape="box"];1465[label="vxw73",fontsize=16,color="green",shape="box"];1466[label="vxw75",fontsize=16,color="green",shape="box"];1467[label="vxw73",fontsize=16,color="green",shape="box"];1468[label="vxw75",fontsize=16,color="green",shape="box"];1469[label="vxw73",fontsize=16,color="green",shape="box"];1470[label="vxw75",fontsize=16,color="green",shape="box"];1471[label="vxw73",fontsize=16,color="green",shape="box"];1472[label="vxw75",fontsize=16,color="green",shape="box"];1473[label="vxw73",fontsize=16,color="green",shape="box"];1474[label="vxw75",fontsize=16,color="green",shape="box"];1475[label="vxw73",fontsize=16,color="green",shape="box"];1476[label="vxw75",fontsize=16,color="green",shape="box"];1477[label="vxw73",fontsize=16,color="green",shape="box"];1478[label="vxw75",fontsize=16,color="green",shape="box"];1479[label="vxw73",fontsize=16,color="green",shape="box"];1480[label="vxw75",fontsize=16,color="green",shape="box"];1481[label="vxw73",fontsize=16,color="green",shape="box"];1482[label="vxw75",fontsize=16,color="green",shape="box"];1483[label="vxw73",fontsize=16,color="green",shape="box"];1484[label="compare1 (vxw123,vxw124) (vxw125,vxw126) False",fontsize=16,color="black",shape="box"];1484 -> 1778[label="",style="solid", color="black", weight=3]; 28.26/13.43 1485[label="compare1 (vxw123,vxw124) (vxw125,vxw126) True",fontsize=16,color="black",shape="box"];1485 -> 1779[label="",style="solid", color="black", weight=3]; 28.26/13.43 1486[label="True",fontsize=16,color="green",shape="box"];1487[label="primEqInt (Pos (Succ vxw3000)) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];1487 -> 1780[label="",style="solid", color="black", weight=3]; 28.26/13.43 1488[label="primEqInt (Pos (Succ vxw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1488 -> 1781[label="",style="solid", color="black", weight=3]; 28.26/13.43 1489[label="False",fontsize=16,color="green",shape="box"];1490[label="primEqInt (Pos Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];1490 -> 1782[label="",style="solid", color="black", weight=3]; 28.26/13.43 1491[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1491 -> 1783[label="",style="solid", color="black", weight=3]; 28.26/13.43 1492[label="primEqInt (Pos Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];1492 -> 1784[label="",style="solid", color="black", weight=3]; 28.26/13.43 1493[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1493 -> 1785[label="",style="solid", color="black", weight=3]; 28.26/13.43 1494[label="False",fontsize=16,color="green",shape="box"];1495[label="primEqInt (Neg (Succ vxw3000)) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];1495 -> 1786[label="",style="solid", color="black", weight=3]; 28.26/13.43 1496[label="primEqInt (Neg (Succ vxw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1496 -> 1787[label="",style="solid", color="black", weight=3]; 28.26/13.43 1497[label="primEqInt (Neg Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];1497 -> 1788[label="",style="solid", color="black", weight=3]; 28.26/13.43 1498[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1498 -> 1789[label="",style="solid", color="black", weight=3]; 28.26/13.43 1499[label="primEqInt (Neg Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];1499 -> 1790[label="",style="solid", color="black", weight=3]; 28.26/13.43 1500[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1500 -> 1791[label="",style="solid", color="black", weight=3]; 28.26/13.43 1501 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1501[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1501 -> 1792[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1501 -> 1793[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1502 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1502[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1502 -> 1794[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1502 -> 1795[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1503 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1503[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1503 -> 1796[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1503 -> 1797[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1504 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1504[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1504 -> 1798[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1504 -> 1799[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1505[label="vxw4000",fontsize=16,color="green",shape="box"];1506[label="vxw300",fontsize=16,color="green",shape="box"];1507[label="vxw4000",fontsize=16,color="green",shape="box"];1508[label="vxw300",fontsize=16,color="green",shape="box"];1509[label="vxw4000",fontsize=16,color="green",shape="box"];1510[label="vxw300",fontsize=16,color="green",shape="box"];1511[label="vxw4000",fontsize=16,color="green",shape="box"];1512[label="vxw300",fontsize=16,color="green",shape="box"];1513[label="vxw4000",fontsize=16,color="green",shape="box"];1514[label="vxw300",fontsize=16,color="green",shape="box"];1515[label="vxw4000",fontsize=16,color="green",shape="box"];1516[label="vxw300",fontsize=16,color="green",shape="box"];1517[label="vxw4000",fontsize=16,color="green",shape="box"];1518[label="vxw300",fontsize=16,color="green",shape="box"];1519[label="vxw4000",fontsize=16,color="green",shape="box"];1520[label="vxw300",fontsize=16,color="green",shape="box"];1521[label="vxw4000",fontsize=16,color="green",shape="box"];1522[label="vxw300",fontsize=16,color="green",shape="box"];1523[label="vxw4000",fontsize=16,color="green",shape="box"];1524[label="vxw300",fontsize=16,color="green",shape="box"];1525[label="vxw4000",fontsize=16,color="green",shape="box"];1526[label="vxw300",fontsize=16,color="green",shape="box"];1527[label="vxw4000",fontsize=16,color="green",shape="box"];1528[label="vxw300",fontsize=16,color="green",shape="box"];1529[label="vxw4000",fontsize=16,color="green",shape="box"];1530[label="vxw300",fontsize=16,color="green",shape="box"];1531[label="vxw4000",fontsize=16,color="green",shape="box"];1532[label="vxw300",fontsize=16,color="green",shape="box"];1533 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1533[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1533 -> 1800[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1533 -> 1801[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1534 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1534[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1534 -> 1802[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1534 -> 1803[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1535 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1535[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1535 -> 1804[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1535 -> 1805[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1536 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1536[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1536 -> 1806[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1536 -> 1807[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1537 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1537[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1537 -> 1808[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1537 -> 1809[label="",style="dashed", color="magenta", weight=3]; 28.26/13.43 1538 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.43 1538[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1538 -> 1810[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1538 -> 1811[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1539 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1539[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1539 -> 1812[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1539 -> 1813[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1540 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1540[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1540 -> 1814[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1540 -> 1815[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1541 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1541[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1541 -> 1816[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1541 -> 1817[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1542 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1542[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1542 -> 1818[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1542 -> 1819[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1543 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1543[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1543 -> 1820[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1543 -> 1821[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1544 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1544[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1544 -> 1822[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1544 -> 1823[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1545 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1545[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1545 -> 1824[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1545 -> 1825[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1546 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1546[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1546 -> 1826[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1546 -> 1827[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1547 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1547[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1547 -> 1828[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1547 -> 1829[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1548 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1548[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1548 -> 1830[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1548 -> 1831[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1549 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1549[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1549 -> 1832[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1549 -> 1833[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1550 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1550[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1550 -> 1834[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1550 -> 1835[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1551 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1551[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1551 -> 1836[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1551 -> 1837[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1552 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1552[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1552 -> 1838[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1552 -> 1839[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1553 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1553[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1553 -> 1840[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1553 -> 1841[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1554 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1554[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1554 -> 1842[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1554 -> 1843[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1555 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1555[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1555 -> 1844[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1555 -> 1845[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1556 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1556[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1556 -> 1846[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1556 -> 1847[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1557 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1557[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1557 -> 1848[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1557 -> 1849[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1558 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1558[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1558 -> 1850[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1558 -> 1851[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1559 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1559[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1559 -> 1852[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1559 -> 1853[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1560 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1560[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1560 -> 1854[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1560 -> 1855[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1561 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1561[label="vxw301 * vxw4000",fontsize=16,color="magenta"];1561 -> 1856[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1561 -> 1857[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1562 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1562[label="vxw300 * vxw4001",fontsize=16,color="magenta"];1562 -> 1858[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1562 -> 1859[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1563[label="vxw302 == vxw4002",fontsize=16,color="blue",shape="box"];3310[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3310[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3310 -> 1860[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3311[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3311[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3311 -> 1861[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3312[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3312[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3312 -> 1862[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3313[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3313[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3313 -> 1863[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3314[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3314[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3314 -> 1864[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3315[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3315[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3315 -> 1865[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3316[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3316[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3316 -> 1866[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3317[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3317[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3317 -> 1867[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3318[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3318[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3318 -> 1868[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3319[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3319[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3319 -> 1869[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3320[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3320[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3320 -> 1870[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3321[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3321[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3321 -> 1871[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3322[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3322[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3322 -> 1872[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3323[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 3323[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3323 -> 1873[label="",style="solid", color="blue", weight=3]; 28.26/13.44 1564[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];3324[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3324[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3324 -> 1874[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3325[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3325[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3325 -> 1875[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3326[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3326[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3326 -> 1876[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3327[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3327[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3327 -> 1877[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3328[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3328[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3328 -> 1878[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3329[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3329[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3329 -> 1879[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3330[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3330[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3330 -> 1880[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3331[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3331[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3331 -> 1881[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3332[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3332[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3332 -> 1882[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3333[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3333[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3333 -> 1883[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3334[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3334[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3334 -> 1884[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3335[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3335[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3335 -> 1885[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3336[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3336[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3336 -> 1886[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3337[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3337[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3337 -> 1887[label="",style="solid", color="blue", weight=3]; 28.26/13.44 1565 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1565[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1565 -> 1888[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1565 -> 1889[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1566 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1566[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1566 -> 1890[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1566 -> 1891[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1567 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1567[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1567 -> 1892[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1567 -> 1893[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1568 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1568[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1568 -> 1894[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1568 -> 1895[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1569 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1569[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1569 -> 1896[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1569 -> 1897[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1570 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1570[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1570 -> 1898[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1570 -> 1899[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1571 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1571[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1571 -> 1900[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1571 -> 1901[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1572 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1572[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1572 -> 1902[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1572 -> 1903[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1573 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1573[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1573 -> 1904[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1573 -> 1905[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1574 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1574[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1574 -> 1906[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1574 -> 1907[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1575 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1575[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1575 -> 1908[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1575 -> 1909[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1576 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1576[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1576 -> 1910[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1576 -> 1911[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1577 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1577[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1577 -> 1912[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1577 -> 1913[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1578 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1578[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1578 -> 1914[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1578 -> 1915[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1579[label="vxw4001",fontsize=16,color="green",shape="box"];1580[label="vxw301",fontsize=16,color="green",shape="box"];1581 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1581[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1581 -> 1916[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1581 -> 1917[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1582 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1582[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1582 -> 1918[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1582 -> 1919[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1583 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1583[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1583 -> 1920[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1583 -> 1921[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1584 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1584[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1584 -> 1922[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1584 -> 1923[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1585 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1585[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1585 -> 1924[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1585 -> 1925[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1586 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1586[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1586 -> 1926[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1586 -> 1927[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1587 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1587[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1587 -> 1928[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1587 -> 1929[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1588 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1588[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1588 -> 1930[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1588 -> 1931[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1589 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1589[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1589 -> 1932[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1589 -> 1933[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1590 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1590[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1590 -> 1934[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1590 -> 1935[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1591 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1591[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1591 -> 1936[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1591 -> 1937[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1592 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1592[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1592 -> 1938[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1592 -> 1939[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1593 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1593[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1593 -> 1940[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1593 -> 1941[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1594 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1594[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1594 -> 1942[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1594 -> 1943[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1595 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1595[label="vxw301 * vxw4000",fontsize=16,color="magenta"];1595 -> 1944[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1595 -> 1945[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1596 -> 175[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1596[label="vxw300 * vxw4001",fontsize=16,color="magenta"];1596 -> 1946[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1596 -> 1947[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1597[label="primEqNat (Succ vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];3338[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3338[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3338 -> 1948[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 3339[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3339[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3339 -> 1949[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 1598[label="primEqNat Zero vxw4000",fontsize=16,color="burlywood",shape="box"];3340[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1598 -> 3340[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3340 -> 1950[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 3341[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1598 -> 3341[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3341 -> 1951[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 1599[label="vxw4000",fontsize=16,color="green",shape="box"];1600[label="vxw300",fontsize=16,color="green",shape="box"];1601[label="vxw4000",fontsize=16,color="green",shape="box"];1602[label="vxw300",fontsize=16,color="green",shape="box"];1603[label="vxw4000",fontsize=16,color="green",shape="box"];1604[label="vxw300",fontsize=16,color="green",shape="box"];1605[label="vxw4000",fontsize=16,color="green",shape="box"];1606[label="vxw300",fontsize=16,color="green",shape="box"];1607[label="vxw4000",fontsize=16,color="green",shape="box"];1608[label="vxw300",fontsize=16,color="green",shape="box"];1609[label="vxw4000",fontsize=16,color="green",shape="box"];1610[label="vxw300",fontsize=16,color="green",shape="box"];1611[label="vxw4000",fontsize=16,color="green",shape="box"];1612[label="vxw300",fontsize=16,color="green",shape="box"];1613[label="vxw4000",fontsize=16,color="green",shape="box"];1614[label="vxw300",fontsize=16,color="green",shape="box"];1615[label="vxw4000",fontsize=16,color="green",shape="box"];1616[label="vxw300",fontsize=16,color="green",shape="box"];1617[label="vxw4000",fontsize=16,color="green",shape="box"];1618[label="vxw300",fontsize=16,color="green",shape="box"];1619[label="vxw4000",fontsize=16,color="green",shape="box"];1620[label="vxw300",fontsize=16,color="green",shape="box"];1621[label="vxw4000",fontsize=16,color="green",shape="box"];1622[label="vxw300",fontsize=16,color="green",shape="box"];1623[label="vxw4000",fontsize=16,color="green",shape="box"];1624[label="vxw300",fontsize=16,color="green",shape="box"];1625[label="vxw4000",fontsize=16,color="green",shape="box"];1626[label="vxw300",fontsize=16,color="green",shape="box"];1627[label="vxw4000",fontsize=16,color="green",shape="box"];1628[label="vxw300",fontsize=16,color="green",shape="box"];1629[label="vxw4000",fontsize=16,color="green",shape="box"];1630[label="vxw300",fontsize=16,color="green",shape="box"];1631[label="vxw4000",fontsize=16,color="green",shape="box"];1632[label="vxw300",fontsize=16,color="green",shape="box"];1633[label="vxw4000",fontsize=16,color="green",shape="box"];1634[label="vxw300",fontsize=16,color="green",shape="box"];1635[label="vxw4000",fontsize=16,color="green",shape="box"];1636[label="vxw300",fontsize=16,color="green",shape="box"];1637[label="vxw4000",fontsize=16,color="green",shape="box"];1638[label="vxw300",fontsize=16,color="green",shape="box"];1639[label="vxw4000",fontsize=16,color="green",shape="box"];1640[label="vxw300",fontsize=16,color="green",shape="box"];1641[label="vxw4000",fontsize=16,color="green",shape="box"];1642[label="vxw300",fontsize=16,color="green",shape="box"];1643[label="vxw4000",fontsize=16,color="green",shape="box"];1644[label="vxw300",fontsize=16,color="green",shape="box"];1645[label="vxw4000",fontsize=16,color="green",shape="box"];1646[label="vxw300",fontsize=16,color="green",shape="box"];1647[label="vxw4000",fontsize=16,color="green",shape="box"];1648[label="vxw300",fontsize=16,color="green",shape="box"];1649[label="vxw4000",fontsize=16,color="green",shape="box"];1650[label="vxw300",fontsize=16,color="green",shape="box"];1651[label="vxw4000",fontsize=16,color="green",shape="box"];1652[label="vxw300",fontsize=16,color="green",shape="box"];1653[label="vxw4000",fontsize=16,color="green",shape="box"];1654[label="vxw300",fontsize=16,color="green",shape="box"];1655[label="False <= False",fontsize=16,color="black",shape="box"];1655 -> 1952[label="",style="solid", color="black", weight=3]; 28.26/13.44 1656[label="False <= True",fontsize=16,color="black",shape="box"];1656 -> 1953[label="",style="solid", color="black", weight=3]; 28.26/13.44 1657[label="True <= False",fontsize=16,color="black",shape="box"];1657 -> 1954[label="",style="solid", color="black", weight=3]; 28.26/13.44 1658[label="True <= True",fontsize=16,color="black",shape="box"];1658 -> 1955[label="",style="solid", color="black", weight=3]; 28.26/13.44 1660 -> 16[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1660[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1660 -> 1956[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1660 -> 1957[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1659[label="vxw147 /= GT",fontsize=16,color="black",shape="triangle"];1659 -> 1958[label="",style="solid", color="black", weight=3]; 28.26/13.44 1668[label="LT <= LT",fontsize=16,color="black",shape="box"];1668 -> 1959[label="",style="solid", color="black", weight=3]; 28.26/13.44 1669[label="LT <= EQ",fontsize=16,color="black",shape="box"];1669 -> 1960[label="",style="solid", color="black", weight=3]; 28.26/13.44 1670[label="LT <= GT",fontsize=16,color="black",shape="box"];1670 -> 1961[label="",style="solid", color="black", weight=3]; 28.26/13.44 1671[label="EQ <= LT",fontsize=16,color="black",shape="box"];1671 -> 1962[label="",style="solid", color="black", weight=3]; 28.26/13.44 1672[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1672 -> 1963[label="",style="solid", color="black", weight=3]; 28.26/13.44 1673[label="EQ <= GT",fontsize=16,color="black",shape="box"];1673 -> 1964[label="",style="solid", color="black", weight=3]; 28.26/13.44 1674[label="GT <= LT",fontsize=16,color="black",shape="box"];1674 -> 1965[label="",style="solid", color="black", weight=3]; 28.26/13.44 1675[label="GT <= EQ",fontsize=16,color="black",shape="box"];1675 -> 1966[label="",style="solid", color="black", weight=3]; 28.26/13.44 1676[label="GT <= GT",fontsize=16,color="black",shape="box"];1676 -> 1967[label="",style="solid", color="black", weight=3]; 28.26/13.44 1661 -> 18[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1661[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1661 -> 1968[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1661 -> 1969[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1677[label="(vxw300,vxw301) <= (vxw310,vxw311)",fontsize=16,color="black",shape="box"];1677 -> 1970[label="",style="solid", color="black", weight=3]; 28.26/13.44 1678[label="Left vxw300 <= Left vxw310",fontsize=16,color="black",shape="box"];1678 -> 1971[label="",style="solid", color="black", weight=3]; 28.26/13.44 1679[label="Left vxw300 <= Right vxw310",fontsize=16,color="black",shape="box"];1679 -> 1972[label="",style="solid", color="black", weight=3]; 28.26/13.44 1680[label="Right vxw300 <= Left vxw310",fontsize=16,color="black",shape="box"];1680 -> 1973[label="",style="solid", color="black", weight=3]; 28.26/13.44 1681[label="Right vxw300 <= Right vxw310",fontsize=16,color="black",shape="box"];1681 -> 1974[label="",style="solid", color="black", weight=3]; 28.26/13.44 1682[label="(vxw300,vxw301,vxw302) <= (vxw310,vxw311,vxw312)",fontsize=16,color="black",shape="box"];1682 -> 1975[label="",style="solid", color="black", weight=3]; 28.26/13.44 1662 -> 22[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1662[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1662 -> 1976[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1662 -> 1977[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1663 -> 23[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1663[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1663 -> 1978[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1663 -> 1979[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1664 -> 24[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1664[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1664 -> 1980[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1664 -> 1981[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1665 -> 25[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1665[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1665 -> 1982[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1665 -> 1983[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1683[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1683 -> 1984[label="",style="solid", color="black", weight=3]; 28.26/13.44 1684[label="Nothing <= Just vxw310",fontsize=16,color="black",shape="box"];1684 -> 1985[label="",style="solid", color="black", weight=3]; 28.26/13.44 1685[label="Just vxw300 <= Nothing",fontsize=16,color="black",shape="box"];1685 -> 1986[label="",style="solid", color="black", weight=3]; 28.26/13.44 1686[label="Just vxw300 <= Just vxw310",fontsize=16,color="black",shape="box"];1686 -> 1987[label="",style="solid", color="black", weight=3]; 28.26/13.44 1666 -> 27[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1666[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1666 -> 1988[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1666 -> 1989[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1667 -> 28[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1667[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1667 -> 1990[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1667 -> 1991[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1687[label="GT",fontsize=16,color="green",shape="box"];1688[label="GT",fontsize=16,color="green",shape="box"];1696 -> 1019[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1696[label="vxw49 < vxw52",fontsize=16,color="magenta"];1696 -> 1992[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1696 -> 1993[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1697 -> 1020[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1697[label="vxw49 < vxw52",fontsize=16,color="magenta"];1697 -> 1994[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1697 -> 1995[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1698 -> 1021[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1698[label="vxw49 < vxw52",fontsize=16,color="magenta"];1698 -> 1996[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1698 -> 1997[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1699 -> 1022[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1699[label="vxw49 < vxw52",fontsize=16,color="magenta"];1699 -> 1998[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1699 -> 1999[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1700 -> 1023[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1700[label="vxw49 < vxw52",fontsize=16,color="magenta"];1700 -> 2000[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1700 -> 2001[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1701 -> 1024[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1701[label="vxw49 < vxw52",fontsize=16,color="magenta"];1701 -> 2002[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1701 -> 2003[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1702 -> 1025[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1702[label="vxw49 < vxw52",fontsize=16,color="magenta"];1702 -> 2004[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1702 -> 2005[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1703 -> 1026[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1703[label="vxw49 < vxw52",fontsize=16,color="magenta"];1703 -> 2006[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1703 -> 2007[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1704 -> 1027[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1704[label="vxw49 < vxw52",fontsize=16,color="magenta"];1704 -> 2008[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1704 -> 2009[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1705 -> 1028[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1705[label="vxw49 < vxw52",fontsize=16,color="magenta"];1705 -> 2010[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1705 -> 2011[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1706 -> 1029[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1706[label="vxw49 < vxw52",fontsize=16,color="magenta"];1706 -> 2012[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1706 -> 2013[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1707 -> 1030[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1707[label="vxw49 < vxw52",fontsize=16,color="magenta"];1707 -> 2014[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1707 -> 2015[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1708 -> 1031[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1708[label="vxw49 < vxw52",fontsize=16,color="magenta"];1708 -> 2016[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1708 -> 2017[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1709 -> 1032[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1709[label="vxw49 < vxw52",fontsize=16,color="magenta"];1709 -> 2018[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1709 -> 2019[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1710[label="vxw50 <= vxw53",fontsize=16,color="blue",shape="box"];3342[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3342[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3342 -> 2020[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3343[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3343[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3343 -> 2021[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3344[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3344[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3344 -> 2022[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3345[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3345[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3345 -> 2023[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3346[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3346[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3346 -> 2024[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3347[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3347[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3347 -> 2025[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3348[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3348[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3348 -> 2026[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3349[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3349[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3349 -> 2027[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3350[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3350[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3350 -> 2028[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3351[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3351[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3351 -> 2029[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3352[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3352[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3352 -> 2030[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3353[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3353[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3353 -> 2031[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3354[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3354[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3354 -> 2032[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3355[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3355[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3355 -> 2033[label="",style="solid", color="blue", weight=3]; 28.26/13.44 1711[label="vxw49 == vxw52",fontsize=16,color="blue",shape="box"];3356[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3356[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3356 -> 2034[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3357[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3357[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3357 -> 2035[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3358[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3358[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3358 -> 2036[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3359[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3359[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3359 -> 2037[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3360[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3360[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3360 -> 2038[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3361[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3361[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3361 -> 2039[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3362[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3362[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3362 -> 2040[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3363[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3363[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3363 -> 2041[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3364[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3364[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3364 -> 2042[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3365[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3365[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3365 -> 2043[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3366[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3366[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3366 -> 2044[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3367[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3367[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3367 -> 2045[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3368[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3368[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3368 -> 2046[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3369[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3369[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3369 -> 2047[label="",style="solid", color="blue", weight=3]; 28.26/13.44 1712[label="False || vxw152",fontsize=16,color="black",shape="box"];1712 -> 2048[label="",style="solid", color="black", weight=3]; 28.26/13.44 1713[label="True || vxw152",fontsize=16,color="black",shape="box"];1713 -> 2049[label="",style="solid", color="black", weight=3]; 28.26/13.44 1714[label="vxw51",fontsize=16,color="green",shape="box"];1715[label="vxw48",fontsize=16,color="green",shape="box"];1716[label="vxw51",fontsize=16,color="green",shape="box"];1717[label="vxw48",fontsize=16,color="green",shape="box"];1718[label="vxw51",fontsize=16,color="green",shape="box"];1719[label="vxw48",fontsize=16,color="green",shape="box"];1720[label="vxw51",fontsize=16,color="green",shape="box"];1721[label="vxw48",fontsize=16,color="green",shape="box"];1722[label="vxw51",fontsize=16,color="green",shape="box"];1723[label="vxw48",fontsize=16,color="green",shape="box"];1724[label="vxw51",fontsize=16,color="green",shape="box"];1725[label="vxw48",fontsize=16,color="green",shape="box"];1726[label="vxw51",fontsize=16,color="green",shape="box"];1727[label="vxw48",fontsize=16,color="green",shape="box"];1728[label="vxw51",fontsize=16,color="green",shape="box"];1729[label="vxw48",fontsize=16,color="green",shape="box"];1730[label="vxw51",fontsize=16,color="green",shape="box"];1731[label="vxw48",fontsize=16,color="green",shape="box"];1732[label="vxw51",fontsize=16,color="green",shape="box"];1733[label="vxw48",fontsize=16,color="green",shape="box"];1734[label="vxw51",fontsize=16,color="green",shape="box"];1735[label="vxw48",fontsize=16,color="green",shape="box"];1736[label="vxw51",fontsize=16,color="green",shape="box"];1737[label="vxw48",fontsize=16,color="green",shape="box"];1738[label="vxw51",fontsize=16,color="green",shape="box"];1739[label="vxw48",fontsize=16,color="green",shape="box"];1740[label="vxw51",fontsize=16,color="green",shape="box"];1741[label="vxw48",fontsize=16,color="green",shape="box"];1742[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) False",fontsize=16,color="black",shape="box"];1742 -> 2050[label="",style="solid", color="black", weight=3]; 28.26/13.44 1743[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) True",fontsize=16,color="black",shape="box"];1743 -> 2051[label="",style="solid", color="black", weight=3]; 28.26/13.44 1744[label="True",fontsize=16,color="green",shape="box"];1745 -> 2052[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1745[label="primPlusNat (primMulNat vxw3000 (Succ vxw40100)) (Succ vxw40100)",fontsize=16,color="magenta"];1745 -> 2053[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1746[label="Zero",fontsize=16,color="green",shape="box"];1747[label="Zero",fontsize=16,color="green",shape="box"];1748[label="Zero",fontsize=16,color="green",shape="box"];1749[label="GT",fontsize=16,color="green",shape="box"];1750[label="vxw73",fontsize=16,color="green",shape="box"];1751[label="vxw75",fontsize=16,color="green",shape="box"];1752[label="vxw73",fontsize=16,color="green",shape="box"];1753[label="vxw75",fontsize=16,color="green",shape="box"];1754[label="vxw73",fontsize=16,color="green",shape="box"];1755[label="vxw75",fontsize=16,color="green",shape="box"];1756[label="vxw73",fontsize=16,color="green",shape="box"];1757[label="vxw75",fontsize=16,color="green",shape="box"];1758[label="vxw73",fontsize=16,color="green",shape="box"];1759[label="vxw75",fontsize=16,color="green",shape="box"];1760[label="vxw73",fontsize=16,color="green",shape="box"];1761[label="vxw75",fontsize=16,color="green",shape="box"];1762[label="vxw73",fontsize=16,color="green",shape="box"];1763[label="vxw75",fontsize=16,color="green",shape="box"];1764[label="vxw73",fontsize=16,color="green",shape="box"];1765[label="vxw75",fontsize=16,color="green",shape="box"];1766[label="vxw73",fontsize=16,color="green",shape="box"];1767[label="vxw75",fontsize=16,color="green",shape="box"];1768[label="vxw73",fontsize=16,color="green",shape="box"];1769[label="vxw75",fontsize=16,color="green",shape="box"];1770[label="vxw73",fontsize=16,color="green",shape="box"];1771[label="vxw75",fontsize=16,color="green",shape="box"];1772[label="vxw73",fontsize=16,color="green",shape="box"];1773[label="vxw75",fontsize=16,color="green",shape="box"];1774[label="vxw73",fontsize=16,color="green",shape="box"];1775[label="vxw75",fontsize=16,color="green",shape="box"];1776[label="vxw73",fontsize=16,color="green",shape="box"];1777[label="vxw75",fontsize=16,color="green",shape="box"];1778[label="compare0 (vxw123,vxw124) (vxw125,vxw126) otherwise",fontsize=16,color="black",shape="box"];1778 -> 2054[label="",style="solid", color="black", weight=3]; 28.26/13.44 1779[label="LT",fontsize=16,color="green",shape="box"];1780 -> 1243[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1780[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];1780 -> 2055[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1780 -> 2056[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1781[label="False",fontsize=16,color="green",shape="box"];1782[label="False",fontsize=16,color="green",shape="box"];1783[label="True",fontsize=16,color="green",shape="box"];1784[label="False",fontsize=16,color="green",shape="box"];1785[label="True",fontsize=16,color="green",shape="box"];1786 -> 1243[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1786[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];1786 -> 2057[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1786 -> 2058[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1787[label="False",fontsize=16,color="green",shape="box"];1788[label="False",fontsize=16,color="green",shape="box"];1789[label="True",fontsize=16,color="green",shape="box"];1790[label="False",fontsize=16,color="green",shape="box"];1791[label="True",fontsize=16,color="green",shape="box"];1792[label="vxw4001",fontsize=16,color="green",shape="box"];1793[label="vxw301",fontsize=16,color="green",shape="box"];1794[label="vxw4001",fontsize=16,color="green",shape="box"];1795[label="vxw301",fontsize=16,color="green",shape="box"];1796[label="vxw4000",fontsize=16,color="green",shape="box"];1797[label="vxw300",fontsize=16,color="green",shape="box"];1798[label="vxw4000",fontsize=16,color="green",shape="box"];1799[label="vxw300",fontsize=16,color="green",shape="box"];1800[label="vxw4001",fontsize=16,color="green",shape="box"];1801[label="vxw301",fontsize=16,color="green",shape="box"];1802[label="vxw4001",fontsize=16,color="green",shape="box"];1803[label="vxw301",fontsize=16,color="green",shape="box"];1804[label="vxw4001",fontsize=16,color="green",shape="box"];1805[label="vxw301",fontsize=16,color="green",shape="box"];1806[label="vxw4001",fontsize=16,color="green",shape="box"];1807[label="vxw301",fontsize=16,color="green",shape="box"];1808[label="vxw4001",fontsize=16,color="green",shape="box"];1809[label="vxw301",fontsize=16,color="green",shape="box"];1810[label="vxw4001",fontsize=16,color="green",shape="box"];1811[label="vxw301",fontsize=16,color="green",shape="box"];1812[label="vxw4001",fontsize=16,color="green",shape="box"];1813[label="vxw301",fontsize=16,color="green",shape="box"];1814[label="vxw4001",fontsize=16,color="green",shape="box"];1815[label="vxw301",fontsize=16,color="green",shape="box"];1816[label="vxw4001",fontsize=16,color="green",shape="box"];1817[label="vxw301",fontsize=16,color="green",shape="box"];1818[label="vxw4001",fontsize=16,color="green",shape="box"];1819[label="vxw301",fontsize=16,color="green",shape="box"];1820[label="vxw4001",fontsize=16,color="green",shape="box"];1821[label="vxw301",fontsize=16,color="green",shape="box"];1822[label="vxw4001",fontsize=16,color="green",shape="box"];1823[label="vxw301",fontsize=16,color="green",shape="box"];1824[label="vxw4001",fontsize=16,color="green",shape="box"];1825[label="vxw301",fontsize=16,color="green",shape="box"];1826[label="vxw4001",fontsize=16,color="green",shape="box"];1827[label="vxw301",fontsize=16,color="green",shape="box"];1828[label="vxw4000",fontsize=16,color="green",shape="box"];1829[label="vxw300",fontsize=16,color="green",shape="box"];1830[label="vxw4000",fontsize=16,color="green",shape="box"];1831[label="vxw300",fontsize=16,color="green",shape="box"];1832[label="vxw4000",fontsize=16,color="green",shape="box"];1833[label="vxw300",fontsize=16,color="green",shape="box"];1834[label="vxw4000",fontsize=16,color="green",shape="box"];1835[label="vxw300",fontsize=16,color="green",shape="box"];1836[label="vxw4000",fontsize=16,color="green",shape="box"];1837[label="vxw300",fontsize=16,color="green",shape="box"];1838[label="vxw4000",fontsize=16,color="green",shape="box"];1839[label="vxw300",fontsize=16,color="green",shape="box"];1840[label="vxw4000",fontsize=16,color="green",shape="box"];1841[label="vxw300",fontsize=16,color="green",shape="box"];1842[label="vxw4000",fontsize=16,color="green",shape="box"];1843[label="vxw300",fontsize=16,color="green",shape="box"];1844[label="vxw4000",fontsize=16,color="green",shape="box"];1845[label="vxw300",fontsize=16,color="green",shape="box"];1846[label="vxw4000",fontsize=16,color="green",shape="box"];1847[label="vxw300",fontsize=16,color="green",shape="box"];1848[label="vxw4000",fontsize=16,color="green",shape="box"];1849[label="vxw300",fontsize=16,color="green",shape="box"];1850[label="vxw4000",fontsize=16,color="green",shape="box"];1851[label="vxw300",fontsize=16,color="green",shape="box"];1852[label="vxw4000",fontsize=16,color="green",shape="box"];1853[label="vxw300",fontsize=16,color="green",shape="box"];1854[label="vxw4000",fontsize=16,color="green",shape="box"];1855[label="vxw300",fontsize=16,color="green",shape="box"];1856[label="vxw4000",fontsize=16,color="green",shape="box"];1857[label="vxw301",fontsize=16,color="green",shape="box"];1858[label="vxw4001",fontsize=16,color="green",shape="box"];1859[label="vxw300",fontsize=16,color="green",shape="box"];1860 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1860[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1860 -> 2059[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1860 -> 2060[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1861 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1861[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1861 -> 2061[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1861 -> 2062[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1862 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1862[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1862 -> 2063[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1862 -> 2064[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1863 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1863[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1863 -> 2065[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1863 -> 2066[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1864 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1864[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1864 -> 2067[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1864 -> 2068[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1865 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1865[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1865 -> 2069[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1865 -> 2070[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1866 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1866[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1866 -> 2071[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1866 -> 2072[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1867 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1867[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1867 -> 2073[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1867 -> 2074[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1868 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1868[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1868 -> 2075[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1868 -> 2076[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1869 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1869[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1869 -> 2077[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1869 -> 2078[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1870 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1870[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1870 -> 2079[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1870 -> 2080[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1871 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1871[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1871 -> 2081[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1871 -> 2082[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1872 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1872[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1872 -> 2083[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1872 -> 2084[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1873 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1873[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1873 -> 2085[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1873 -> 2086[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1874 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1874[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1874 -> 2087[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1874 -> 2088[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1875 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1875[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1875 -> 2089[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1875 -> 2090[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1876 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1876[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1876 -> 2091[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1876 -> 2092[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1877 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1877[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1877 -> 2093[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1877 -> 2094[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1878 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1878[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1878 -> 2095[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1878 -> 2096[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1879 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1879[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1879 -> 2097[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1879 -> 2098[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1880 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1880[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1880 -> 2099[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1880 -> 2100[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1881 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1881[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1881 -> 2101[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1881 -> 2102[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1882 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1882[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1882 -> 2103[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1882 -> 2104[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1883 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1883[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1883 -> 2105[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1883 -> 2106[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1884 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1884[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1884 -> 2107[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1884 -> 2108[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1885 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1885[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1885 -> 2109[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1885 -> 2110[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1886 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1886[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1886 -> 2111[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1886 -> 2112[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1887 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1887[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1887 -> 2113[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1887 -> 2114[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1888[label="vxw4000",fontsize=16,color="green",shape="box"];1889[label="vxw300",fontsize=16,color="green",shape="box"];1890[label="vxw4000",fontsize=16,color="green",shape="box"];1891[label="vxw300",fontsize=16,color="green",shape="box"];1892[label="vxw4000",fontsize=16,color="green",shape="box"];1893[label="vxw300",fontsize=16,color="green",shape="box"];1894[label="vxw4000",fontsize=16,color="green",shape="box"];1895[label="vxw300",fontsize=16,color="green",shape="box"];1896[label="vxw4000",fontsize=16,color="green",shape="box"];1897[label="vxw300",fontsize=16,color="green",shape="box"];1898[label="vxw4000",fontsize=16,color="green",shape="box"];1899[label="vxw300",fontsize=16,color="green",shape="box"];1900[label="vxw4000",fontsize=16,color="green",shape="box"];1901[label="vxw300",fontsize=16,color="green",shape="box"];1902[label="vxw4000",fontsize=16,color="green",shape="box"];1903[label="vxw300",fontsize=16,color="green",shape="box"];1904[label="vxw4000",fontsize=16,color="green",shape="box"];1905[label="vxw300",fontsize=16,color="green",shape="box"];1906[label="vxw4000",fontsize=16,color="green",shape="box"];1907[label="vxw300",fontsize=16,color="green",shape="box"];1908[label="vxw4000",fontsize=16,color="green",shape="box"];1909[label="vxw300",fontsize=16,color="green",shape="box"];1910[label="vxw4000",fontsize=16,color="green",shape="box"];1911[label="vxw300",fontsize=16,color="green",shape="box"];1912[label="vxw4000",fontsize=16,color="green",shape="box"];1913[label="vxw300",fontsize=16,color="green",shape="box"];1914[label="vxw4000",fontsize=16,color="green",shape="box"];1915[label="vxw300",fontsize=16,color="green",shape="box"];1916[label="vxw4000",fontsize=16,color="green",shape="box"];1917[label="vxw300",fontsize=16,color="green",shape="box"];1918[label="vxw4000",fontsize=16,color="green",shape="box"];1919[label="vxw300",fontsize=16,color="green",shape="box"];1920[label="vxw4000",fontsize=16,color="green",shape="box"];1921[label="vxw300",fontsize=16,color="green",shape="box"];1922[label="vxw4000",fontsize=16,color="green",shape="box"];1923[label="vxw300",fontsize=16,color="green",shape="box"];1924[label="vxw4000",fontsize=16,color="green",shape="box"];1925[label="vxw300",fontsize=16,color="green",shape="box"];1926[label="vxw4000",fontsize=16,color="green",shape="box"];1927[label="vxw300",fontsize=16,color="green",shape="box"];1928[label="vxw4000",fontsize=16,color="green",shape="box"];1929[label="vxw300",fontsize=16,color="green",shape="box"];1930[label="vxw4000",fontsize=16,color="green",shape="box"];1931[label="vxw300",fontsize=16,color="green",shape="box"];1932[label="vxw4000",fontsize=16,color="green",shape="box"];1933[label="vxw300",fontsize=16,color="green",shape="box"];1934[label="vxw4000",fontsize=16,color="green",shape="box"];1935[label="vxw300",fontsize=16,color="green",shape="box"];1936[label="vxw4000",fontsize=16,color="green",shape="box"];1937[label="vxw300",fontsize=16,color="green",shape="box"];1938[label="vxw4000",fontsize=16,color="green",shape="box"];1939[label="vxw300",fontsize=16,color="green",shape="box"];1940[label="vxw4000",fontsize=16,color="green",shape="box"];1941[label="vxw300",fontsize=16,color="green",shape="box"];1942[label="vxw4000",fontsize=16,color="green",shape="box"];1943[label="vxw300",fontsize=16,color="green",shape="box"];1944[label="vxw4000",fontsize=16,color="green",shape="box"];1945[label="vxw301",fontsize=16,color="green",shape="box"];1946[label="vxw4001",fontsize=16,color="green",shape="box"];1947[label="vxw300",fontsize=16,color="green",shape="box"];1948[label="primEqNat (Succ vxw3000) (Succ vxw40000)",fontsize=16,color="black",shape="box"];1948 -> 2115[label="",style="solid", color="black", weight=3]; 28.26/13.44 1949[label="primEqNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];1949 -> 2116[label="",style="solid", color="black", weight=3]; 28.26/13.44 1950[label="primEqNat Zero (Succ vxw40000)",fontsize=16,color="black",shape="box"];1950 -> 2117[label="",style="solid", color="black", weight=3]; 28.26/13.44 1951[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1951 -> 2118[label="",style="solid", color="black", weight=3]; 28.26/13.44 1952[label="True",fontsize=16,color="green",shape="box"];1953[label="True",fontsize=16,color="green",shape="box"];1954[label="False",fontsize=16,color="green",shape="box"];1955[label="True",fontsize=16,color="green",shape="box"];1956[label="vxw30",fontsize=16,color="green",shape="box"];1957[label="vxw31",fontsize=16,color="green",shape="box"];1958 -> 2119[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1958[label="not (vxw147 == GT)",fontsize=16,color="magenta"];1958 -> 2120[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1959[label="True",fontsize=16,color="green",shape="box"];1960[label="True",fontsize=16,color="green",shape="box"];1961[label="True",fontsize=16,color="green",shape="box"];1962[label="False",fontsize=16,color="green",shape="box"];1963[label="True",fontsize=16,color="green",shape="box"];1964[label="True",fontsize=16,color="green",shape="box"];1965[label="False",fontsize=16,color="green",shape="box"];1966[label="False",fontsize=16,color="green",shape="box"];1967[label="True",fontsize=16,color="green",shape="box"];1968[label="vxw30",fontsize=16,color="green",shape="box"];1969[label="vxw31",fontsize=16,color="green",shape="box"];1970 -> 1691[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1970[label="vxw300 < vxw310 || vxw300 == vxw310 && vxw301 <= vxw311",fontsize=16,color="magenta"];1970 -> 2121[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1970 -> 2122[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1971[label="vxw300 <= vxw310",fontsize=16,color="blue",shape="box"];3370[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3370[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3370 -> 2123[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3371[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3371[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3371 -> 2124[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3372[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3372[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3372 -> 2125[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3373[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3373[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3373 -> 2126[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3374[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3374[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3374 -> 2127[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3375[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3375[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3375 -> 2128[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3376[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3376[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3376 -> 2129[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3377[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3377[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3377 -> 2130[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3378[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3378[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3378 -> 2131[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3379[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3379[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3379 -> 2132[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3380[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3380[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3380 -> 2133[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3381[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3381[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3381 -> 2134[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3382[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3382[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3382 -> 2135[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3383[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3383[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3383 -> 2136[label="",style="solid", color="blue", weight=3]; 28.26/13.44 1972[label="True",fontsize=16,color="green",shape="box"];1973[label="False",fontsize=16,color="green",shape="box"];1974[label="vxw300 <= vxw310",fontsize=16,color="blue",shape="box"];3384[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3384[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3384 -> 2137[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3385[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3385[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3385 -> 2138[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3386[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3386[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3386 -> 2139[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3387[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3387[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3387 -> 2140[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3388[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3388[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3388 -> 2141[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3389[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3389[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3389 -> 2142[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3390[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3390[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3390 -> 2143[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3391[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3391[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3391 -> 2144[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3392[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3392[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3392 -> 2145[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3393[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3393[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3393 -> 2146[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3394[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3394[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3394 -> 2147[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3395[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3395[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3395 -> 2148[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3396[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3396[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3396 -> 2149[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3397[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1974 -> 3397[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3397 -> 2150[label="",style="solid", color="blue", weight=3]; 28.26/13.44 1975 -> 1691[label="",style="dashed", color="red", weight=0]; 28.26/13.44 1975[label="vxw300 < vxw310 || vxw300 == vxw310 && (vxw301 < vxw311 || vxw301 == vxw311 && vxw302 <= vxw312)",fontsize=16,color="magenta"];1975 -> 2151[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1975 -> 2152[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 1976[label="vxw30",fontsize=16,color="green",shape="box"];1977[label="vxw31",fontsize=16,color="green",shape="box"];1978[label="vxw30",fontsize=16,color="green",shape="box"];1979[label="vxw31",fontsize=16,color="green",shape="box"];1980[label="vxw30",fontsize=16,color="green",shape="box"];1981[label="vxw31",fontsize=16,color="green",shape="box"];1982[label="vxw30",fontsize=16,color="green",shape="box"];1983[label="vxw31",fontsize=16,color="green",shape="box"];1984[label="True",fontsize=16,color="green",shape="box"];1985[label="True",fontsize=16,color="green",shape="box"];1986[label="False",fontsize=16,color="green",shape="box"];1987[label="vxw300 <= vxw310",fontsize=16,color="blue",shape="box"];3398[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3398[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3398 -> 2153[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3399[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3399[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3399 -> 2154[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3400[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3400[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3400 -> 2155[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3401[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3401[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3401 -> 2156[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3402[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3402[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3402 -> 2157[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3403[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3403[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3403 -> 2158[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3404[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3404[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3404 -> 2159[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3405[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3405[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3405 -> 2160[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3406[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3406[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3406 -> 2161[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3407[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3407[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3407 -> 2162[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3408[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3408[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3408 -> 2163[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3409[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3409[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3409 -> 2164[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3410[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3410[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3410 -> 2165[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3411[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3411[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3411 -> 2166[label="",style="solid", color="blue", weight=3]; 28.26/13.44 1988[label="vxw30",fontsize=16,color="green",shape="box"];1989[label="vxw31",fontsize=16,color="green",shape="box"];1990[label="vxw30",fontsize=16,color="green",shape="box"];1991[label="vxw31",fontsize=16,color="green",shape="box"];1992[label="vxw52",fontsize=16,color="green",shape="box"];1993[label="vxw49",fontsize=16,color="green",shape="box"];1994[label="vxw52",fontsize=16,color="green",shape="box"];1995[label="vxw49",fontsize=16,color="green",shape="box"];1996[label="vxw52",fontsize=16,color="green",shape="box"];1997[label="vxw49",fontsize=16,color="green",shape="box"];1998[label="vxw52",fontsize=16,color="green",shape="box"];1999[label="vxw49",fontsize=16,color="green",shape="box"];2000[label="vxw52",fontsize=16,color="green",shape="box"];2001[label="vxw49",fontsize=16,color="green",shape="box"];2002[label="vxw52",fontsize=16,color="green",shape="box"];2003[label="vxw49",fontsize=16,color="green",shape="box"];2004[label="vxw52",fontsize=16,color="green",shape="box"];2005[label="vxw49",fontsize=16,color="green",shape="box"];2006[label="vxw52",fontsize=16,color="green",shape="box"];2007[label="vxw49",fontsize=16,color="green",shape="box"];2008[label="vxw52",fontsize=16,color="green",shape="box"];2009[label="vxw49",fontsize=16,color="green",shape="box"];2010[label="vxw52",fontsize=16,color="green",shape="box"];2011[label="vxw49",fontsize=16,color="green",shape="box"];2012[label="vxw52",fontsize=16,color="green",shape="box"];2013[label="vxw49",fontsize=16,color="green",shape="box"];2014[label="vxw52",fontsize=16,color="green",shape="box"];2015[label="vxw49",fontsize=16,color="green",shape="box"];2016[label="vxw52",fontsize=16,color="green",shape="box"];2017[label="vxw49",fontsize=16,color="green",shape="box"];2018[label="vxw52",fontsize=16,color="green",shape="box"];2019[label="vxw49",fontsize=16,color="green",shape="box"];2020 -> 1074[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2020[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2020 -> 2167[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2020 -> 2168[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2021 -> 1075[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2021[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2021 -> 2169[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2021 -> 2170[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2022 -> 1076[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2022[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2022 -> 2171[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2022 -> 2172[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2023 -> 1077[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2023[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2023 -> 2173[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2023 -> 2174[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2024 -> 1078[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2024[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2024 -> 2175[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2024 -> 2176[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2025 -> 1079[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2025[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2025 -> 2177[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2025 -> 2178[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2026 -> 1080[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2026[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2026 -> 2179[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2026 -> 2180[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2027 -> 1081[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2027[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2027 -> 2181[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2027 -> 2182[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2028 -> 1082[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2028[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2028 -> 2183[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2028 -> 2184[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2029 -> 1083[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2029[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2029 -> 2185[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2029 -> 2186[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2030 -> 1084[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2030[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2030 -> 2187[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2030 -> 2188[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2031 -> 1085[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2031[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2031 -> 2189[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2031 -> 2190[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2032 -> 1086[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2032[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2032 -> 2191[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2032 -> 2192[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2033 -> 1087[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2033[label="vxw50 <= vxw53",fontsize=16,color="magenta"];2033 -> 2193[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2033 -> 2194[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2034 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2034[label="vxw49 == vxw52",fontsize=16,color="magenta"];2034 -> 2195[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2034 -> 2196[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2035 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2035[label="vxw49 == vxw52",fontsize=16,color="magenta"];2035 -> 2197[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2035 -> 2198[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2036 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2036[label="vxw49 == vxw52",fontsize=16,color="magenta"];2036 -> 2199[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2036 -> 2200[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2037 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2037[label="vxw49 == vxw52",fontsize=16,color="magenta"];2037 -> 2201[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2037 -> 2202[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2038 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2038[label="vxw49 == vxw52",fontsize=16,color="magenta"];2038 -> 2203[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2038 -> 2204[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2039 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2039[label="vxw49 == vxw52",fontsize=16,color="magenta"];2039 -> 2205[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2039 -> 2206[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2040 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2040[label="vxw49 == vxw52",fontsize=16,color="magenta"];2040 -> 2207[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2040 -> 2208[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2041 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2041[label="vxw49 == vxw52",fontsize=16,color="magenta"];2041 -> 2209[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2041 -> 2210[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2042 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2042[label="vxw49 == vxw52",fontsize=16,color="magenta"];2042 -> 2211[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2042 -> 2212[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2043 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2043[label="vxw49 == vxw52",fontsize=16,color="magenta"];2043 -> 2213[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2043 -> 2214[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2044 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2044[label="vxw49 == vxw52",fontsize=16,color="magenta"];2044 -> 2215[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2044 -> 2216[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2045 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2045[label="vxw49 == vxw52",fontsize=16,color="magenta"];2045 -> 2217[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2045 -> 2218[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2046 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2046[label="vxw49 == vxw52",fontsize=16,color="magenta"];2046 -> 2219[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2046 -> 2220[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2047 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2047[label="vxw49 == vxw52",fontsize=16,color="magenta"];2047 -> 2221[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2047 -> 2222[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2048[label="vxw152",fontsize=16,color="green",shape="box"];2049[label="True",fontsize=16,color="green",shape="box"];2050[label="compare0 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) otherwise",fontsize=16,color="black",shape="box"];2050 -> 2223[label="",style="solid", color="black", weight=3]; 28.26/13.44 2051[label="LT",fontsize=16,color="green",shape="box"];2053 -> 987[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2053[label="primMulNat vxw3000 (Succ vxw40100)",fontsize=16,color="magenta"];2053 -> 2224[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2053 -> 2225[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2052[label="primPlusNat vxw153 (Succ vxw40100)",fontsize=16,color="burlywood",shape="triangle"];3412[label="vxw153/Succ vxw1530",fontsize=10,color="white",style="solid",shape="box"];2052 -> 3412[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3412 -> 2226[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 3413[label="vxw153/Zero",fontsize=10,color="white",style="solid",shape="box"];2052 -> 3413[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3413 -> 2227[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 2054[label="compare0 (vxw123,vxw124) (vxw125,vxw126) True",fontsize=16,color="black",shape="box"];2054 -> 2228[label="",style="solid", color="black", weight=3]; 28.26/13.44 2055[label="vxw3000",fontsize=16,color="green",shape="box"];2056[label="vxw40000",fontsize=16,color="green",shape="box"];2057[label="vxw3000",fontsize=16,color="green",shape="box"];2058[label="vxw40000",fontsize=16,color="green",shape="box"];2059[label="vxw4002",fontsize=16,color="green",shape="box"];2060[label="vxw302",fontsize=16,color="green",shape="box"];2061[label="vxw4002",fontsize=16,color="green",shape="box"];2062[label="vxw302",fontsize=16,color="green",shape="box"];2063[label="vxw4002",fontsize=16,color="green",shape="box"];2064[label="vxw302",fontsize=16,color="green",shape="box"];2065[label="vxw4002",fontsize=16,color="green",shape="box"];2066[label="vxw302",fontsize=16,color="green",shape="box"];2067[label="vxw4002",fontsize=16,color="green",shape="box"];2068[label="vxw302",fontsize=16,color="green",shape="box"];2069[label="vxw4002",fontsize=16,color="green",shape="box"];2070[label="vxw302",fontsize=16,color="green",shape="box"];2071[label="vxw4002",fontsize=16,color="green",shape="box"];2072[label="vxw302",fontsize=16,color="green",shape="box"];2073[label="vxw4002",fontsize=16,color="green",shape="box"];2074[label="vxw302",fontsize=16,color="green",shape="box"];2075[label="vxw4002",fontsize=16,color="green",shape="box"];2076[label="vxw302",fontsize=16,color="green",shape="box"];2077[label="vxw4002",fontsize=16,color="green",shape="box"];2078[label="vxw302",fontsize=16,color="green",shape="box"];2079[label="vxw4002",fontsize=16,color="green",shape="box"];2080[label="vxw302",fontsize=16,color="green",shape="box"];2081[label="vxw4002",fontsize=16,color="green",shape="box"];2082[label="vxw302",fontsize=16,color="green",shape="box"];2083[label="vxw4002",fontsize=16,color="green",shape="box"];2084[label="vxw302",fontsize=16,color="green",shape="box"];2085[label="vxw4002",fontsize=16,color="green",shape="box"];2086[label="vxw302",fontsize=16,color="green",shape="box"];2087[label="vxw4001",fontsize=16,color="green",shape="box"];2088[label="vxw301",fontsize=16,color="green",shape="box"];2089[label="vxw4001",fontsize=16,color="green",shape="box"];2090[label="vxw301",fontsize=16,color="green",shape="box"];2091[label="vxw4001",fontsize=16,color="green",shape="box"];2092[label="vxw301",fontsize=16,color="green",shape="box"];2093[label="vxw4001",fontsize=16,color="green",shape="box"];2094[label="vxw301",fontsize=16,color="green",shape="box"];2095[label="vxw4001",fontsize=16,color="green",shape="box"];2096[label="vxw301",fontsize=16,color="green",shape="box"];2097[label="vxw4001",fontsize=16,color="green",shape="box"];2098[label="vxw301",fontsize=16,color="green",shape="box"];2099[label="vxw4001",fontsize=16,color="green",shape="box"];2100[label="vxw301",fontsize=16,color="green",shape="box"];2101[label="vxw4001",fontsize=16,color="green",shape="box"];2102[label="vxw301",fontsize=16,color="green",shape="box"];2103[label="vxw4001",fontsize=16,color="green",shape="box"];2104[label="vxw301",fontsize=16,color="green",shape="box"];2105[label="vxw4001",fontsize=16,color="green",shape="box"];2106[label="vxw301",fontsize=16,color="green",shape="box"];2107[label="vxw4001",fontsize=16,color="green",shape="box"];2108[label="vxw301",fontsize=16,color="green",shape="box"];2109[label="vxw4001",fontsize=16,color="green",shape="box"];2110[label="vxw301",fontsize=16,color="green",shape="box"];2111[label="vxw4001",fontsize=16,color="green",shape="box"];2112[label="vxw301",fontsize=16,color="green",shape="box"];2113[label="vxw4001",fontsize=16,color="green",shape="box"];2114[label="vxw301",fontsize=16,color="green",shape="box"];2115 -> 1243[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2115[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];2115 -> 2229[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2115 -> 2230[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2116[label="False",fontsize=16,color="green",shape="box"];2117[label="False",fontsize=16,color="green",shape="box"];2118[label="True",fontsize=16,color="green",shape="box"];2120 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2120[label="vxw147 == GT",fontsize=16,color="magenta"];2120 -> 2231[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2120 -> 2232[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2119[label="not vxw154",fontsize=16,color="burlywood",shape="triangle"];3414[label="vxw154/False",fontsize=10,color="white",style="solid",shape="box"];2119 -> 3414[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3414 -> 2233[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 3415[label="vxw154/True",fontsize=10,color="white",style="solid",shape="box"];2119 -> 3415[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3415 -> 2234[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 2121[label="vxw300 < vxw310",fontsize=16,color="blue",shape="box"];3416[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3416[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3416 -> 2235[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3417[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3417[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3417 -> 2236[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3418[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3418[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3418 -> 2237[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3419[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3419[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3419 -> 2238[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3420[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3420[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3420 -> 2239[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3421[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3421[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3421 -> 2240[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3422[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3422[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3422 -> 2241[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3423[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3423[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3423 -> 2242[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3424[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3424[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3424 -> 2243[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3425[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3425[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3425 -> 2244[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3426[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3426[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3426 -> 2245[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3427[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3427[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3427 -> 2246[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3428[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3428[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3428 -> 2247[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3429[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3429[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3429 -> 2248[label="",style="solid", color="blue", weight=3]; 28.26/13.44 2122 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2122[label="vxw300 == vxw310 && vxw301 <= vxw311",fontsize=16,color="magenta"];2122 -> 2249[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2122 -> 2250[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2123 -> 1074[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2123[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2123 -> 2251[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2123 -> 2252[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2124 -> 1075[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2124[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2124 -> 2253[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2124 -> 2254[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2125 -> 1076[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2125[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2125 -> 2255[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2125 -> 2256[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2126 -> 1077[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2126[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2126 -> 2257[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2126 -> 2258[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2127 -> 1078[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2127[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2127 -> 2259[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2127 -> 2260[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2128 -> 1079[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2128[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2128 -> 2261[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2128 -> 2262[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2129 -> 1080[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2129[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2129 -> 2263[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2129 -> 2264[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2130 -> 1081[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2130[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2130 -> 2265[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2130 -> 2266[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2131 -> 1082[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2131[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2131 -> 2267[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2131 -> 2268[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2132 -> 1083[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2132[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2132 -> 2269[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2132 -> 2270[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2133 -> 1084[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2133[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2133 -> 2271[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2133 -> 2272[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2134 -> 1085[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2134[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2134 -> 2273[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2134 -> 2274[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2135 -> 1086[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2135[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2135 -> 2275[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2135 -> 2276[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2136 -> 1087[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2136[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2136 -> 2277[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2136 -> 2278[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2137 -> 1074[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2137[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2137 -> 2279[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2137 -> 2280[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2138 -> 1075[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2138[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2138 -> 2281[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2138 -> 2282[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2139 -> 1076[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2139[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2139 -> 2283[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2139 -> 2284[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2140 -> 1077[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2140[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2140 -> 2285[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2140 -> 2286[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2141 -> 1078[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2141[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2141 -> 2287[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2141 -> 2288[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2142 -> 1079[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2142[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2142 -> 2289[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2142 -> 2290[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2143 -> 1080[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2143[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2143 -> 2291[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2143 -> 2292[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2144 -> 1081[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2144[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2144 -> 2293[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2144 -> 2294[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2145 -> 1082[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2145[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2145 -> 2295[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2145 -> 2296[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2146 -> 1083[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2146[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2146 -> 2297[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2146 -> 2298[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2147 -> 1084[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2147[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2147 -> 2299[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2147 -> 2300[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2148 -> 1085[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2148[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2148 -> 2301[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2148 -> 2302[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2149 -> 1086[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2149[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2149 -> 2303[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2149 -> 2304[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2150 -> 1087[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2150[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2150 -> 2305[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2150 -> 2306[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2151[label="vxw300 < vxw310",fontsize=16,color="blue",shape="box"];3430[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3430[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3430 -> 2307[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3431[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3431[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3431 -> 2308[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3432[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3432[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3432 -> 2309[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3433[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3433[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3433 -> 2310[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3434[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3434[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3434 -> 2311[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3435[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3435[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3435 -> 2312[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3436[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3436[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3436 -> 2313[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3437[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3437[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3437 -> 2314[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3438[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3438[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3438 -> 2315[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3439[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3439[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3439 -> 2316[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3440[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3440[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3440 -> 2317[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3441[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3441[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3441 -> 2318[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3442[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3442[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3442 -> 2319[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3443[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3443[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3443 -> 2320[label="",style="solid", color="blue", weight=3]; 28.26/13.44 2152 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2152[label="vxw300 == vxw310 && (vxw301 < vxw311 || vxw301 == vxw311 && vxw302 <= vxw312)",fontsize=16,color="magenta"];2152 -> 2321[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2152 -> 2322[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2153 -> 1074[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2153[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2153 -> 2323[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2153 -> 2324[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2154 -> 1075[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2154[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2154 -> 2325[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2154 -> 2326[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2155 -> 1076[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2155[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2155 -> 2327[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2155 -> 2328[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2156 -> 1077[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2156[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2156 -> 2329[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2156 -> 2330[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2157 -> 1078[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2157[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2157 -> 2331[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2157 -> 2332[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2158 -> 1079[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2158[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2158 -> 2333[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2158 -> 2334[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2159 -> 1080[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2159[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2159 -> 2335[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2159 -> 2336[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2160 -> 1081[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2160[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2160 -> 2337[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2160 -> 2338[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2161 -> 1082[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2161[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2161 -> 2339[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2161 -> 2340[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2162 -> 1083[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2162[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2162 -> 2341[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2162 -> 2342[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2163 -> 1084[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2163[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2163 -> 2343[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2163 -> 2344[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2164 -> 1085[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2164[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2164 -> 2345[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2164 -> 2346[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2165 -> 1086[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2165[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2165 -> 2347[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2165 -> 2348[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2166 -> 1087[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2166[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2166 -> 2349[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2166 -> 2350[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2167[label="vxw53",fontsize=16,color="green",shape="box"];2168[label="vxw50",fontsize=16,color="green",shape="box"];2169[label="vxw53",fontsize=16,color="green",shape="box"];2170[label="vxw50",fontsize=16,color="green",shape="box"];2171[label="vxw53",fontsize=16,color="green",shape="box"];2172[label="vxw50",fontsize=16,color="green",shape="box"];2173[label="vxw53",fontsize=16,color="green",shape="box"];2174[label="vxw50",fontsize=16,color="green",shape="box"];2175[label="vxw53",fontsize=16,color="green",shape="box"];2176[label="vxw50",fontsize=16,color="green",shape="box"];2177[label="vxw53",fontsize=16,color="green",shape="box"];2178[label="vxw50",fontsize=16,color="green",shape="box"];2179[label="vxw53",fontsize=16,color="green",shape="box"];2180[label="vxw50",fontsize=16,color="green",shape="box"];2181[label="vxw53",fontsize=16,color="green",shape="box"];2182[label="vxw50",fontsize=16,color="green",shape="box"];2183[label="vxw53",fontsize=16,color="green",shape="box"];2184[label="vxw50",fontsize=16,color="green",shape="box"];2185[label="vxw53",fontsize=16,color="green",shape="box"];2186[label="vxw50",fontsize=16,color="green",shape="box"];2187[label="vxw53",fontsize=16,color="green",shape="box"];2188[label="vxw50",fontsize=16,color="green",shape="box"];2189[label="vxw53",fontsize=16,color="green",shape="box"];2190[label="vxw50",fontsize=16,color="green",shape="box"];2191[label="vxw53",fontsize=16,color="green",shape="box"];2192[label="vxw50",fontsize=16,color="green",shape="box"];2193[label="vxw53",fontsize=16,color="green",shape="box"];2194[label="vxw50",fontsize=16,color="green",shape="box"];2195[label="vxw52",fontsize=16,color="green",shape="box"];2196[label="vxw49",fontsize=16,color="green",shape="box"];2197[label="vxw52",fontsize=16,color="green",shape="box"];2198[label="vxw49",fontsize=16,color="green",shape="box"];2199[label="vxw52",fontsize=16,color="green",shape="box"];2200[label="vxw49",fontsize=16,color="green",shape="box"];2201[label="vxw52",fontsize=16,color="green",shape="box"];2202[label="vxw49",fontsize=16,color="green",shape="box"];2203[label="vxw52",fontsize=16,color="green",shape="box"];2204[label="vxw49",fontsize=16,color="green",shape="box"];2205[label="vxw52",fontsize=16,color="green",shape="box"];2206[label="vxw49",fontsize=16,color="green",shape="box"];2207[label="vxw52",fontsize=16,color="green",shape="box"];2208[label="vxw49",fontsize=16,color="green",shape="box"];2209[label="vxw52",fontsize=16,color="green",shape="box"];2210[label="vxw49",fontsize=16,color="green",shape="box"];2211[label="vxw52",fontsize=16,color="green",shape="box"];2212[label="vxw49",fontsize=16,color="green",shape="box"];2213[label="vxw52",fontsize=16,color="green",shape="box"];2214[label="vxw49",fontsize=16,color="green",shape="box"];2215[label="vxw52",fontsize=16,color="green",shape="box"];2216[label="vxw49",fontsize=16,color="green",shape="box"];2217[label="vxw52",fontsize=16,color="green",shape="box"];2218[label="vxw49",fontsize=16,color="green",shape="box"];2219[label="vxw52",fontsize=16,color="green",shape="box"];2220[label="vxw49",fontsize=16,color="green",shape="box"];2221[label="vxw52",fontsize=16,color="green",shape="box"];2222[label="vxw49",fontsize=16,color="green",shape="box"];2223[label="compare0 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) True",fontsize=16,color="black",shape="box"];2223 -> 2351[label="",style="solid", color="black", weight=3]; 28.26/13.44 2224[label="vxw3000",fontsize=16,color="green",shape="box"];2225[label="Succ vxw40100",fontsize=16,color="green",shape="box"];2226[label="primPlusNat (Succ vxw1530) (Succ vxw40100)",fontsize=16,color="black",shape="box"];2226 -> 2352[label="",style="solid", color="black", weight=3]; 28.26/13.44 2227[label="primPlusNat Zero (Succ vxw40100)",fontsize=16,color="black",shape="box"];2227 -> 2353[label="",style="solid", color="black", weight=3]; 28.26/13.44 2228[label="GT",fontsize=16,color="green",shape="box"];2229[label="vxw3000",fontsize=16,color="green",shape="box"];2230[label="vxw40000",fontsize=16,color="green",shape="box"];2231[label="GT",fontsize=16,color="green",shape="box"];2232[label="vxw147",fontsize=16,color="green",shape="box"];2233[label="not False",fontsize=16,color="black",shape="box"];2233 -> 2354[label="",style="solid", color="black", weight=3]; 28.26/13.44 2234[label="not True",fontsize=16,color="black",shape="box"];2234 -> 2355[label="",style="solid", color="black", weight=3]; 28.26/13.44 2235 -> 1019[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2235[label="vxw300 < vxw310",fontsize=16,color="magenta"];2235 -> 2356[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2235 -> 2357[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2236 -> 1020[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2236[label="vxw300 < vxw310",fontsize=16,color="magenta"];2236 -> 2358[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2236 -> 2359[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2237 -> 1021[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2237[label="vxw300 < vxw310",fontsize=16,color="magenta"];2237 -> 2360[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2237 -> 2361[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2238 -> 1022[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2238[label="vxw300 < vxw310",fontsize=16,color="magenta"];2238 -> 2362[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2238 -> 2363[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2239 -> 1023[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2239[label="vxw300 < vxw310",fontsize=16,color="magenta"];2239 -> 2364[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2239 -> 2365[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2240 -> 1024[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2240[label="vxw300 < vxw310",fontsize=16,color="magenta"];2240 -> 2366[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2240 -> 2367[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2241 -> 1025[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2241[label="vxw300 < vxw310",fontsize=16,color="magenta"];2241 -> 2368[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2241 -> 2369[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2242 -> 1026[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2242[label="vxw300 < vxw310",fontsize=16,color="magenta"];2242 -> 2370[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2242 -> 2371[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2243 -> 1027[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2243[label="vxw300 < vxw310",fontsize=16,color="magenta"];2243 -> 2372[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2243 -> 2373[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2244 -> 1028[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2244[label="vxw300 < vxw310",fontsize=16,color="magenta"];2244 -> 2374[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2244 -> 2375[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2245 -> 1029[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2245[label="vxw300 < vxw310",fontsize=16,color="magenta"];2245 -> 2376[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2245 -> 2377[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2246 -> 1030[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2246[label="vxw300 < vxw310",fontsize=16,color="magenta"];2246 -> 2378[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2246 -> 2379[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2247 -> 1031[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2247[label="vxw300 < vxw310",fontsize=16,color="magenta"];2247 -> 2380[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2247 -> 2381[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2248 -> 1032[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2248[label="vxw300 < vxw310",fontsize=16,color="magenta"];2248 -> 2382[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2248 -> 2383[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2249[label="vxw301 <= vxw311",fontsize=16,color="blue",shape="box"];3444[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3444[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3444 -> 2384[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3445[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3445[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3445 -> 2385[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3446[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3446[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3446 -> 2386[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3447[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3447[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3447 -> 2387[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3448[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3448[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3448 -> 2388[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3449[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3449[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3449 -> 2389[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3450[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3450[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3450 -> 2390[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3451[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3451[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3451 -> 2391[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3452[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3452[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3452 -> 2392[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3453[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3453[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3453 -> 2393[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3454[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3454[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3454 -> 2394[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3455[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3455[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3455 -> 2395[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3456[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3456[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3456 -> 2396[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3457[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3457[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3457 -> 2397[label="",style="solid", color="blue", weight=3]; 28.26/13.44 2250[label="vxw300 == vxw310",fontsize=16,color="blue",shape="box"];3458[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3458[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3458 -> 2398[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3459[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3459[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3459 -> 2399[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3460[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3460[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3460 -> 2400[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3461[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3461[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3461 -> 2401[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3462[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3462[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3462 -> 2402[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3463[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3463[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3463 -> 2403[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3464[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3464[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3464 -> 2404[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3465[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3465[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3465 -> 2405[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3466[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3466[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3466 -> 2406[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3467[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3467[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3467 -> 2407[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3468[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3468[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3468 -> 2408[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3469[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3469[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3469 -> 2409[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3470[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3470[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3470 -> 2410[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3471[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3471[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3471 -> 2411[label="",style="solid", color="blue", weight=3]; 28.26/13.44 2251[label="vxw310",fontsize=16,color="green",shape="box"];2252[label="vxw300",fontsize=16,color="green",shape="box"];2253[label="vxw310",fontsize=16,color="green",shape="box"];2254[label="vxw300",fontsize=16,color="green",shape="box"];2255[label="vxw310",fontsize=16,color="green",shape="box"];2256[label="vxw300",fontsize=16,color="green",shape="box"];2257[label="vxw310",fontsize=16,color="green",shape="box"];2258[label="vxw300",fontsize=16,color="green",shape="box"];2259[label="vxw310",fontsize=16,color="green",shape="box"];2260[label="vxw300",fontsize=16,color="green",shape="box"];2261[label="vxw310",fontsize=16,color="green",shape="box"];2262[label="vxw300",fontsize=16,color="green",shape="box"];2263[label="vxw310",fontsize=16,color="green",shape="box"];2264[label="vxw300",fontsize=16,color="green",shape="box"];2265[label="vxw310",fontsize=16,color="green",shape="box"];2266[label="vxw300",fontsize=16,color="green",shape="box"];2267[label="vxw310",fontsize=16,color="green",shape="box"];2268[label="vxw300",fontsize=16,color="green",shape="box"];2269[label="vxw310",fontsize=16,color="green",shape="box"];2270[label="vxw300",fontsize=16,color="green",shape="box"];2271[label="vxw310",fontsize=16,color="green",shape="box"];2272[label="vxw300",fontsize=16,color="green",shape="box"];2273[label="vxw310",fontsize=16,color="green",shape="box"];2274[label="vxw300",fontsize=16,color="green",shape="box"];2275[label="vxw310",fontsize=16,color="green",shape="box"];2276[label="vxw300",fontsize=16,color="green",shape="box"];2277[label="vxw310",fontsize=16,color="green",shape="box"];2278[label="vxw300",fontsize=16,color="green",shape="box"];2279[label="vxw310",fontsize=16,color="green",shape="box"];2280[label="vxw300",fontsize=16,color="green",shape="box"];2281[label="vxw310",fontsize=16,color="green",shape="box"];2282[label="vxw300",fontsize=16,color="green",shape="box"];2283[label="vxw310",fontsize=16,color="green",shape="box"];2284[label="vxw300",fontsize=16,color="green",shape="box"];2285[label="vxw310",fontsize=16,color="green",shape="box"];2286[label="vxw300",fontsize=16,color="green",shape="box"];2287[label="vxw310",fontsize=16,color="green",shape="box"];2288[label="vxw300",fontsize=16,color="green",shape="box"];2289[label="vxw310",fontsize=16,color="green",shape="box"];2290[label="vxw300",fontsize=16,color="green",shape="box"];2291[label="vxw310",fontsize=16,color="green",shape="box"];2292[label="vxw300",fontsize=16,color="green",shape="box"];2293[label="vxw310",fontsize=16,color="green",shape="box"];2294[label="vxw300",fontsize=16,color="green",shape="box"];2295[label="vxw310",fontsize=16,color="green",shape="box"];2296[label="vxw300",fontsize=16,color="green",shape="box"];2297[label="vxw310",fontsize=16,color="green",shape="box"];2298[label="vxw300",fontsize=16,color="green",shape="box"];2299[label="vxw310",fontsize=16,color="green",shape="box"];2300[label="vxw300",fontsize=16,color="green",shape="box"];2301[label="vxw310",fontsize=16,color="green",shape="box"];2302[label="vxw300",fontsize=16,color="green",shape="box"];2303[label="vxw310",fontsize=16,color="green",shape="box"];2304[label="vxw300",fontsize=16,color="green",shape="box"];2305[label="vxw310",fontsize=16,color="green",shape="box"];2306[label="vxw300",fontsize=16,color="green",shape="box"];2307 -> 1019[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2307[label="vxw300 < vxw310",fontsize=16,color="magenta"];2307 -> 2412[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2307 -> 2413[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2308 -> 1020[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2308[label="vxw300 < vxw310",fontsize=16,color="magenta"];2308 -> 2414[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2308 -> 2415[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2309 -> 1021[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2309[label="vxw300 < vxw310",fontsize=16,color="magenta"];2309 -> 2416[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2309 -> 2417[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2310 -> 1022[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2310[label="vxw300 < vxw310",fontsize=16,color="magenta"];2310 -> 2418[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2310 -> 2419[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2311 -> 1023[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2311[label="vxw300 < vxw310",fontsize=16,color="magenta"];2311 -> 2420[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2311 -> 2421[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2312 -> 1024[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2312[label="vxw300 < vxw310",fontsize=16,color="magenta"];2312 -> 2422[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2312 -> 2423[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2313 -> 1025[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2313[label="vxw300 < vxw310",fontsize=16,color="magenta"];2313 -> 2424[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2313 -> 2425[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2314 -> 1026[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2314[label="vxw300 < vxw310",fontsize=16,color="magenta"];2314 -> 2426[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2314 -> 2427[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2315 -> 1027[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2315[label="vxw300 < vxw310",fontsize=16,color="magenta"];2315 -> 2428[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2315 -> 2429[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2316 -> 1028[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2316[label="vxw300 < vxw310",fontsize=16,color="magenta"];2316 -> 2430[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2316 -> 2431[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2317 -> 1029[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2317[label="vxw300 < vxw310",fontsize=16,color="magenta"];2317 -> 2432[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2317 -> 2433[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2318 -> 1030[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2318[label="vxw300 < vxw310",fontsize=16,color="magenta"];2318 -> 2434[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2318 -> 2435[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2319 -> 1031[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2319[label="vxw300 < vxw310",fontsize=16,color="magenta"];2319 -> 2436[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2319 -> 2437[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2320 -> 1032[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2320[label="vxw300 < vxw310",fontsize=16,color="magenta"];2320 -> 2438[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2320 -> 2439[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2321 -> 1691[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2321[label="vxw301 < vxw311 || vxw301 == vxw311 && vxw302 <= vxw312",fontsize=16,color="magenta"];2321 -> 2440[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2321 -> 2441[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2322[label="vxw300 == vxw310",fontsize=16,color="blue",shape="box"];3472[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3472[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3472 -> 2442[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3473[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3473[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3473 -> 2443[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3474[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3474[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3474 -> 2444[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3475[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3475[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3475 -> 2445[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3476[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3476[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3476 -> 2446[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3477[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3477[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3477 -> 2447[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3478[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3478[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3478 -> 2448[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3479[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3479[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3479 -> 2449[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3480[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3480[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3480 -> 2450[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3481[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3481[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3481 -> 2451[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3482[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3482[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3482 -> 2452[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3483[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3483[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3483 -> 2453[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3484[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3484[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3484 -> 2454[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3485[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3485[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3485 -> 2455[label="",style="solid", color="blue", weight=3]; 28.26/13.44 2323[label="vxw310",fontsize=16,color="green",shape="box"];2324[label="vxw300",fontsize=16,color="green",shape="box"];2325[label="vxw310",fontsize=16,color="green",shape="box"];2326[label="vxw300",fontsize=16,color="green",shape="box"];2327[label="vxw310",fontsize=16,color="green",shape="box"];2328[label="vxw300",fontsize=16,color="green",shape="box"];2329[label="vxw310",fontsize=16,color="green",shape="box"];2330[label="vxw300",fontsize=16,color="green",shape="box"];2331[label="vxw310",fontsize=16,color="green",shape="box"];2332[label="vxw300",fontsize=16,color="green",shape="box"];2333[label="vxw310",fontsize=16,color="green",shape="box"];2334[label="vxw300",fontsize=16,color="green",shape="box"];2335[label="vxw310",fontsize=16,color="green",shape="box"];2336[label="vxw300",fontsize=16,color="green",shape="box"];2337[label="vxw310",fontsize=16,color="green",shape="box"];2338[label="vxw300",fontsize=16,color="green",shape="box"];2339[label="vxw310",fontsize=16,color="green",shape="box"];2340[label="vxw300",fontsize=16,color="green",shape="box"];2341[label="vxw310",fontsize=16,color="green",shape="box"];2342[label="vxw300",fontsize=16,color="green",shape="box"];2343[label="vxw310",fontsize=16,color="green",shape="box"];2344[label="vxw300",fontsize=16,color="green",shape="box"];2345[label="vxw310",fontsize=16,color="green",shape="box"];2346[label="vxw300",fontsize=16,color="green",shape="box"];2347[label="vxw310",fontsize=16,color="green",shape="box"];2348[label="vxw300",fontsize=16,color="green",shape="box"];2349[label="vxw310",fontsize=16,color="green",shape="box"];2350[label="vxw300",fontsize=16,color="green",shape="box"];2351[label="GT",fontsize=16,color="green",shape="box"];2352[label="Succ (Succ (primPlusNat vxw1530 vxw40100))",fontsize=16,color="green",shape="box"];2352 -> 2456[label="",style="dashed", color="green", weight=3]; 28.26/13.44 2353[label="Succ vxw40100",fontsize=16,color="green",shape="box"];2354[label="True",fontsize=16,color="green",shape="box"];2355[label="False",fontsize=16,color="green",shape="box"];2356[label="vxw310",fontsize=16,color="green",shape="box"];2357[label="vxw300",fontsize=16,color="green",shape="box"];2358[label="vxw310",fontsize=16,color="green",shape="box"];2359[label="vxw300",fontsize=16,color="green",shape="box"];2360[label="vxw310",fontsize=16,color="green",shape="box"];2361[label="vxw300",fontsize=16,color="green",shape="box"];2362[label="vxw310",fontsize=16,color="green",shape="box"];2363[label="vxw300",fontsize=16,color="green",shape="box"];2364[label="vxw310",fontsize=16,color="green",shape="box"];2365[label="vxw300",fontsize=16,color="green",shape="box"];2366[label="vxw310",fontsize=16,color="green",shape="box"];2367[label="vxw300",fontsize=16,color="green",shape="box"];2368[label="vxw310",fontsize=16,color="green",shape="box"];2369[label="vxw300",fontsize=16,color="green",shape="box"];2370[label="vxw310",fontsize=16,color="green",shape="box"];2371[label="vxw300",fontsize=16,color="green",shape="box"];2372[label="vxw310",fontsize=16,color="green",shape="box"];2373[label="vxw300",fontsize=16,color="green",shape="box"];2374[label="vxw310",fontsize=16,color="green",shape="box"];2375[label="vxw300",fontsize=16,color="green",shape="box"];2376[label="vxw310",fontsize=16,color="green",shape="box"];2377[label="vxw300",fontsize=16,color="green",shape="box"];2378[label="vxw310",fontsize=16,color="green",shape="box"];2379[label="vxw300",fontsize=16,color="green",shape="box"];2380[label="vxw310",fontsize=16,color="green",shape="box"];2381[label="vxw300",fontsize=16,color="green",shape="box"];2382[label="vxw310",fontsize=16,color="green",shape="box"];2383[label="vxw300",fontsize=16,color="green",shape="box"];2384 -> 1074[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2384[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2384 -> 2457[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2384 -> 2458[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2385 -> 1075[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2385[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2385 -> 2459[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2385 -> 2460[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2386 -> 1076[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2386[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2386 -> 2461[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2386 -> 2462[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2387 -> 1077[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2387[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2387 -> 2463[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2387 -> 2464[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2388 -> 1078[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2388[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2388 -> 2465[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2388 -> 2466[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2389 -> 1079[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2389[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2389 -> 2467[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2389 -> 2468[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2390 -> 1080[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2390[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2390 -> 2469[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2390 -> 2470[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2391 -> 1081[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2391[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2391 -> 2471[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2391 -> 2472[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2392 -> 1082[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2392[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2392 -> 2473[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2392 -> 2474[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2393 -> 1083[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2393[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2393 -> 2475[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2393 -> 2476[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2394 -> 1084[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2394[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2394 -> 2477[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2394 -> 2478[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2395 -> 1085[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2395[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2395 -> 2479[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2395 -> 2480[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2396 -> 1086[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2396[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2396 -> 2481[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2396 -> 2482[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2397 -> 1087[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2397[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2397 -> 2483[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2397 -> 2484[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2398 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2398[label="vxw300 == vxw310",fontsize=16,color="magenta"];2398 -> 2485[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2398 -> 2486[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2399 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2399[label="vxw300 == vxw310",fontsize=16,color="magenta"];2399 -> 2487[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2399 -> 2488[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2400 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2400[label="vxw300 == vxw310",fontsize=16,color="magenta"];2400 -> 2489[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2400 -> 2490[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2401 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2401[label="vxw300 == vxw310",fontsize=16,color="magenta"];2401 -> 2491[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2401 -> 2492[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2402 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2402[label="vxw300 == vxw310",fontsize=16,color="magenta"];2402 -> 2493[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2402 -> 2494[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2403 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2403[label="vxw300 == vxw310",fontsize=16,color="magenta"];2403 -> 2495[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2403 -> 2496[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2404 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2404[label="vxw300 == vxw310",fontsize=16,color="magenta"];2404 -> 2497[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2404 -> 2498[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2405 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2405[label="vxw300 == vxw310",fontsize=16,color="magenta"];2405 -> 2499[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2405 -> 2500[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2406 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2406[label="vxw300 == vxw310",fontsize=16,color="magenta"];2406 -> 2501[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2406 -> 2502[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2407 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2407[label="vxw300 == vxw310",fontsize=16,color="magenta"];2407 -> 2503[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2407 -> 2504[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2408 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2408[label="vxw300 == vxw310",fontsize=16,color="magenta"];2408 -> 2505[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2408 -> 2506[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2409 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2409[label="vxw300 == vxw310",fontsize=16,color="magenta"];2409 -> 2507[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2409 -> 2508[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2410 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2410[label="vxw300 == vxw310",fontsize=16,color="magenta"];2410 -> 2509[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2410 -> 2510[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2411 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2411[label="vxw300 == vxw310",fontsize=16,color="magenta"];2411 -> 2511[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2411 -> 2512[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2412[label="vxw310",fontsize=16,color="green",shape="box"];2413[label="vxw300",fontsize=16,color="green",shape="box"];2414[label="vxw310",fontsize=16,color="green",shape="box"];2415[label="vxw300",fontsize=16,color="green",shape="box"];2416[label="vxw310",fontsize=16,color="green",shape="box"];2417[label="vxw300",fontsize=16,color="green",shape="box"];2418[label="vxw310",fontsize=16,color="green",shape="box"];2419[label="vxw300",fontsize=16,color="green",shape="box"];2420[label="vxw310",fontsize=16,color="green",shape="box"];2421[label="vxw300",fontsize=16,color="green",shape="box"];2422[label="vxw310",fontsize=16,color="green",shape="box"];2423[label="vxw300",fontsize=16,color="green",shape="box"];2424[label="vxw310",fontsize=16,color="green",shape="box"];2425[label="vxw300",fontsize=16,color="green",shape="box"];2426[label="vxw310",fontsize=16,color="green",shape="box"];2427[label="vxw300",fontsize=16,color="green",shape="box"];2428[label="vxw310",fontsize=16,color="green",shape="box"];2429[label="vxw300",fontsize=16,color="green",shape="box"];2430[label="vxw310",fontsize=16,color="green",shape="box"];2431[label="vxw300",fontsize=16,color="green",shape="box"];2432[label="vxw310",fontsize=16,color="green",shape="box"];2433[label="vxw300",fontsize=16,color="green",shape="box"];2434[label="vxw310",fontsize=16,color="green",shape="box"];2435[label="vxw300",fontsize=16,color="green",shape="box"];2436[label="vxw310",fontsize=16,color="green",shape="box"];2437[label="vxw300",fontsize=16,color="green",shape="box"];2438[label="vxw310",fontsize=16,color="green",shape="box"];2439[label="vxw300",fontsize=16,color="green",shape="box"];2440[label="vxw301 < vxw311",fontsize=16,color="blue",shape="box"];3486[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3486[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3486 -> 2513[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3487[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3487[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3487 -> 2514[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3488[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3488[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3488 -> 2515[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3489[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3489[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3489 -> 2516[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3490[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3490[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3490 -> 2517[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3491[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3491[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3491 -> 2518[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3492[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3492[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3492 -> 2519[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3493[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3493[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3493 -> 2520[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3494[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3494[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3494 -> 2521[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3495[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3495[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3495 -> 2522[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3496[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3496[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3496 -> 2523[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3497[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3497[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3497 -> 2524[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3498[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3498[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3498 -> 2525[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3499[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3499[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3499 -> 2526[label="",style="solid", color="blue", weight=3]; 28.26/13.44 2441 -> 748[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2441[label="vxw301 == vxw311 && vxw302 <= vxw312",fontsize=16,color="magenta"];2441 -> 2527[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2441 -> 2528[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2442 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2442[label="vxw300 == vxw310",fontsize=16,color="magenta"];2442 -> 2529[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2442 -> 2530[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2443 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2443[label="vxw300 == vxw310",fontsize=16,color="magenta"];2443 -> 2531[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2443 -> 2532[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2444 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2444[label="vxw300 == vxw310",fontsize=16,color="magenta"];2444 -> 2533[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2444 -> 2534[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2445 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2445[label="vxw300 == vxw310",fontsize=16,color="magenta"];2445 -> 2535[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2445 -> 2536[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2446 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2446[label="vxw300 == vxw310",fontsize=16,color="magenta"];2446 -> 2537[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2446 -> 2538[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2447 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2447[label="vxw300 == vxw310",fontsize=16,color="magenta"];2447 -> 2539[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2447 -> 2540[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2448 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2448[label="vxw300 == vxw310",fontsize=16,color="magenta"];2448 -> 2541[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2448 -> 2542[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2449 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2449[label="vxw300 == vxw310",fontsize=16,color="magenta"];2449 -> 2543[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2449 -> 2544[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2450 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2450[label="vxw300 == vxw310",fontsize=16,color="magenta"];2450 -> 2545[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2450 -> 2546[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2451 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2451[label="vxw300 == vxw310",fontsize=16,color="magenta"];2451 -> 2547[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2451 -> 2548[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2452 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2452[label="vxw300 == vxw310",fontsize=16,color="magenta"];2452 -> 2549[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2452 -> 2550[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2453 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2453[label="vxw300 == vxw310",fontsize=16,color="magenta"];2453 -> 2551[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2453 -> 2552[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2454 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2454[label="vxw300 == vxw310",fontsize=16,color="magenta"];2454 -> 2553[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2454 -> 2554[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2455 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2455[label="vxw300 == vxw310",fontsize=16,color="magenta"];2455 -> 2555[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2455 -> 2556[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2456[label="primPlusNat vxw1530 vxw40100",fontsize=16,color="burlywood",shape="triangle"];3500[label="vxw1530/Succ vxw15300",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3500[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3500 -> 2557[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 3501[label="vxw1530/Zero",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3501[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3501 -> 2558[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 2457[label="vxw311",fontsize=16,color="green",shape="box"];2458[label="vxw301",fontsize=16,color="green",shape="box"];2459[label="vxw311",fontsize=16,color="green",shape="box"];2460[label="vxw301",fontsize=16,color="green",shape="box"];2461[label="vxw311",fontsize=16,color="green",shape="box"];2462[label="vxw301",fontsize=16,color="green",shape="box"];2463[label="vxw311",fontsize=16,color="green",shape="box"];2464[label="vxw301",fontsize=16,color="green",shape="box"];2465[label="vxw311",fontsize=16,color="green",shape="box"];2466[label="vxw301",fontsize=16,color="green",shape="box"];2467[label="vxw311",fontsize=16,color="green",shape="box"];2468[label="vxw301",fontsize=16,color="green",shape="box"];2469[label="vxw311",fontsize=16,color="green",shape="box"];2470[label="vxw301",fontsize=16,color="green",shape="box"];2471[label="vxw311",fontsize=16,color="green",shape="box"];2472[label="vxw301",fontsize=16,color="green",shape="box"];2473[label="vxw311",fontsize=16,color="green",shape="box"];2474[label="vxw301",fontsize=16,color="green",shape="box"];2475[label="vxw311",fontsize=16,color="green",shape="box"];2476[label="vxw301",fontsize=16,color="green",shape="box"];2477[label="vxw311",fontsize=16,color="green",shape="box"];2478[label="vxw301",fontsize=16,color="green",shape="box"];2479[label="vxw311",fontsize=16,color="green",shape="box"];2480[label="vxw301",fontsize=16,color="green",shape="box"];2481[label="vxw311",fontsize=16,color="green",shape="box"];2482[label="vxw301",fontsize=16,color="green",shape="box"];2483[label="vxw311",fontsize=16,color="green",shape="box"];2484[label="vxw301",fontsize=16,color="green",shape="box"];2485[label="vxw310",fontsize=16,color="green",shape="box"];2486[label="vxw300",fontsize=16,color="green",shape="box"];2487[label="vxw310",fontsize=16,color="green",shape="box"];2488[label="vxw300",fontsize=16,color="green",shape="box"];2489[label="vxw310",fontsize=16,color="green",shape="box"];2490[label="vxw300",fontsize=16,color="green",shape="box"];2491[label="vxw310",fontsize=16,color="green",shape="box"];2492[label="vxw300",fontsize=16,color="green",shape="box"];2493[label="vxw310",fontsize=16,color="green",shape="box"];2494[label="vxw300",fontsize=16,color="green",shape="box"];2495[label="vxw310",fontsize=16,color="green",shape="box"];2496[label="vxw300",fontsize=16,color="green",shape="box"];2497[label="vxw310",fontsize=16,color="green",shape="box"];2498[label="vxw300",fontsize=16,color="green",shape="box"];2499[label="vxw310",fontsize=16,color="green",shape="box"];2500[label="vxw300",fontsize=16,color="green",shape="box"];2501[label="vxw310",fontsize=16,color="green",shape="box"];2502[label="vxw300",fontsize=16,color="green",shape="box"];2503[label="vxw310",fontsize=16,color="green",shape="box"];2504[label="vxw300",fontsize=16,color="green",shape="box"];2505[label="vxw310",fontsize=16,color="green",shape="box"];2506[label="vxw300",fontsize=16,color="green",shape="box"];2507[label="vxw310",fontsize=16,color="green",shape="box"];2508[label="vxw300",fontsize=16,color="green",shape="box"];2509[label="vxw310",fontsize=16,color="green",shape="box"];2510[label="vxw300",fontsize=16,color="green",shape="box"];2511[label="vxw310",fontsize=16,color="green",shape="box"];2512[label="vxw300",fontsize=16,color="green",shape="box"];2513 -> 1019[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2513[label="vxw301 < vxw311",fontsize=16,color="magenta"];2513 -> 2559[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2513 -> 2560[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2514 -> 1020[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2514[label="vxw301 < vxw311",fontsize=16,color="magenta"];2514 -> 2561[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2514 -> 2562[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2515 -> 1021[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2515[label="vxw301 < vxw311",fontsize=16,color="magenta"];2515 -> 2563[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2515 -> 2564[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2516 -> 1022[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2516[label="vxw301 < vxw311",fontsize=16,color="magenta"];2516 -> 2565[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2516 -> 2566[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2517 -> 1023[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2517[label="vxw301 < vxw311",fontsize=16,color="magenta"];2517 -> 2567[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2517 -> 2568[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2518 -> 1024[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2518[label="vxw301 < vxw311",fontsize=16,color="magenta"];2518 -> 2569[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2518 -> 2570[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2519 -> 1025[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2519[label="vxw301 < vxw311",fontsize=16,color="magenta"];2519 -> 2571[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2519 -> 2572[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2520 -> 1026[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2520[label="vxw301 < vxw311",fontsize=16,color="magenta"];2520 -> 2573[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2520 -> 2574[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2521 -> 1027[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2521[label="vxw301 < vxw311",fontsize=16,color="magenta"];2521 -> 2575[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2521 -> 2576[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2522 -> 1028[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2522[label="vxw301 < vxw311",fontsize=16,color="magenta"];2522 -> 2577[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2522 -> 2578[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2523 -> 1029[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2523[label="vxw301 < vxw311",fontsize=16,color="magenta"];2523 -> 2579[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2523 -> 2580[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2524 -> 1030[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2524[label="vxw301 < vxw311",fontsize=16,color="magenta"];2524 -> 2581[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2524 -> 2582[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2525 -> 1031[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2525[label="vxw301 < vxw311",fontsize=16,color="magenta"];2525 -> 2583[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2525 -> 2584[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2526 -> 1032[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2526[label="vxw301 < vxw311",fontsize=16,color="magenta"];2526 -> 2585[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2526 -> 2586[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2527[label="vxw302 <= vxw312",fontsize=16,color="blue",shape="box"];3502[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3502[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3502 -> 2587[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3503[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3503[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3503 -> 2588[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3504[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3504[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3504 -> 2589[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3505[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3505[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3505 -> 2590[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3506[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3506[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3506 -> 2591[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3507[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3507[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3507 -> 2592[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3508[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3508[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3508 -> 2593[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3509[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3509[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3509 -> 2594[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3510[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3510[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3510 -> 2595[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3511[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3511[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3511 -> 2596[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3512[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3512[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3512 -> 2597[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3513[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3513[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3513 -> 2598[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3514[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3514[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3514 -> 2599[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3515[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3515[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3515 -> 2600[label="",style="solid", color="blue", weight=3]; 28.26/13.44 2528[label="vxw301 == vxw311",fontsize=16,color="blue",shape="box"];3516[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3516[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3516 -> 2601[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3517[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3517[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3517 -> 2602[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3518[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3518[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3518 -> 2603[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3519[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3519[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3519 -> 2604[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3520[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3520[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3520 -> 2605[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3521[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3521[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3521 -> 2606[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3522[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3522[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3522 -> 2607[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3523[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3523[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3523 -> 2608[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3524[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3524[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3524 -> 2609[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3525[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3525[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3525 -> 2610[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3526[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3526[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3526 -> 2611[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3527[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3527[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3527 -> 2612[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3528[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3528[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3528 -> 2613[label="",style="solid", color="blue", weight=3]; 28.26/13.44 3529[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3529[label="",style="solid", color="blue", weight=9]; 28.26/13.44 3529 -> 2614[label="",style="solid", color="blue", weight=3]; 28.26/13.44 2529[label="vxw310",fontsize=16,color="green",shape="box"];2530[label="vxw300",fontsize=16,color="green",shape="box"];2531[label="vxw310",fontsize=16,color="green",shape="box"];2532[label="vxw300",fontsize=16,color="green",shape="box"];2533[label="vxw310",fontsize=16,color="green",shape="box"];2534[label="vxw300",fontsize=16,color="green",shape="box"];2535[label="vxw310",fontsize=16,color="green",shape="box"];2536[label="vxw300",fontsize=16,color="green",shape="box"];2537[label="vxw310",fontsize=16,color="green",shape="box"];2538[label="vxw300",fontsize=16,color="green",shape="box"];2539[label="vxw310",fontsize=16,color="green",shape="box"];2540[label="vxw300",fontsize=16,color="green",shape="box"];2541[label="vxw310",fontsize=16,color="green",shape="box"];2542[label="vxw300",fontsize=16,color="green",shape="box"];2543[label="vxw310",fontsize=16,color="green",shape="box"];2544[label="vxw300",fontsize=16,color="green",shape="box"];2545[label="vxw310",fontsize=16,color="green",shape="box"];2546[label="vxw300",fontsize=16,color="green",shape="box"];2547[label="vxw310",fontsize=16,color="green",shape="box"];2548[label="vxw300",fontsize=16,color="green",shape="box"];2549[label="vxw310",fontsize=16,color="green",shape="box"];2550[label="vxw300",fontsize=16,color="green",shape="box"];2551[label="vxw310",fontsize=16,color="green",shape="box"];2552[label="vxw300",fontsize=16,color="green",shape="box"];2553[label="vxw310",fontsize=16,color="green",shape="box"];2554[label="vxw300",fontsize=16,color="green",shape="box"];2555[label="vxw310",fontsize=16,color="green",shape="box"];2556[label="vxw300",fontsize=16,color="green",shape="box"];2557[label="primPlusNat (Succ vxw15300) vxw40100",fontsize=16,color="burlywood",shape="box"];3530[label="vxw40100/Succ vxw401000",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3530[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3530 -> 2615[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 3531[label="vxw40100/Zero",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3531[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3531 -> 2616[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 2558[label="primPlusNat Zero vxw40100",fontsize=16,color="burlywood",shape="box"];3532[label="vxw40100/Succ vxw401000",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3532[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3532 -> 2617[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 3533[label="vxw40100/Zero",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3533[label="",style="solid", color="burlywood", weight=9]; 28.26/13.44 3533 -> 2618[label="",style="solid", color="burlywood", weight=3]; 28.26/13.44 2559[label="vxw311",fontsize=16,color="green",shape="box"];2560[label="vxw301",fontsize=16,color="green",shape="box"];2561[label="vxw311",fontsize=16,color="green",shape="box"];2562[label="vxw301",fontsize=16,color="green",shape="box"];2563[label="vxw311",fontsize=16,color="green",shape="box"];2564[label="vxw301",fontsize=16,color="green",shape="box"];2565[label="vxw311",fontsize=16,color="green",shape="box"];2566[label="vxw301",fontsize=16,color="green",shape="box"];2567[label="vxw311",fontsize=16,color="green",shape="box"];2568[label="vxw301",fontsize=16,color="green",shape="box"];2569[label="vxw311",fontsize=16,color="green",shape="box"];2570[label="vxw301",fontsize=16,color="green",shape="box"];2571[label="vxw311",fontsize=16,color="green",shape="box"];2572[label="vxw301",fontsize=16,color="green",shape="box"];2573[label="vxw311",fontsize=16,color="green",shape="box"];2574[label="vxw301",fontsize=16,color="green",shape="box"];2575[label="vxw311",fontsize=16,color="green",shape="box"];2576[label="vxw301",fontsize=16,color="green",shape="box"];2577[label="vxw311",fontsize=16,color="green",shape="box"];2578[label="vxw301",fontsize=16,color="green",shape="box"];2579[label="vxw311",fontsize=16,color="green",shape="box"];2580[label="vxw301",fontsize=16,color="green",shape="box"];2581[label="vxw311",fontsize=16,color="green",shape="box"];2582[label="vxw301",fontsize=16,color="green",shape="box"];2583[label="vxw311",fontsize=16,color="green",shape="box"];2584[label="vxw301",fontsize=16,color="green",shape="box"];2585[label="vxw311",fontsize=16,color="green",shape="box"];2586[label="vxw301",fontsize=16,color="green",shape="box"];2587 -> 1074[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2587[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2587 -> 2619[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2587 -> 2620[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2588 -> 1075[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2588[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2588 -> 2621[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2588 -> 2622[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2589 -> 1076[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2589[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2589 -> 2623[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2589 -> 2624[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2590 -> 1077[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2590[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2590 -> 2625[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2590 -> 2626[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2591 -> 1078[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2591[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2591 -> 2627[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2591 -> 2628[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2592 -> 1079[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2592[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2592 -> 2629[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2592 -> 2630[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2593 -> 1080[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2593[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2593 -> 2631[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2593 -> 2632[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2594 -> 1081[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2594[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2594 -> 2633[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2594 -> 2634[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2595 -> 1082[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2595[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2595 -> 2635[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2595 -> 2636[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2596 -> 1083[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2596[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2596 -> 2637[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2596 -> 2638[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2597 -> 1084[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2597[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2597 -> 2639[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2597 -> 2640[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2598 -> 1085[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2598[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2598 -> 2641[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2598 -> 2642[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2599 -> 1086[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2599[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2599 -> 2643[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2599 -> 2644[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2600 -> 1087[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2600[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2600 -> 2645[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2600 -> 2646[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2601 -> 302[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2601[label="vxw301 == vxw311",fontsize=16,color="magenta"];2601 -> 2647[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2601 -> 2648[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2602 -> 289[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2602[label="vxw301 == vxw311",fontsize=16,color="magenta"];2602 -> 2649[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2602 -> 2650[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2603 -> 301[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2603[label="vxw301 == vxw311",fontsize=16,color="magenta"];2603 -> 2651[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2603 -> 2652[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2604 -> 296[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2604[label="vxw301 == vxw311",fontsize=16,color="magenta"];2604 -> 2653[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2604 -> 2654[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2605 -> 292[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2605[label="vxw301 == vxw311",fontsize=16,color="magenta"];2605 -> 2655[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2605 -> 2656[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2606 -> 300[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2606[label="vxw301 == vxw311",fontsize=16,color="magenta"];2606 -> 2657[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2606 -> 2658[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2607 -> 294[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2607[label="vxw301 == vxw311",fontsize=16,color="magenta"];2607 -> 2659[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2607 -> 2660[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2608 -> 290[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2608[label="vxw301 == vxw311",fontsize=16,color="magenta"];2608 -> 2661[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2608 -> 2662[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2609 -> 293[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2609[label="vxw301 == vxw311",fontsize=16,color="magenta"];2609 -> 2663[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2609 -> 2664[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2610 -> 297[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2610[label="vxw301 == vxw311",fontsize=16,color="magenta"];2610 -> 2665[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2610 -> 2666[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2611 -> 299[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2611[label="vxw301 == vxw311",fontsize=16,color="magenta"];2611 -> 2667[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2611 -> 2668[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2612 -> 291[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2612[label="vxw301 == vxw311",fontsize=16,color="magenta"];2612 -> 2669[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2612 -> 2670[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2613 -> 298[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2613[label="vxw301 == vxw311",fontsize=16,color="magenta"];2613 -> 2671[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2613 -> 2672[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2614 -> 295[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2614[label="vxw301 == vxw311",fontsize=16,color="magenta"];2614 -> 2673[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2614 -> 2674[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2615[label="primPlusNat (Succ vxw15300) (Succ vxw401000)",fontsize=16,color="black",shape="box"];2615 -> 2675[label="",style="solid", color="black", weight=3]; 28.26/13.44 2616[label="primPlusNat (Succ vxw15300) Zero",fontsize=16,color="black",shape="box"];2616 -> 2676[label="",style="solid", color="black", weight=3]; 28.26/13.44 2617[label="primPlusNat Zero (Succ vxw401000)",fontsize=16,color="black",shape="box"];2617 -> 2677[label="",style="solid", color="black", weight=3]; 28.26/13.44 2618[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2618 -> 2678[label="",style="solid", color="black", weight=3]; 28.26/13.44 2619[label="vxw312",fontsize=16,color="green",shape="box"];2620[label="vxw302",fontsize=16,color="green",shape="box"];2621[label="vxw312",fontsize=16,color="green",shape="box"];2622[label="vxw302",fontsize=16,color="green",shape="box"];2623[label="vxw312",fontsize=16,color="green",shape="box"];2624[label="vxw302",fontsize=16,color="green",shape="box"];2625[label="vxw312",fontsize=16,color="green",shape="box"];2626[label="vxw302",fontsize=16,color="green",shape="box"];2627[label="vxw312",fontsize=16,color="green",shape="box"];2628[label="vxw302",fontsize=16,color="green",shape="box"];2629[label="vxw312",fontsize=16,color="green",shape="box"];2630[label="vxw302",fontsize=16,color="green",shape="box"];2631[label="vxw312",fontsize=16,color="green",shape="box"];2632[label="vxw302",fontsize=16,color="green",shape="box"];2633[label="vxw312",fontsize=16,color="green",shape="box"];2634[label="vxw302",fontsize=16,color="green",shape="box"];2635[label="vxw312",fontsize=16,color="green",shape="box"];2636[label="vxw302",fontsize=16,color="green",shape="box"];2637[label="vxw312",fontsize=16,color="green",shape="box"];2638[label="vxw302",fontsize=16,color="green",shape="box"];2639[label="vxw312",fontsize=16,color="green",shape="box"];2640[label="vxw302",fontsize=16,color="green",shape="box"];2641[label="vxw312",fontsize=16,color="green",shape="box"];2642[label="vxw302",fontsize=16,color="green",shape="box"];2643[label="vxw312",fontsize=16,color="green",shape="box"];2644[label="vxw302",fontsize=16,color="green",shape="box"];2645[label="vxw312",fontsize=16,color="green",shape="box"];2646[label="vxw302",fontsize=16,color="green",shape="box"];2647[label="vxw311",fontsize=16,color="green",shape="box"];2648[label="vxw301",fontsize=16,color="green",shape="box"];2649[label="vxw311",fontsize=16,color="green",shape="box"];2650[label="vxw301",fontsize=16,color="green",shape="box"];2651[label="vxw311",fontsize=16,color="green",shape="box"];2652[label="vxw301",fontsize=16,color="green",shape="box"];2653[label="vxw311",fontsize=16,color="green",shape="box"];2654[label="vxw301",fontsize=16,color="green",shape="box"];2655[label="vxw311",fontsize=16,color="green",shape="box"];2656[label="vxw301",fontsize=16,color="green",shape="box"];2657[label="vxw311",fontsize=16,color="green",shape="box"];2658[label="vxw301",fontsize=16,color="green",shape="box"];2659[label="vxw311",fontsize=16,color="green",shape="box"];2660[label="vxw301",fontsize=16,color="green",shape="box"];2661[label="vxw311",fontsize=16,color="green",shape="box"];2662[label="vxw301",fontsize=16,color="green",shape="box"];2663[label="vxw311",fontsize=16,color="green",shape="box"];2664[label="vxw301",fontsize=16,color="green",shape="box"];2665[label="vxw311",fontsize=16,color="green",shape="box"];2666[label="vxw301",fontsize=16,color="green",shape="box"];2667[label="vxw311",fontsize=16,color="green",shape="box"];2668[label="vxw301",fontsize=16,color="green",shape="box"];2669[label="vxw311",fontsize=16,color="green",shape="box"];2670[label="vxw301",fontsize=16,color="green",shape="box"];2671[label="vxw311",fontsize=16,color="green",shape="box"];2672[label="vxw301",fontsize=16,color="green",shape="box"];2673[label="vxw311",fontsize=16,color="green",shape="box"];2674[label="vxw301",fontsize=16,color="green",shape="box"];2675[label="Succ (Succ (primPlusNat vxw15300 vxw401000))",fontsize=16,color="green",shape="box"];2675 -> 2679[label="",style="dashed", color="green", weight=3]; 28.26/13.44 2676[label="Succ vxw15300",fontsize=16,color="green",shape="box"];2677[label="Succ vxw401000",fontsize=16,color="green",shape="box"];2678[label="Zero",fontsize=16,color="green",shape="box"];2679 -> 2456[label="",style="dashed", color="red", weight=0]; 28.26/13.44 2679[label="primPlusNat vxw15300 vxw401000",fontsize=16,color="magenta"];2679 -> 2680[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2679 -> 2681[label="",style="dashed", color="magenta", weight=3]; 28.26/13.44 2680[label="vxw401000",fontsize=16,color="green",shape="box"];2681[label="vxw15300",fontsize=16,color="green",shape="box"];} 28.26/13.44 28.26/13.44 ---------------------------------------- 28.26/13.44 28.26/13.44 (14) 28.26/13.44 Complex Obligation (AND) 28.26/13.44 28.26/13.44 ---------------------------------------- 28.26/13.44 28.26/13.44 (15) 28.26/13.44 Obligation: 28.26/13.44 Q DP problem: 28.26/13.44 The TRS P consists of the following rules: 28.26/13.44 28.26/13.44 new_primCmpNat(Succ(vxw300), Succ(vxw4000)) -> new_primCmpNat(vxw300, vxw4000) 28.26/13.44 28.26/13.44 R is empty. 28.26/13.44 Q is empty. 28.26/13.44 We have to consider all minimal (P,Q,R)-chains. 28.26/13.44 ---------------------------------------- 28.26/13.44 28.26/13.44 (16) QDPSizeChangeProof (EQUIVALENT) 28.26/13.44 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. 28.26/13.44 28.26/13.44 From the DPs we obtained the following set of size-change graphs: 28.26/13.44 *new_primCmpNat(Succ(vxw300), Succ(vxw4000)) -> new_primCmpNat(vxw300, vxw4000) 28.26/13.44 The graph contains the following edges 1 > 1, 2 > 2 28.26/13.44 28.26/13.44 28.26/13.44 ---------------------------------------- 28.26/13.44 28.26/13.44 (17) 28.26/13.44 YES 28.26/13.44 28.26/13.44 ---------------------------------------- 28.26/13.44 28.26/13.44 (18) 28.26/13.44 Obligation: 28.26/13.44 Q DP problem: 28.26/13.44 The TRS P consists of the following rules: 28.26/13.44 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, app(app(ty_Either, bec), bed)) -> new_ltEs0(vxw302, vxw312, bec, bed) 28.26/13.44 new_ltEs0(Left(vxw300), Left(vxw310), app(ty_Maybe, hh), hb) -> new_ltEs2(vxw300, vxw310, hh) 28.26/13.44 new_compare2(vxw73, vxw74, vxw75, vxw76, False, ce, app(app(ty_Either, da), db)) -> new_ltEs0(vxw74, vxw76, da, db) 28.26/13.44 new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(ty_@2, bfb), bfc)), ee) -> new_ltEs(vxw300, vxw310, bfb, bfc) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, app(ty_Maybe, cbb)) -> new_ltEs2(vxw50, vxw53, cbb) 28.26/13.44 new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(ty_Maybe, bga)), ee) -> new_ltEs2(vxw300, vxw310, bga) 28.26/13.44 new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(app(ty_@3, he), hf), hg)), hb), ee) -> new_ltEs1(vxw300, vxw310, he, hf, hg) 28.26/13.44 new_ltEs0(Right(vxw300), Right(vxw310), bab, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs1(vxw300, vxw310, bag, bah, bba) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, app(app(ty_@2, cbd), cbe), cab, bhb) -> new_lt(vxw48, vxw51, cbd, cbe) 28.26/13.44 new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(app(ty_@3, bff), bfg), bfh)), ee) -> new_ltEs1(vxw300, vxw310, bff, bfg, bfh) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, app(ty_[], ccd), cab, bhb) -> new_lt3(vxw48, vxw51, ccd) 28.26/13.44 new_ltEs0(Left(vxw300), Left(vxw310), app(app(app(ty_@3, he), hf), hg), hb) -> new_ltEs1(vxw300, vxw310, he, hf, hg) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, app(ty_Maybe, bhh), bhb) -> new_lt2(vxw49, vxw52, bhh) 28.26/13.44 new_compare2(vxw73, vxw74, vxw75, vxw76, False, app(app(app(ty_@3, bh), ca), cb), be) -> new_compare1(vxw73, vxw75, bh, ca, cb) 28.26/13.44 new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(ty_[], bgb)), ee) -> new_ltEs3(vxw300, vxw310, bgb) 28.26/13.44 new_compare2(vxw73, vxw74, vxw75, vxw76, False, ce, app(ty_[], dg)) -> new_ltEs3(vxw74, vxw76, dg) 28.26/13.44 new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(ty_Either, ef), eg)), ed), ee) -> new_lt0(vxw300, vxw310, ef, eg) 28.26/13.44 new_primCompAux(vxw30, vxw400, vxw14, app(ty_[], ceh)) -> new_compare4(vxw30, vxw400, ceh) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(ty_Either, bbh), bca), bbf, bbg) -> new_lt0(vxw300, vxw310, bbh, bca) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, app(app(app(ty_@3, bdd), bde), bdf), bbg) -> new_lt1(vxw301, vxw311, bdd, bde, bdf) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), app(app(ty_Either, bdb), bdc)), bbg), ee) -> new_lt0(vxw301, vxw311, bdb, bdc) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), bbf), app(app(ty_Either, bec), bed)), ee) -> new_ltEs0(vxw302, vxw312, bec, bed) 28.26/13.44 new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, app(ty_Maybe, gf)) -> new_ltEs2(vxw301, vxw311, gf) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, app(app(app(ty_@3, cag), cah), cba)) -> new_ltEs1(vxw50, vxw53, cag, cah, cba) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(ty_[], bcf), bbf, bbg) -> new_lt3(vxw300, vxw310, bcf) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), bbf), app(ty_Maybe, beh)), ee) -> new_ltEs2(vxw302, vxw312, beh) 28.26/13.44 new_ltEs0(Right(vxw300), Right(vxw310), bab, app(ty_Maybe, bbb)) -> new_ltEs2(vxw300, vxw310, bbb) 28.26/13.44 new_compare23(vxw59, vxw60, False, app(app(ty_Either, cch), cda)) -> new_ltEs0(vxw59, vxw60, cch, cda) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(ty_@2, bbd), bbe), bbf, bbg) -> new_lt(vxw300, vxw310, bbd, bbe) 28.26/13.44 new_ltEs0(Left(vxw300), Left(vxw310), app(app(ty_@2, gh), ha), hb) -> new_ltEs(vxw300, vxw310, gh, ha) 28.26/13.44 new_compare(@2(vxw30, vxw31), @2(vxw400, vxw401), bc, bd) -> new_compare2(vxw30, vxw31, vxw400, vxw401, new_asAs(new_esEs5(vxw30, vxw400, bc), new_esEs4(vxw31, vxw401, bd)), bc, bd) 28.26/13.44 new_compare23(vxw59, vxw60, False, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs1(vxw59, vxw60, cdb, cdc, cdd) 28.26/13.44 new_compare21(vxw37, vxw38, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(vxw37, vxw38, cfb, cfc) 28.26/13.44 new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(ty_Maybe, fc)), ed), ee) -> new_lt2(vxw300, vxw310, fc) 28.26/13.44 new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(ty_@2, gh), ha)), hb), ee) -> new_ltEs(vxw300, vxw310, gh, ha) 28.26/13.44 new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, ff), app(app(ty_@2, fg), fh)), ee) -> new_ltEs(vxw301, vxw311, fg, fh) 28.26/13.44 new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs1(vxw301, vxw311, gc, gd, ge) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, app(ty_Maybe, bdg), bbg) -> new_lt2(vxw301, vxw311, bdg) 28.26/13.44 new_compare2(vxw73, vxw74, vxw75, vxw76, False, ce, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs1(vxw74, vxw76, dc, dd, de) 28.26/13.44 new_compare4(:(vxw30, vxw31), :(vxw400, vxw401), cdg) -> new_primCompAux(vxw30, vxw400, new_compare5(vxw31, vxw401, cdg), cdg) 28.26/13.44 new_lt3(vxw73, vxw75, cd) -> new_compare4(vxw73, vxw75, cd) 28.26/13.44 new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(ty_Either, hc), hd)), hb), ee) -> new_ltEs0(vxw300, vxw310, hc, hd) 28.26/13.44 new_compare21(vxw37, vxw38, False, cfa, app(ty_Maybe, cga)) -> new_ltEs2(vxw37, vxw38, cga) 28.26/13.44 new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bab), app(app(ty_Either, bae), baf)), ee) -> new_ltEs0(vxw300, vxw310, bae, baf) 28.26/13.44 new_ltEs3(vxw30, vxw31, bgc) -> new_compare4(vxw30, vxw31, bgc) 28.26/13.44 new_compare21(vxw37, vxw38, False, cfa, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs1(vxw37, vxw38, cff, cfg, cfh) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(ty_[], bcf)), bbf), bbg), ee) -> new_lt3(vxw300, vxw310, bcf) 28.26/13.44 new_ltEs2(Just(vxw300), Just(vxw310), app(app(ty_@2, bfb), bfc)) -> new_ltEs(vxw300, vxw310, bfb, bfc) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, app(app(app(ty_@3, bhe), bhf), bhg), bhb) -> new_lt1(vxw49, vxw52, bhe, bhf, bhg) 28.26/13.44 new_ltEs0(Right(vxw300), Right(vxw310), bab, app(ty_[], bbc)) -> new_ltEs3(vxw300, vxw310, bbc) 28.26/13.44 new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bab), app(app(app(ty_@3, bag), bah), bba)), ee) -> new_ltEs1(vxw300, vxw310, bag, bah, bba) 28.26/13.44 new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), app(ty_Maybe, fc), ed) -> new_lt2(vxw300, vxw310, fc) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, app(ty_[], bdh), bbg) -> new_lt3(vxw301, vxw311, bdh) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), app(ty_Maybe, bdg)), bbg), ee) -> new_lt2(vxw301, vxw311, bdg) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(ty_Maybe, bce), bbf, bbg) -> new_lt2(vxw300, vxw310, bce) 28.26/13.44 new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(app(ty_@3, eh), fa), fb)), ed), ee) -> new_lt1(vxw300, vxw310, eh, fa, fb) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, app(app(ty_Either, cae), caf)) -> new_ltEs0(vxw50, vxw53, cae, caf) 28.26/13.44 new_compare21(vxw37, vxw38, False, cfa, app(ty_[], cgb)) -> new_ltEs3(vxw37, vxw38, cgb) 28.26/13.44 new_compare2(vxw73, vxw74, vxw75, vxw76, False, app(app(ty_Either, bf), bg), be) -> new_compare0(vxw73, vxw75, bf, bg) 28.26/13.44 new_ltEs0(Left(vxw300), Left(vxw310), app(ty_[], baa), hb) -> new_ltEs3(vxw300, vxw310, baa) 28.26/13.44 new_lt2(vxw73, vxw75, cc) -> new_compare3(vxw73, vxw75, cc) 28.26/13.44 new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, app(app(ty_@2, fg), fh)) -> new_ltEs(vxw301, vxw311, fg, fh) 28.26/13.44 new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(ty_[], baa)), hb), ee) -> new_ltEs3(vxw300, vxw310, baa) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(app(ty_@3, bcb), bcc), bcd), bbf, bbg) -> new_lt1(vxw300, vxw310, bcb, bcc, bcd) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, app(ty_Maybe, beh)) -> new_ltEs2(vxw302, vxw312, beh) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, app(app(ty_Either, bdb), bdc), bbg) -> new_lt0(vxw301, vxw311, bdb, bdc) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(ty_Maybe, bce)), bbf), bbg), ee) -> new_lt2(vxw300, vxw310, bce) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, app(ty_[], bfa)) -> new_ltEs3(vxw302, vxw312, bfa) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, app(app(ty_@2, bea), beb)) -> new_ltEs(vxw302, vxw312, bea, beb) 28.26/13.44 new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, ff), app(ty_[], gg)), ee) -> new_ltEs3(vxw301, vxw311, gg) 28.26/13.44 new_ltEs2(Just(vxw300), Just(vxw310), app(ty_Maybe, bga)) -> new_ltEs2(vxw300, vxw310, bga) 28.26/13.44 new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(ty_Maybe, hh)), hb), ee) -> new_ltEs2(vxw300, vxw310, hh) 28.26/13.44 new_ltEs0(Right(vxw300), Right(vxw310), bab, app(app(ty_@2, bac), bad)) -> new_ltEs(vxw300, vxw310, bac, bad) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, app(app(ty_@2, bch), bda), bbg) -> new_lt(vxw301, vxw311, bch, bda) 28.26/13.44 new_compare0(Right(vxw30), Right(vxw400), dh, ea) -> new_compare21(vxw30, vxw400, new_esEs7(vxw30, vxw400, ea), dh, ea) 28.26/13.44 new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, app(ty_[], gg)) -> new_ltEs3(vxw301, vxw311, gg) 28.26/13.44 new_ltEs2(Just(vxw300), Just(vxw310), app(ty_[], bgb)) -> new_ltEs3(vxw300, vxw310, bgb) 28.26/13.44 new_compare23(vxw59, vxw60, False, app(app(ty_@2, ccf), ccg)) -> new_ltEs(vxw59, vxw60, ccf, ccg) 28.26/13.44 new_primCompAux(vxw30, vxw400, vxw14, app(ty_Maybe, ceg)) -> new_compare3(vxw30, vxw400, ceg) 28.26/13.44 new_lt1(vxw73, vxw75, bh, ca, cb) -> new_compare1(vxw73, vxw75, bh, ca, cb) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), app(ty_[], bdh)), bbg), ee) -> new_lt3(vxw301, vxw311, bdh) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, app(ty_[], caa), bhb) -> new_lt3(vxw49, vxw52, caa) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), bbf), app(app(app(ty_@3, bee), bef), beg)), ee) -> new_ltEs1(vxw302, vxw312, bee, bef, beg) 28.26/13.44 new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, ff), app(ty_Maybe, gf)), ee) -> new_ltEs2(vxw301, vxw311, gf) 28.26/13.44 new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(ty_@2, eb), ec), ed) -> new_lt(vxw300, vxw310, eb, ec) 28.26/13.44 new_compare1(@3(vxw30, vxw31, vxw32), @3(vxw400, vxw401, vxw402), bgd, bge, bgf) -> new_compare22(vxw30, vxw31, vxw32, vxw400, vxw401, vxw402, new_asAs(new_esEs10(vxw30, vxw400, bgd), new_asAs(new_esEs9(vxw31, vxw401, bge), new_esEs8(vxw32, vxw402, bgf))), bgd, bge, bgf) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(app(ty_@3, bcb), bcc), bcd)), bbf), bbg), ee) -> new_lt1(vxw300, vxw310, bcb, bcc, bcd) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, app(ty_Maybe, ccc), cab, bhb) -> new_lt2(vxw48, vxw51, ccc) 28.26/13.44 new_ltEs0(Right(vxw300), Right(vxw310), bab, app(app(ty_Either, bae), baf)) -> new_ltEs0(vxw300, vxw310, bae, baf) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(ty_@2, bbd), bbe)), bbf), bbg), ee) -> new_lt(vxw300, vxw310, bbd, bbe) 28.26/13.44 new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), app(ty_[], fd), ed) -> new_lt3(vxw300, vxw310, fd) 28.26/13.44 new_primCompAux(vxw30, vxw400, vxw14, app(app(ty_@2, cdh), cea)) -> new_compare(vxw30, vxw400, cdh, cea) 28.26/13.44 new_compare2(vxw73, vxw74, vxw75, vxw76, False, ce, app(ty_Maybe, df)) -> new_ltEs2(vxw74, vxw76, df) 28.26/13.44 new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(ty_[], fd)), ed), ee) -> new_lt3(vxw300, vxw310, fd) 28.26/13.44 new_compare2(vxw73, vxw74, vxw75, vxw76, False, ce, app(app(ty_@2, cf), cg)) -> new_ltEs(vxw74, vxw76, cf, cg) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), app(app(ty_@2, bch), bda)), bbg), ee) -> new_lt(vxw301, vxw311, bch, bda) 28.26/13.44 new_compare21(vxw37, vxw38, False, cfa, app(app(ty_Either, cfd), cfe)) -> new_ltEs0(vxw37, vxw38, cfd, cfe) 28.26/13.44 new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bab), app(app(ty_@2, bac), bad)), ee) -> new_ltEs(vxw300, vxw310, bac, bad) 28.26/13.44 new_ltEs0(Left(vxw300), Left(vxw310), app(app(ty_Either, hc), hd), hb) -> new_ltEs0(vxw300, vxw310, hc, hd) 28.26/13.44 new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(ty_Either, ef), eg), ed) -> new_lt0(vxw300, vxw310, ef, eg) 28.26/13.44 new_compare2(vxw73, vxw74, vxw75, vxw76, False, app(app(ty_@2, ba), bb), be) -> new_compare(vxw73, vxw75, ba, bb) 28.26/13.44 new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, app(app(ty_Either, ga), gb)) -> new_ltEs0(vxw301, vxw311, ga, gb) 28.26/13.44 new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, ff), app(app(ty_Either, ga), gb)), ee) -> new_ltEs0(vxw301, vxw311, ga, gb) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, app(app(ty_@2, bgh), bha), bhb) -> new_lt(vxw49, vxw52, bgh, bha) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), bbf), app(ty_[], bfa)), ee) -> new_ltEs3(vxw302, vxw312, bfa) 28.26/13.44 new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(app(ty_@3, eh), fa), fb), ed) -> new_lt1(vxw300, vxw310, eh, fa, fb) 28.26/13.44 new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bab), app(ty_[], bbc)), ee) -> new_ltEs3(vxw300, vxw310, bbc) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, app(app(app(ty_@3, cbh), cca), ccb), cab, bhb) -> new_lt1(vxw48, vxw51, cbh, cca, ccb) 28.26/13.44 new_primCompAux(vxw30, vxw400, vxw14, app(app(ty_Either, ceb), cec)) -> new_compare0(vxw30, vxw400, ceb, cec) 28.26/13.44 new_compare23(vxw59, vxw60, False, app(ty_[], cdf)) -> new_ltEs3(vxw59, vxw60, cdf) 28.26/13.44 new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, ff), app(app(app(ty_@3, gc), gd), ge)), ee) -> new_ltEs1(vxw301, vxw311, gc, gd, ge) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(ty_Either, bbh), bca)), bbf), bbg), ee) -> new_lt0(vxw300, vxw310, bbh, bca) 28.26/13.44 new_compare4(:(vxw30, vxw31), :(vxw400, vxw401), cdg) -> new_compare4(vxw31, vxw401, cdg) 28.26/13.44 new_compare3(Just(vxw30), Just(vxw400), cce) -> new_compare23(vxw30, vxw400, new_esEs11(vxw30, vxw400, cce), cce) 28.26/13.44 new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(ty_@2, eb), ec)), ed), ee) -> new_lt(vxw300, vxw310, eb, ec) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), bbf), app(app(ty_@2, bea), beb)), ee) -> new_ltEs(vxw302, vxw312, bea, beb) 28.26/13.44 new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs1(vxw302, vxw312, bee, bef, beg) 28.26/13.44 new_ltEs2(Just(vxw300), Just(vxw310), app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs1(vxw300, vxw310, bff, bfg, bfh) 28.26/13.44 new_compare23(vxw59, vxw60, False, app(ty_Maybe, cde)) -> new_ltEs2(vxw59, vxw60, cde) 28.26/13.44 new_lt(vxw73, vxw75, ba, bb) -> new_compare(vxw73, vxw75, ba, bb) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, app(app(ty_Either, cbf), cbg), cab, bhb) -> new_lt0(vxw48, vxw51, cbf, cbg) 28.26/13.44 new_ltEs2(Just(vxw300), Just(vxw310), app(app(ty_Either, bfd), bfe)) -> new_ltEs0(vxw300, vxw310, bfd, bfe) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, app(app(ty_Either, bhc), bhd), bhb) -> new_lt0(vxw49, vxw52, bhc, bhd) 28.26/13.44 new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bab), app(ty_Maybe, bbb)), ee) -> new_ltEs2(vxw300, vxw310, bbb) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, app(ty_[], cbc)) -> new_ltEs3(vxw50, vxw53, cbc) 28.26/13.44 new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), app(app(app(ty_@3, bdd), bde), bdf)), bbg), ee) -> new_lt1(vxw301, vxw311, bdd, bde, bdf) 28.26/13.44 new_compare0(Left(vxw30), Left(vxw400), dh, ea) -> new_compare20(vxw30, vxw400, new_esEs6(vxw30, vxw400, dh), dh, ea) 28.26/13.44 new_compare2(vxw73, vxw74, vxw75, vxw76, False, app(ty_[], cd), be) -> new_compare4(vxw73, vxw75, cd) 28.26/13.44 new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(ty_Either, bfd), bfe)), ee) -> new_ltEs0(vxw300, vxw310, bfd, bfe) 28.26/13.44 new_lt0(vxw73, vxw75, bf, bg) -> new_compare0(vxw73, vxw75, bf, bg) 28.26/13.44 new_compare20(vxw30, vxw31, False, app(ty_[], bgc), ee) -> new_compare4(vxw30, vxw31, bgc) 28.26/13.44 new_primCompAux(vxw30, vxw400, vxw14, app(app(app(ty_@3, ced), cee), cef)) -> new_compare1(vxw30, vxw400, ced, cee, cef) 28.26/13.44 new_compare2(vxw73, vxw74, vxw75, vxw76, False, app(ty_Maybe, cc), be) -> new_compare3(vxw73, vxw75, cc) 28.26/13.44 new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, app(app(ty_@2, cac), cad)) -> new_ltEs(vxw50, vxw53, cac, cad) 28.26/13.44 28.26/13.44 The TRS R consists of the following rules: 28.26/13.44 28.26/13.44 new_esEs28(vxw300, vxw310, app(ty_Maybe, bce)) -> new_esEs24(vxw300, vxw310, bce) 28.26/13.44 new_esEs30(vxw301, vxw4001, app(app(ty_@2, efc), efd)) -> new_esEs19(vxw301, vxw4001, efc, efd) 28.26/13.44 new_lt17(vxw73, vxw75) -> new_esEs13(new_compare28(vxw73, vxw75), LT) 28.26/13.44 new_esEs27(vxw301, vxw311, app(ty_[], bdh)) -> new_esEs26(vxw301, vxw311, bdh) 28.26/13.44 new_primCmpInt(Neg(Succ(vxw300)), Pos(vxw400)) -> LT 28.26/13.44 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 28.26/13.44 new_primPlusNat0(Zero, Zero) -> Zero 28.26/13.44 new_pePe(True, vxw152) -> True 28.26/13.44 new_esEs7(vxw30, vxw400, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs21(vxw30, vxw400, dca, dcb, dcc) 28.26/13.44 new_compare12(vxw103, vxw104, False, fac, fad) -> GT 28.26/13.44 new_esEs5(vxw30, vxw400, ty_Int) -> new_esEs15(vxw30, vxw400) 28.26/13.44 new_esEs8(vxw32, vxw402, ty_Char) -> new_esEs12(vxw32, vxw402) 28.26/13.44 new_ltEs24(vxw30, vxw31, app(ty_[], bgc)) -> new_ltEs18(vxw30, vxw31, bgc) 28.26/13.44 new_esEs19(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ebd, ebe) -> new_asAs(new_esEs38(vxw300, vxw4000, ebd), new_esEs37(vxw301, vxw4001, ebe)) 28.26/13.44 new_esEs34(vxw48, vxw51, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs21(vxw48, vxw51, cbh, cca, ccb) 28.26/13.44 new_esEs9(vxw31, vxw401, ty_Integer) -> new_esEs23(vxw31, vxw401) 28.26/13.44 new_esEs39(vxw300, vxw4000, app(app(ty_@2, fgd), fge)) -> new_esEs19(vxw300, vxw4000, fgd, fge) 28.26/13.44 new_esEs39(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) 28.26/13.44 new_ltEs10(Left(vxw300), Left(vxw310), ty_Double, hb) -> new_ltEs8(vxw300, vxw310) 28.26/13.44 new_esEs29(vxw302, vxw4002, ty_Char) -> new_esEs12(vxw302, vxw4002) 28.26/13.44 new_compare30(vxw30, vxw400, app(ty_Maybe, ceg)) -> new_compare6(vxw30, vxw400, ceg) 28.26/13.44 new_lt21(vxw300, vxw310, ty_Bool) -> new_lt6(vxw300, vxw310) 28.26/13.44 new_esEs36(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.44 new_compare16(GT, LT) -> GT 28.26/13.44 new_esEs6(vxw30, vxw400, app(ty_[], dbb)) -> new_esEs26(vxw30, vxw400, dbb) 28.26/13.44 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 28.26/13.44 new_esEs16(vxw73, vxw75, ty_Int) -> new_esEs15(vxw73, vxw75) 28.26/13.44 new_compare24(vxw73, vxw74, vxw75, vxw76, True, ce, be) -> EQ 28.26/13.44 new_esEs37(vxw301, vxw4001, ty_Bool) -> new_esEs17(vxw301, vxw4001) 28.26/13.44 new_ltEs16(Nothing, Nothing, ede) -> True 28.26/13.44 new_primCmpInt(Pos(Zero), Neg(Succ(vxw4000))) -> GT 28.26/13.44 new_ltEs16(Just(vxw300), Just(vxw310), app(app(ty_Either, bfd), bfe)) -> new_ltEs10(vxw300, vxw310, bfd, bfe) 28.26/13.44 new_esEs6(vxw30, vxw400, ty_Ordering) -> new_esEs13(vxw30, vxw400) 28.26/13.44 new_compare26(vxw37, vxw38, True, cfa, dda) -> EQ 28.26/13.44 new_esEs33(vxw49, vxw52, app(ty_[], caa)) -> new_esEs26(vxw49, vxw52, caa) 28.26/13.44 new_compare9(Double(vxw30, Pos(vxw310)), Double(vxw400, Pos(vxw4010))) -> new_compare13(new_sr(vxw30, Pos(vxw4010)), new_sr(Pos(vxw310), vxw400)) 28.26/13.44 new_ltEs20(vxw59, vxw60, ty_Float) -> new_ltEs13(vxw59, vxw60) 28.26/13.44 new_ltEs16(Just(vxw300), Nothing, ede) -> False 28.26/13.44 new_ltEs14(vxw30, vxw31) -> new_fsEs(new_compare17(vxw30, vxw31)) 28.26/13.44 new_esEs32(vxw300, vxw310, ty_Int) -> new_esEs15(vxw300, vxw310) 28.26/13.44 new_esEs32(vxw300, vxw310, app(app(ty_Either, ef), eg)) -> new_esEs20(vxw300, vxw310, ef, eg) 28.26/13.44 new_esEs14(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs15(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) 28.26/13.44 new_primCmpInt(Neg(Succ(vxw300)), Neg(vxw400)) -> new_primCmpNat0(vxw400, Succ(vxw300)) 28.26/13.44 new_esEs9(vxw31, vxw401, app(app(ty_Either, fdb), fdc)) -> new_esEs20(vxw31, vxw401, fdb, fdc) 28.26/13.44 new_esEs37(vxw301, vxw4001, app(ty_Ratio, fdf)) -> new_esEs22(vxw301, vxw4001, fdf) 28.26/13.44 new_ltEs22(vxw301, vxw311, app(app(ty_Either, ga), gb)) -> new_ltEs10(vxw301, vxw311, ga, gb) 28.26/13.44 new_compare16(EQ, LT) -> GT 28.26/13.44 new_esEs8(vxw32, vxw402, ty_Float) -> new_esEs14(vxw32, vxw402) 28.26/13.44 new_compare30(vxw30, vxw400, ty_Bool) -> new_compare31(vxw30, vxw400) 28.26/13.44 new_primMulNat0(Succ(vxw3000), Succ(vxw40100)) -> new_primPlusNat1(new_primMulNat0(vxw3000, Succ(vxw40100)), vxw40100) 28.26/13.44 new_lt20(vxw301, vxw311, ty_Double) -> new_lt9(vxw301, vxw311) 28.26/13.44 new_compare30(vxw30, vxw400, ty_Integer) -> new_compare17(vxw30, vxw400) 28.26/13.44 new_compare111(vxw123, vxw124, vxw125, vxw126, False, fdd, fde) -> GT 28.26/13.44 new_esEs29(vxw302, vxw4002, ty_Float) -> new_esEs14(vxw302, vxw4002) 28.26/13.44 new_ltEs19(vxw302, vxw312, app(ty_Maybe, beh)) -> new_ltEs16(vxw302, vxw312, beh) 28.26/13.44 new_esEs37(vxw301, vxw4001, ty_@0) -> new_esEs25(vxw301, vxw4001) 28.26/13.44 new_esEs20(Left(vxw300), Left(vxw4000), ty_@0, ddc) -> new_esEs25(vxw300, vxw4000) 28.26/13.44 new_esEs27(vxw301, vxw311, ty_Ordering) -> new_esEs13(vxw301, vxw311) 28.26/13.44 new_ltEs24(vxw30, vxw31, ty_@0) -> new_ltEs17(vxw30, vxw31) 28.26/13.44 new_esEs5(vxw30, vxw400, app(app(ty_Either, def), ddc)) -> new_esEs20(vxw30, vxw400, def, ddc) 28.26/13.44 new_primCompAux0(vxw65, GT) -> GT 28.26/13.44 new_ltEs10(Right(vxw300), Right(vxw310), bab, ty_Float) -> new_ltEs13(vxw300, vxw310) 28.26/13.44 new_lt19(vxw300, vxw310, ty_Ordering) -> new_lt8(vxw300, vxw310) 28.26/13.44 new_ltEs20(vxw59, vxw60, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs11(vxw59, vxw60, cdb, cdc, cdd) 28.26/13.44 new_lt5(vxw73, vxw75, ty_@0) -> new_lt17(vxw73, vxw75) 28.26/13.44 new_ltEs24(vxw30, vxw31, ty_Bool) -> new_ltEs5(vxw30, vxw31) 28.26/13.44 new_esEs10(vxw30, vxw400, ty_Char) -> new_esEs12(vxw30, vxw400) 28.26/13.44 new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False 28.26/13.44 new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False 28.26/13.44 new_ltEs20(vxw59, vxw60, app(ty_[], cdf)) -> new_ltEs18(vxw59, vxw60, cdf) 28.26/13.44 new_lt5(vxw73, vxw75, app(ty_Ratio, cgd)) -> new_lt13(vxw73, vxw75, cgd) 28.26/13.44 new_compare30(vxw30, vxw400, ty_Double) -> new_compare9(vxw30, vxw400) 28.26/13.44 new_esEs33(vxw49, vxw52, ty_Ordering) -> new_esEs13(vxw49, vxw52) 28.26/13.44 new_esEs20(Right(vxw300), Right(vxw4000), def, ty_Float) -> new_esEs14(vxw300, vxw4000) 28.26/13.44 new_esEs20(Right(vxw300), Right(vxw4000), def, ty_Char) -> new_esEs12(vxw300, vxw4000) 28.26/13.44 new_lt23(vxw48, vxw51, app(ty_Maybe, ccc)) -> new_lt4(vxw48, vxw51, ccc) 28.26/13.44 new_compare31(True, False) -> GT 28.26/13.44 new_lt23(vxw48, vxw51, app(app(ty_@2, cbd), cbe)) -> new_lt10(vxw48, vxw51, cbd, cbe) 28.26/13.44 new_esEs29(vxw302, vxw4002, app(app(ty_@2, eea), eeb)) -> new_esEs19(vxw302, vxw4002, eea, eeb) 28.26/13.44 new_ltEs16(Just(vxw300), Just(vxw310), ty_Integer) -> new_ltEs14(vxw300, vxw310) 28.26/13.44 new_esEs15(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) 28.26/13.44 new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 28.26/13.44 new_compare15(:%(vxw30, vxw31), :%(vxw400, vxw401), ty_Int) -> new_compare13(new_sr(vxw30, vxw401), new_sr(vxw400, vxw31)) 28.26/13.44 new_esEs30(vxw301, vxw4001, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs21(vxw301, vxw4001, efe, eff, efg) 28.26/13.44 new_esEs30(vxw301, vxw4001, ty_Char) -> new_esEs12(vxw301, vxw4001) 28.26/13.44 new_esEs16(vxw73, vxw75, app(ty_Ratio, cgd)) -> new_esEs22(vxw73, vxw75, cgd) 28.26/13.44 new_esEs38(vxw300, vxw4000, app(ty_Maybe, ffa)) -> new_esEs24(vxw300, vxw4000, ffa) 28.26/13.44 new_primCompAux0(vxw65, LT) -> LT 28.26/13.44 new_ltEs16(Just(vxw300), Just(vxw310), ty_Char) -> new_ltEs15(vxw300, vxw310) 28.26/13.44 new_esEs24(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs18(vxw300, vxw4000) 28.26/13.44 new_esEs10(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) 28.26/13.44 new_esEs11(vxw30, vxw400, ty_Int) -> new_esEs15(vxw30, vxw400) 28.26/13.44 new_lt5(vxw73, vxw75, ty_Char) -> new_lt16(vxw73, vxw75) 28.26/13.44 new_not(True) -> False 28.26/13.44 new_esEs38(vxw300, vxw4000, ty_Ordering) -> new_esEs13(vxw300, vxw4000) 28.26/13.44 new_esEs16(vxw73, vxw75, ty_Bool) -> new_esEs17(vxw73, vxw75) 28.26/13.44 new_esEs38(vxw300, vxw4000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs21(vxw300, vxw4000, ffd, ffe, fff) 28.26/13.44 new_lt5(vxw73, vxw75, app(app(ty_@2, ba), bb)) -> new_lt10(vxw73, vxw75, ba, bb) 28.26/13.44 new_esEs24(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs14(vxw300, vxw4000) 28.26/13.44 new_ltEs23(vxw50, vxw53, ty_Char) -> new_ltEs15(vxw50, vxw53) 28.26/13.44 new_esEs4(vxw31, vxw401, ty_Char) -> new_esEs12(vxw31, vxw401) 28.26/13.44 new_primCmpNat0(Zero, Zero) -> EQ 28.26/13.44 new_esEs24(Just(vxw300), Just(vxw4000), app(ty_Maybe, fba)) -> new_esEs24(vxw300, vxw4000, fba) 28.26/13.44 new_ltEs24(vxw30, vxw31, ty_Float) -> new_ltEs13(vxw30, vxw31) 28.26/13.44 new_lt22(vxw49, vxw52, ty_Integer) -> new_lt15(vxw49, vxw52) 28.26/13.44 new_esEs6(vxw30, vxw400, ty_@0) -> new_esEs25(vxw30, vxw400) 28.26/13.44 new_esEs8(vxw32, vxw402, app(app(ty_@2, dgc), dgd)) -> new_esEs19(vxw32, vxw402, dgc, dgd) 28.26/13.44 new_esEs33(vxw49, vxw52, ty_Bool) -> new_esEs17(vxw49, vxw52) 28.26/13.44 new_ltEs10(Left(vxw300), Left(vxw310), app(ty_Maybe, hh), hb) -> new_ltEs16(vxw300, vxw310, hh) 28.26/13.44 new_esEs9(vxw31, vxw401, ty_Int) -> new_esEs15(vxw31, vxw401) 28.26/13.44 new_lt5(vxw73, vxw75, ty_Integer) -> new_lt15(vxw73, vxw75) 28.26/13.44 new_esEs27(vxw301, vxw311, ty_Bool) -> new_esEs17(vxw301, vxw311) 28.26/13.44 new_ltEs16(Just(vxw300), Just(vxw310), app(ty_Ratio, edf)) -> new_ltEs12(vxw300, vxw310, edf) 28.26/13.44 new_compare26(vxw37, vxw38, False, cfa, dda) -> new_compare12(vxw37, vxw38, new_ltEs21(vxw37, vxw38, dda), cfa, dda) 28.26/13.44 new_esEs30(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) 28.26/13.44 new_esEs32(vxw300, vxw310, ty_@0) -> new_esEs25(vxw300, vxw310) 28.26/13.44 new_ltEs10(Left(vxw300), Left(vxw310), ty_Integer, hb) -> new_ltEs14(vxw300, vxw310) 28.26/13.44 new_esEs5(vxw30, vxw400, ty_Integer) -> new_esEs23(vxw30, vxw400) 28.26/13.44 new_lt23(vxw48, vxw51, ty_@0) -> new_lt17(vxw48, vxw51) 28.26/13.44 new_compare27(vxw59, vxw60, False, dcg) -> new_compare10(vxw59, vxw60, new_ltEs20(vxw59, vxw60, dcg), dcg) 28.26/13.44 new_ltEs24(vxw30, vxw31, ty_Ordering) -> new_ltEs7(vxw30, vxw31) 28.26/13.44 new_compare27(vxw59, vxw60, True, dcg) -> EQ 28.26/13.44 new_esEs20(Left(vxw300), Left(vxw4000), ty_Int, ddc) -> new_esEs15(vxw300, vxw4000) 28.26/13.44 new_lt21(vxw300, vxw310, ty_Char) -> new_lt16(vxw300, vxw310) 28.26/13.44 new_ltEs22(vxw301, vxw311, ty_Double) -> new_ltEs8(vxw301, vxw311) 28.26/13.44 new_esEs37(vxw301, vxw4001, ty_Int) -> new_esEs15(vxw301, vxw4001) 28.26/13.44 new_compare8(Right(vxw30), Left(vxw400), dh, ea) -> GT 28.26/13.44 new_lt21(vxw300, vxw310, ty_Integer) -> new_lt15(vxw300, vxw310) 28.26/13.44 new_esEs39(vxw300, vxw4000, ty_Char) -> new_esEs12(vxw300, vxw4000) 28.26/13.44 new_esEs27(vxw301, vxw311, app(ty_Ratio, daa)) -> new_esEs22(vxw301, vxw311, daa) 28.26/13.44 new_primEqNat0(Succ(vxw3000), Zero) -> False 28.26/13.44 new_primEqNat0(Zero, Succ(vxw40000)) -> False 28.26/13.44 new_compare9(Double(vxw30, Neg(vxw310)), Double(vxw400, Neg(vxw4010))) -> new_compare13(new_sr(vxw30, Neg(vxw4010)), new_sr(Neg(vxw310), vxw400)) 28.26/13.44 new_lt23(vxw48, vxw51, app(app(app(ty_@3, cbh), cca), ccb)) -> new_lt12(vxw48, vxw51, cbh, cca, ccb) 28.26/13.44 new_esEs39(vxw300, vxw4000, app(ty_Maybe, fgc)) -> new_esEs24(vxw300, vxw4000, fgc) 28.26/13.44 new_ltEs20(vxw59, vxw60, ty_Int) -> new_ltEs6(vxw59, vxw60) 28.26/13.44 new_compare15(:%(vxw30, vxw31), :%(vxw400, vxw401), ty_Integer) -> new_compare17(new_sr0(vxw30, vxw401), new_sr0(vxw400, vxw31)) 28.26/13.44 new_ltEs19(vxw302, vxw312, ty_Int) -> new_ltEs6(vxw302, vxw312) 28.26/13.44 new_lt22(vxw49, vxw52, app(ty_[], caa)) -> new_lt18(vxw49, vxw52, caa) 28.26/13.44 new_ltEs11(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, bbg) -> new_pePe(new_lt19(vxw300, vxw310, bcg), new_asAs(new_esEs28(vxw300, vxw310, bcg), new_pePe(new_lt20(vxw301, vxw311, bbf), new_asAs(new_esEs27(vxw301, vxw311, bbf), new_ltEs19(vxw302, vxw312, bbg))))) 28.26/13.44 new_esEs4(vxw31, vxw401, ty_Float) -> new_esEs14(vxw31, vxw401) 28.26/13.44 new_compare6(Just(vxw30), Nothing, cce) -> GT 28.26/13.44 new_esEs39(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) 28.26/13.44 new_ltEs19(vxw302, vxw312, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs11(vxw302, vxw312, bee, bef, beg) 28.26/13.44 new_ltEs23(vxw50, vxw53, ty_Double) -> new_ltEs8(vxw50, vxw53) 28.26/13.44 new_ltEs23(vxw50, vxw53, app(app(ty_@2, cac), cad)) -> new_ltEs9(vxw50, vxw53, cac, cad) 28.26/13.44 new_esEs33(vxw49, vxw52, app(ty_Ratio, ehh)) -> new_esEs22(vxw49, vxw52, ehh) 28.26/13.44 new_ltEs19(vxw302, vxw312, ty_Float) -> new_ltEs13(vxw302, vxw312) 28.26/13.44 new_esEs34(vxw48, vxw51, ty_Ordering) -> new_esEs13(vxw48, vxw51) 28.26/13.44 new_esEs13(LT, LT) -> True 28.26/13.44 new_compare17(Integer(vxw30), Integer(vxw400)) -> new_primCmpInt(vxw30, vxw400) 28.26/13.44 new_lt22(vxw49, vxw52, app(ty_Maybe, bhh)) -> new_lt4(vxw49, vxw52, bhh) 28.26/13.44 new_ltEs4(vxw74, vxw76, app(app(ty_Either, da), db)) -> new_ltEs10(vxw74, vxw76, da, db) 28.26/13.44 new_esEs27(vxw301, vxw311, ty_Int) -> new_esEs15(vxw301, vxw311) 28.26/13.44 new_ltEs21(vxw37, vxw38, ty_Int) -> new_ltEs6(vxw37, vxw38) 28.26/13.44 new_compare210(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, True, bgg, cab, bhb) -> EQ 28.26/13.44 new_esEs21(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), ebf, ebg, ebh) -> new_asAs(new_esEs31(vxw300, vxw4000, ebf), new_asAs(new_esEs30(vxw301, vxw4001, ebg), new_esEs29(vxw302, vxw4002, ebh))) 28.26/13.44 new_ltEs4(vxw74, vxw76, app(ty_Maybe, df)) -> new_ltEs16(vxw74, vxw76, df) 28.26/13.44 new_compare30(vxw30, vxw400, app(ty_Ratio, edd)) -> new_compare15(vxw30, vxw400, edd) 28.26/13.44 new_esEs29(vxw302, vxw4002, ty_Double) -> new_esEs18(vxw302, vxw4002) 28.26/13.44 new_esEs33(vxw49, vxw52, ty_Int) -> new_esEs15(vxw49, vxw52) 28.26/13.44 new_primCmpInt(Pos(Succ(vxw300)), Neg(vxw400)) -> GT 28.26/13.44 new_ltEs10(Right(vxw300), Left(vxw310), bab, hb) -> False 28.26/13.44 new_esEs20(Left(vxw300), Left(vxw4000), app(app(ty_@2, ddf), ddg), ddc) -> new_esEs19(vxw300, vxw4000, ddf, ddg) 28.26/13.44 new_esEs11(vxw30, vxw400, ty_Integer) -> new_esEs23(vxw30, vxw400) 28.26/13.44 new_esEs31(vxw300, vxw4000, app(app(ty_Either, ehc), ehd)) -> new_esEs20(vxw300, vxw4000, ehc, ehd) 28.26/13.44 new_lt23(vxw48, vxw51, app(ty_[], ccd)) -> new_lt18(vxw48, vxw51, ccd) 28.26/13.44 new_esEs37(vxw301, vxw4001, app(app(ty_Either, fef), feg)) -> new_esEs20(vxw301, vxw4001, fef, feg) 28.26/13.44 new_compare16(LT, GT) -> LT 28.26/13.44 new_ltEs5(False, True) -> True 28.26/13.44 new_compare110(vxw96, vxw97, True, fae, faf) -> LT 28.26/13.44 new_lt22(vxw49, vxw52, ty_Char) -> new_lt16(vxw49, vxw52) 28.26/13.44 new_esEs23(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) 28.26/13.44 new_esEs30(vxw301, vxw4001, ty_Double) -> new_esEs18(vxw301, vxw4001) 28.26/13.44 new_ltEs22(vxw301, vxw311, ty_Char) -> new_ltEs15(vxw301, vxw311) 28.26/13.44 new_esEs32(vxw300, vxw310, app(ty_Ratio, ehe)) -> new_esEs22(vxw300, vxw310, ehe) 28.26/13.44 new_esEs34(vxw48, vxw51, app(ty_Maybe, ccc)) -> new_esEs24(vxw48, vxw51, ccc) 28.26/13.44 new_ltEs24(vxw30, vxw31, app(app(app(ty_@3, bcg), bbf), bbg)) -> new_ltEs11(vxw30, vxw31, bcg, bbf, bbg) 28.26/13.44 new_esEs28(vxw300, vxw310, ty_Ordering) -> new_esEs13(vxw300, vxw310) 28.26/13.44 new_ltEs7(GT, GT) -> True 28.26/13.44 new_esEs20(Left(vxw300), Left(vxw4000), ty_Bool, ddc) -> new_esEs17(vxw300, vxw4000) 28.26/13.44 new_esEs7(vxw30, vxw400, app(app(ty_@2, dbg), dbh)) -> new_esEs19(vxw30, vxw400, dbg, dbh) 28.26/13.44 new_esEs32(vxw300, vxw310, ty_Bool) -> new_esEs17(vxw300, vxw310) 28.26/13.44 new_esEs31(vxw300, vxw4000, app(app(ty_@2, ege), egf)) -> new_esEs19(vxw300, vxw4000, ege, egf) 28.26/13.44 new_lt5(vxw73, vxw75, ty_Int) -> new_lt7(vxw73, vxw75) 28.26/13.44 new_ltEs22(vxw301, vxw311, ty_Integer) -> new_ltEs14(vxw301, vxw311) 28.26/13.44 new_esEs16(vxw73, vxw75, ty_Integer) -> new_esEs23(vxw73, vxw75) 28.26/13.44 new_compare5(:(vxw30, vxw31), [], cdg) -> GT 28.26/13.44 new_ltEs23(vxw50, vxw53, ty_Bool) -> new_ltEs5(vxw50, vxw53) 28.26/13.44 new_primCmpNat0(Zero, Succ(vxw4000)) -> LT 28.26/13.44 new_ltEs20(vxw59, vxw60, ty_@0) -> new_ltEs17(vxw59, vxw60) 28.26/13.44 new_ltEs10(Left(vxw300), Left(vxw310), ty_Char, hb) -> new_ltEs15(vxw300, vxw310) 28.26/13.44 new_compare32(Char(vxw30), Char(vxw400)) -> new_primCmpNat0(vxw30, vxw400) 28.26/13.44 new_esEs4(vxw31, vxw401, ty_Integer) -> new_esEs23(vxw31, vxw401) 28.26/13.44 new_compare14(@3(vxw30, vxw31, vxw32), @3(vxw400, vxw401, vxw402), bgd, bge, bgf) -> new_compare210(vxw30, vxw31, vxw32, vxw400, vxw401, vxw402, new_asAs(new_esEs10(vxw30, vxw400, bgd), new_asAs(new_esEs9(vxw31, vxw401, bge), new_esEs8(vxw32, vxw402, bgf))), bgd, bge, bgf) 28.26/13.44 new_esEs24(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs12(vxw300, vxw4000) 28.26/13.44 new_esEs28(vxw300, vxw310, ty_Char) -> new_esEs12(vxw300, vxw310) 28.26/13.44 new_compare6(Nothing, Nothing, cce) -> EQ 28.26/13.44 new_esEs5(vxw30, vxw400, app(ty_[], eca)) -> new_esEs26(vxw30, vxw400, eca) 28.26/13.44 new_esEs34(vxw48, vxw51, ty_Char) -> new_esEs12(vxw48, vxw51) 28.26/13.44 new_esEs29(vxw302, vxw4002, ty_Integer) -> new_esEs23(vxw302, vxw4002) 28.26/13.44 new_esEs34(vxw48, vxw51, app(ty_[], ccd)) -> new_esEs26(vxw48, vxw51, ccd) 28.26/13.44 new_ltEs21(vxw37, vxw38, ty_Integer) -> new_ltEs14(vxw37, vxw38) 28.26/13.44 new_primCmpNat0(Succ(vxw300), Zero) -> GT 28.26/13.44 new_esEs38(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 28.26/13.44 new_ltEs10(Right(vxw300), Right(vxw310), bab, ty_@0) -> new_ltEs17(vxw300, vxw310) 28.26/13.44 new_lt20(vxw301, vxw311, app(app(ty_Either, bdb), bdc)) -> new_lt11(vxw301, vxw311, bdb, bdc) 28.26/13.44 new_lt20(vxw301, vxw311, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt12(vxw301, vxw311, bdd, bde, bdf) 28.26/13.44 new_pePe(False, vxw152) -> vxw152 28.26/13.44 new_esEs6(vxw30, vxw400, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs21(vxw30, vxw400, dag, dah, dba) 28.26/13.44 new_ltEs9(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, ed) -> new_pePe(new_lt21(vxw300, vxw310, ff), new_asAs(new_esEs32(vxw300, vxw310, ff), new_ltEs22(vxw301, vxw311, ed))) 28.26/13.44 new_esEs11(vxw30, vxw400, app(ty_[], eab)) -> new_esEs26(vxw30, vxw400, eab) 28.26/13.44 new_esEs11(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) 28.26/13.44 new_esEs9(vxw31, vxw401, ty_Float) -> new_esEs14(vxw31, vxw401) 28.26/13.44 new_compare30(vxw30, vxw400, ty_Ordering) -> new_compare16(vxw30, vxw400) 28.26/13.44 new_compare25(vxw30, vxw31, True, fag, ee) -> EQ 28.26/13.44 new_esEs27(vxw301, vxw311, app(app(ty_Either, bdb), bdc)) -> new_esEs20(vxw301, vxw311, bdb, bdc) 28.26/13.44 new_esEs20(Right(vxw300), Right(vxw4000), def, ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.44 new_esEs8(vxw32, vxw402, app(ty_Maybe, dgb)) -> new_esEs24(vxw32, vxw402, dgb) 28.26/13.44 new_esEs29(vxw302, vxw4002, app(ty_Maybe, edh)) -> new_esEs24(vxw302, vxw4002, edh) 28.26/13.44 new_compare31(False, False) -> EQ 28.26/13.44 new_lt9(vxw73, vxw75) -> new_esEs13(new_compare9(vxw73, vxw75), LT) 28.26/13.44 new_esEs34(vxw48, vxw51, ty_Float) -> new_esEs14(vxw48, vxw51) 28.26/13.44 new_lt21(vxw300, vxw310, ty_Double) -> new_lt9(vxw300, vxw310) 28.26/13.44 new_ltEs10(Left(vxw300), Left(vxw310), ty_Bool, hb) -> new_ltEs5(vxw300, vxw310) 28.26/13.44 new_compare19(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, False, eae, eaf, eag) -> GT 28.26/13.44 new_esEs6(vxw30, vxw400, app(app(ty_Either, dbc), dbd)) -> new_esEs20(vxw30, vxw400, dbc, dbd) 28.26/13.44 new_esEs13(GT, GT) -> True 28.26/13.44 new_esEs20(Right(vxw300), Right(vxw4000), def, app(ty_Ratio, deg)) -> new_esEs22(vxw300, vxw4000, deg) 28.26/13.44 new_esEs16(vxw73, vxw75, ty_Ordering) -> new_esEs13(vxw73, vxw75) 28.26/13.44 new_ltEs24(vxw30, vxw31, ty_Int) -> new_ltEs6(vxw30, vxw31) 28.26/13.44 new_compare10(vxw113, vxw114, False, cgc) -> GT 28.26/13.44 new_ltEs10(Left(vxw300), Left(vxw310), app(ty_Ratio, eah), hb) -> new_ltEs12(vxw300, vxw310, eah) 28.26/13.44 new_compare30(vxw30, vxw400, app(app(ty_@2, cdh), cea)) -> new_compare29(vxw30, vxw400, cdh, cea) 28.26/13.44 new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False 28.26/13.44 new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False 28.26/13.44 new_ltEs23(vxw50, vxw53, app(ty_[], cbc)) -> new_ltEs18(vxw50, vxw53, cbc) 28.26/13.44 new_esEs7(vxw30, vxw400, app(ty_[], dcd)) -> new_esEs26(vxw30, vxw400, dcd) 28.26/13.44 new_lt5(vxw73, vxw75, app(app(ty_Either, bf), bg)) -> new_lt11(vxw73, vxw75, bf, bg) 28.26/13.44 new_esEs6(vxw30, vxw400, app(ty_Maybe, dad)) -> new_esEs24(vxw30, vxw400, dad) 28.26/13.44 new_esEs29(vxw302, vxw4002, app(app(ty_Either, eeg), eeh)) -> new_esEs20(vxw302, vxw4002, eeg, eeh) 28.26/13.44 new_lt21(vxw300, vxw310, ty_Int) -> new_lt7(vxw300, vxw310) 28.26/13.44 new_compare16(EQ, EQ) -> EQ 28.26/13.44 new_esEs20(Right(vxw300), Right(vxw4000), def, app(app(ty_Either, dfg), dfh)) -> new_esEs20(vxw300, vxw4000, dfg, dfh) 28.26/13.44 new_lt22(vxw49, vxw52, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_lt12(vxw49, vxw52, bhe, bhf, bhg) 28.26/13.44 new_compare5([], :(vxw400, vxw401), cdg) -> LT 28.26/13.44 new_esEs10(vxw30, vxw400, ty_Integer) -> new_esEs23(vxw30, vxw400) 28.26/13.44 new_esEs9(vxw31, vxw401, app(ty_Ratio, fcb)) -> new_esEs22(vxw31, vxw401, fcb) 28.26/13.45 new_ltEs21(vxw37, vxw38, ty_Float) -> new_ltEs13(vxw37, vxw38) 28.26/13.45 new_esEs31(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 28.26/13.45 new_esEs31(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) 28.26/13.45 new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 28.26/13.45 new_esEs9(vxw31, vxw401, ty_Double) -> new_esEs18(vxw31, vxw401) 28.26/13.45 new_primCmpInt(Neg(Zero), Pos(Succ(vxw4000))) -> LT 28.26/13.45 new_lt19(vxw300, vxw310, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt12(vxw300, vxw310, bcb, bcc, bcd) 28.26/13.45 new_lt22(vxw49, vxw52, app(app(ty_Either, bhc), bhd)) -> new_lt11(vxw49, vxw52, bhc, bhd) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, app(app(ty_Either, bae), baf)) -> new_ltEs10(vxw300, vxw310, bae, baf) 28.26/13.45 new_esEs4(vxw31, vxw401, ty_Bool) -> new_esEs17(vxw31, vxw401) 28.26/13.45 new_lt5(vxw73, vxw75, app(app(app(ty_@3, bh), ca), cb)) -> new_lt12(vxw73, vxw75, bh, ca, cb) 28.26/13.45 new_primMulInt(Pos(vxw300), Pos(vxw4010)) -> Pos(new_primMulNat0(vxw300, vxw4010)) 28.26/13.45 new_esEs30(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 28.26/13.45 new_esEs33(vxw49, vxw52, app(ty_Maybe, bhh)) -> new_esEs24(vxw49, vxw52, bhh) 28.26/13.45 new_esEs13(EQ, GT) -> False 28.26/13.45 new_esEs13(GT, EQ) -> False 28.26/13.45 new_ltEs21(vxw37, vxw38, ty_Char) -> new_ltEs15(vxw37, vxw38) 28.26/13.45 new_ltEs22(vxw301, vxw311, app(ty_Maybe, gf)) -> new_ltEs16(vxw301, vxw311, gf) 28.26/13.45 new_ltEs22(vxw301, vxw311, ty_Int) -> new_ltEs6(vxw301, vxw311) 28.26/13.45 new_lt19(vxw300, vxw310, app(app(ty_Either, bbh), bca)) -> new_lt11(vxw300, vxw310, bbh, bca) 28.26/13.45 new_esEs11(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) 28.26/13.45 new_primCompAux1(vxw30, vxw400, vxw14, cdg) -> new_primCompAux0(vxw14, new_compare30(vxw30, vxw400, cdg)) 28.26/13.45 new_esEs11(vxw30, vxw400, app(ty_Ratio, dhc)) -> new_esEs22(vxw30, vxw400, dhc) 28.26/13.45 new_compare10(vxw113, vxw114, True, cgc) -> LT 28.26/13.45 new_ltEs4(vxw74, vxw76, ty_Char) -> new_ltEs15(vxw74, vxw76) 28.26/13.45 new_ltEs23(vxw50, vxw53, ty_Float) -> new_ltEs13(vxw50, vxw53) 28.26/13.45 new_esEs27(vxw301, vxw311, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs21(vxw301, vxw311, bdd, bde, bdf) 28.26/13.45 new_esEs10(vxw30, vxw400, app(ty_Maybe, ecc)) -> new_esEs24(vxw30, vxw400, ecc) 28.26/13.45 new_primMulNat0(Succ(vxw3000), Zero) -> Zero 28.26/13.45 new_primMulNat0(Zero, Succ(vxw40100)) -> Zero 28.26/13.45 new_ltEs4(vxw74, vxw76, ty_Double) -> new_ltEs8(vxw74, vxw76) 28.26/13.45 new_compare8(Left(vxw30), Right(vxw400), dh, ea) -> LT 28.26/13.45 new_ltEs19(vxw302, vxw312, app(ty_[], bfa)) -> new_ltEs18(vxw302, vxw312, bfa) 28.26/13.45 new_esEs34(vxw48, vxw51, ty_Double) -> new_esEs18(vxw48, vxw51) 28.26/13.45 new_ltEs21(vxw37, vxw38, app(ty_Ratio, ddb)) -> new_ltEs12(vxw37, vxw38, ddb) 28.26/13.45 new_esEs38(vxw300, vxw4000, ty_Char) -> new_esEs12(vxw300, vxw4000) 28.26/13.45 new_esEs9(vxw31, vxw401, app(ty_[], fda)) -> new_esEs26(vxw31, vxw401, fda) 28.26/13.45 new_ltEs6(vxw30, vxw31) -> new_fsEs(new_compare13(vxw30, vxw31)) 28.26/13.45 new_primPlusNat1(Succ(vxw1530), vxw40100) -> Succ(Succ(new_primPlusNat0(vxw1530, vxw40100))) 28.26/13.45 new_esEs8(vxw32, vxw402, ty_Integer) -> new_esEs23(vxw32, vxw402) 28.26/13.45 new_esEs30(vxw301, vxw4001, app(ty_Maybe, efb)) -> new_esEs24(vxw301, vxw4001, efb) 28.26/13.45 new_lt8(vxw73, vxw75) -> new_esEs13(new_compare16(vxw73, vxw75), LT) 28.26/13.45 new_lt23(vxw48, vxw51, ty_Char) -> new_lt16(vxw48, vxw51) 28.26/13.45 new_fsEs(vxw147) -> new_not(new_esEs13(vxw147, GT)) 28.26/13.45 new_ltEs5(True, False) -> False 28.26/13.45 new_compare30(vxw30, vxw400, ty_@0) -> new_compare28(vxw30, vxw400) 28.26/13.45 new_ltEs22(vxw301, vxw311, app(app(ty_@2, fg), fh)) -> new_ltEs9(vxw301, vxw311, fg, fh) 28.26/13.45 new_esEs36(vxw300, vxw4000, ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.45 new_esEs10(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) 28.26/13.45 new_esEs11(vxw30, vxw400, app(app(ty_@2, dhe), dhf)) -> new_esEs19(vxw30, vxw400, dhe, dhf) 28.26/13.45 new_compare7(Float(vxw30, Pos(vxw310)), Float(vxw400, Pos(vxw4010))) -> new_compare13(new_sr(vxw30, Pos(vxw4010)), new_sr(Pos(vxw310), vxw400)) 28.26/13.45 new_primPlusNat0(Succ(vxw15300), Zero) -> Succ(vxw15300) 28.26/13.45 new_primPlusNat0(Zero, Succ(vxw401000)) -> Succ(vxw401000) 28.26/13.45 new_esEs20(Left(vxw300), Left(vxw4000), app(ty_[], dec), ddc) -> new_esEs26(vxw300, vxw4000, dec) 28.26/13.45 new_esEs7(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) 28.26/13.45 new_ltEs16(Just(vxw300), Just(vxw310), app(app(ty_@2, bfb), bfc)) -> new_ltEs9(vxw300, vxw310, bfb, bfc) 28.26/13.45 new_ltEs22(vxw301, vxw311, ty_@0) -> new_ltEs17(vxw301, vxw311) 28.26/13.45 new_ltEs19(vxw302, vxw312, ty_Integer) -> new_ltEs14(vxw302, vxw312) 28.26/13.45 new_esEs33(vxw49, vxw52, ty_Double) -> new_esEs18(vxw49, vxw52) 28.26/13.45 new_primPlusNat1(Zero, vxw40100) -> Succ(vxw40100) 28.26/13.45 new_lt23(vxw48, vxw51, ty_Int) -> new_lt7(vxw48, vxw51) 28.26/13.45 new_ltEs4(vxw74, vxw76, ty_Integer) -> new_ltEs14(vxw74, vxw76) 28.26/13.45 new_esEs31(vxw300, vxw4000, app(ty_Maybe, egd)) -> new_esEs24(vxw300, vxw4000, egd) 28.26/13.45 new_esEs32(vxw300, vxw310, ty_Integer) -> new_esEs23(vxw300, vxw310) 28.26/13.45 new_esEs37(vxw301, vxw4001, ty_Ordering) -> new_esEs13(vxw301, vxw4001) 28.26/13.45 new_lt23(vxw48, vxw51, ty_Integer) -> new_lt15(vxw48, vxw51) 28.26/13.45 new_esEs39(vxw300, vxw4000, app(app(ty_Either, fhb), fhc)) -> new_esEs20(vxw300, vxw4000, fhb, fhc) 28.26/13.45 new_esEs6(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 28.26/13.45 new_ltEs20(vxw59, vxw60, ty_Double) -> new_ltEs8(vxw59, vxw60) 28.26/13.45 new_ltEs22(vxw301, vxw311, app(ty_Ratio, ehf)) -> new_ltEs12(vxw301, vxw311, ehf) 28.26/13.45 new_ltEs20(vxw59, vxw60, app(ty_Maybe, cde)) -> new_ltEs16(vxw59, vxw60, cde) 28.26/13.45 new_lt22(vxw49, vxw52, app(app(ty_@2, bgh), bha)) -> new_lt10(vxw49, vxw52, bgh, bha) 28.26/13.45 new_esEs34(vxw48, vxw51, app(ty_Ratio, fab)) -> new_esEs22(vxw48, vxw51, fab) 28.26/13.45 new_lt19(vxw300, vxw310, ty_Double) -> new_lt9(vxw300, vxw310) 28.26/13.45 new_esEs10(vxw30, vxw400, ty_@0) -> new_esEs25(vxw30, vxw400) 28.26/13.45 new_esEs16(vxw73, vxw75, app(app(ty_Either, bf), bg)) -> new_esEs20(vxw73, vxw75, bf, bg) 28.26/13.45 new_esEs20(Left(vxw300), Left(vxw4000), app(ty_Maybe, dde), ddc) -> new_esEs24(vxw300, vxw4000, dde) 28.26/13.45 new_esEs10(vxw30, vxw400, app(app(ty_@2, ecd), ece)) -> new_esEs19(vxw30, vxw400, ecd, ece) 28.26/13.45 new_ltEs23(vxw50, vxw53, ty_@0) -> new_ltEs17(vxw50, vxw53) 28.26/13.45 new_esEs6(vxw30, vxw400, ty_Integer) -> new_esEs23(vxw30, vxw400) 28.26/13.45 new_esEs32(vxw300, vxw310, ty_Double) -> new_esEs18(vxw300, vxw310) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, ty_Int) -> new_ltEs6(vxw300, vxw310) 28.26/13.45 new_ltEs16(Just(vxw300), Just(vxw310), ty_Double) -> new_ltEs8(vxw300, vxw310) 28.26/13.45 new_esEs28(vxw300, vxw310, ty_Bool) -> new_esEs17(vxw300, vxw310) 28.26/13.45 new_lt22(vxw49, vxw52, ty_Int) -> new_lt7(vxw49, vxw52) 28.26/13.45 new_esEs33(vxw49, vxw52, app(app(ty_@2, bgh), bha)) -> new_esEs19(vxw49, vxw52, bgh, bha) 28.26/13.45 new_esEs9(vxw31, vxw401, app(app(ty_@2, fcd), fce)) -> new_esEs19(vxw31, vxw401, fcd, fce) 28.26/13.45 new_esEs31(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) 28.26/13.45 new_esEs33(vxw49, vxw52, ty_@0) -> new_esEs25(vxw49, vxw52) 28.26/13.45 new_compare31(True, True) -> EQ 28.26/13.45 new_ltEs10(Left(vxw300), Left(vxw310), app(ty_[], baa), hb) -> new_ltEs18(vxw300, vxw310, baa) 28.26/13.45 new_esEs20(Left(vxw300), Left(vxw4000), ty_Ordering, ddc) -> new_esEs13(vxw300, vxw4000) 28.26/13.45 new_esEs29(vxw302, vxw4002, app(app(app(ty_@3, eec), eed), eee)) -> new_esEs21(vxw302, vxw4002, eec, eed, eee) 28.26/13.45 new_lt21(vxw300, vxw310, app(app(ty_@2, eb), ec)) -> new_lt10(vxw300, vxw310, eb, ec) 28.26/13.45 new_esEs16(vxw73, vxw75, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs21(vxw73, vxw75, bh, ca, cb) 28.26/13.45 new_esEs32(vxw300, vxw310, app(ty_Maybe, fc)) -> new_esEs24(vxw300, vxw310, fc) 28.26/13.45 new_esEs39(vxw300, vxw4000, app(app(app(ty_@3, fgf), fgg), fgh)) -> new_esEs21(vxw300, vxw4000, fgf, fgg, fgh) 28.26/13.45 new_ltEs23(vxw50, vxw53, app(ty_Ratio, faa)) -> new_ltEs12(vxw50, vxw53, faa) 28.26/13.45 new_ltEs21(vxw37, vxw38, app(ty_Maybe, cga)) -> new_ltEs16(vxw37, vxw38, cga) 28.26/13.45 new_compare5(:(vxw30, vxw31), :(vxw400, vxw401), cdg) -> new_primCompAux1(vxw30, vxw400, new_compare5(vxw31, vxw401, cdg), cdg) 28.26/13.45 new_esEs7(vxw30, vxw400, ty_Integer) -> new_esEs23(vxw30, vxw400) 28.26/13.45 new_ltEs21(vxw37, vxw38, app(ty_[], cgb)) -> new_ltEs18(vxw37, vxw38, cgb) 28.26/13.45 new_ltEs16(Just(vxw300), Just(vxw310), app(ty_Maybe, bga)) -> new_ltEs16(vxw300, vxw310, bga) 28.26/13.45 new_esEs29(vxw302, vxw4002, ty_Bool) -> new_esEs17(vxw302, vxw4002) 28.26/13.45 new_esEs4(vxw31, vxw401, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs21(vxw31, vxw401, chb, chc, chd) 28.26/13.45 new_compare7(Float(vxw30, Neg(vxw310)), Float(vxw400, Neg(vxw4010))) -> new_compare13(new_sr(vxw30, Neg(vxw4010)), new_sr(Neg(vxw310), vxw400)) 28.26/13.45 new_ltEs10(Left(vxw300), Left(vxw310), ty_Ordering, hb) -> new_ltEs7(vxw300, vxw310) 28.26/13.45 new_primMulInt(Neg(vxw300), Neg(vxw4010)) -> Pos(new_primMulNat0(vxw300, vxw4010)) 28.26/13.45 new_esEs24(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, fbd), fbe), fbf)) -> new_esEs21(vxw300, vxw4000, fbd, fbe, fbf) 28.26/13.45 new_ltEs19(vxw302, vxw312, ty_Char) -> new_ltEs15(vxw302, vxw312) 28.26/13.45 new_primCmpInt(Pos(Zero), Pos(Succ(vxw4000))) -> new_primCmpNat0(Zero, Succ(vxw4000)) 28.26/13.45 new_ltEs22(vxw301, vxw311, ty_Float) -> new_ltEs13(vxw301, vxw311) 28.26/13.45 new_esEs4(vxw31, vxw401, app(app(ty_Either, chf), chg)) -> new_esEs20(vxw31, vxw401, chf, chg) 28.26/13.45 new_esEs28(vxw300, vxw310, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs21(vxw300, vxw310, bcb, bcc, bcd) 28.26/13.45 new_esEs37(vxw301, vxw4001, ty_Char) -> new_esEs12(vxw301, vxw4001) 28.26/13.45 new_esEs34(vxw48, vxw51, ty_@0) -> new_esEs25(vxw48, vxw51) 28.26/13.45 new_esEs11(vxw30, vxw400, ty_@0) -> new_esEs25(vxw30, vxw400) 28.26/13.45 new_esEs32(vxw300, vxw310, ty_Float) -> new_esEs14(vxw300, vxw310) 28.26/13.45 new_lt10(vxw73, vxw75, ba, bb) -> new_esEs13(new_compare29(vxw73, vxw75, ba, bb), LT) 28.26/13.45 new_lt21(vxw300, vxw310, app(app(app(ty_@3, eh), fa), fb)) -> new_lt12(vxw300, vxw310, eh, fa, fb) 28.26/13.45 new_lt15(vxw73, vxw75) -> new_esEs13(new_compare17(vxw73, vxw75), LT) 28.26/13.45 new_esEs7(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) 28.26/13.45 new_esEs28(vxw300, vxw310, app(app(ty_Either, bbh), bca)) -> new_esEs20(vxw300, vxw310, bbh, bca) 28.26/13.45 new_esEs9(vxw31, vxw401, ty_@0) -> new_esEs25(vxw31, vxw401) 28.26/13.45 new_esEs35(vxw301, vxw4001, ty_Int) -> new_esEs15(vxw301, vxw4001) 28.26/13.45 new_esEs8(vxw32, vxw402, ty_Double) -> new_esEs18(vxw32, vxw402) 28.26/13.45 new_ltEs19(vxw302, vxw312, ty_Double) -> new_ltEs8(vxw302, vxw312) 28.26/13.45 new_esEs34(vxw48, vxw51, app(app(ty_@2, cbd), cbe)) -> new_esEs19(vxw48, vxw51, cbd, cbe) 28.26/13.45 new_esEs20(Right(vxw300), Right(vxw4000), def, ty_Double) -> new_esEs18(vxw300, vxw4000) 28.26/13.45 new_lt21(vxw300, vxw310, app(app(ty_Either, ef), eg)) -> new_lt11(vxw300, vxw310, ef, eg) 28.26/13.45 new_esEs5(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 28.26/13.45 new_esEs32(vxw300, vxw310, app(ty_[], fd)) -> new_esEs26(vxw300, vxw310, fd) 28.26/13.45 new_ltEs8(vxw30, vxw31) -> new_fsEs(new_compare9(vxw30, vxw31)) 28.26/13.45 new_ltEs21(vxw37, vxw38, app(app(ty_@2, cfb), cfc)) -> new_ltEs9(vxw37, vxw38, cfb, cfc) 28.26/13.45 new_esEs31(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.45 new_compare16(LT, LT) -> EQ 28.26/13.45 new_esEs7(vxw30, vxw400, app(ty_Maybe, dbf)) -> new_esEs24(vxw30, vxw400, dbf) 28.26/13.45 new_esEs24(Just(vxw300), Just(vxw4000), app(app(ty_Either, fbh), fca)) -> new_esEs20(vxw300, vxw4000, fbh, fca) 28.26/13.45 new_ltEs4(vxw74, vxw76, ty_@0) -> new_ltEs17(vxw74, vxw76) 28.26/13.45 new_esEs7(vxw30, vxw400, app(app(ty_Either, dce), dcf)) -> new_esEs20(vxw30, vxw400, dce, dcf) 28.26/13.45 new_ltEs7(LT, LT) -> True 28.26/13.45 new_lt16(vxw73, vxw75) -> new_esEs13(new_compare32(vxw73, vxw75), LT) 28.26/13.45 new_ltEs4(vxw74, vxw76, ty_Bool) -> new_ltEs5(vxw74, vxw76) 28.26/13.45 new_primMulInt(Pos(vxw300), Neg(vxw4010)) -> Neg(new_primMulNat0(vxw300, vxw4010)) 28.26/13.45 new_primMulInt(Neg(vxw300), Pos(vxw4010)) -> Neg(new_primMulNat0(vxw300, vxw4010)) 28.26/13.45 new_esEs12(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) 28.26/13.45 new_esEs10(vxw30, vxw400, app(ty_[], eda)) -> new_esEs26(vxw30, vxw400, eda) 28.26/13.45 new_ltEs23(vxw50, vxw53, ty_Int) -> new_ltEs6(vxw50, vxw53) 28.26/13.45 new_esEs20(Right(vxw300), Right(vxw4000), def, ty_@0) -> new_esEs25(vxw300, vxw4000) 28.26/13.45 new_lt5(vxw73, vxw75, ty_Double) -> new_lt9(vxw73, vxw75) 28.26/13.45 new_esEs31(vxw300, vxw4000, ty_Ordering) -> new_esEs13(vxw300, vxw4000) 28.26/13.45 new_esEs20(Left(vxw300), Left(vxw4000), ty_Float, ddc) -> new_esEs14(vxw300, vxw4000) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, ty_Double) -> new_ltEs8(vxw300, vxw310) 28.26/13.45 new_esEs8(vxw32, vxw402, app(ty_[], dgh)) -> new_esEs26(vxw32, vxw402, dgh) 28.26/13.45 new_compare25(vxw30, vxw31, False, fag, ee) -> new_compare110(vxw30, vxw31, new_ltEs24(vxw30, vxw31, fag), fag, ee) 28.26/13.45 new_esEs16(vxw73, vxw75, app(app(ty_@2, ba), bb)) -> new_esEs19(vxw73, vxw75, ba, bb) 28.26/13.45 new_compare18(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, False, vxw145, eae, eaf, eag) -> new_compare19(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, vxw145, eae, eaf, eag) 28.26/13.45 new_ltEs10(Left(vxw300), Left(vxw310), app(app(ty_Either, hc), hd), hb) -> new_ltEs10(vxw300, vxw310, hc, hd) 28.26/13.45 new_esEs28(vxw300, vxw310, ty_Integer) -> new_esEs23(vxw300, vxw310) 28.26/13.45 new_esEs20(Left(vxw300), Left(vxw4000), app(app(ty_Either, ded), dee), ddc) -> new_esEs20(vxw300, vxw4000, ded, dee) 28.26/13.45 new_lt23(vxw48, vxw51, ty_Ordering) -> new_lt8(vxw48, vxw51) 28.26/13.45 new_ltEs16(Just(vxw300), Just(vxw310), app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs11(vxw300, vxw310, bff, bfg, bfh) 28.26/13.45 new_esEs27(vxw301, vxw311, ty_Char) -> new_esEs12(vxw301, vxw311) 28.26/13.45 new_esEs30(vxw301, vxw4001, ty_Bool) -> new_esEs17(vxw301, vxw4001) 28.26/13.45 new_esEs37(vxw301, vxw4001, ty_Double) -> new_esEs18(vxw301, vxw4001) 28.26/13.45 new_ltEs22(vxw301, vxw311, app(ty_[], gg)) -> new_ltEs18(vxw301, vxw311, gg) 28.26/13.45 new_esEs32(vxw300, vxw310, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs21(vxw300, vxw310, eh, fa, fb) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, ty_Char) -> new_ltEs15(vxw300, vxw310) 28.26/13.45 new_ltEs22(vxw301, vxw311, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs11(vxw301, vxw311, gc, gd, ge) 28.26/13.45 new_compare5([], [], cdg) -> EQ 28.26/13.45 new_ltEs16(Just(vxw300), Just(vxw310), app(ty_[], bgb)) -> new_ltEs18(vxw300, vxw310, bgb) 28.26/13.45 new_esEs30(vxw301, vxw4001, app(ty_Ratio, efa)) -> new_esEs22(vxw301, vxw4001, efa) 28.26/13.45 new_sr0(Integer(vxw300), Integer(vxw4010)) -> Integer(new_primMulInt(vxw300, vxw4010)) 28.26/13.45 new_ltEs20(vxw59, vxw60, ty_Integer) -> new_ltEs14(vxw59, vxw60) 28.26/13.45 new_esEs24(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs17(vxw300, vxw4000) 28.26/13.45 new_ltEs5(False, False) -> True 28.26/13.45 new_esEs5(vxw30, vxw400, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs21(vxw30, vxw400, ebf, ebg, ebh) 28.26/13.45 new_ltEs4(vxw74, vxw76, ty_Ordering) -> new_ltEs7(vxw74, vxw76) 28.26/13.45 new_esEs9(vxw31, vxw401, app(ty_Maybe, fcc)) -> new_esEs24(vxw31, vxw401, fcc) 28.26/13.45 new_esEs20(Left(vxw300), Left(vxw4000), ty_Char, ddc) -> new_esEs12(vxw300, vxw4000) 28.26/13.45 new_lt19(vxw300, vxw310, app(app(ty_@2, bbd), bbe)) -> new_lt10(vxw300, vxw310, bbd, bbe) 28.26/13.45 new_esEs26([], [], eca) -> True 28.26/13.45 new_ltEs20(vxw59, vxw60, ty_Char) -> new_ltEs15(vxw59, vxw60) 28.26/13.45 new_esEs6(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) 28.26/13.45 new_lt13(vxw73, vxw75, cgd) -> new_esEs13(new_compare15(vxw73, vxw75, cgd), LT) 28.26/13.45 new_esEs30(vxw301, vxw4001, ty_@0) -> new_esEs25(vxw301, vxw4001) 28.26/13.45 new_esEs6(vxw30, vxw400, ty_Char) -> new_esEs12(vxw30, vxw400) 28.26/13.45 new_ltEs10(Left(vxw300), Right(vxw310), bab, hb) -> True 28.26/13.45 new_compare30(vxw30, vxw400, app(app(app(ty_@3, ced), cee), cef)) -> new_compare14(vxw30, vxw400, ced, cee, cef) 28.26/13.45 new_esEs9(vxw31, vxw401, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs21(vxw31, vxw401, fcf, fcg, fch) 28.26/13.45 new_ltEs15(vxw30, vxw31) -> new_fsEs(new_compare32(vxw30, vxw31)) 28.26/13.45 new_esEs8(vxw32, vxw402, ty_@0) -> new_esEs25(vxw32, vxw402) 28.26/13.45 new_compare111(vxw123, vxw124, vxw125, vxw126, True, fdd, fde) -> LT 28.26/13.45 new_compare9(Double(vxw30, Pos(vxw310)), Double(vxw400, Neg(vxw4010))) -> new_compare13(new_sr(vxw30, Pos(vxw4010)), new_sr(Neg(vxw310), vxw400)) 28.26/13.45 new_compare9(Double(vxw30, Neg(vxw310)), Double(vxw400, Pos(vxw4010))) -> new_compare13(new_sr(vxw30, Neg(vxw4010)), new_sr(Pos(vxw310), vxw400)) 28.26/13.45 new_esEs32(vxw300, vxw310, app(app(ty_@2, eb), ec)) -> new_esEs19(vxw300, vxw310, eb, ec) 28.26/13.45 new_asAs(True, vxw91) -> vxw91 28.26/13.45 new_esEs34(vxw48, vxw51, ty_Int) -> new_esEs15(vxw48, vxw51) 28.26/13.45 new_esEs7(vxw30, vxw400, ty_Int) -> new_esEs15(vxw30, vxw400) 28.26/13.45 new_esEs31(vxw300, vxw4000, app(ty_[], ehb)) -> new_esEs26(vxw300, vxw4000, ehb) 28.26/13.45 new_esEs22(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ebb) -> new_asAs(new_esEs36(vxw300, vxw4000, ebb), new_esEs35(vxw301, vxw4001, ebb)) 28.26/13.45 new_esEs5(vxw30, vxw400, app(app(ty_@2, ebd), ebe)) -> new_esEs19(vxw30, vxw400, ebd, ebe) 28.26/13.45 new_lt20(vxw301, vxw311, app(app(ty_@2, bch), bda)) -> new_lt10(vxw301, vxw311, bch, bda) 28.26/13.45 new_lt19(vxw300, vxw310, ty_@0) -> new_lt17(vxw300, vxw310) 28.26/13.45 new_esEs17(False, True) -> False 28.26/13.45 new_esEs17(True, False) -> False 28.26/13.45 new_esEs8(vxw32, vxw402, ty_Ordering) -> new_esEs13(vxw32, vxw402) 28.26/13.45 new_esEs10(vxw30, vxw400, ty_Ordering) -> new_esEs13(vxw30, vxw400) 28.26/13.45 new_esEs38(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.45 new_esEs39(vxw300, vxw4000, ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.45 new_ltEs10(Left(vxw300), Left(vxw310), ty_Int, hb) -> new_ltEs6(vxw300, vxw310) 28.26/13.45 new_ltEs20(vxw59, vxw60, app(app(ty_@2, ccf), ccg)) -> new_ltEs9(vxw59, vxw60, ccf, ccg) 28.26/13.45 new_esEs16(vxw73, vxw75, ty_Double) -> new_esEs18(vxw73, vxw75) 28.26/13.45 new_esEs33(vxw49, vxw52, ty_Char) -> new_esEs12(vxw49, vxw52) 28.26/13.45 new_esEs24(Just(vxw300), Just(vxw4000), app(ty_Ratio, fah)) -> new_esEs22(vxw300, vxw4000, fah) 28.26/13.45 new_esEs4(vxw31, vxw401, app(ty_[], che)) -> new_esEs26(vxw31, vxw401, che) 28.26/13.45 new_ltEs20(vxw59, vxw60, app(app(ty_Either, cch), cda)) -> new_ltEs10(vxw59, vxw60, cch, cda) 28.26/13.45 new_esEs39(vxw300, vxw4000, app(ty_Ratio, fgb)) -> new_esEs22(vxw300, vxw4000, fgb) 28.26/13.45 new_esEs27(vxw301, vxw311, ty_Float) -> new_esEs14(vxw301, vxw311) 28.26/13.45 new_esEs18(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs15(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) 28.26/13.45 new_ltEs16(Just(vxw300), Just(vxw310), ty_Float) -> new_ltEs13(vxw300, vxw310) 28.26/13.45 new_esEs29(vxw302, vxw4002, ty_@0) -> new_esEs25(vxw302, vxw4002) 28.26/13.45 new_esEs30(vxw301, vxw4001, app(app(ty_Either, ega), egb)) -> new_esEs20(vxw301, vxw4001, ega, egb) 28.26/13.45 new_esEs28(vxw300, vxw310, ty_Int) -> new_esEs15(vxw300, vxw310) 28.26/13.45 new_esEs24(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.45 new_lt21(vxw300, vxw310, app(ty_[], fd)) -> new_lt18(vxw300, vxw310, fd) 28.26/13.45 new_lt5(vxw73, vxw75, ty_Float) -> new_lt14(vxw73, vxw75) 28.26/13.45 new_ltEs19(vxw302, vxw312, app(app(ty_@2, bea), beb)) -> new_ltEs9(vxw302, vxw312, bea, beb) 28.26/13.45 new_primCmpInt(Pos(Succ(vxw300)), Pos(vxw400)) -> new_primCmpNat0(Succ(vxw300), vxw400) 28.26/13.45 new_esEs39(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 28.26/13.45 new_ltEs12(vxw30, vxw31, ehg) -> new_fsEs(new_compare15(vxw30, vxw31, ehg)) 28.26/13.45 new_lt20(vxw301, vxw311, ty_@0) -> new_lt17(vxw301, vxw311) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs11(vxw300, vxw310, bag, bah, bba) 28.26/13.45 new_esEs20(Right(vxw300), Right(vxw4000), def, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs21(vxw300, vxw4000, dfc, dfd, dfe) 28.26/13.45 new_compare30(vxw30, vxw400, app(ty_[], ceh)) -> new_compare5(vxw30, vxw400, ceh) 28.26/13.45 new_esEs38(vxw300, vxw4000, app(app(ty_Either, ffh), fga)) -> new_esEs20(vxw300, vxw4000, ffh, fga) 28.26/13.45 new_esEs33(vxw49, vxw52, ty_Float) -> new_esEs14(vxw49, vxw52) 28.26/13.45 new_ltEs21(vxw37, vxw38, ty_Double) -> new_ltEs8(vxw37, vxw38) 28.26/13.45 new_sr(vxw30, vxw401) -> new_primMulInt(vxw30, vxw401) 28.26/13.45 new_esEs10(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 28.26/13.45 new_esEs7(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 28.26/13.45 new_primMulNat0(Zero, Zero) -> Zero 28.26/13.45 new_compare13(vxw3, vxw40) -> new_primCmpInt(vxw3, vxw40) 28.26/13.45 new_esEs16(vxw73, vxw75, app(ty_Maybe, cc)) -> new_esEs24(vxw73, vxw75, cc) 28.26/13.45 new_esEs39(vxw300, vxw4000, app(ty_[], fha)) -> new_esEs26(vxw300, vxw4000, fha) 28.26/13.45 new_esEs16(vxw73, vxw75, ty_Float) -> new_esEs14(vxw73, vxw75) 28.26/13.45 new_esEs16(vxw73, vxw75, ty_Char) -> new_esEs12(vxw73, vxw75) 28.26/13.45 new_esEs7(vxw30, vxw400, app(ty_Ratio, dbe)) -> new_esEs22(vxw30, vxw400, dbe) 28.26/13.45 new_ltEs21(vxw37, vxw38, ty_@0) -> new_ltEs17(vxw37, vxw38) 28.26/13.45 new_ltEs22(vxw301, vxw311, ty_Bool) -> new_ltEs5(vxw301, vxw311) 28.26/13.45 new_esEs29(vxw302, vxw4002, ty_Ordering) -> new_esEs13(vxw302, vxw4002) 28.26/13.45 new_lt11(vxw73, vxw75, bf, bg) -> new_esEs13(new_compare8(vxw73, vxw75, bf, bg), LT) 28.26/13.45 new_esEs4(vxw31, vxw401, app(ty_Maybe, cgg)) -> new_esEs24(vxw31, vxw401, cgg) 28.26/13.45 new_compare30(vxw30, vxw400, ty_Int) -> new_compare13(vxw30, vxw400) 28.26/13.45 new_ltEs7(LT, EQ) -> True 28.26/13.45 new_ltEs24(vxw30, vxw31, app(ty_Ratio, ehg)) -> new_ltEs12(vxw30, vxw31, ehg) 28.26/13.45 new_esEs24(Just(vxw300), Just(vxw4000), app(ty_[], fbg)) -> new_esEs26(vxw300, vxw4000, fbg) 28.26/13.45 new_esEs5(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) 28.26/13.45 new_esEs5(vxw30, vxw400, ty_Char) -> new_esEs12(vxw30, vxw400) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, ty_Integer) -> new_ltEs14(vxw300, vxw310) 28.26/13.45 new_compare11(vxw123, vxw124, vxw125, vxw126, False, vxw128, fdd, fde) -> new_compare111(vxw123, vxw124, vxw125, vxw126, vxw128, fdd, fde) 28.26/13.45 new_esEs7(vxw30, vxw400, ty_@0) -> new_esEs25(vxw30, vxw400) 28.26/13.45 new_lt21(vxw300, vxw310, app(ty_Maybe, fc)) -> new_lt4(vxw300, vxw310, fc) 28.26/13.45 new_esEs26(:(vxw300, vxw301), :(vxw4000, vxw4001), eca) -> new_asAs(new_esEs39(vxw300, vxw4000, eca), new_esEs26(vxw301, vxw4001, eca)) 28.26/13.45 new_esEs9(vxw31, vxw401, ty_Ordering) -> new_esEs13(vxw31, vxw401) 28.26/13.45 new_esEs6(vxw30, vxw400, app(app(ty_@2, dae), daf)) -> new_esEs19(vxw30, vxw400, dae, daf) 28.26/13.45 new_esEs6(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) 28.26/13.45 new_lt23(vxw48, vxw51, app(app(ty_Either, cbf), cbg)) -> new_lt11(vxw48, vxw51, cbf, cbg) 28.26/13.45 new_esEs30(vxw301, vxw4001, app(ty_[], efh)) -> new_esEs26(vxw301, vxw4001, efh) 28.26/13.45 new_lt20(vxw301, vxw311, app(ty_Ratio, daa)) -> new_lt13(vxw301, vxw311, daa) 28.26/13.45 new_ltEs4(vxw74, vxw76, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs11(vxw74, vxw76, dc, dd, de) 28.26/13.45 new_compare30(vxw30, vxw400, ty_Char) -> new_compare32(vxw30, vxw400) 28.26/13.45 new_esEs10(vxw30, vxw400, app(ty_Ratio, ecb)) -> new_esEs22(vxw30, vxw400, ecb) 28.26/13.45 new_esEs5(vxw30, vxw400, app(ty_Maybe, ebc)) -> new_esEs24(vxw30, vxw400, ebc) 28.26/13.45 new_ltEs16(Just(vxw300), Just(vxw310), ty_@0) -> new_ltEs17(vxw300, vxw310) 28.26/13.45 new_esEs33(vxw49, vxw52, ty_Integer) -> new_esEs23(vxw49, vxw52) 28.26/13.45 new_esEs37(vxw301, vxw4001, app(app(ty_@2, fdh), fea)) -> new_esEs19(vxw301, vxw4001, fdh, fea) 28.26/13.45 new_esEs10(vxw30, vxw400, ty_Int) -> new_esEs15(vxw30, vxw400) 28.26/13.45 new_primCompAux0(vxw65, EQ) -> vxw65 28.26/13.45 new_esEs31(vxw300, vxw4000, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs21(vxw300, vxw4000, egg, egh, eha) 28.26/13.45 new_compare18(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, vxw145, eae, eaf, eag) -> new_compare19(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, eae, eaf, eag) 28.26/13.45 new_compare16(EQ, GT) -> LT 28.26/13.45 new_esEs29(vxw302, vxw4002, app(ty_[], eef)) -> new_esEs26(vxw302, vxw4002, eef) 28.26/13.45 new_ltEs18(vxw30, vxw31, bgc) -> new_fsEs(new_compare5(vxw30, vxw31, bgc)) 28.26/13.45 new_lt19(vxw300, vxw310, ty_Int) -> new_lt7(vxw300, vxw310) 28.26/13.45 new_lt19(vxw300, vxw310, app(ty_Ratio, chh)) -> new_lt13(vxw300, vxw310, chh) 28.26/13.45 new_esEs20(Right(vxw300), Right(vxw4000), def, ty_Bool) -> new_esEs17(vxw300, vxw4000) 28.26/13.45 new_ltEs20(vxw59, vxw60, app(ty_Ratio, dch)) -> new_ltEs12(vxw59, vxw60, dch) 28.26/13.45 new_esEs5(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) 28.26/13.45 new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False 28.26/13.45 new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False 28.26/13.45 new_ltEs4(vxw74, vxw76, app(ty_[], dg)) -> new_ltEs18(vxw74, vxw76, dg) 28.26/13.45 new_esEs39(vxw300, vxw4000, ty_Ordering) -> new_esEs13(vxw300, vxw4000) 28.26/13.45 new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 28.26/13.45 new_ltEs17(vxw30, vxw31) -> new_fsEs(new_compare28(vxw30, vxw31)) 28.26/13.45 new_lt23(vxw48, vxw51, ty_Bool) -> new_lt6(vxw48, vxw51) 28.26/13.45 new_ltEs24(vxw30, vxw31, app(app(ty_@2, ff), ed)) -> new_ltEs9(vxw30, vxw31, ff, ed) 28.26/13.45 new_lt7(vxw73, vxw75) -> new_esEs13(new_compare13(vxw73, vxw75), LT) 28.26/13.45 new_esEs34(vxw48, vxw51, ty_Integer) -> new_esEs23(vxw48, vxw51) 28.26/13.45 new_esEs20(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, ddh), dea), deb), ddc) -> new_esEs21(vxw300, vxw4000, ddh, dea, deb) 28.26/13.45 new_esEs8(vxw32, vxw402, ty_Int) -> new_esEs15(vxw32, vxw402) 28.26/13.45 new_lt12(vxw73, vxw75, bh, ca, cb) -> new_esEs13(new_compare14(vxw73, vxw75, bh, ca, cb), LT) 28.26/13.45 new_esEs24(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.45 new_esEs8(vxw32, vxw402, ty_Bool) -> new_esEs17(vxw32, vxw402) 28.26/13.45 new_compare30(vxw30, vxw400, ty_Float) -> new_compare7(vxw30, vxw400) 28.26/13.45 new_esEs31(vxw300, vxw4000, ty_@0) -> new_esEs25(vxw300, vxw4000) 28.26/13.45 new_ltEs16(Nothing, Just(vxw310), ede) -> True 28.26/13.45 new_esEs4(vxw31, vxw401, ty_Ordering) -> new_esEs13(vxw31, vxw401) 28.26/13.45 new_lt20(vxw301, vxw311, ty_Int) -> new_lt7(vxw301, vxw311) 28.26/13.45 new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False 28.26/13.45 new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False 28.26/13.45 new_esEs11(vxw30, vxw400, app(ty_Maybe, dhd)) -> new_esEs24(vxw30, vxw400, dhd) 28.26/13.45 new_esEs20(Right(vxw300), Right(vxw4000), def, ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.45 new_primCmpInt(Neg(Zero), Neg(Succ(vxw4000))) -> new_primCmpNat0(Succ(vxw4000), Zero) 28.26/13.45 new_esEs11(vxw30, vxw400, ty_Char) -> new_esEs12(vxw30, vxw400) 28.26/13.45 new_esEs11(vxw30, vxw400, ty_Ordering) -> new_esEs13(vxw30, vxw400) 28.26/13.45 new_ltEs16(Just(vxw300), Just(vxw310), ty_Int) -> new_ltEs6(vxw300, vxw310) 28.26/13.45 new_esEs39(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.45 new_esEs8(vxw32, vxw402, app(ty_Ratio, dga)) -> new_esEs22(vxw32, vxw402, dga) 28.26/13.45 new_esEs38(vxw300, vxw4000, ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.45 new_esEs13(LT, GT) -> False 28.26/13.45 new_esEs13(GT, LT) -> False 28.26/13.45 new_ltEs23(vxw50, vxw53, app(ty_Maybe, cbb)) -> new_ltEs16(vxw50, vxw53, cbb) 28.26/13.45 new_ltEs19(vxw302, vxw312, app(ty_Ratio, dab)) -> new_ltEs12(vxw302, vxw312, dab) 28.26/13.45 new_esEs37(vxw301, vxw4001, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs21(vxw301, vxw4001, feb, fec, fed) 28.26/13.45 new_esEs24(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs13(vxw300, vxw4000) 28.26/13.45 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 28.26/13.45 new_lt22(vxw49, vxw52, ty_Double) -> new_lt9(vxw49, vxw52) 28.26/13.45 new_ltEs24(vxw30, vxw31, app(app(ty_Either, bab), hb)) -> new_ltEs10(vxw30, vxw31, bab, hb) 28.26/13.45 new_esEs28(vxw300, vxw310, ty_Float) -> new_esEs14(vxw300, vxw310) 28.26/13.45 new_ltEs23(vxw50, vxw53, app(app(app(ty_@3, cag), cah), cba)) -> new_ltEs11(vxw50, vxw53, cag, cah, cba) 28.26/13.45 new_ltEs19(vxw302, vxw312, ty_Bool) -> new_ltEs5(vxw302, vxw312) 28.26/13.45 new_esEs38(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) 28.26/13.45 new_esEs5(vxw30, vxw400, ty_Ordering) -> new_esEs13(vxw30, vxw400) 28.26/13.45 new_esEs17(True, True) -> True 28.26/13.45 new_esEs31(vxw300, vxw4000, ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.45 new_ltEs19(vxw302, vxw312, ty_@0) -> new_ltEs17(vxw302, vxw312) 28.26/13.45 new_esEs33(vxw49, vxw52, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs21(vxw49, vxw52, bhe, bhf, bhg) 28.26/13.45 new_ltEs4(vxw74, vxw76, app(app(ty_@2, cf), cg)) -> new_ltEs9(vxw74, vxw76, cf, cg) 28.26/13.45 new_compare8(Right(vxw30), Right(vxw400), dh, ea) -> new_compare26(vxw30, vxw400, new_esEs7(vxw30, vxw400, ea), dh, ea) 28.26/13.45 new_compare19(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, eae, eaf, eag) -> LT 28.26/13.45 new_esEs25(@0, @0) -> True 28.26/13.45 new_esEs20(Left(vxw300), Left(vxw4000), app(ty_Ratio, ddd), ddc) -> new_esEs22(vxw300, vxw4000, ddd) 28.26/13.45 new_lt5(vxw73, vxw75, ty_Bool) -> new_lt6(vxw73, vxw75) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, ty_Bool) -> new_ltEs5(vxw300, vxw310) 28.26/13.45 new_compare29(@2(vxw30, vxw31), @2(vxw400, vxw401), bc, bd) -> new_compare24(vxw30, vxw31, vxw400, vxw401, new_asAs(new_esEs5(vxw30, vxw400, bc), new_esEs4(vxw31, vxw401, bd)), bc, bd) 28.26/13.45 new_esEs10(vxw30, vxw400, app(app(ty_Either, edb), edc)) -> new_esEs20(vxw30, vxw400, edb, edc) 28.26/13.45 new_esEs33(vxw49, vxw52, app(app(ty_Either, bhc), bhd)) -> new_esEs20(vxw49, vxw52, bhc, bhd) 28.26/13.45 new_esEs27(vxw301, vxw311, app(ty_Maybe, bdg)) -> new_esEs24(vxw301, vxw311, bdg) 28.26/13.45 new_ltEs23(vxw50, vxw53, app(app(ty_Either, cae), caf)) -> new_ltEs10(vxw50, vxw53, cae, caf) 28.26/13.45 new_ltEs24(vxw30, vxw31, app(ty_Maybe, ede)) -> new_ltEs16(vxw30, vxw31, ede) 28.26/13.45 new_esEs38(vxw300, vxw4000, app(ty_Ratio, feh)) -> new_esEs22(vxw300, vxw4000, feh) 28.26/13.45 new_esEs38(vxw300, vxw4000, ty_@0) -> new_esEs25(vxw300, vxw4000) 28.26/13.45 new_ltEs7(EQ, GT) -> True 28.26/13.45 new_lt22(vxw49, vxw52, ty_Ordering) -> new_lt8(vxw49, vxw52) 28.26/13.45 new_esEs28(vxw300, vxw310, app(ty_[], bcf)) -> new_esEs26(vxw300, vxw310, bcf) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, ty_Ordering) -> new_ltEs7(vxw300, vxw310) 28.26/13.45 new_esEs26(:(vxw300, vxw301), [], eca) -> False 28.26/13.45 new_esEs26([], :(vxw4000, vxw4001), eca) -> False 28.26/13.45 new_not(False) -> True 28.26/13.45 new_esEs8(vxw32, vxw402, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs21(vxw32, vxw402, dge, dgf, dgg) 28.26/13.45 new_lt19(vxw300, vxw310, ty_Float) -> new_lt14(vxw300, vxw310) 28.26/13.45 new_lt19(vxw300, vxw310, ty_Integer) -> new_lt15(vxw300, vxw310) 28.26/13.45 new_esEs6(vxw30, vxw400, ty_Int) -> new_esEs15(vxw30, vxw400) 28.26/13.45 new_ltEs10(Left(vxw300), Left(vxw310), ty_@0, hb) -> new_ltEs17(vxw300, vxw310) 28.26/13.45 new_esEs9(vxw31, vxw401, ty_Char) -> new_esEs12(vxw31, vxw401) 28.26/13.45 new_lt22(vxw49, vxw52, ty_Bool) -> new_lt6(vxw49, vxw52) 28.26/13.45 new_compare31(False, True) -> LT 28.26/13.45 new_esEs27(vxw301, vxw311, ty_Integer) -> new_esEs23(vxw301, vxw311) 28.26/13.45 new_esEs32(vxw300, vxw310, ty_Ordering) -> new_esEs13(vxw300, vxw310) 28.26/13.45 new_esEs37(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 28.26/13.45 new_primPlusNat0(Succ(vxw15300), Succ(vxw401000)) -> Succ(Succ(new_primPlusNat0(vxw15300, vxw401000))) 28.26/13.45 new_ltEs7(EQ, EQ) -> True 28.26/13.45 new_ltEs19(vxw302, vxw312, ty_Ordering) -> new_ltEs7(vxw302, vxw312) 28.26/13.45 new_lt19(vxw300, vxw310, ty_Char) -> new_lt16(vxw300, vxw310) 28.26/13.45 new_ltEs7(GT, EQ) -> False 28.26/13.45 new_esEs4(vxw31, vxw401, app(ty_Ratio, cgf)) -> new_esEs22(vxw31, vxw401, cgf) 28.26/13.45 new_esEs9(vxw31, vxw401, ty_Bool) -> new_esEs17(vxw31, vxw401) 28.26/13.45 new_esEs31(vxw300, vxw4000, app(ty_Ratio, egc)) -> new_esEs22(vxw300, vxw4000, egc) 28.26/13.45 new_lt20(vxw301, vxw311, ty_Integer) -> new_lt15(vxw301, vxw311) 28.26/13.45 new_ltEs23(vxw50, vxw53, ty_Integer) -> new_ltEs14(vxw50, vxw53) 28.26/13.45 new_lt23(vxw48, vxw51, ty_Float) -> new_lt14(vxw48, vxw51) 28.26/13.45 new_lt5(vxw73, vxw75, app(ty_Maybe, cc)) -> new_lt4(vxw73, vxw75, cc) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, app(ty_Ratio, eba)) -> new_ltEs12(vxw300, vxw310, eba) 28.26/13.45 new_esEs38(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) 28.26/13.45 new_esEs28(vxw300, vxw310, app(ty_Ratio, chh)) -> new_esEs22(vxw300, vxw310, chh) 28.26/13.45 new_ltEs19(vxw302, vxw312, app(app(ty_Either, bec), bed)) -> new_ltEs10(vxw302, vxw312, bec, bed) 28.26/13.45 new_lt5(vxw73, vxw75, ty_Ordering) -> new_lt8(vxw73, vxw75) 28.26/13.45 new_lt23(vxw48, vxw51, ty_Double) -> new_lt9(vxw48, vxw51) 28.26/13.45 new_ltEs24(vxw30, vxw31, ty_Double) -> new_ltEs8(vxw30, vxw31) 28.26/13.45 new_ltEs4(vxw74, vxw76, ty_Float) -> new_ltEs13(vxw74, vxw76) 28.26/13.45 new_ltEs20(vxw59, vxw60, ty_Ordering) -> new_ltEs7(vxw59, vxw60) 28.26/13.45 new_compare11(vxw123, vxw124, vxw125, vxw126, True, vxw128, fdd, fde) -> new_compare111(vxw123, vxw124, vxw125, vxw126, True, fdd, fde) 28.26/13.45 new_esEs35(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 28.26/13.45 new_esEs8(vxw32, vxw402, app(app(ty_Either, dha), dhb)) -> new_esEs20(vxw32, vxw402, dha, dhb) 28.26/13.45 new_lt23(vxw48, vxw51, app(ty_Ratio, fab)) -> new_lt13(vxw48, vxw51, fab) 28.26/13.45 new_esEs38(vxw300, vxw4000, app(app(ty_@2, ffb), ffc)) -> new_esEs19(vxw300, vxw4000, ffb, ffc) 28.26/13.45 new_esEs20(Left(vxw300), Left(vxw4000), ty_Integer, ddc) -> new_esEs23(vxw300, vxw4000) 28.26/13.45 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 28.26/13.45 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 28.26/13.45 new_ltEs4(vxw74, vxw76, app(ty_Ratio, cge)) -> new_ltEs12(vxw74, vxw76, cge) 28.26/13.45 new_esEs28(vxw300, vxw310, ty_Double) -> new_esEs18(vxw300, vxw310) 28.26/13.45 new_ltEs5(True, True) -> True 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, app(app(ty_@2, bac), bad)) -> new_ltEs9(vxw300, vxw310, bac, bad) 28.26/13.45 new_lt18(vxw73, vxw75, cd) -> new_esEs13(new_compare5(vxw73, vxw75, cd), LT) 28.26/13.45 new_esEs4(vxw31, vxw401, ty_Int) -> new_esEs15(vxw31, vxw401) 28.26/13.45 new_esEs4(vxw31, vxw401, ty_Double) -> new_esEs18(vxw31, vxw401) 28.26/13.45 new_esEs20(Right(vxw300), Right(vxw4000), def, app(app(ty_@2, dfa), dfb)) -> new_esEs19(vxw300, vxw4000, dfa, dfb) 28.26/13.45 new_esEs30(vxw301, vxw4001, ty_Ordering) -> new_esEs13(vxw301, vxw4001) 28.26/13.45 new_lt20(vxw301, vxw311, ty_Float) -> new_lt14(vxw301, vxw311) 28.26/13.45 new_compare16(GT, GT) -> EQ 28.26/13.45 new_esEs16(vxw73, vxw75, app(ty_[], cd)) -> new_esEs26(vxw73, vxw75, cd) 28.26/13.45 new_lt20(vxw301, vxw311, ty_Ordering) -> new_lt8(vxw301, vxw311) 28.26/13.45 new_esEs20(Right(vxw300), Right(vxw4000), def, ty_Ordering) -> new_esEs13(vxw300, vxw4000) 28.26/13.45 new_ltEs7(EQ, LT) -> False 28.26/13.45 new_esEs10(vxw30, vxw400, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs21(vxw30, vxw400, ecf, ecg, ech) 28.26/13.45 new_compare28(@0, @0) -> EQ 28.26/13.45 new_lt4(vxw73, vxw75, cc) -> new_esEs13(new_compare6(vxw73, vxw75, cc), LT) 28.26/13.45 new_ltEs23(vxw50, vxw53, ty_Ordering) -> new_ltEs7(vxw50, vxw53) 28.26/13.45 new_lt19(vxw300, vxw310, ty_Bool) -> new_lt6(vxw300, vxw310) 28.26/13.45 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 28.26/13.45 new_esEs28(vxw300, vxw310, app(app(ty_@2, bbd), bbe)) -> new_esEs19(vxw300, vxw310, bbd, bbe) 28.26/13.45 new_esEs17(False, False) -> True 28.26/13.45 new_lt20(vxw301, vxw311, app(ty_[], bdh)) -> new_lt18(vxw301, vxw311, bdh) 28.26/13.45 new_esEs29(vxw302, vxw4002, ty_Int) -> new_esEs15(vxw302, vxw4002) 28.26/13.45 new_esEs34(vxw48, vxw51, ty_Bool) -> new_esEs17(vxw48, vxw51) 28.26/13.45 new_compare8(Left(vxw30), Left(vxw400), dh, ea) -> new_compare25(vxw30, vxw400, new_esEs6(vxw30, vxw400, dh), dh, ea) 28.26/13.45 new_esEs5(vxw30, vxw400, ty_@0) -> new_esEs25(vxw30, vxw400) 28.26/13.45 new_lt20(vxw301, vxw311, app(ty_Maybe, bdg)) -> new_lt4(vxw301, vxw311, bdg) 28.26/13.45 new_ltEs16(Just(vxw300), Just(vxw310), ty_Ordering) -> new_ltEs7(vxw300, vxw310) 28.26/13.45 new_ltEs7(GT, LT) -> False 28.26/13.45 new_lt21(vxw300, vxw310, ty_Float) -> new_lt14(vxw300, vxw310) 28.26/13.45 new_compare210(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, bhb) -> new_compare18(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, new_lt23(vxw48, vxw51, bgg), new_asAs(new_esEs34(vxw48, vxw51, bgg), new_pePe(new_lt22(vxw49, vxw52, cab), new_asAs(new_esEs33(vxw49, vxw52, cab), new_ltEs23(vxw50, vxw53, bhb)))), bgg, cab, bhb) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, app(ty_Maybe, bbb)) -> new_ltEs16(vxw300, vxw310, bbb) 28.26/13.45 new_esEs31(vxw300, vxw4000, ty_Char) -> new_esEs12(vxw300, vxw4000) 28.26/13.45 new_primCmpNat0(Succ(vxw300), Succ(vxw4000)) -> new_primCmpNat0(vxw300, vxw4000) 28.26/13.45 new_lt20(vxw301, vxw311, ty_Char) -> new_lt16(vxw301, vxw311) 28.26/13.45 new_ltEs22(vxw301, vxw311, ty_Ordering) -> new_ltEs7(vxw301, vxw311) 28.26/13.45 new_lt22(vxw49, vxw52, ty_@0) -> new_lt17(vxw49, vxw52) 28.26/13.45 new_esEs20(Left(vxw300), Left(vxw4000), ty_Double, ddc) -> new_esEs18(vxw300, vxw4000) 28.26/13.45 new_esEs11(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 28.26/13.45 new_ltEs10(Left(vxw300), Left(vxw310), app(app(ty_@2, gh), ha), hb) -> new_ltEs9(vxw300, vxw310, gh, ha) 28.26/13.45 new_lt21(vxw300, vxw310, app(ty_Ratio, ehe)) -> new_lt13(vxw300, vxw310, ehe) 28.26/13.45 new_lt22(vxw49, vxw52, ty_Float) -> new_lt14(vxw49, vxw52) 28.26/13.45 new_esEs24(Nothing, Nothing, ebc) -> True 28.26/13.45 new_ltEs24(vxw30, vxw31, ty_Integer) -> new_ltEs14(vxw30, vxw31) 28.26/13.45 new_esEs37(vxw301, vxw4001, app(ty_[], fee)) -> new_esEs26(vxw301, vxw4001, fee) 28.26/13.45 new_esEs38(vxw300, vxw4000, app(ty_[], ffg)) -> new_esEs26(vxw300, vxw4000, ffg) 28.26/13.45 new_esEs27(vxw301, vxw311, ty_Double) -> new_esEs18(vxw301, vxw311) 28.26/13.45 new_esEs27(vxw301, vxw311, app(app(ty_@2, bch), bda)) -> new_esEs19(vxw301, vxw311, bch, bda) 28.26/13.45 new_esEs27(vxw301, vxw311, ty_@0) -> new_esEs25(vxw301, vxw311) 28.26/13.45 new_esEs6(vxw30, vxw400, app(ty_Ratio, dac)) -> new_esEs22(vxw30, vxw400, dac) 28.26/13.45 new_compare24(vxw73, vxw74, vxw75, vxw76, False, ce, be) -> new_compare11(vxw73, vxw74, vxw75, vxw76, new_lt5(vxw73, vxw75, ce), new_asAs(new_esEs16(vxw73, vxw75, ce), new_ltEs4(vxw74, vxw76, be)), ce, be) 28.26/13.45 new_ltEs7(LT, GT) -> True 28.26/13.45 new_ltEs21(vxw37, vxw38, ty_Bool) -> new_ltEs5(vxw37, vxw38) 28.26/13.45 new_ltEs24(vxw30, vxw31, ty_Char) -> new_ltEs15(vxw30, vxw31) 28.26/13.45 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 28.26/13.45 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 28.26/13.45 new_esEs32(vxw300, vxw310, ty_Char) -> new_esEs12(vxw300, vxw310) 28.26/13.45 new_compare6(Just(vxw30), Just(vxw400), cce) -> new_compare27(vxw30, vxw400, new_esEs11(vxw30, vxw400, cce), cce) 28.26/13.45 new_ltEs21(vxw37, vxw38, ty_Ordering) -> new_ltEs7(vxw37, vxw38) 28.26/13.45 new_esEs20(Right(vxw300), Right(vxw4000), def, app(ty_[], dff)) -> new_esEs26(vxw300, vxw4000, dff) 28.26/13.45 new_compare30(vxw30, vxw400, app(app(ty_Either, ceb), cec)) -> new_compare8(vxw30, vxw400, ceb, cec) 28.26/13.45 new_lt22(vxw49, vxw52, app(ty_Ratio, ehh)) -> new_lt13(vxw49, vxw52, ehh) 28.26/13.45 new_compare110(vxw96, vxw97, False, fae, faf) -> GT 28.26/13.45 new_ltEs21(vxw37, vxw38, app(app(ty_Either, cfd), cfe)) -> new_ltEs10(vxw37, vxw38, cfd, cfe) 28.26/13.45 new_lt21(vxw300, vxw310, ty_@0) -> new_lt17(vxw300, vxw310) 28.26/13.45 new_esEs16(vxw73, vxw75, ty_@0) -> new_esEs25(vxw73, vxw75) 28.26/13.45 new_primEqNat0(Zero, Zero) -> True 28.26/13.45 new_esEs7(vxw30, vxw400, ty_Ordering) -> new_esEs13(vxw30, vxw400) 28.26/13.45 new_ltEs21(vxw37, vxw38, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs11(vxw37, vxw38, cff, cfg, cfh) 28.26/13.45 new_lt19(vxw300, vxw310, app(ty_Maybe, bce)) -> new_lt4(vxw300, vxw310, bce) 28.26/13.45 new_esEs24(Nothing, Just(vxw4000), ebc) -> False 28.26/13.45 new_esEs24(Just(vxw300), Nothing, ebc) -> False 28.26/13.45 new_esEs37(vxw301, vxw4001, app(ty_Maybe, fdg)) -> new_esEs24(vxw301, vxw4001, fdg) 28.26/13.45 new_esEs28(vxw300, vxw310, ty_@0) -> new_esEs25(vxw300, vxw310) 28.26/13.45 new_lt5(vxw73, vxw75, app(ty_[], cd)) -> new_lt18(vxw73, vxw75, cd) 28.26/13.45 new_esEs13(EQ, EQ) -> True 28.26/13.45 new_esEs24(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs25(vxw300, vxw4000) 28.26/13.45 new_ltEs10(Right(vxw300), Right(vxw310), bab, app(ty_[], bbc)) -> new_ltEs18(vxw300, vxw310, bbc) 28.26/13.45 new_asAs(False, vxw91) -> False 28.26/13.45 new_ltEs4(vxw74, vxw76, ty_Int) -> new_ltEs6(vxw74, vxw76) 28.26/13.45 new_ltEs20(vxw59, vxw60, ty_Bool) -> new_ltEs5(vxw59, vxw60) 28.26/13.45 new_esEs13(LT, EQ) -> False 28.26/13.45 new_esEs13(EQ, LT) -> False 28.26/13.45 new_esEs11(vxw30, vxw400, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs21(vxw30, vxw400, dhg, dhh, eaa) 28.26/13.45 new_lt21(vxw300, vxw310, ty_Ordering) -> new_lt8(vxw300, vxw310) 28.26/13.45 new_ltEs16(Just(vxw300), Just(vxw310), ty_Bool) -> new_ltEs5(vxw300, vxw310) 28.26/13.45 new_compare6(Nothing, Just(vxw400), cce) -> LT 28.26/13.45 new_lt19(vxw300, vxw310, app(ty_[], bcf)) -> new_lt18(vxw300, vxw310, bcf) 28.26/13.45 new_ltEs10(Left(vxw300), Left(vxw310), ty_Float, hb) -> new_ltEs13(vxw300, vxw310) 28.26/13.45 new_ltEs13(vxw30, vxw31) -> new_fsEs(new_compare7(vxw30, vxw31)) 28.26/13.45 new_esEs4(vxw31, vxw401, app(app(ty_@2, cgh), cha)) -> new_esEs19(vxw31, vxw401, cgh, cha) 28.26/13.45 new_ltEs10(Left(vxw300), Left(vxw310), app(app(app(ty_@3, he), hf), hg), hb) -> new_ltEs11(vxw300, vxw310, he, hf, hg) 28.26/13.45 new_esEs5(vxw30, vxw400, app(ty_Ratio, ebb)) -> new_esEs22(vxw30, vxw400, ebb) 28.26/13.45 new_lt14(vxw73, vxw75) -> new_esEs13(new_compare7(vxw73, vxw75), LT) 28.26/13.45 new_esEs4(vxw31, vxw401, ty_@0) -> new_esEs25(vxw31, vxw401) 28.26/13.45 new_esEs30(vxw301, vxw4001, ty_Int) -> new_esEs15(vxw301, vxw4001) 28.26/13.45 new_esEs29(vxw302, vxw4002, app(ty_Ratio, edg)) -> new_esEs22(vxw302, vxw4002, edg) 28.26/13.45 new_lt6(vxw73, vxw75) -> new_esEs13(new_compare31(vxw73, vxw75), LT) 28.26/13.45 new_esEs20(Right(vxw300), Right(vxw4000), def, app(ty_Maybe, deh)) -> new_esEs24(vxw300, vxw4000, deh) 28.26/13.45 new_esEs37(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) 28.26/13.45 new_compare12(vxw103, vxw104, True, fac, fad) -> LT 28.26/13.45 new_esEs24(Just(vxw300), Just(vxw4000), app(app(ty_@2, fbb), fbc)) -> new_esEs19(vxw300, vxw4000, fbb, fbc) 28.26/13.45 new_compare16(LT, EQ) -> LT 28.26/13.45 new_esEs11(vxw30, vxw400, app(app(ty_Either, eac), ead)) -> new_esEs20(vxw30, vxw400, eac, ead) 28.26/13.45 new_lt20(vxw301, vxw311, ty_Bool) -> new_lt6(vxw301, vxw311) 28.26/13.45 new_compare16(GT, EQ) -> GT 28.26/13.45 new_esEs7(vxw30, vxw400, ty_Char) -> new_esEs12(vxw30, vxw400) 28.26/13.45 new_esEs34(vxw48, vxw51, app(app(ty_Either, cbf), cbg)) -> new_esEs20(vxw48, vxw51, cbf, cbg) 28.26/13.45 new_esEs20(Left(vxw300), Right(vxw4000), def, ddc) -> False 28.26/13.45 new_esEs20(Right(vxw300), Left(vxw4000), def, ddc) -> False 28.26/13.45 new_compare7(Float(vxw30, Pos(vxw310)), Float(vxw400, Neg(vxw4010))) -> new_compare13(new_sr(vxw30, Pos(vxw4010)), new_sr(Neg(vxw310), vxw400)) 28.26/13.45 new_compare7(Float(vxw30, Neg(vxw310)), Float(vxw400, Pos(vxw4010))) -> new_compare13(new_sr(vxw30, Neg(vxw4010)), new_sr(Pos(vxw310), vxw400)) 28.26/13.45 new_esEs39(vxw300, vxw4000, ty_@0) -> new_esEs25(vxw300, vxw4000) 28.26/13.45 28.26/13.45 The set Q consists of the following terms: 28.26/13.45 28.26/13.45 new_ltEs24(x0, x1, ty_Bool) 28.26/13.45 new_esEs30(x0, x1, ty_Integer) 28.26/13.45 new_esEs8(x0, x1, ty_Double) 28.26/13.45 new_esEs31(x0, x1, ty_@0) 28.26/13.45 new_pePe(False, x0) 28.26/13.45 new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_lt5(x0, x1, ty_@0) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 28.26/13.45 new_esEs7(x0, x1, ty_Integer) 28.26/13.45 new_esEs16(x0, x1, ty_Bool) 28.26/13.45 new_esEs24(Just(x0), Just(x1), ty_Bool) 28.26/13.45 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_compare6(Just(x0), Nothing, x1) 28.26/13.45 new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_ltEs22(x0, x1, app(ty_[], x2)) 28.26/13.45 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 28.26/13.45 new_esEs29(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs20(Left(x0), Left(x1), ty_Int, x2) 28.26/13.45 new_compare12(x0, x1, True, x2, x3) 28.26/13.45 new_ltEs20(x0, x1, ty_Ordering) 28.26/13.45 new_esEs20(Left(x0), Left(x1), ty_Ordering, x2) 28.26/13.45 new_lt21(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_lt6(x0, x1) 28.26/13.45 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) 28.26/13.45 new_lt23(x0, x1, ty_@0) 28.26/13.45 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_lt5(x0, x1, app(ty_[], x2)) 28.26/13.45 new_ltEs20(x0, x1, ty_Int) 28.26/13.45 new_esEs34(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs5(x0, x1, ty_Integer) 28.26/13.45 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs5(x0, x1, app(ty_[], x2)) 28.26/13.45 new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 28.26/13.45 new_esEs31(x0, x1, ty_Bool) 28.26/13.45 new_lt8(x0, x1) 28.26/13.45 new_esEs8(x0, x1, ty_Ordering) 28.26/13.45 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs29(x0, x1, ty_Char) 28.26/13.45 new_compare26(x0, x1, True, x2, x3) 28.26/13.45 new_esEs38(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs8(x0, x1, ty_Int) 28.26/13.45 new_primEqInt(Pos(Zero), Pos(Zero)) 28.26/13.45 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs29(x0, x1, ty_@0) 28.26/13.45 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 28.26/13.45 new_esEs30(x0, x1, ty_Bool) 28.26/13.45 new_lt23(x0, x1, ty_Bool) 28.26/13.45 new_esEs30(x0, x1, app(ty_[], x2)) 28.26/13.45 new_compare16(GT, GT) 28.26/13.45 new_ltEs24(x0, x1, ty_Integer) 28.26/13.45 new_esEs34(x0, x1, ty_Float) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 28.26/13.45 new_compare18(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 28.26/13.45 new_asAs(True, x0) 28.26/13.45 new_esEs39(x0, x1, ty_Int) 28.26/13.45 new_esEs17(False, False) 28.26/13.45 new_ltEs5(False, True) 28.26/13.45 new_ltEs5(True, False) 28.26/13.45 new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 28.26/13.45 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 28.26/13.45 new_esEs39(x0, x1, ty_Char) 28.26/13.45 new_ltEs24(x0, x1, ty_@0) 28.26/13.45 new_esEs13(LT, LT) 28.26/13.45 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_lt16(x0, x1) 28.26/13.45 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_lt22(x0, x1, ty_Integer) 28.26/13.45 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 28.26/13.45 new_compare8(Right(x0), Left(x1), x2, x3) 28.26/13.45 new_compare8(Left(x0), Right(x1), x2, x3) 28.26/13.45 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_primEqInt(Neg(Zero), Neg(Zero)) 28.26/13.45 new_esEs9(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs7(x0, x1, ty_@0) 28.26/13.45 new_esEs11(x0, x1, ty_Integer) 28.26/13.45 new_primCompAux0(x0, LT) 28.26/13.45 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs20(Left(x0), Left(x1), ty_Double, x2) 28.26/13.45 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_lt19(x0, x1, ty_Bool) 28.26/13.45 new_lt23(x0, x1, ty_Char) 28.26/13.45 new_esEs20(Left(x0), Left(x1), ty_Char, x2) 28.26/13.45 new_lt23(x0, x1, ty_Integer) 28.26/13.45 new_esEs31(x0, x1, ty_Char) 28.26/13.45 new_esEs34(x0, x1, ty_Integer) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, ty_Float) 28.26/13.45 new_esEs11(x0, x1, ty_@0) 28.26/13.45 new_esEs23(Integer(x0), Integer(x1)) 28.26/13.45 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs5(x0, x1, ty_@0) 28.26/13.45 new_ltEs13(x0, x1) 28.26/13.45 new_esEs9(x0, x1, ty_Ordering) 28.26/13.45 new_esEs22(:%(x0, x1), :%(x2, x3), x4) 28.26/13.45 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs4(x0, x1, ty_Integer) 28.26/13.45 new_ltEs4(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_compare30(x0, x1, ty_Double) 28.26/13.45 new_compare16(LT, LT) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) 28.26/13.45 new_lt5(x0, x1, ty_Integer) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) 28.26/13.45 new_esEs6(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs6(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs29(x0, x1, ty_Ordering) 28.26/13.45 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 28.26/13.45 new_esEs39(x0, x1, ty_@0) 28.26/13.45 new_esEs7(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs29(x0, x1, ty_Integer) 28.26/13.45 new_primCmpNat0(Succ(x0), Succ(x1)) 28.26/13.45 new_esEs29(x0, x1, ty_Bool) 28.26/13.45 new_esEs27(x0, x1, ty_Float) 28.26/13.45 new_lt4(x0, x1, x2) 28.26/13.45 new_esEs7(x0, x1, ty_Float) 28.26/13.45 new_esEs5(x0, x1, ty_Float) 28.26/13.45 new_compare19(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 28.26/13.45 new_primPlusNat1(Succ(x0), x1) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, app(ty_[], x3)) 28.26/13.45 new_compare8(Right(x0), Right(x1), x2, x3) 28.26/13.45 new_lt22(x0, x1, ty_@0) 28.26/13.45 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs30(x0, x1, ty_@0) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 28.26/13.45 new_lt5(x0, x1, ty_Char) 28.26/13.45 new_esEs16(x0, x1, ty_Char) 28.26/13.45 new_esEs5(x0, x1, ty_Bool) 28.26/13.45 new_ltEs24(x0, x1, ty_Char) 28.26/13.45 new_ltEs20(x0, x1, ty_Char) 28.26/13.45 new_lt23(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_asAs(False, x0) 28.26/13.45 new_esEs24(Just(x0), Just(x1), ty_Integer) 28.26/13.45 new_primEqInt(Pos(Zero), Neg(Zero)) 28.26/13.45 new_primEqInt(Neg(Zero), Pos(Zero)) 28.26/13.45 new_lt22(x0, x1, ty_Char) 28.26/13.45 new_lt19(x0, x1, ty_Integer) 28.26/13.45 new_compare30(x0, x1, app(ty_[], x2)) 28.26/13.45 new_ltEs7(EQ, EQ) 28.26/13.45 new_compare29(@2(x0, x1), @2(x2, x3), x4, x5) 28.26/13.45 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 28.26/13.45 new_ltEs21(x0, x1, ty_Int) 28.26/13.45 new_esEs6(x0, x1, ty_Ordering) 28.26/13.45 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 28.26/13.45 new_esEs16(x0, x1, ty_Int) 28.26/13.45 new_esEs20(Left(x0), Left(x1), app(ty_[], x2), x3) 28.26/13.45 new_ltEs20(x0, x1, ty_Double) 28.26/13.45 new_esEs4(x0, x1, ty_Float) 28.26/13.45 new_esEs30(x0, x1, ty_Float) 28.26/13.45 new_esEs28(x0, x1, ty_Float) 28.26/13.45 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_lt22(x0, x1, ty_Bool) 28.26/13.45 new_esEs16(x0, x1, ty_@0) 28.26/13.45 new_esEs10(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_lt5(x0, x1, ty_Bool) 28.26/13.45 new_esEs11(x0, x1, ty_Bool) 28.26/13.45 new_ltEs21(x0, x1, ty_Char) 28.26/13.45 new_esEs33(x0, x1, ty_Integer) 28.26/13.45 new_compare6(Nothing, Nothing, x0) 28.26/13.45 new_primEqNat0(Succ(x0), Zero) 28.26/13.45 new_compare31(False, False) 28.26/13.45 new_lt14(x0, x1) 28.26/13.45 new_esEs31(x0, x1, ty_Int) 28.26/13.45 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 28.26/13.45 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_primCompAux1(x0, x1, x2, x3) 28.26/13.45 new_primMulInt(Neg(x0), Neg(x1)) 28.26/13.45 new_esEs28(x0, x1, app(ty_[], x2)) 28.26/13.45 new_lt21(x0, x1, ty_Integer) 28.26/13.45 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs20(x0, x1, ty_Bool) 28.26/13.45 new_ltEs21(x0, x1, ty_Double) 28.26/13.45 new_esEs37(x0, x1, ty_Float) 28.26/13.45 new_compare5([], [], x0) 28.26/13.45 new_primPlusNat1(Zero, x0) 28.26/13.45 new_esEs24(Just(x0), Just(x1), ty_Ordering) 28.26/13.45 new_primPlusNat0(Succ(x0), Succ(x1)) 28.26/13.45 new_ltEs19(x0, x1, ty_Integer) 28.26/13.45 new_esEs16(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_lt22(x0, x1, ty_Int) 28.26/13.45 new_primMulNat0(Zero, Succ(x0)) 28.26/13.45 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, ty_Float) 28.26/13.45 new_lt20(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_ltEs22(x0, x1, ty_Double) 28.26/13.45 new_lt12(x0, x1, x2, x3, x4) 28.26/13.45 new_lt19(x0, x1, ty_Ordering) 28.26/13.45 new_esEs32(x0, x1, ty_Ordering) 28.26/13.45 new_esEs11(x0, x1, ty_Char) 28.26/13.45 new_esEs6(x0, x1, ty_Char) 28.26/13.45 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs6(x0, x1, ty_Int) 28.26/13.45 new_ltEs23(x0, x1, app(ty_[], x2)) 28.26/13.45 new_compare10(x0, x1, False, x2) 28.26/13.45 new_esEs7(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_lt19(x0, x1, ty_Double) 28.26/13.45 new_esEs31(x0, x1, ty_Ordering) 28.26/13.45 new_compare30(x0, x1, ty_Char) 28.26/13.45 new_ltEs21(x0, x1, app(ty_[], x2)) 28.26/13.45 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_lt23(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs7(x0, x1, ty_Char) 28.26/13.45 new_lt23(x0, x1, app(ty_[], x2)) 28.26/13.45 new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs20(Left(x0), Left(x1), ty_Bool, x2) 28.26/13.45 new_lt18(x0, x1, x2) 28.26/13.45 new_compare12(x0, x1, False, x2, x3) 28.26/13.45 new_esEs8(x0, x1, ty_@0) 28.26/13.45 new_ltEs24(x0, x1, ty_Double) 28.26/13.45 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs34(x0, x1, ty_Bool) 28.26/13.45 new_lt5(x0, x1, ty_Double) 28.26/13.45 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs11(x0, x1, ty_Int) 28.26/13.45 new_esEs34(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), ty_Double) 28.26/13.45 new_lt23(x0, x1, ty_Ordering) 28.26/13.45 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs27(x0, x1, ty_Integer) 28.26/13.45 new_esEs32(x0, x1, ty_Int) 28.26/13.45 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs20(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 28.26/13.45 new_esEs20(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 28.26/13.45 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 28.26/13.45 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_compare30(x0, x1, ty_Int) 28.26/13.45 new_lt22(x0, x1, ty_Float) 28.26/13.45 new_esEs29(x0, x1, ty_Double) 28.26/13.45 new_lt20(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs7(x0, x1, ty_Ordering) 28.26/13.45 new_compare17(Integer(x0), Integer(x1)) 28.26/13.45 new_esEs4(x0, x1, ty_Bool) 28.26/13.45 new_ltEs23(x0, x1, ty_Float) 28.26/13.45 new_esEs4(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs20(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 28.26/13.45 new_esEs4(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_primMulInt(Pos(x0), Neg(x1)) 28.26/13.45 new_primMulInt(Neg(x0), Pos(x1)) 28.26/13.45 new_lt13(x0, x1, x2) 28.26/13.45 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_ltEs7(GT, LT) 28.26/13.45 new_ltEs7(LT, GT) 28.26/13.45 new_esEs28(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs24(Just(x0), Just(x1), ty_Double) 28.26/13.45 new_lt23(x0, x1, ty_Double) 28.26/13.45 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_lt5(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 28.26/13.45 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 28.26/13.45 new_esEs32(x0, x1, app(ty_[], x2)) 28.26/13.45 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 28.26/13.45 new_compare24(x0, x1, x2, x3, True, x4, x5) 28.26/13.45 new_lt5(x0, x1, ty_Ordering) 28.26/13.45 new_ltEs24(x0, x1, ty_Ordering) 28.26/13.45 new_esEs7(x0, x1, ty_Int) 28.26/13.45 new_esEs11(x0, x1, ty_Float) 28.26/13.45 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs39(x0, x1, ty_Double) 28.26/13.45 new_esEs32(x0, x1, ty_Float) 28.26/13.45 new_ltEs19(x0, x1, ty_Bool) 28.26/13.45 new_esEs26([], :(x0, x1), x2) 28.26/13.45 new_esEs30(x0, x1, ty_Double) 28.26/13.45 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs4(x0, x1, ty_Char) 28.26/13.45 new_esEs37(x0, x1, ty_Int) 28.26/13.45 new_esEs24(Just(x0), Nothing, x1) 28.26/13.45 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs4(x0, x1, ty_Integer) 28.26/13.45 new_primCmpInt(Neg(Zero), Neg(Zero)) 28.26/13.45 new_esEs10(x0, x1, ty_Double) 28.26/13.45 new_esEs24(Nothing, Nothing, x0) 28.26/13.45 new_ltEs4(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), ty_Double, x2) 28.26/13.45 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 28.26/13.45 new_compare14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 28.26/13.45 new_esEs16(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs26(:(x0, x1), [], x2) 28.26/13.45 new_esEs38(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs27(x0, x1, ty_Ordering) 28.26/13.45 new_lt10(x0, x1, x2, x3) 28.26/13.45 new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs27(x0, x1, ty_Bool) 28.26/13.45 new_ltEs15(x0, x1) 28.26/13.45 new_esEs34(x0, x1, ty_Int) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), ty_@0, x2) 28.26/13.45 new_lt20(x0, x1, ty_Float) 28.26/13.45 new_primCmpInt(Pos(Zero), Neg(Zero)) 28.26/13.45 new_primCmpInt(Neg(Zero), Pos(Zero)) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, ty_Double) 28.26/13.45 new_primMulNat0(Succ(x0), Succ(x1)) 28.26/13.45 new_esEs32(x0, x1, ty_Char) 28.26/13.45 new_fsEs(x0) 28.26/13.45 new_ltEs14(x0, x1) 28.26/13.45 new_lt15(x0, x1) 28.26/13.45 new_esEs36(x0, x1, ty_Integer) 28.26/13.45 new_compare16(EQ, LT) 28.26/13.45 new_esEs38(x0, x1, ty_Double) 28.26/13.45 new_compare16(LT, EQ) 28.26/13.45 new_esEs9(x0, x1, ty_Float) 28.26/13.45 new_esEs31(x0, x1, ty_Integer) 28.26/13.45 new_ltEs6(x0, x1) 28.26/13.45 new_compare27(x0, x1, False, x2) 28.26/13.45 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 28.26/13.45 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs5(True, True) 28.26/13.45 new_esEs9(x0, x1, ty_Bool) 28.26/13.45 new_esEs24(Nothing, Just(x0), x1) 28.26/13.45 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs33(x0, x1, ty_@0) 28.26/13.45 new_primMulInt(Pos(x0), Pos(x1)) 28.26/13.45 new_compare5(:(x0, x1), [], x2) 28.26/13.45 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 28.26/13.45 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_compare30(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_sr0(Integer(x0), Integer(x1)) 28.26/13.45 new_compare111(x0, x1, x2, x3, False, x4, x5) 28.26/13.45 new_lt9(x0, x1) 28.26/13.45 new_lt19(x0, x1, ty_@0) 28.26/13.45 new_compare32(Char(x0), Char(x1)) 28.26/13.45 new_esEs20(Left(x0), Left(x1), ty_Float, x2) 28.26/13.45 new_esEs7(x0, x1, ty_Bool) 28.26/13.45 new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 28.26/13.45 new_esEs24(Just(x0), Just(x1), ty_@0) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 28.26/13.45 new_lt22(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs9(x0, x1, ty_Int) 28.26/13.45 new_esEs16(x0, x1, ty_Integer) 28.26/13.45 new_lt21(x0, x1, ty_@0) 28.26/13.45 new_lt19(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs5(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_ltEs19(x0, x1, ty_Float) 28.26/13.45 new_esEs34(x0, x1, ty_Char) 28.26/13.45 new_compare16(EQ, EQ) 28.26/13.45 new_esEs10(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs4(x0, x1, ty_@0) 28.26/13.45 new_ltEs19(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs13(GT, GT) 28.26/13.45 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 28.26/13.45 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 28.26/13.45 new_esEs38(x0, x1, ty_@0) 28.26/13.45 new_esEs13(LT, EQ) 28.26/13.45 new_esEs13(EQ, LT) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 28.26/13.45 new_esEs16(x0, x1, ty_Ordering) 28.26/13.45 new_esEs9(x0, x1, ty_Char) 28.26/13.45 new_esEs6(x0, x1, ty_Float) 28.26/13.45 new_esEs37(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_lt20(x0, x1, ty_Char) 28.26/13.45 new_esEs32(x0, x1, ty_Bool) 28.26/13.45 new_esEs8(x0, x1, ty_Float) 28.26/13.45 new_ltEs22(x0, x1, ty_@0) 28.26/13.45 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs20(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 28.26/13.45 new_primEqNat0(Zero, Succ(x0)) 28.26/13.45 new_esEs37(x0, x1, ty_Bool) 28.26/13.45 new_esEs13(EQ, EQ) 28.26/13.45 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), ty_Char, x2) 28.26/13.45 new_lt21(x0, x1, ty_Double) 28.26/13.45 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs33(x0, x1, ty_Int) 28.26/13.45 new_esEs37(x0, x1, ty_@0) 28.26/13.45 new_lt19(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, ty_Char) 28.26/13.45 new_esEs28(x0, x1, ty_Int) 28.26/13.45 new_lt21(x0, x1, ty_Ordering) 28.26/13.45 new_primCompAux0(x0, GT) 28.26/13.45 new_esEs32(x0, x1, ty_@0) 28.26/13.45 new_esEs30(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 28.26/13.45 new_esEs31(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_ltEs20(x0, x1, app(ty_[], x2)) 28.26/13.45 new_ltEs19(x0, x1, ty_Int) 28.26/13.45 new_primMulNat0(Zero, Zero) 28.26/13.45 new_esEs10(x0, x1, ty_Integer) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) 28.26/13.45 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 28.26/13.45 new_esEs27(x0, x1, ty_Char) 28.26/13.45 new_esEs34(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_ltEs4(x0, x1, ty_Double) 28.26/13.45 new_esEs10(x0, x1, app(ty_[], x2)) 28.26/13.45 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), ty_Integer) 28.26/13.45 new_ltEs19(x0, x1, ty_Char) 28.26/13.45 new_lt22(x0, x1, app(ty_[], x2)) 28.26/13.45 new_compare25(x0, x1, True, x2, x3) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), ty_Bool) 28.26/13.45 new_esEs38(x0, x1, ty_Char) 28.26/13.45 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_ltEs16(Nothing, Nothing, x0) 28.26/13.45 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs33(x0, x1, ty_Ordering) 28.26/13.45 new_primPlusNat0(Succ(x0), Zero) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, ty_@0) 28.26/13.45 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs28(x0, x1, ty_Double) 28.26/13.45 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_ltEs12(x0, x1, x2) 28.26/13.45 new_esEs4(x0, x1, ty_Ordering) 28.26/13.45 new_esEs33(x0, x1, ty_Double) 28.26/13.45 new_ltEs7(LT, LT) 28.26/13.45 new_esEs20(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 28.26/13.45 new_ltEs21(x0, x1, ty_Integer) 28.26/13.45 new_esEs17(True, True) 28.26/13.45 new_esEs9(x0, x1, ty_Integer) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, ty_Int) 28.26/13.45 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs35(x0, x1, ty_Integer) 28.26/13.45 new_ltEs23(x0, x1, ty_@0) 28.26/13.45 new_esEs33(x0, x1, ty_Char) 28.26/13.45 new_lt11(x0, x1, x2, x3) 28.26/13.45 new_ltEs16(Nothing, Just(x0), x1) 28.26/13.45 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs23(x0, x1, ty_Char) 28.26/13.45 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 28.26/13.45 new_esEs4(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), ty_@0) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 28.26/13.45 new_esEs39(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_lt20(x0, x1, ty_Int) 28.26/13.45 new_esEs8(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs7(x0, x1, app(ty_[], x2)) 28.26/13.45 new_compare31(True, False) 28.26/13.45 new_compare31(False, True) 28.26/13.45 new_ltEs4(x0, x1, app(ty_[], x2)) 28.26/13.45 new_compare27(x0, x1, True, x2) 28.26/13.45 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_lt20(x0, x1, ty_Ordering) 28.26/13.45 new_esEs6(x0, x1, ty_Bool) 28.26/13.45 new_esEs27(x0, x1, ty_@0) 28.26/13.45 new_ltEs20(x0, x1, ty_Float) 28.26/13.45 new_ltEs23(x0, x1, ty_Int) 28.26/13.45 new_esEs36(x0, x1, ty_Int) 28.26/13.45 new_lt7(x0, x1) 28.26/13.45 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 28.26/13.45 new_compare30(x0, x1, ty_Float) 28.26/13.45 new_esEs27(x0, x1, ty_Int) 28.26/13.45 new_compare30(x0, x1, ty_Integer) 28.26/13.45 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 28.26/13.45 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_primPlusNat0(Zero, Zero) 28.26/13.45 new_esEs32(x0, x1, ty_Integer) 28.26/13.45 new_esEs4(x0, x1, ty_Double) 28.26/13.45 new_compare16(GT, LT) 28.26/13.45 new_compare16(LT, GT) 28.26/13.45 new_ltEs22(x0, x1, ty_Integer) 28.26/13.45 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_lt20(x0, x1, ty_@0) 28.26/13.45 new_compare30(x0, x1, ty_Bool) 28.26/13.45 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_not(True) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, ty_Char) 28.26/13.45 new_esEs5(x0, x1, ty_Double) 28.26/13.45 new_esEs25(@0, @0) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs8(x0, x1) 28.26/13.45 new_esEs30(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 28.26/13.45 new_esEs39(x0, x1, ty_Float) 28.26/13.45 new_esEs21(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 28.26/13.45 new_esEs37(x0, x1, ty_Char) 28.26/13.45 new_esEs4(x0, x1, ty_Int) 28.26/13.45 new_ltEs21(x0, x1, ty_Float) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) 28.26/13.45 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs11(x0, x1, ty_Double) 28.26/13.45 new_ltEs21(x0, x1, ty_Bool) 28.26/13.45 new_lt17(x0, x1) 28.26/13.45 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_compare19(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 28.26/13.45 new_esEs10(x0, x1, ty_@0) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, ty_@0) 28.26/13.45 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 28.26/13.45 new_esEs8(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, ty_Int) 28.26/13.45 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs11(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_lt5(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_compare28(@0, @0) 28.26/13.45 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_ltEs23(x0, x1, ty_Integer) 28.26/13.45 new_lt22(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_lt20(x0, x1, ty_Double) 28.26/13.45 new_esEs10(x0, x1, ty_Float) 28.26/13.45 new_esEs37(x0, x1, ty_Integer) 28.26/13.45 new_compare18(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 28.26/13.45 new_ltEs21(x0, x1, ty_@0) 28.26/13.45 new_esEs34(x0, x1, ty_Ordering) 28.26/13.45 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_ltEs4(x0, x1, ty_Ordering) 28.26/13.45 new_esEs28(x0, x1, ty_Char) 28.26/13.45 new_lt22(x0, x1, ty_Double) 28.26/13.45 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 28.26/13.45 new_ltEs5(False, False) 28.26/13.45 new_compare111(x0, x1, x2, x3, True, x4, x5) 28.26/13.45 new_esEs38(x0, x1, ty_Integer) 28.26/13.45 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs17(False, True) 28.26/13.45 new_esEs17(True, False) 28.26/13.45 new_ltEs19(x0, x1, ty_Ordering) 28.26/13.45 new_compare110(x0, x1, True, x2, x3) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), ty_Float) 28.26/13.45 new_esEs37(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_compare6(Just(x0), Just(x1), x2) 28.26/13.45 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 28.26/13.45 new_esEs28(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_ltEs23(x0, x1, ty_Bool) 28.26/13.45 new_esEs5(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_ltEs7(EQ, GT) 28.26/13.45 new_ltEs7(GT, EQ) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 28.26/13.45 new_esEs8(x0, x1, ty_Integer) 28.26/13.45 new_lt20(x0, x1, ty_Bool) 28.26/13.45 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 28.26/13.45 new_esEs5(x0, x1, ty_Int) 28.26/13.45 new_esEs6(x0, x1, ty_Integer) 28.26/13.45 new_lt21(x0, x1, app(ty_[], x2)) 28.26/13.45 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs32(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, ty_Double) 28.26/13.45 new_primCmpInt(Pos(Zero), Pos(Zero)) 28.26/13.45 new_esEs28(x0, x1, ty_@0) 28.26/13.45 new_esEs38(x0, x1, ty_Ordering) 28.26/13.45 new_esEs38(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_lt21(x0, x1, ty_Bool) 28.26/13.45 new_ltEs7(GT, GT) 28.26/13.45 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 28.26/13.45 new_esEs10(x0, x1, ty_Char) 28.26/13.45 new_esEs31(x0, x1, ty_Double) 28.26/13.45 new_esEs26([], [], x0) 28.26/13.45 new_ltEs7(LT, EQ) 28.26/13.45 new_ltEs7(EQ, LT) 28.26/13.45 new_esEs12(Char(x0), Char(x1)) 28.26/13.45 new_pePe(True, x0) 28.26/13.45 new_compare30(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs5(x0, x1, ty_Char) 28.26/13.45 new_esEs32(x0, x1, ty_Double) 28.26/13.45 new_esEs27(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs27(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs30(x0, x1, ty_Int) 28.26/13.45 new_esEs37(x0, x1, ty_Ordering) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), ty_Int) 28.26/13.45 new_compare25(x0, x1, False, x2, x3) 28.26/13.45 new_esEs37(x0, x1, ty_Double) 28.26/13.45 new_lt20(x0, x1, ty_Integer) 28.26/13.45 new_ltEs24(x0, x1, ty_Float) 28.26/13.45 new_esEs29(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs16(x0, x1, ty_Float) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs8(x0, x1, ty_Bool) 28.26/13.45 new_compare13(x0, x1) 28.26/13.45 new_primPlusNat0(Zero, Succ(x0)) 28.26/13.45 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs32(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs20(Left(x0), Left(x1), ty_Integer, x2) 28.26/13.45 new_esEs27(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_lt22(x0, x1, ty_Ordering) 28.26/13.45 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 28.26/13.45 new_lt19(x0, x1, ty_Int) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), ty_Ordering) 28.26/13.45 new_primCmpNat0(Zero, Succ(x0)) 28.26/13.45 new_esEs6(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_compare5(:(x0, x1), :(x2, x3), x4) 28.26/13.45 new_compare6(Nothing, Just(x0), x1) 28.26/13.45 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs34(x0, x1, ty_@0) 28.26/13.45 new_esEs31(x0, x1, ty_Float) 28.26/13.45 new_esEs9(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs33(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, ty_Integer) 28.26/13.45 new_esEs24(Just(x0), Just(x1), ty_Int) 28.26/13.45 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 28.26/13.45 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) 28.26/13.45 new_esEs4(x0, x1, ty_@0) 28.26/13.45 new_esEs13(LT, GT) 28.26/13.45 new_esEs13(GT, LT) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) 28.26/13.45 new_esEs16(x0, x1, ty_Double) 28.26/13.45 new_esEs11(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs14(Float(x0, x1), Float(x2, x3)) 28.26/13.45 new_compare5([], :(x0, x1), x2) 28.26/13.45 new_compare110(x0, x1, False, x2, x3) 28.26/13.45 new_ltEs24(x0, x1, ty_Int) 28.26/13.45 new_primMulNat0(Succ(x0), Zero) 28.26/13.45 new_esEs20(Left(x0), Left(x1), ty_@0, x2) 28.26/13.45 new_esEs30(x0, x1, ty_Ordering) 28.26/13.45 new_esEs33(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs39(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_ltEs16(Just(x0), Just(x1), ty_Char) 28.26/13.45 new_ltEs23(x0, x1, ty_Double) 28.26/13.45 new_esEs33(x0, x1, ty_Bool) 28.26/13.45 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_ltEs18(x0, x1, x2) 28.26/13.45 new_compare8(Left(x0), Left(x1), x2, x3) 28.26/13.45 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 28.26/13.45 new_ltEs22(x0, x1, ty_Ordering) 28.26/13.45 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_ltEs20(x0, x1, ty_@0) 28.26/13.45 new_lt5(x0, x1, ty_Int) 28.26/13.45 new_esEs24(Just(x0), Just(x1), ty_Char) 28.26/13.45 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 28.26/13.45 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs39(x0, x1, app(ty_[], x2)) 28.26/13.45 new_compare30(x0, x1, ty_@0) 28.26/13.45 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 28.26/13.45 new_ltEs23(x0, x1, ty_Ordering) 28.26/13.45 new_esEs31(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs31(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_ltEs20(x0, x1, ty_Integer) 28.26/13.45 new_lt5(x0, x1, ty_Float) 28.26/13.45 new_esEs11(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs28(x0, x1, ty_Bool) 28.26/13.45 new_lt21(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs10(x0, x1, ty_Int) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 28.26/13.45 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 28.26/13.45 new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 28.26/13.45 new_esEs26(:(x0, x1), :(x2, x3), x4) 28.26/13.45 new_esEs20(Left(x0), Right(x1), x2, x3) 28.26/13.45 new_esEs20(Right(x0), Left(x1), x2, x3) 28.26/13.45 new_ltEs22(x0, x1, ty_Float) 28.26/13.45 new_esEs30(x0, x1, ty_Char) 28.26/13.45 new_ltEs4(x0, x1, ty_Bool) 28.26/13.45 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_primCmpNat0(Succ(x0), Zero) 28.26/13.45 new_primEqNat0(Succ(x0), Succ(x1)) 28.26/13.45 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), ty_Float, x2) 28.26/13.45 new_ltEs16(Just(x0), Nothing, x1) 28.26/13.45 new_ltEs21(x0, x1, ty_Ordering) 28.26/13.45 new_primEqNat0(Zero, Zero) 28.26/13.45 new_esEs39(x0, x1, ty_Ordering) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, ty_Bool) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 28.26/13.45 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs39(x0, x1, ty_Bool) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) 28.26/13.45 new_esEs8(x0, x1, ty_Char) 28.26/13.45 new_ltEs19(x0, x1, ty_@0) 28.26/13.45 new_not(False) 28.26/13.45 new_esEs29(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_ltEs10(Right(x0), Left(x1), x2, x3) 28.26/13.45 new_lt23(x0, x1, ty_Int) 28.26/13.45 new_ltEs10(Left(x0), Right(x1), x2, x3) 28.26/13.45 new_esEs13(EQ, GT) 28.26/13.45 new_esEs13(GT, EQ) 28.26/13.45 new_ltEs4(x0, x1, ty_Int) 28.26/13.45 new_primCompAux0(x0, EQ) 28.26/13.45 new_esEs9(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_esEs6(x0, x1, ty_@0) 28.26/13.45 new_compare30(x0, x1, ty_Ordering) 28.26/13.45 new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) 28.26/13.45 new_ltEs24(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs38(x0, x1, ty_Bool) 28.26/13.45 new_esEs10(x0, x1, ty_Ordering) 28.26/13.45 new_esEs6(x0, x1, ty_Double) 28.26/13.45 new_esEs29(x0, x1, ty_Int) 28.26/13.45 new_ltEs22(x0, x1, ty_Char) 28.26/13.45 new_compare31(True, True) 28.26/13.45 new_esEs20(Right(x0), Right(x1), x2, ty_Ordering) 28.26/13.45 new_esEs7(x0, x1, ty_Double) 28.26/13.45 new_esEs8(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs38(x0, x1, ty_Float) 28.26/13.45 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs5(x0, x1, ty_Ordering) 28.26/13.45 new_esEs11(x0, x1, ty_Ordering) 28.26/13.45 new_ltEs19(x0, x1, ty_Double) 28.26/13.45 new_ltEs17(x0, x1) 28.26/13.45 new_lt21(x0, x1, ty_Char) 28.26/13.45 new_lt19(x0, x1, ty_Char) 28.26/13.45 new_ltEs4(x0, x1, ty_Char) 28.26/13.45 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs27(x0, x1, ty_Double) 28.26/13.45 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 28.26/13.45 new_esEs10(x0, x1, ty_Bool) 28.26/13.45 new_esEs9(x0, x1, ty_@0) 28.26/13.45 new_esEs18(Double(x0, x1), Double(x2, x3)) 28.26/13.45 new_esEs33(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs37(x0, x1, app(ty_[], x2)) 28.26/13.45 new_ltEs22(x0, x1, ty_Int) 28.26/13.45 new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) 28.26/13.45 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 28.26/13.45 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 28.26/13.45 new_esEs39(x0, x1, ty_Integer) 28.26/13.45 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_lt20(x0, x1, app(ty_[], x2)) 28.26/13.45 new_lt21(x0, x1, ty_Int) 28.26/13.45 new_esEs16(x0, x1, app(ty_[], x2)) 28.26/13.45 new_esEs15(x0, x1) 28.26/13.45 new_lt23(x0, x1, ty_Float) 28.26/13.45 new_esEs29(x0, x1, ty_Float) 28.26/13.45 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_esEs33(x0, x1, ty_Float) 28.26/13.45 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.45 new_compare24(x0, x1, x2, x3, False, x4, x5) 28.26/13.45 new_esEs35(x0, x1, ty_Int) 28.26/13.45 new_compare26(x0, x1, False, x2, x3) 28.26/13.45 new_esEs28(x0, x1, ty_Integer) 28.26/13.45 new_compare16(EQ, GT) 28.26/13.45 new_compare16(GT, EQ) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 28.26/13.45 new_esEs28(x0, x1, ty_Ordering) 28.26/13.45 new_esEs9(x0, x1, ty_Double) 28.26/13.45 new_lt19(x0, x1, ty_Float) 28.26/13.45 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.45 new_esEs38(x0, x1, ty_Int) 28.26/13.45 new_compare10(x0, x1, True, x2) 28.26/13.45 new_esEs34(x0, x1, ty_Double) 28.26/13.45 new_ltEs4(x0, x1, ty_Float) 28.26/13.45 new_ltEs22(x0, x1, ty_Bool) 28.26/13.45 new_lt19(x0, x1, app(ty_Ratio, x2)) 28.26/13.45 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.45 new_lt21(x0, x1, ty_Float) 28.26/13.45 new_primCmpNat0(Zero, Zero) 28.26/13.45 new_sr(x0, x1) 28.26/13.45 new_esEs24(Just(x0), Just(x1), ty_Float) 28.26/13.45 new_ltEs10(Left(x0), Left(x1), ty_Int, x2) 28.26/13.45 28.26/13.45 We have to consider all minimal (P,Q,R)-chains. 28.26/13.45 ---------------------------------------- 28.26/13.45 28.26/13.45 (19) QDPSizeChangeProof (EQUIVALENT) 28.26/13.45 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. 28.26/13.45 28.26/13.45 From the DPs we obtained the following set of size-change graphs: 28.26/13.45 *new_ltEs2(Just(vxw300), Just(vxw310), app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs1(vxw300, vxw310, bff, bfg, bfh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs2(Just(vxw300), Just(vxw310), app(app(ty_Either, bfd), bfe)) -> new_ltEs0(vxw300, vxw310, bfd, bfe) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare(@2(vxw30, vxw31), @2(vxw400, vxw401), bc, bd) -> new_compare2(vxw30, vxw31, vxw400, vxw401, new_asAs(new_esEs5(vxw30, vxw400, bc), new_esEs4(vxw31, vxw401, bd)), bc, bd) 28.26/13.45 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs1(vxw301, vxw311, gc, gd, ge) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, app(app(ty_Either, ga), gb)) -> new_ltEs0(vxw301, vxw311, ga, gb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare0(Left(vxw30), Left(vxw400), dh, ea) -> new_compare20(vxw30, vxw400, new_esEs6(vxw30, vxw400, dh), dh, ea) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare1(@3(vxw30, vxw31, vxw32), @3(vxw400, vxw401, vxw402), bgd, bge, bgf) -> new_compare22(vxw30, vxw31, vxw32, vxw400, vxw401, vxw402, new_asAs(new_esEs10(vxw30, vxw400, bgd), new_asAs(new_esEs9(vxw31, vxw401, bge), new_esEs8(vxw32, vxw402, bgf))), bgd, bge, bgf) 28.26/13.45 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs1(vxw302, vxw312, bee, bef, beg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, app(app(ty_Either, bec), bed)) -> new_ltEs0(vxw302, vxw312, bec, bed) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_lt(vxw73, vxw75, ba, bb) -> new_compare(vxw73, vxw75, ba, bb) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_lt3(vxw73, vxw75, cd) -> new_compare4(vxw73, vxw75, cd) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_lt2(vxw73, vxw75, cc) -> new_compare3(vxw73, vxw75, cc) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs3(vxw30, vxw31, bgc) -> new_compare4(vxw30, vxw31, bgc) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_lt0(vxw73, vxw75, bf, bg) -> new_compare0(vxw73, vxw75, bf, bg) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare4(:(vxw30, vxw31), :(vxw400, vxw401), cdg) -> new_primCompAux(vxw30, vxw400, new_compare5(vxw31, vxw401, cdg), cdg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare4(:(vxw30, vxw31), :(vxw400, vxw401), cdg) -> new_compare4(vxw31, vxw401, cdg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_lt1(vxw73, vxw75, bh, ca, cb) -> new_compare1(vxw73, vxw75, bh, ca, cb) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs2(Just(vxw300), Just(vxw310), app(app(ty_@2, bfb), bfc)) -> new_ltEs(vxw300, vxw310, bfb, bfc) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, app(app(ty_@2, fg), fh)) -> new_ltEs(vxw301, vxw311, fg, fh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, app(app(ty_@2, bea), beb)) -> new_ltEs(vxw302, vxw312, bea, beb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare3(Just(vxw30), Just(vxw400), cce) -> new_compare23(vxw30, vxw400, new_esEs11(vxw30, vxw400, cce), cce) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare2(vxw73, vxw74, vxw75, vxw76, False, ce, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs1(vxw74, vxw76, dc, dd, de) 28.26/13.45 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare2(vxw73, vxw74, vxw75, vxw76, False, ce, app(app(ty_Either, da), db)) -> new_ltEs0(vxw74, vxw76, da, db) 28.26/13.45 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare2(vxw73, vxw74, vxw75, vxw76, False, ce, app(app(ty_@2, cf), cg)) -> new_ltEs(vxw74, vxw76, cf, cg) 28.26/13.45 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare2(vxw73, vxw74, vxw75, vxw76, False, app(app(ty_@2, ba), bb), be) -> new_compare(vxw73, vxw75, ba, bb) 28.26/13.45 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_primCompAux(vxw30, vxw400, vxw14, app(app(ty_@2, cdh), cea)) -> new_compare(vxw30, vxw400, cdh, cea) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare0(Right(vxw30), Right(vxw400), dh, ea) -> new_compare21(vxw30, vxw400, new_esEs7(vxw30, vxw400, ea), dh, ea) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare2(vxw73, vxw74, vxw75, vxw76, False, app(ty_[], cd), be) -> new_compare4(vxw73, vxw75, cd) 28.26/13.45 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_primCompAux(vxw30, vxw400, vxw14, app(ty_[], ceh)) -> new_compare4(vxw30, vxw400, ceh) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(vxw30, vxw31, False, app(ty_[], bgc), ee) -> new_compare4(vxw30, vxw31, bgc) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), app(ty_[], fd), ed) -> new_lt3(vxw300, vxw310, fd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs2(Just(vxw300), Just(vxw310), app(ty_[], bgb)) -> new_ltEs3(vxw300, vxw310, bgb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs2(Just(vxw300), Just(vxw310), app(ty_Maybe, bga)) -> new_ltEs2(vxw300, vxw310, bga) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, app(ty_[], gg)) -> new_ltEs3(vxw301, vxw311, gg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, app(ty_[], bfa)) -> new_ltEs3(vxw302, vxw312, bfa) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare2(vxw73, vxw74, vxw75, vxw76, False, ce, app(ty_[], dg)) -> new_ltEs3(vxw74, vxw76, dg) 28.26/13.45 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), ff, app(ty_Maybe, gf)) -> new_ltEs2(vxw301, vxw311, gf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, bbf, app(ty_Maybe, beh)) -> new_ltEs2(vxw302, vxw312, beh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare2(vxw73, vxw74, vxw75, vxw76, False, ce, app(ty_Maybe, df)) -> new_ltEs2(vxw74, vxw76, df) 28.26/13.45 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), app(ty_Maybe, fc), ed) -> new_lt2(vxw300, vxw310, fc) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare21(vxw37, vxw38, False, cfa, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs1(vxw37, vxw38, cff, cfg, cfh) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare21(vxw37, vxw38, False, cfa, app(app(ty_Either, cfd), cfe)) -> new_ltEs0(vxw37, vxw38, cfd, cfe) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare21(vxw37, vxw38, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(vxw37, vxw38, cfb, cfc) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare2(vxw73, vxw74, vxw75, vxw76, False, app(app(ty_Either, bf), bg), be) -> new_compare0(vxw73, vxw75, bf, bg) 28.26/13.45 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_primCompAux(vxw30, vxw400, vxw14, app(app(ty_Either, ceb), cec)) -> new_compare0(vxw30, vxw400, ceb, cec) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare21(vxw37, vxw38, False, cfa, app(ty_[], cgb)) -> new_ltEs3(vxw37, vxw38, cgb) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare21(vxw37, vxw38, False, cfa, app(ty_Maybe, cga)) -> new_ltEs2(vxw37, vxw38, cga) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(app(ty_@3, eh), fa), fb), ed) -> new_lt1(vxw300, vxw310, eh, fa, fb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, app(app(app(ty_@3, cag), cah), cba)) -> new_ltEs1(vxw50, vxw53, cag, cah, cba) 28.26/13.45 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, app(app(ty_Either, cae), caf)) -> new_ltEs0(vxw50, vxw53, cae, caf) 28.26/13.45 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, app(app(ty_@2, cac), cad)) -> new_ltEs(vxw50, vxw53, cac, cad) 28.26/13.45 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare2(vxw73, vxw74, vxw75, vxw76, False, app(app(app(ty_@3, bh), ca), cb), be) -> new_compare1(vxw73, vxw75, bh, ca, cb) 28.26/13.45 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare2(vxw73, vxw74, vxw75, vxw76, False, app(ty_Maybe, cc), be) -> new_compare3(vxw73, vxw75, cc) 28.26/13.45 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_primCompAux(vxw30, vxw400, vxw14, app(app(app(ty_@3, ced), cee), cef)) -> new_compare1(vxw30, vxw400, ced, cee, cef) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_primCompAux(vxw30, vxw400, vxw14, app(ty_Maybe, ceg)) -> new_compare3(vxw30, vxw400, ceg) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, app(ty_[], cbc)) -> new_ltEs3(vxw50, vxw53, cbc) 28.26/13.45 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, cab, app(ty_Maybe, cbb)) -> new_ltEs2(vxw50, vxw53, cbb) 28.26/13.45 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare23(vxw59, vxw60, False, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs1(vxw59, vxw60, cdb, cdc, cdd) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare23(vxw59, vxw60, False, app(app(ty_Either, cch), cda)) -> new_ltEs0(vxw59, vxw60, cch, cda) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare23(vxw59, vxw60, False, app(app(ty_@2, ccf), ccg)) -> new_ltEs(vxw59, vxw60, ccf, ccg) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare23(vxw59, vxw60, False, app(ty_[], cdf)) -> new_ltEs3(vxw59, vxw60, cdf) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare23(vxw59, vxw60, False, app(ty_Maybe, cde)) -> new_ltEs2(vxw59, vxw60, cde) 28.26/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(ty_@2, eb), ec), ed) -> new_lt(vxw300, vxw310, eb, ec) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(ty_Either, ef), eg), ed) -> new_lt0(vxw300, vxw310, ef, eg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs0(Right(vxw300), Right(vxw310), bab, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs1(vxw300, vxw310, bag, bah, bba) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs0(Left(vxw300), Left(vxw310), app(app(app(ty_@3, he), hf), hg), hb) -> new_ltEs1(vxw300, vxw310, he, hf, hg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs0(Right(vxw300), Right(vxw310), bab, app(app(ty_Either, bae), baf)) -> new_ltEs0(vxw300, vxw310, bae, baf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs0(Left(vxw300), Left(vxw310), app(app(ty_Either, hc), hd), hb) -> new_ltEs0(vxw300, vxw310, hc, hd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs0(Left(vxw300), Left(vxw310), app(app(ty_@2, gh), ha), hb) -> new_ltEs(vxw300, vxw310, gh, ha) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs0(Right(vxw300), Right(vxw310), bab, app(app(ty_@2, bac), bad)) -> new_ltEs(vxw300, vxw310, bac, bad) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs0(Right(vxw300), Right(vxw310), bab, app(ty_[], bbc)) -> new_ltEs3(vxw300, vxw310, bbc) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs0(Left(vxw300), Left(vxw310), app(ty_[], baa), hb) -> new_ltEs3(vxw300, vxw310, baa) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs0(Left(vxw300), Left(vxw310), app(ty_Maybe, hh), hb) -> new_ltEs2(vxw300, vxw310, hh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs0(Right(vxw300), Right(vxw310), bab, app(ty_Maybe, bbb)) -> new_ltEs2(vxw300, vxw310, bbb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(app(ty_@3, he), hf), hg)), hb), ee) -> new_ltEs1(vxw300, vxw310, he, hf, hg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(app(ty_@3, bff), bfg), bfh)), ee) -> new_ltEs1(vxw300, vxw310, bff, bfg, bfh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bab), app(app(app(ty_@3, bag), bah), bba)), ee) -> new_ltEs1(vxw300, vxw310, bag, bah, bba) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), bbf), app(app(app(ty_@3, bee), bef), beg)), ee) -> new_ltEs1(vxw302, vxw312, bee, bef, beg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, ff), app(app(app(ty_@3, gc), gd), ge)), ee) -> new_ltEs1(vxw301, vxw311, gc, gd, ge) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), bbf), app(app(ty_Either, bec), bed)), ee) -> new_ltEs0(vxw302, vxw312, bec, bed) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(ty_Either, hc), hd)), hb), ee) -> new_ltEs0(vxw300, vxw310, hc, hd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bab), app(app(ty_Either, bae), baf)), ee) -> new_ltEs0(vxw300, vxw310, bae, baf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, ff), app(app(ty_Either, ga), gb)), ee) -> new_ltEs0(vxw301, vxw311, ga, gb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(ty_Either, bfd), bfe)), ee) -> new_ltEs0(vxw300, vxw310, bfd, bfe) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(ty_[], bcf), bbf, bbg) -> new_lt3(vxw300, vxw310, bcf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, app(ty_[], bdh), bbg) -> new_lt3(vxw301, vxw311, bdh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, app(ty_Maybe, bdg), bbg) -> new_lt2(vxw301, vxw311, bdg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(ty_Maybe, bce), bbf, bbg) -> new_lt2(vxw300, vxw310, bce) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, app(app(app(ty_@3, bdd), bde), bdf), bbg) -> new_lt1(vxw301, vxw311, bdd, bde, bdf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(app(ty_@3, bcb), bcc), bcd), bbf, bbg) -> new_lt1(vxw300, vxw310, bcb, bcc, bcd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(ty_@2, bbd), bbe), bbf, bbg) -> new_lt(vxw300, vxw310, bbd, bbe) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, app(app(ty_@2, bch), bda), bbg) -> new_lt(vxw301, vxw311, bch, bda) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(ty_Either, bbh), bca), bbf, bbg) -> new_lt0(vxw300, vxw310, bbh, bca) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_ltEs1(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), bcg, app(app(ty_Either, bdb), bdc), bbg) -> new_lt0(vxw301, vxw311, bdb, bdc) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(ty_@2, bfb), bfc)), ee) -> new_ltEs(vxw300, vxw310, bfb, bfc) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(ty_@2, gh), ha)), hb), ee) -> new_ltEs(vxw300, vxw310, gh, ha) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, ff), app(app(ty_@2, fg), fh)), ee) -> new_ltEs(vxw301, vxw311, fg, fh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bab), app(app(ty_@2, bac), bad)), ee) -> new_ltEs(vxw300, vxw310, bac, bad) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), bbf), app(app(ty_@2, bea), beb)), ee) -> new_ltEs(vxw302, vxw312, bea, beb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, app(ty_[], ccd), cab, bhb) -> new_lt3(vxw48, vxw51, ccd) 28.26/13.45 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, app(ty_[], caa), bhb) -> new_lt3(vxw49, vxw52, caa) 28.26/13.45 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(ty_[], bcf)), bbf), bbg), ee) -> new_lt3(vxw300, vxw310, bcf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), app(ty_[], bdh)), bbg), ee) -> new_lt3(vxw301, vxw311, bdh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(ty_[], fd)), ed), ee) -> new_lt3(vxw300, vxw310, fd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(ty_[], bgb)), ee) -> new_ltEs3(vxw300, vxw310, bgb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(ty_[], baa)), hb), ee) -> new_ltEs3(vxw300, vxw310, baa) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, ff), app(ty_[], gg)), ee) -> new_ltEs3(vxw301, vxw311, gg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), bbf), app(ty_[], bfa)), ee) -> new_ltEs3(vxw302, vxw312, bfa) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bab), app(ty_[], bbc)), ee) -> new_ltEs3(vxw300, vxw310, bbc) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(ty_Maybe, bga)), ee) -> new_ltEs2(vxw300, vxw310, bga) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), bbf), app(ty_Maybe, beh)), ee) -> new_ltEs2(vxw302, vxw312, beh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(ty_Maybe, hh)), hb), ee) -> new_ltEs2(vxw300, vxw310, hh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, ff), app(ty_Maybe, gf)), ee) -> new_ltEs2(vxw301, vxw311, gf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bab), app(ty_Maybe, bbb)), ee) -> new_ltEs2(vxw300, vxw310, bbb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, app(ty_Maybe, bhh), bhb) -> new_lt2(vxw49, vxw52, bhh) 28.26/13.45 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, app(ty_Maybe, ccc), cab, bhb) -> new_lt2(vxw48, vxw51, ccc) 28.26/13.45 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(ty_Maybe, fc)), ed), ee) -> new_lt2(vxw300, vxw310, fc) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), app(ty_Maybe, bdg)), bbg), ee) -> new_lt2(vxw301, vxw311, bdg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(ty_Maybe, bce)), bbf), bbg), ee) -> new_lt2(vxw300, vxw310, bce) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, app(app(app(ty_@3, bhe), bhf), bhg), bhb) -> new_lt1(vxw49, vxw52, bhe, bhf, bhg) 28.26/13.45 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, app(app(app(ty_@3, cbh), cca), ccb), cab, bhb) -> new_lt1(vxw48, vxw51, cbh, cca, ccb) 28.26/13.45 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(app(ty_@3, eh), fa), fb)), ed), ee) -> new_lt1(vxw300, vxw310, eh, fa, fb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(app(ty_@3, bcb), bcc), bcd)), bbf), bbg), ee) -> new_lt1(vxw300, vxw310, bcb, bcc, bcd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), app(app(app(ty_@3, bdd), bde), bdf)), bbg), ee) -> new_lt1(vxw301, vxw311, bdd, bde, bdf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, app(app(ty_@2, cbd), cbe), cab, bhb) -> new_lt(vxw48, vxw51, cbd, cbe) 28.26/13.45 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, app(app(ty_@2, bgh), bha), bhb) -> new_lt(vxw49, vxw52, bgh, bha) 28.26/13.45 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, app(app(ty_Either, cbf), cbg), cab, bhb) -> new_lt0(vxw48, vxw51, cbf, cbg) 28.26/13.45 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare22(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, bgg, app(app(ty_Either, bhc), bhd), bhb) -> new_lt0(vxw49, vxw52, bhc, bhd) 28.26/13.45 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(ty_@2, bbd), bbe)), bbf), bbg), ee) -> new_lt(vxw300, vxw310, bbd, bbe) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), app(app(ty_@2, bch), bda)), bbg), ee) -> new_lt(vxw301, vxw311, bch, bda) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(ty_@2, eb), ec)), ed), ee) -> new_lt(vxw300, vxw310, eb, ec) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(ty_Either, ef), eg)), ed), ee) -> new_lt0(vxw300, vxw310, ef, eg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, bcg), app(app(ty_Either, bdb), bdc)), bbg), ee) -> new_lt0(vxw301, vxw311, bdb, bdc) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(ty_Either, bbh), bca)), bbf), bbg), ee) -> new_lt0(vxw300, vxw310, bbh, bca) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 ---------------------------------------- 28.26/13.45 28.26/13.45 (20) 28.26/13.45 YES 28.26/13.45 28.26/13.45 ---------------------------------------- 28.26/13.45 28.26/13.45 (21) 28.26/13.45 Obligation: 28.26/13.45 Q DP problem: 28.26/13.45 The TRS P consists of the following rules: 28.26/13.45 28.26/13.45 new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), de, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs2(vxw301, vxw4001, ea, eb, ec) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, app(app(ty_@2, hg), hh), hf) -> new_esEs1(vxw301, vxw4001, hg, hh) 28.26/13.45 new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_Either, bch), bda), bca) -> new_esEs3(vxw300, vxw4000, bch, bda) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, gc, app(app(ty_@2, ge), gf)) -> new_esEs1(vxw302, vxw4002, ge, gf) 28.26/13.45 new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, bc), bd)) -> new_esEs1(vxw300, vxw4000, bc, bd) 28.26/13.45 new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_[], bea)) -> new_esEs(vxw300, vxw4000, bea) 28.26/13.45 new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], fg), eh) -> new_esEs(vxw300, vxw4000, fg) 28.26/13.45 new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), ba) -> new_esEs(vxw301, vxw4001, ba) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, gc, app(ty_[], hb)) -> new_esEs(vxw302, vxw4002, hb) 28.26/13.45 new_esEs0(Just(vxw300), Just(vxw4000), app(ty_[], db)) -> new_esEs(vxw300, vxw4000, db) 28.26/13.45 new_esEs3(Left(vxw300), Left(vxw4000), app(ty_[], bcg), bca) -> new_esEs(vxw300, vxw4000, bcg) 28.26/13.45 new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_@2, bcb), bcc), bca) -> new_esEs1(vxw300, vxw4000, bcb, bcc) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, app(ty_[], bad), hf) -> new_esEs(vxw301, vxw4001, bad) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, gc, app(app(ty_Either, hc), hd)) -> new_esEs3(vxw302, vxw4002, hc, hd) 28.26/13.45 new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bh)) -> new_esEs(vxw300, vxw4000, bh) 28.26/13.45 new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, ca), cb)) -> new_esEs3(vxw300, vxw4000, ca, cb) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bbe), gc, hf) -> new_esEs(vxw300, vxw4000, bbe) 28.26/13.45 new_esEs0(Just(vxw300), Just(vxw4000), app(app(ty_Either, dc), dd)) -> new_esEs3(vxw300, vxw4000, dc, dd) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, app(app(app(ty_@3, baa), bab), bac), hf) -> new_esEs2(vxw301, vxw4001, baa, bab, bac) 28.26/13.45 new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(vxw300, vxw4000, beb, bec) 28.26/13.45 new_esEs0(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, cf), cg), da)) -> new_esEs2(vxw300, vxw4000, cf, cg, da) 28.26/13.45 new_esEs0(Just(vxw300), Just(vxw4000), app(app(ty_@2, cd), ce)) -> new_esEs1(vxw300, vxw4000, cd, ce) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, bbb), bbc), bbd), gc, hf) -> new_esEs2(vxw300, vxw4000, bbb, bbc, bbd) 28.26/13.45 new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_Maybe, bdc)) -> new_esEs0(vxw300, vxw4000, bdc) 28.26/13.45 new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_@2, bdd), bde)) -> new_esEs1(vxw300, vxw4000, bdd, bde) 28.26/13.45 new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, fh), ga), eh) -> new_esEs3(vxw300, vxw4000, fh, ga) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, gc, app(ty_Maybe, gd)) -> new_esEs0(vxw302, vxw4002, gd) 28.26/13.45 new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(vxw300, vxw4000, bdf, bdg, bdh) 28.26/13.45 new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, fc), fd), ff), eh) -> new_esEs2(vxw300, vxw4000, fc, fd, ff) 28.26/13.45 new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, fa), fb), eh) -> new_esEs1(vxw300, vxw4000, fa, fb) 28.26/13.45 new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), de, app(ty_[], ed)) -> new_esEs(vxw301, vxw4001, ed) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, app(app(ty_Either, bae), baf), hf) -> new_esEs3(vxw301, vxw4001, bae, baf) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, bag), gc, hf) -> new_esEs0(vxw300, vxw4000, bag) 28.26/13.45 new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), de, app(ty_Maybe, df)) -> new_esEs0(vxw301, vxw4001, df) 28.26/13.45 new_esEs3(Left(vxw300), Left(vxw4000), app(ty_Maybe, bbh), bca) -> new_esEs0(vxw300, vxw4000, bbh) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, app(ty_Maybe, he), hf) -> new_esEs0(vxw301, vxw4001, he) 28.26/13.45 new_esEs0(Just(vxw300), Just(vxw4000), app(ty_Maybe, cc)) -> new_esEs0(vxw300, vxw4000, cc) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, gc, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs2(vxw302, vxw4002, gg, gh, ha) 28.26/13.45 new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, eg), eh) -> new_esEs0(vxw300, vxw4000, eg) 28.26/13.45 new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), de, app(app(ty_@2, dg), dh)) -> new_esEs1(vxw301, vxw4001, dg, dh) 28.26/13.45 new_esEs3(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs2(vxw300, vxw4000, bcd, bce, bcf) 28.26/13.45 new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, bb)) -> new_esEs0(vxw300, vxw4000, bb) 28.26/13.45 new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, be), bf), bg)) -> new_esEs2(vxw300, vxw4000, be, bf, bg) 28.26/13.45 new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), de, app(app(ty_Either, ee), ef)) -> new_esEs3(vxw301, vxw4001, ee, ef) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, bah), bba), gc, hf) -> new_esEs1(vxw300, vxw4000, bah, bba) 28.26/13.45 new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, bbf), bbg), gc, hf) -> new_esEs3(vxw300, vxw4000, bbf, bbg) 28.26/13.45 28.26/13.45 R is empty. 28.26/13.45 Q is empty. 28.26/13.45 We have to consider all minimal (P,Q,R)-chains. 28.26/13.45 ---------------------------------------- 28.26/13.45 28.26/13.45 (22) QDPSizeChangeProof (EQUIVALENT) 28.26/13.45 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. 28.26/13.45 28.26/13.45 From the DPs we obtained the following set of size-change graphs: 28.26/13.45 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, bc), bd)) -> new_esEs1(vxw300, vxw4000, bc, bd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs0(Just(vxw300), Just(vxw4000), app(app(ty_@2, cd), ce)) -> new_esEs1(vxw300, vxw4000, cd, ce) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, be), bf), bg)) -> new_esEs2(vxw300, vxw4000, be, bf, bg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs0(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, cf), cg), da)) -> new_esEs2(vxw300, vxw4000, cf, cg, da) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, ca), cb)) -> new_esEs3(vxw300, vxw4000, ca, cb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs0(Just(vxw300), Just(vxw4000), app(app(ty_Either, dc), dd)) -> new_esEs3(vxw300, vxw4000, dc, dd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs0(Just(vxw300), Just(vxw4000), app(ty_[], db)) -> new_esEs(vxw300, vxw4000, db) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, bb)) -> new_esEs0(vxw300, vxw4000, bb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs0(Just(vxw300), Just(vxw4000), app(ty_Maybe, cc)) -> new_esEs0(vxw300, vxw4000, cc) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, app(app(ty_@2, hg), hh), hf) -> new_esEs1(vxw301, vxw4001, hg, hh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, gc, app(app(ty_@2, ge), gf)) -> new_esEs1(vxw302, vxw4002, ge, gf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, bah), bba), gc, hf) -> new_esEs1(vxw300, vxw4000, bah, bba) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, app(app(app(ty_@3, baa), bab), bac), hf) -> new_esEs2(vxw301, vxw4001, baa, bab, bac) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, bbb), bbc), bbd), gc, hf) -> new_esEs2(vxw300, vxw4000, bbb, bbc, bbd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, gc, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs2(vxw302, vxw4002, gg, gh, ha) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, gc, app(app(ty_Either, hc), hd)) -> new_esEs3(vxw302, vxw4002, hc, hd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, app(app(ty_Either, bae), baf), hf) -> new_esEs3(vxw301, vxw4001, bae, baf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, bbf), bbg), gc, hf) -> new_esEs3(vxw300, vxw4000, bbf, bbg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, gc, app(ty_[], hb)) -> new_esEs(vxw302, vxw4002, hb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, app(ty_[], bad), hf) -> new_esEs(vxw301, vxw4001, bad) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bbe), gc, hf) -> new_esEs(vxw300, vxw4000, bbe) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, gc, app(ty_Maybe, gd)) -> new_esEs0(vxw302, vxw4002, gd) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, bag), gc, hf) -> new_esEs0(vxw300, vxw4000, bag) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), gb, app(ty_Maybe, he), hf) -> new_esEs0(vxw301, vxw4001, he) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, fa), fb), eh) -> new_esEs1(vxw300, vxw4000, fa, fb) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), de, app(app(ty_@2, dg), dh)) -> new_esEs1(vxw301, vxw4001, dg, dh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_@2, bcb), bcc), bca) -> new_esEs1(vxw300, vxw4000, bcb, bcc) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_@2, bdd), bde)) -> new_esEs1(vxw300, vxw4000, bdd, bde) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), de, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs2(vxw301, vxw4001, ea, eb, ec) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, fc), fd), ff), eh) -> new_esEs2(vxw300, vxw4000, fc, fd, ff) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, fh), ga), eh) -> new_esEs3(vxw300, vxw4000, fh, ga) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), de, app(app(ty_Either, ee), ef)) -> new_esEs3(vxw301, vxw4001, ee, ef) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], fg), eh) -> new_esEs(vxw300, vxw4000, fg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), de, app(ty_[], ed)) -> new_esEs(vxw301, vxw4001, ed) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), de, app(ty_Maybe, df)) -> new_esEs0(vxw301, vxw4001, df) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, eg), eh) -> new_esEs0(vxw300, vxw4000, eg) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(vxw300, vxw4000, bdf, bdg, bdh) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs3(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs2(vxw300, vxw4000, bcd, bce, bcf) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_Either, bch), bda), bca) -> new_esEs3(vxw300, vxw4000, bch, bda) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(vxw300, vxw4000, beb, bec) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_[], bea)) -> new_esEs(vxw300, vxw4000, bea) 28.26/13.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.45 28.26/13.45 28.26/13.45 *new_esEs3(Left(vxw300), Left(vxw4000), app(ty_[], bcg), bca) -> new_esEs(vxw300, vxw4000, bcg) 28.26/13.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.46 28.26/13.46 28.26/13.46 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_Maybe, bdc)) -> new_esEs0(vxw300, vxw4000, bdc) 28.26/13.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.26/13.46 28.26/13.46 28.26/13.46 *new_esEs3(Left(vxw300), Left(vxw4000), app(ty_Maybe, bbh), bca) -> new_esEs0(vxw300, vxw4000, bbh) 28.26/13.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.46 28.26/13.46 28.26/13.46 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), ba) -> new_esEs(vxw301, vxw4001, ba) 28.26/13.46 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 28.26/13.46 28.26/13.46 28.26/13.46 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bh)) -> new_esEs(vxw300, vxw4000, bh) 28.26/13.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.26/13.46 28.26/13.46 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (23) 28.26/13.46 YES 28.26/13.46 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (24) 28.26/13.46 Obligation: 28.26/13.46 Q DP problem: 28.26/13.46 The TRS P consists of the following rules: 28.26/13.46 28.26/13.46 new_primMulNat(Succ(vxw3000), Succ(vxw40100)) -> new_primMulNat(vxw3000, Succ(vxw40100)) 28.26/13.46 28.26/13.46 R is empty. 28.26/13.46 Q is empty. 28.26/13.46 We have to consider all minimal (P,Q,R)-chains. 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (25) QDPSizeChangeProof (EQUIVALENT) 28.26/13.46 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. 28.26/13.46 28.26/13.46 From the DPs we obtained the following set of size-change graphs: 28.26/13.46 *new_primMulNat(Succ(vxw3000), Succ(vxw40100)) -> new_primMulNat(vxw3000, Succ(vxw40100)) 28.26/13.46 The graph contains the following edges 1 > 1, 2 >= 2 28.26/13.46 28.26/13.46 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (26) 28.26/13.46 YES 28.26/13.46 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (27) 28.26/13.46 Obligation: 28.26/13.46 Q DP problem: 28.26/13.46 The TRS P consists of the following rules: 28.26/13.46 28.26/13.46 new_insertBy(vxw3, :(vxw40, vxw41), bb) -> new_insertBy0(vxw40, vxw3, vxw41, new_compare33(vxw3, vxw40, bb), bb) 28.26/13.46 new_insertBy0(vxw10, vxw11, vxw12, GT, ba) -> new_insertBy(vxw11, vxw12, ba) 28.26/13.46 28.26/13.46 The TRS R consists of the following rules: 28.26/13.46 28.26/13.46 new_esEs30(vxw301, vxw4001, app(app(ty_@2, dcg), dch)) -> new_esEs19(vxw301, vxw4001, dcg, dch) 28.26/13.46 new_lt17(vxw73, vxw75) -> new_esEs13(new_compare28(vxw73, vxw75), LT) 28.26/13.46 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 28.26/13.46 new_primPlusNat0(Zero, Zero) -> Zero 28.26/13.46 new_pePe(True, vxw152) -> True 28.26/13.46 new_esEs7(vxw30, vxw400, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs21(vxw30, vxw400, bce, bcf, bcg) 28.26/13.46 new_compare12(vxw103, vxw104, False, ega, egb) -> GT 28.26/13.46 new_esEs8(vxw32, vxw402, ty_Char) -> new_esEs12(vxw32, vxw402) 28.26/13.46 new_esEs19(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cfg, cfh) -> new_asAs(new_esEs38(vxw300, vxw4000, cfg), new_esEs37(vxw301, vxw4001, cfh)) 28.26/13.46 new_esEs29(vxw302, vxw4002, ty_Char) -> new_esEs12(vxw302, vxw4002) 28.26/13.46 new_compare30(vxw30, vxw400, app(ty_Maybe, chf)) -> new_compare6(vxw30, vxw400, chf) 28.26/13.46 new_lt21(vxw300, vxw310, ty_Bool) -> new_lt6(vxw300, vxw310) 28.26/13.46 new_esEs36(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.46 new_compare16(GT, LT) -> GT 28.26/13.46 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 28.26/13.46 new_compare24(vxw73, vxw74, vxw75, vxw76, True, be, bf) -> EQ 28.26/13.46 new_ltEs16(Nothing, Nothing, chh) -> True 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), app(app(ty_Either, dac), dad)) -> new_ltEs10(vxw300, vxw310, dac, dad) 28.26/13.46 new_esEs6(vxw30, vxw400, ty_Ordering) -> new_esEs13(vxw30, vxw400) 28.26/13.46 new_compare26(vxw37, vxw38, True, bef, beg) -> EQ 28.26/13.46 new_esEs33(vxw49, vxw52, app(ty_[], edd)) -> new_esEs26(vxw49, vxw52, edd) 28.26/13.46 new_compare9(Double(vxw30, Pos(vxw310)), Double(vxw400, Pos(vxw4010))) -> new_compare13(new_sr(vxw30, Pos(vxw4010)), new_sr(Pos(vxw310), vxw400)) 28.26/13.46 new_ltEs20(vxw59, vxw60, ty_Float) -> new_ltEs13(vxw59, vxw60) 28.26/13.46 new_ltEs16(Just(vxw300), Nothing, chh) -> False 28.26/13.46 new_esEs32(vxw300, vxw310, ty_Int) -> new_esEs15(vxw300, vxw310) 28.26/13.46 new_esEs32(vxw300, vxw310, app(app(ty_Either, dgc), dgd)) -> new_esEs20(vxw300, vxw310, dgc, dgd) 28.26/13.46 new_esEs9(vxw31, vxw401, app(app(ty_Either, fcc), fcd)) -> new_esEs20(vxw31, vxw401, fcc, fcd) 28.26/13.46 new_esEs37(vxw301, vxw4001, app(ty_Ratio, fea)) -> new_esEs22(vxw301, vxw4001, fea) 28.26/13.46 new_ltEs22(vxw301, vxw311, app(app(ty_Either, dhe), dhf)) -> new_ltEs10(vxw301, vxw311, dhe, dhf) 28.26/13.46 new_compare16(EQ, LT) -> GT 28.26/13.46 new_primMulNat0(Succ(vxw3000), Succ(vxw40100)) -> new_primPlusNat1(new_primMulNat0(vxw3000, Succ(vxw40100)), vxw40100) 28.26/13.46 new_lt20(vxw301, vxw311, ty_Double) -> new_lt9(vxw301, vxw311) 28.26/13.46 new_compare111(vxw123, vxw124, vxw125, vxw126, False, fdg, fdh) -> GT 28.26/13.46 new_ltEs19(vxw302, vxw312, app(ty_Maybe, bac)) -> new_ltEs16(vxw302, vxw312, bac) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), ty_@0, bge) -> new_esEs25(vxw300, vxw4000) 28.26/13.46 new_esEs27(vxw301, vxw311, ty_Ordering) -> new_esEs13(vxw301, vxw311) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, ty_Float) -> new_ltEs13(vxw300, vxw310) 28.26/13.46 new_lt19(vxw300, vxw310, ty_Ordering) -> new_lt8(vxw300, vxw310) 28.26/13.46 new_ltEs20(vxw59, vxw60, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs11(vxw59, vxw60, bdh, bea, beb) 28.26/13.46 new_lt5(vxw73, vxw75, ty_@0) -> new_lt17(vxw73, vxw75) 28.26/13.46 new_ltEs20(vxw59, vxw60, app(ty_[], bee)) -> new_ltEs18(vxw59, vxw60, bee) 28.26/13.46 new_lt5(vxw73, vxw75, app(ty_Ratio, cf)) -> new_lt13(vxw73, vxw75, cf) 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, ty_Float) -> new_esEs14(vxw300, vxw4000) 28.26/13.46 new_compare31(True, False) -> GT 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), ty_Integer) -> new_ltEs14(vxw300, vxw310) 28.26/13.46 new_esEs15(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) 28.26/13.46 new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 28.26/13.46 new_compare15(:%(vxw30, vxw31), :%(vxw400, vxw401), ty_Int) -> new_compare13(new_sr(vxw30, vxw401), new_sr(vxw400, vxw31)) 28.26/13.46 new_esEs30(vxw301, vxw4001, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs21(vxw301, vxw4001, dda, ddb, ddc) 28.26/13.46 new_primCompAux0(vxw65, LT) -> LT 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs18(vxw300, vxw4000) 28.26/13.46 new_esEs10(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) 28.26/13.46 new_not(True) -> False 28.26/13.46 new_esEs16(vxw73, vxw75, ty_Bool) -> new_esEs17(vxw73, vxw75) 28.26/13.46 new_esEs38(vxw300, vxw4000, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs21(vxw300, vxw4000, ffg, ffh, fga) 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs14(vxw300, vxw4000) 28.26/13.46 new_ltEs23(vxw50, vxw53, ty_Char) -> new_ltEs15(vxw50, vxw53) 28.26/13.46 new_esEs33(vxw49, vxw52, ty_Bool) -> new_esEs17(vxw49, vxw52) 28.26/13.46 new_esEs9(vxw31, vxw401, ty_Int) -> new_esEs15(vxw31, vxw401) 28.26/13.46 new_lt5(vxw73, vxw75, ty_Integer) -> new_lt15(vxw73, vxw75) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), app(ty_Ratio, dah)) -> new_ltEs12(vxw300, vxw310, dah) 28.26/13.46 new_esEs30(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) 28.26/13.46 new_esEs5(vxw30, vxw400, ty_Integer) -> new_esEs23(vxw30, vxw400) 28.26/13.46 new_lt23(vxw48, vxw51, ty_@0) -> new_lt17(vxw48, vxw51) 28.26/13.46 new_ltEs22(vxw301, vxw311, ty_Double) -> new_ltEs8(vxw301, vxw311) 28.26/13.46 new_esEs37(vxw301, vxw4001, ty_Int) -> new_esEs15(vxw301, vxw4001) 28.26/13.46 new_compare8(Right(vxw30), Left(vxw400), bae, baf) -> GT 28.26/13.46 new_lt21(vxw300, vxw310, ty_Integer) -> new_lt15(vxw300, vxw310) 28.26/13.46 new_esEs39(vxw300, vxw4000, ty_Char) -> new_esEs12(vxw300, vxw4000) 28.26/13.46 new_esEs27(vxw301, vxw311, app(ty_Ratio, gh)) -> new_esEs22(vxw301, vxw311, gh) 28.26/13.46 new_primEqNat0(Succ(vxw3000), Zero) -> False 28.26/13.46 new_primEqNat0(Zero, Succ(vxw40000)) -> False 28.26/13.46 new_esEs39(vxw300, vxw4000, app(ty_Maybe, fgf)) -> new_esEs24(vxw300, vxw4000, fgf) 28.26/13.46 new_ltEs20(vxw59, vxw60, ty_Int) -> new_ltEs6(vxw59, vxw60) 28.26/13.46 new_esEs4(vxw31, vxw401, ty_Float) -> new_esEs14(vxw31, vxw401) 28.26/13.46 new_compare6(Just(vxw30), Nothing, dff) -> GT 28.26/13.46 new_esEs34(vxw48, vxw51, ty_Ordering) -> new_esEs13(vxw48, vxw51) 28.26/13.46 new_esEs13(LT, LT) -> True 28.26/13.46 new_compare17(Integer(vxw30), Integer(vxw400)) -> new_primCmpInt(vxw30, vxw400) 28.26/13.46 new_lt22(vxw49, vxw52, app(ty_Maybe, edc)) -> new_lt4(vxw49, vxw52, edc) 28.26/13.46 new_esEs27(vxw301, vxw311, ty_Int) -> new_esEs15(vxw301, vxw311) 28.26/13.46 new_compare210(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, True, ebh, eca, ecb) -> EQ 28.26/13.46 new_esEs21(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cga, cgb, cgc) -> new_asAs(new_esEs31(vxw300, vxw4000, cga), new_asAs(new_esEs30(vxw301, vxw4001, cgb), new_esEs29(vxw302, vxw4002, cgc))) 28.26/13.46 new_ltEs4(vxw74, vxw76, app(ty_Maybe, ea)) -> new_ltEs16(vxw74, vxw76, ea) 28.26/13.46 new_primCmpInt(Pos(Succ(vxw300)), Neg(vxw400)) -> GT 28.26/13.46 new_ltEs10(Right(vxw300), Left(vxw310), ccf, cbc) -> False 28.26/13.46 new_esEs11(vxw30, vxw400, ty_Integer) -> new_esEs23(vxw30, vxw400) 28.26/13.46 new_lt23(vxw48, vxw51, app(ty_[], efh)) -> new_lt18(vxw48, vxw51, efh) 28.26/13.46 new_esEs37(vxw301, vxw4001, app(app(ty_Either, ffa), ffb)) -> new_esEs20(vxw301, vxw4001, ffa, ffb) 28.26/13.46 new_ltEs5(False, True) -> True 28.26/13.46 new_lt22(vxw49, vxw52, ty_Char) -> new_lt16(vxw49, vxw52) 28.26/13.46 new_esEs30(vxw301, vxw4001, ty_Double) -> new_esEs18(vxw301, vxw4001) 28.26/13.46 new_esEs32(vxw300, vxw310, app(ty_Ratio, dgh)) -> new_esEs22(vxw300, vxw310, dgh) 28.26/13.46 new_esEs34(vxw48, vxw51, app(ty_Maybe, efg)) -> new_esEs24(vxw48, vxw51, efg) 28.26/13.46 new_ltEs7(GT, GT) -> True 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), ty_Bool, bge) -> new_esEs17(vxw300, vxw4000) 28.26/13.46 new_esEs7(vxw30, vxw400, app(app(ty_@2, bcc), bcd)) -> new_esEs19(vxw30, vxw400, bcc, bcd) 28.26/13.46 new_lt5(vxw73, vxw75, ty_Int) -> new_lt7(vxw73, vxw75) 28.26/13.46 new_ltEs22(vxw301, vxw311, ty_Integer) -> new_ltEs14(vxw301, vxw311) 28.26/13.46 new_esEs16(vxw73, vxw75, ty_Integer) -> new_esEs23(vxw73, vxw75) 28.26/13.46 new_compare5(:(vxw30, vxw31), [], cge) -> GT 28.26/13.46 new_ltEs23(vxw50, vxw53, ty_Bool) -> new_ltEs5(vxw50, vxw53) 28.26/13.46 new_primCmpNat0(Zero, Succ(vxw4000)) -> LT 28.26/13.46 new_ltEs20(vxw59, vxw60, ty_@0) -> new_ltEs17(vxw59, vxw60) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), ty_Char, cbc) -> new_ltEs15(vxw300, vxw310) 28.26/13.46 new_compare6(Nothing, Nothing, dff) -> EQ 28.26/13.46 new_esEs5(vxw30, vxw400, app(ty_[], cgd)) -> new_esEs26(vxw30, vxw400, cgd) 28.26/13.46 new_esEs34(vxw48, vxw51, ty_Char) -> new_esEs12(vxw48, vxw51) 28.26/13.46 new_esEs29(vxw302, vxw4002, ty_Integer) -> new_esEs23(vxw302, vxw4002) 28.26/13.46 new_esEs38(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, ty_@0) -> new_ltEs17(vxw300, vxw310) 28.26/13.46 new_esEs11(vxw30, vxw400, app(ty_[], ebd)) -> new_esEs26(vxw30, vxw400, ebd) 28.26/13.46 new_esEs9(vxw31, vxw401, ty_Float) -> new_esEs14(vxw31, vxw401) 28.26/13.46 new_compare30(vxw30, vxw400, ty_Ordering) -> new_compare16(vxw30, vxw400) 28.26/13.46 new_esEs27(vxw301, vxw311, app(app(ty_Either, gc), gd)) -> new_esEs20(vxw301, vxw311, gc, gd) 28.26/13.46 new_esEs8(vxw32, vxw402, app(ty_Maybe, fab)) -> new_esEs24(vxw32, vxw402, fab) 28.26/13.46 new_esEs29(vxw302, vxw4002, app(ty_Maybe, dbd)) -> new_esEs24(vxw302, vxw4002, dbd) 28.26/13.46 new_compare31(False, False) -> EQ 28.26/13.46 new_lt9(vxw73, vxw75) -> new_esEs13(new_compare9(vxw73, vxw75), LT) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), ty_Bool, cbc) -> new_ltEs5(vxw300, vxw310) 28.26/13.46 new_compare19(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, False, bgb, bgc, bgd) -> GT 28.26/13.46 new_esEs6(vxw30, vxw400, app(app(ty_Either, bbg), bbh)) -> new_esEs20(vxw30, vxw400, bbg, bbh) 28.26/13.46 new_esEs13(GT, GT) -> True 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), app(ty_Ratio, ccc), cbc) -> new_ltEs12(vxw300, vxw310, ccc) 28.26/13.46 new_ltEs23(vxw50, vxw53, app(ty_[], eef)) -> new_ltEs18(vxw50, vxw53, eef) 28.26/13.46 new_esEs7(vxw30, vxw400, app(ty_[], bch)) -> new_esEs26(vxw30, vxw400, bch) 28.26/13.46 new_lt5(vxw73, vxw75, app(app(ty_Either, ca), cb)) -> new_lt11(vxw73, vxw75, ca, cb) 28.26/13.46 new_esEs6(vxw30, vxw400, app(ty_Maybe, bah)) -> new_esEs24(vxw30, vxw400, bah) 28.26/13.46 new_lt21(vxw300, vxw310, ty_Int) -> new_lt7(vxw300, vxw310) 28.26/13.46 new_lt22(vxw49, vxw52, app(app(app(ty_@3, ecg), ech), eda)) -> new_lt12(vxw49, vxw52, ecg, ech, eda) 28.26/13.46 new_esEs9(vxw31, vxw401, app(ty_Ratio, fbc)) -> new_esEs22(vxw31, vxw401, fbc) 28.26/13.46 new_esEs31(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 28.26/13.46 new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 28.26/13.46 new_esEs9(vxw31, vxw401, ty_Double) -> new_esEs18(vxw31, vxw401) 28.26/13.46 new_primCmpInt(Neg(Zero), Pos(Succ(vxw4000))) -> LT 28.26/13.46 new_lt19(vxw300, vxw310, app(app(app(ty_@3, fb), fc), fd)) -> new_lt12(vxw300, vxw310, fb, fc, fd) 28.26/13.46 new_primMulInt(Pos(vxw300), Pos(vxw4010)) -> Pos(new_primMulNat0(vxw300, vxw4010)) 28.26/13.46 new_esEs13(EQ, GT) -> False 28.26/13.46 new_esEs13(GT, EQ) -> False 28.26/13.46 new_ltEs21(vxw37, vxw38, ty_Char) -> new_ltEs15(vxw37, vxw38) 28.26/13.46 new_ltEs22(vxw301, vxw311, ty_Int) -> new_ltEs6(vxw301, vxw311) 28.26/13.46 new_lt19(vxw300, vxw310, app(app(ty_Either, eh), fa)) -> new_lt11(vxw300, vxw310, eh, fa) 28.26/13.46 new_compare33(vxw3, vxw40, app(ty_[], cge)) -> new_compare5(vxw3, vxw40, cge) 28.26/13.46 new_compare10(vxw113, vxw114, True, bd) -> LT 28.26/13.46 new_ltEs4(vxw74, vxw76, ty_Char) -> new_ltEs15(vxw74, vxw76) 28.26/13.46 new_ltEs23(vxw50, vxw53, ty_Float) -> new_ltEs13(vxw50, vxw53) 28.26/13.46 new_primMulNat0(Succ(vxw3000), Zero) -> Zero 28.26/13.46 new_primMulNat0(Zero, Succ(vxw40100)) -> Zero 28.26/13.46 new_ltEs6(vxw30, vxw31) -> new_fsEs(new_compare13(vxw30, vxw31)) 28.26/13.46 new_primPlusNat1(Succ(vxw1530), vxw40100) -> Succ(Succ(new_primPlusNat0(vxw1530, vxw40100))) 28.26/13.46 new_esEs8(vxw32, vxw402, ty_Integer) -> new_esEs23(vxw32, vxw402) 28.26/13.46 new_lt8(vxw73, vxw75) -> new_esEs13(new_compare16(vxw73, vxw75), LT) 28.26/13.46 new_ltEs22(vxw301, vxw311, app(app(ty_@2, dhc), dhd)) -> new_ltEs9(vxw301, vxw311, dhc, dhd) 28.26/13.46 new_esEs10(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) 28.26/13.46 new_compare7(Float(vxw30, Pos(vxw310)), Float(vxw400, Pos(vxw4010))) -> new_compare13(new_sr(vxw30, Pos(vxw4010)), new_sr(Pos(vxw310), vxw400)) 28.26/13.46 new_primPlusNat0(Succ(vxw15300), Zero) -> Succ(vxw15300) 28.26/13.46 new_primPlusNat0(Zero, Succ(vxw401000)) -> Succ(vxw401000) 28.26/13.46 new_esEs7(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), app(app(ty_@2, daa), dab)) -> new_ltEs9(vxw300, vxw310, daa, dab) 28.26/13.46 new_esEs33(vxw49, vxw52, ty_Double) -> new_esEs18(vxw49, vxw52) 28.26/13.46 new_primPlusNat1(Zero, vxw40100) -> Succ(vxw40100) 28.26/13.46 new_lt23(vxw48, vxw51, ty_Int) -> new_lt7(vxw48, vxw51) 28.26/13.46 new_esEs31(vxw300, vxw4000, app(ty_Maybe, ddh)) -> new_esEs24(vxw300, vxw4000, ddh) 28.26/13.46 new_esEs37(vxw301, vxw4001, ty_Ordering) -> new_esEs13(vxw301, vxw4001) 28.26/13.46 new_lt23(vxw48, vxw51, ty_Integer) -> new_lt15(vxw48, vxw51) 28.26/13.46 new_ltEs22(vxw301, vxw311, app(ty_Ratio, eab)) -> new_ltEs12(vxw301, vxw311, eab) 28.26/13.46 new_lt22(vxw49, vxw52, app(app(ty_@2, ecc), ecd)) -> new_lt10(vxw49, vxw52, ecc, ecd) 28.26/13.46 new_esEs34(vxw48, vxw51, app(ty_Ratio, eff)) -> new_esEs22(vxw48, vxw51, eff) 28.26/13.46 new_esEs10(vxw30, vxw400, app(app(ty_@2, fcg), fch)) -> new_esEs19(vxw30, vxw400, fcg, fch) 28.26/13.46 new_ltEs23(vxw50, vxw53, ty_@0) -> new_ltEs17(vxw50, vxw53) 28.26/13.46 new_esEs32(vxw300, vxw310, ty_Double) -> new_esEs18(vxw300, vxw310) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, ty_Int) -> new_ltEs6(vxw300, vxw310) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), ty_Double) -> new_ltEs8(vxw300, vxw310) 28.26/13.46 new_esEs28(vxw300, vxw310, ty_Bool) -> new_esEs17(vxw300, vxw310) 28.26/13.46 new_esEs33(vxw49, vxw52, app(app(ty_@2, ecc), ecd)) -> new_esEs19(vxw49, vxw52, ecc, ecd) 28.26/13.46 new_esEs9(vxw31, vxw401, app(app(ty_@2, fbe), fbf)) -> new_esEs19(vxw31, vxw401, fbe, fbf) 28.26/13.46 new_esEs33(vxw49, vxw52, ty_@0) -> new_esEs25(vxw49, vxw52) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), app(ty_[], cce), cbc) -> new_ltEs18(vxw300, vxw310, cce) 28.26/13.46 new_esEs16(vxw73, vxw75, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs21(vxw73, vxw75, cc, cd, ce) 28.26/13.46 new_esEs32(vxw300, vxw310, app(ty_Maybe, dha)) -> new_esEs24(vxw300, vxw310, dha) 28.26/13.46 new_ltEs21(vxw37, vxw38, app(ty_Maybe, bfh)) -> new_ltEs16(vxw37, vxw38, bfh) 28.26/13.46 new_compare5(:(vxw30, vxw31), :(vxw400, vxw401), cge) -> new_primCompAux1(vxw30, vxw400, new_compare5(vxw31, vxw401, cge), cge) 28.26/13.46 new_esEs29(vxw302, vxw4002, ty_Bool) -> new_esEs17(vxw302, vxw4002) 28.26/13.46 new_esEs4(vxw31, vxw401, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs21(vxw31, vxw401, ceg, ceh, cfa) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), ty_Ordering, cbc) -> new_ltEs7(vxw300, vxw310) 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs21(vxw300, vxw4000, ehc, ehd, ehe) 28.26/13.46 new_ltEs19(vxw302, vxw312, ty_Char) -> new_ltEs15(vxw302, vxw312) 28.26/13.46 new_ltEs22(vxw301, vxw311, ty_Float) -> new_ltEs13(vxw301, vxw311) 28.26/13.46 new_esEs28(vxw300, vxw310, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs21(vxw300, vxw310, fb, fc, fd) 28.26/13.46 new_esEs4(vxw31, vxw401, app(app(ty_Either, cfc), cfd)) -> new_esEs20(vxw31, vxw401, cfc, cfd) 28.26/13.46 new_esEs11(vxw30, vxw400, ty_@0) -> new_esEs25(vxw30, vxw400) 28.26/13.46 new_esEs32(vxw300, vxw310, ty_Float) -> new_esEs14(vxw300, vxw310) 28.26/13.46 new_lt10(vxw73, vxw75, bg, bh) -> new_esEs13(new_compare29(vxw73, vxw75, bg, bh), LT) 28.26/13.46 new_lt21(vxw300, vxw310, app(app(app(ty_@3, dge), dgf), dgg)) -> new_lt12(vxw300, vxw310, dge, dgf, dgg) 28.26/13.46 new_lt15(vxw73, vxw75) -> new_esEs13(new_compare17(vxw73, vxw75), LT) 28.26/13.46 new_esEs7(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) 28.26/13.46 new_esEs35(vxw301, vxw4001, ty_Int) -> new_esEs15(vxw301, vxw4001) 28.26/13.46 new_ltEs19(vxw302, vxw312, ty_Double) -> new_ltEs8(vxw302, vxw312) 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, ty_Double) -> new_esEs18(vxw300, vxw4000) 28.26/13.46 new_compare33(vxw3, vxw40, app(ty_Maybe, dff)) -> new_compare6(vxw3, vxw40, dff) 28.26/13.46 new_lt21(vxw300, vxw310, app(app(ty_Either, dgc), dgd)) -> new_lt11(vxw300, vxw310, dgc, dgd) 28.26/13.46 new_esEs5(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 28.26/13.46 new_ltEs8(vxw30, vxw31) -> new_fsEs(new_compare9(vxw30, vxw31)) 28.26/13.46 new_esEs31(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.46 new_compare16(LT, LT) -> EQ 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), app(app(ty_Either, ehg), ehh)) -> new_esEs20(vxw300, vxw4000, ehg, ehh) 28.26/13.46 new_ltEs4(vxw74, vxw76, ty_@0) -> new_ltEs17(vxw74, vxw76) 28.26/13.46 new_esEs12(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, ty_@0) -> new_esEs25(vxw300, vxw4000) 28.26/13.46 new_esEs31(vxw300, vxw4000, ty_Ordering) -> new_esEs13(vxw300, vxw4000) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), ty_Float, bge) -> new_esEs14(vxw300, vxw4000) 28.26/13.46 new_esEs8(vxw32, vxw402, app(ty_[], fah)) -> new_esEs26(vxw32, vxw402, fah) 28.26/13.46 new_lt23(vxw48, vxw51, ty_Ordering) -> new_lt8(vxw48, vxw51) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), app(app(app(ty_@3, dae), daf), dag)) -> new_ltEs11(vxw300, vxw310, dae, daf, dag) 28.26/13.46 new_esEs27(vxw301, vxw311, ty_Char) -> new_esEs12(vxw301, vxw311) 28.26/13.46 new_esEs30(vxw301, vxw4001, ty_Bool) -> new_esEs17(vxw301, vxw4001) 28.26/13.46 new_ltEs22(vxw301, vxw311, app(ty_[], ead)) -> new_ltEs18(vxw301, vxw311, ead) 28.26/13.46 new_esEs32(vxw300, vxw310, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs21(vxw300, vxw310, dge, dgf, dgg) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, ty_Char) -> new_ltEs15(vxw300, vxw310) 28.26/13.46 new_compare5([], [], cge) -> EQ 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), app(ty_[], dbb)) -> new_ltEs18(vxw300, vxw310, dbb) 28.26/13.46 new_esEs30(vxw301, vxw4001, app(ty_Ratio, dce)) -> new_esEs22(vxw301, vxw4001, dce) 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs17(vxw300, vxw4000) 28.26/13.46 new_ltEs5(False, False) -> True 28.26/13.46 new_esEs26([], [], cgd) -> True 28.26/13.46 new_esEs6(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) 28.26/13.46 new_lt13(vxw73, vxw75, cf) -> new_esEs13(new_compare15(vxw73, vxw75, cf), LT) 28.26/13.46 new_compare30(vxw30, vxw400, app(app(app(ty_@3, chb), chc), chd)) -> new_compare14(vxw30, vxw400, chb, chc, chd) 28.26/13.46 new_esEs8(vxw32, vxw402, ty_@0) -> new_esEs25(vxw32, vxw402) 28.26/13.46 new_compare111(vxw123, vxw124, vxw125, vxw126, True, fdg, fdh) -> LT 28.26/13.46 new_esEs32(vxw300, vxw310, app(app(ty_@2, dga), dgb)) -> new_esEs19(vxw300, vxw310, dga, dgb) 28.26/13.46 new_esEs34(vxw48, vxw51, ty_Int) -> new_esEs15(vxw48, vxw51) 28.26/13.46 new_esEs31(vxw300, vxw4000, app(ty_[], def)) -> new_esEs26(vxw300, vxw4000, def) 28.26/13.46 new_esEs22(:%(vxw300, vxw301), :%(vxw4000, vxw4001), cfe) -> new_asAs(new_esEs36(vxw300, vxw4000, cfe), new_esEs35(vxw301, vxw4001, cfe)) 28.26/13.46 new_compare33(vxw3, vxw40, ty_@0) -> new_compare28(vxw3, vxw40) 28.26/13.46 new_lt19(vxw300, vxw310, ty_@0) -> new_lt17(vxw300, vxw310) 28.26/13.46 new_esEs17(False, True) -> False 28.26/13.46 new_esEs17(True, False) -> False 28.26/13.46 new_esEs10(vxw30, vxw400, ty_Ordering) -> new_esEs13(vxw30, vxw400) 28.26/13.46 new_esEs38(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), ty_Int, cbc) -> new_ltEs6(vxw300, vxw310) 28.26/13.46 new_esEs33(vxw49, vxw52, ty_Char) -> new_esEs12(vxw49, vxw52) 28.26/13.46 new_esEs18(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs15(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) 28.26/13.46 new_esEs30(vxw301, vxw4001, app(app(ty_Either, dde), ddf)) -> new_esEs20(vxw301, vxw4001, dde, ddf) 28.26/13.46 new_esEs28(vxw300, vxw310, ty_Int) -> new_esEs15(vxw300, vxw310) 28.26/13.46 new_lt5(vxw73, vxw75, ty_Float) -> new_lt14(vxw73, vxw75) 28.26/13.46 new_primCmpInt(Pos(Succ(vxw300)), Pos(vxw400)) -> new_primCmpNat0(Succ(vxw300), vxw400) 28.26/13.46 new_esEs39(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 28.26/13.46 new_ltEs12(vxw30, vxw31, ebg) -> new_fsEs(new_compare15(vxw30, vxw31, ebg)) 28.26/13.46 new_lt20(vxw301, vxw311, ty_@0) -> new_lt17(vxw301, vxw311) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs11(vxw300, vxw310, cdc, cdd, cde) 28.26/13.46 new_esEs38(vxw300, vxw4000, app(app(ty_Either, fgc), fgd)) -> new_esEs20(vxw300, vxw4000, fgc, fgd) 28.26/13.46 new_esEs33(vxw49, vxw52, ty_Float) -> new_esEs14(vxw49, vxw52) 28.26/13.46 new_ltEs21(vxw37, vxw38, ty_Double) -> new_ltEs8(vxw37, vxw38) 28.26/13.46 new_esEs10(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 28.26/13.46 new_compare13(vxw3, vxw40) -> new_primCmpInt(vxw3, vxw40) 28.26/13.46 new_esEs16(vxw73, vxw75, app(ty_Maybe, bc)) -> new_esEs24(vxw73, vxw75, bc) 28.26/13.46 new_esEs16(vxw73, vxw75, ty_Float) -> new_esEs14(vxw73, vxw75) 28.26/13.46 new_ltEs21(vxw37, vxw38, ty_@0) -> new_ltEs17(vxw37, vxw38) 28.26/13.46 new_esEs29(vxw302, vxw4002, ty_Ordering) -> new_esEs13(vxw302, vxw4002) 28.26/13.46 new_lt11(vxw73, vxw75, ca, cb) -> new_esEs13(new_compare8(vxw73, vxw75, ca, cb), LT) 28.26/13.46 new_esEs4(vxw31, vxw401, app(ty_Maybe, ced)) -> new_esEs24(vxw31, vxw401, ced) 28.26/13.46 new_ltEs7(LT, EQ) -> True 28.26/13.46 new_ltEs24(vxw30, vxw31, app(ty_Ratio, ebg)) -> new_ltEs12(vxw30, vxw31, ebg) 28.26/13.46 new_esEs5(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, ty_Integer) -> new_ltEs14(vxw300, vxw310) 28.26/13.46 new_compare11(vxw123, vxw124, vxw125, vxw126, False, vxw128, fdg, fdh) -> new_compare111(vxw123, vxw124, vxw125, vxw126, vxw128, fdg, fdh) 28.26/13.46 new_esEs7(vxw30, vxw400, ty_@0) -> new_esEs25(vxw30, vxw400) 28.26/13.46 new_lt21(vxw300, vxw310, app(ty_Maybe, dha)) -> new_lt4(vxw300, vxw310, dha) 28.26/13.46 new_compare33(vxw3, vxw40, app(app(ty_Either, bae), baf)) -> new_compare8(vxw3, vxw40, bae, baf) 28.26/13.46 new_esEs30(vxw301, vxw4001, app(ty_[], ddd)) -> new_esEs26(vxw301, vxw4001, ddd) 28.26/13.46 new_compare30(vxw30, vxw400, ty_Char) -> new_compare32(vxw30, vxw400) 28.26/13.46 new_esEs10(vxw30, vxw400, app(ty_Ratio, fce)) -> new_esEs22(vxw30, vxw400, fce) 28.26/13.46 new_esEs5(vxw30, vxw400, app(ty_Maybe, cff)) -> new_esEs24(vxw30, vxw400, cff) 28.26/13.46 new_esEs33(vxw49, vxw52, ty_Integer) -> new_esEs23(vxw49, vxw52) 28.26/13.46 new_esEs10(vxw30, vxw400, ty_Int) -> new_esEs15(vxw30, vxw400) 28.26/13.46 new_esEs31(vxw300, vxw4000, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs21(vxw300, vxw4000, dec, ded, dee) 28.26/13.46 new_esEs29(vxw302, vxw4002, app(ty_[], dcb)) -> new_esEs26(vxw302, vxw4002, dcb) 28.26/13.46 new_lt19(vxw300, vxw310, ty_Int) -> new_lt7(vxw300, vxw310) 28.26/13.46 new_lt23(vxw48, vxw51, ty_Bool) -> new_lt6(vxw48, vxw51) 28.26/13.46 new_ltEs24(vxw30, vxw31, app(app(ty_@2, dfg), dfh)) -> new_ltEs9(vxw30, vxw31, dfg, dfh) 28.26/13.46 new_esEs34(vxw48, vxw51, ty_Integer) -> new_esEs23(vxw48, vxw51) 28.26/13.46 new_compare33(vxw3, vxw40, ty_Bool) -> new_compare31(vxw3, vxw40) 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.46 new_compare30(vxw30, vxw400, ty_Float) -> new_compare7(vxw30, vxw400) 28.26/13.46 new_ltEs16(Nothing, Just(vxw310), chh) -> True 28.26/13.46 new_lt20(vxw301, vxw311, ty_Int) -> new_lt7(vxw301, vxw311) 28.26/13.46 new_esEs11(vxw30, vxw400, app(ty_Maybe, eaf)) -> new_esEs24(vxw30, vxw400, eaf) 28.26/13.46 new_esEs11(vxw30, vxw400, ty_Char) -> new_esEs12(vxw30, vxw400) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), ty_Int) -> new_ltEs6(vxw300, vxw310) 28.26/13.46 new_esEs11(vxw30, vxw400, ty_Ordering) -> new_esEs13(vxw30, vxw400) 28.26/13.46 new_esEs39(vxw300, vxw4000, ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.46 new_esEs37(vxw301, vxw4001, app(app(app(ty_@3, fee), fef), feg)) -> new_esEs21(vxw301, vxw4001, fee, fef, feg) 28.26/13.46 new_esEs17(True, True) -> True 28.26/13.46 new_esEs31(vxw300, vxw4000, ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.46 new_ltEs19(vxw302, vxw312, ty_@0) -> new_ltEs17(vxw302, vxw312) 28.26/13.46 new_esEs33(vxw49, vxw52, app(app(app(ty_@3, ecg), ech), eda)) -> new_esEs21(vxw49, vxw52, ecg, ech, eda) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), app(ty_Ratio, bgf), bge) -> new_esEs22(vxw300, vxw4000, bgf) 28.26/13.46 new_lt5(vxw73, vxw75, ty_Bool) -> new_lt6(vxw73, vxw75) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, ty_Bool) -> new_ltEs5(vxw300, vxw310) 28.26/13.46 new_compare29(@2(vxw30, vxw31), @2(vxw400, vxw401), cea, ceb) -> new_compare24(vxw30, vxw31, vxw400, vxw401, new_asAs(new_esEs5(vxw30, vxw400, cea), new_esEs4(vxw31, vxw401, ceb)), cea, ceb) 28.26/13.46 new_esEs10(vxw30, vxw400, app(app(ty_Either, fde), fdf)) -> new_esEs20(vxw30, vxw400, fde, fdf) 28.26/13.46 new_esEs33(vxw49, vxw52, app(app(ty_Either, ece), ecf)) -> new_esEs20(vxw49, vxw52, ece, ecf) 28.26/13.46 new_esEs38(vxw300, vxw4000, ty_@0) -> new_esEs25(vxw300, vxw4000) 28.26/13.46 new_lt22(vxw49, vxw52, ty_Ordering) -> new_lt8(vxw49, vxw52) 28.26/13.46 new_esEs28(vxw300, vxw310, app(ty_[], fh)) -> new_esEs26(vxw300, vxw310, fh) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, ty_Ordering) -> new_ltEs7(vxw300, vxw310) 28.26/13.46 new_esEs26(:(vxw300, vxw301), [], cgd) -> False 28.26/13.46 new_esEs26([], :(vxw4000, vxw4001), cgd) -> False 28.26/13.46 new_lt19(vxw300, vxw310, ty_Float) -> new_lt14(vxw300, vxw310) 28.26/13.46 new_lt19(vxw300, vxw310, ty_Integer) -> new_lt15(vxw300, vxw310) 28.26/13.46 new_lt22(vxw49, vxw52, ty_Bool) -> new_lt6(vxw49, vxw52) 28.26/13.46 new_compare33(vxw3, vxw40, ty_Float) -> new_compare7(vxw3, vxw40) 28.26/13.46 new_compare31(False, True) -> LT 28.26/13.46 new_esEs32(vxw300, vxw310, ty_Ordering) -> new_esEs13(vxw300, vxw310) 28.26/13.46 new_esEs37(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 28.26/13.46 new_primPlusNat0(Succ(vxw15300), Succ(vxw401000)) -> Succ(Succ(new_primPlusNat0(vxw15300, vxw401000))) 28.26/13.46 new_lt19(vxw300, vxw310, ty_Char) -> new_lt16(vxw300, vxw310) 28.26/13.46 new_esEs31(vxw300, vxw4000, app(ty_Ratio, ddg)) -> new_esEs22(vxw300, vxw4000, ddg) 28.26/13.46 new_lt20(vxw301, vxw311, ty_Integer) -> new_lt15(vxw301, vxw311) 28.26/13.46 new_lt23(vxw48, vxw51, ty_Float) -> new_lt14(vxw48, vxw51) 28.26/13.46 new_lt5(vxw73, vxw75, app(ty_Maybe, bc)) -> new_lt4(vxw73, vxw75, bc) 28.26/13.46 new_esEs38(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) 28.26/13.46 new_esEs28(vxw300, vxw310, app(ty_Ratio, ff)) -> new_esEs22(vxw300, vxw310, ff) 28.26/13.46 new_compare33(vxw3, vxw40, ty_Char) -> new_compare32(vxw3, vxw40) 28.26/13.46 new_lt5(vxw73, vxw75, ty_Ordering) -> new_lt8(vxw73, vxw75) 28.26/13.46 new_ltEs24(vxw30, vxw31, ty_Double) -> new_ltEs8(vxw30, vxw31) 28.26/13.46 new_ltEs4(vxw74, vxw76, ty_Float) -> new_ltEs13(vxw74, vxw76) 28.26/13.46 new_esEs35(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), ty_Integer, bge) -> new_esEs23(vxw300, vxw4000) 28.26/13.46 new_esEs28(vxw300, vxw310, ty_Double) -> new_esEs18(vxw300, vxw310) 28.26/13.46 new_ltEs5(True, True) -> True 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, app(app(ty_@2, cac), cad)) -> new_esEs19(vxw300, vxw4000, cac, cad) 28.26/13.46 new_esEs30(vxw301, vxw4001, ty_Ordering) -> new_esEs13(vxw301, vxw4001) 28.26/13.46 new_lt20(vxw301, vxw311, ty_Float) -> new_lt14(vxw301, vxw311) 28.26/13.46 new_compare16(GT, GT) -> EQ 28.26/13.46 new_lt20(vxw301, vxw311, ty_Ordering) -> new_lt8(vxw301, vxw311) 28.26/13.46 new_ltEs7(EQ, LT) -> False 28.26/13.46 new_esEs10(vxw30, vxw400, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs21(vxw30, vxw400, fda, fdb, fdc) 28.26/13.46 new_lt19(vxw300, vxw310, ty_Bool) -> new_lt6(vxw300, vxw310) 28.26/13.46 new_esEs28(vxw300, vxw310, app(app(ty_@2, ef), eg)) -> new_esEs19(vxw300, vxw310, ef, eg) 28.26/13.46 new_esEs17(False, False) -> True 28.26/13.46 new_esEs29(vxw302, vxw4002, ty_Int) -> new_esEs15(vxw302, vxw4002) 28.26/13.46 new_esEs34(vxw48, vxw51, ty_Bool) -> new_esEs17(vxw48, vxw51) 28.26/13.46 new_esEs5(vxw30, vxw400, ty_@0) -> new_esEs25(vxw30, vxw400) 28.26/13.46 new_lt20(vxw301, vxw311, app(ty_Maybe, ha)) -> new_lt4(vxw301, vxw311, ha) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), ty_Ordering) -> new_ltEs7(vxw300, vxw310) 28.26/13.46 new_ltEs7(GT, LT) -> False 28.26/13.46 new_lt21(vxw300, vxw310, ty_Float) -> new_lt14(vxw300, vxw310) 28.26/13.46 new_compare210(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, False, ebh, eca, ecb) -> new_compare18(vxw48, vxw49, vxw50, vxw51, vxw52, vxw53, new_lt23(vxw48, vxw51, ebh), new_asAs(new_esEs34(vxw48, vxw51, ebh), new_pePe(new_lt22(vxw49, vxw52, eca), new_asAs(new_esEs33(vxw49, vxw52, eca), new_ltEs23(vxw50, vxw53, ecb)))), ebh, eca, ecb) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, app(ty_Maybe, cdg)) -> new_ltEs16(vxw300, vxw310, cdg) 28.26/13.46 new_esEs31(vxw300, vxw4000, ty_Char) -> new_esEs12(vxw300, vxw4000) 28.26/13.46 new_primCmpNat0(Succ(vxw300), Succ(vxw4000)) -> new_primCmpNat0(vxw300, vxw4000) 28.26/13.46 new_lt20(vxw301, vxw311, ty_Char) -> new_lt16(vxw301, vxw311) 28.26/13.46 new_lt22(vxw49, vxw52, ty_@0) -> new_lt17(vxw49, vxw52) 28.26/13.46 new_esEs11(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 28.26/13.46 new_lt22(vxw49, vxw52, ty_Float) -> new_lt14(vxw49, vxw52) 28.26/13.46 new_esEs27(vxw301, vxw311, ty_Double) -> new_esEs18(vxw301, vxw311) 28.26/13.46 new_esEs27(vxw301, vxw311, app(app(ty_@2, ga), gb)) -> new_esEs19(vxw301, vxw311, ga, gb) 28.26/13.46 new_compare24(vxw73, vxw74, vxw75, vxw76, False, be, bf) -> new_compare11(vxw73, vxw74, vxw75, vxw76, new_lt5(vxw73, vxw75, be), new_asAs(new_esEs16(vxw73, vxw75, be), new_ltEs4(vxw74, vxw76, bf)), be, bf) 28.26/13.46 new_ltEs7(LT, GT) -> True 28.26/13.46 new_esEs32(vxw300, vxw310, ty_Char) -> new_esEs12(vxw300, vxw310) 28.26/13.46 new_compare6(Just(vxw30), Just(vxw400), dff) -> new_compare27(vxw30, vxw400, new_esEs11(vxw30, vxw400, dff), dff) 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, app(ty_[], cah)) -> new_esEs26(vxw300, vxw4000, cah) 28.26/13.46 new_compare30(vxw30, vxw400, app(app(ty_Either, cgh), cha)) -> new_compare8(vxw30, vxw400, cgh, cha) 28.26/13.46 new_lt21(vxw300, vxw310, ty_@0) -> new_lt17(vxw300, vxw310) 28.26/13.46 new_esEs16(vxw73, vxw75, ty_@0) -> new_esEs25(vxw73, vxw75) 28.26/13.46 new_lt19(vxw300, vxw310, app(ty_Maybe, fg)) -> new_lt4(vxw300, vxw310, fg) 28.26/13.46 new_esEs37(vxw301, vxw4001, app(ty_Maybe, feb)) -> new_esEs24(vxw301, vxw4001, feb) 28.26/13.46 new_esEs13(EQ, EQ) -> True 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs25(vxw300, vxw4000) 28.26/13.46 new_esEs11(vxw30, vxw400, app(app(app(ty_@3, eba), ebb), ebc)) -> new_esEs21(vxw30, vxw400, eba, ebb, ebc) 28.26/13.46 new_lt21(vxw300, vxw310, ty_Ordering) -> new_lt8(vxw300, vxw310) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), ty_Bool) -> new_ltEs5(vxw300, vxw310) 28.26/13.46 new_compare6(Nothing, Just(vxw400), dff) -> LT 28.26/13.46 new_ltEs13(vxw30, vxw31) -> new_fsEs(new_compare7(vxw30, vxw31)) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), app(app(app(ty_@3, cbh), cca), ccb), cbc) -> new_ltEs11(vxw300, vxw310, cbh, cca, ccb) 28.26/13.46 new_lt14(vxw73, vxw75) -> new_esEs13(new_compare7(vxw73, vxw75), LT) 28.26/13.46 new_esEs4(vxw31, vxw401, ty_@0) -> new_esEs25(vxw31, vxw401) 28.26/13.46 new_esEs30(vxw301, vxw4001, ty_Int) -> new_esEs15(vxw301, vxw4001) 28.26/13.46 new_esEs29(vxw302, vxw4002, app(ty_Ratio, dbc)) -> new_esEs22(vxw302, vxw4002, dbc) 28.26/13.46 new_lt6(vxw73, vxw75) -> new_esEs13(new_compare31(vxw73, vxw75), LT) 28.26/13.46 new_esEs37(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) 28.26/13.46 new_compare12(vxw103, vxw104, True, ega, egb) -> LT 28.26/13.46 new_compare16(LT, EQ) -> LT 28.26/13.46 new_esEs11(vxw30, vxw400, app(app(ty_Either, ebe), ebf)) -> new_esEs20(vxw30, vxw400, ebe, ebf) 28.26/13.46 new_lt20(vxw301, vxw311, ty_Bool) -> new_lt6(vxw301, vxw311) 28.26/13.46 new_esEs34(vxw48, vxw51, app(app(ty_Either, efa), efb)) -> new_esEs20(vxw48, vxw51, efa, efb) 28.26/13.46 new_esEs20(Left(vxw300), Right(vxw4000), bhh, bge) -> False 28.26/13.46 new_esEs20(Right(vxw300), Left(vxw4000), bhh, bge) -> False 28.26/13.46 new_compare7(Float(vxw30, Pos(vxw310)), Float(vxw400, Neg(vxw4010))) -> new_compare13(new_sr(vxw30, Pos(vxw4010)), new_sr(Neg(vxw310), vxw400)) 28.26/13.46 new_compare7(Float(vxw30, Neg(vxw310)), Float(vxw400, Pos(vxw4010))) -> new_compare13(new_sr(vxw30, Neg(vxw4010)), new_sr(Pos(vxw310), vxw400)) 28.26/13.46 new_esEs39(vxw300, vxw4000, ty_@0) -> new_esEs25(vxw300, vxw4000) 28.26/13.46 new_esEs28(vxw300, vxw310, app(ty_Maybe, fg)) -> new_esEs24(vxw300, vxw310, fg) 28.26/13.46 new_esEs27(vxw301, vxw311, app(ty_[], hb)) -> new_esEs26(vxw301, vxw311, hb) 28.26/13.46 new_primCmpInt(Neg(Succ(vxw300)), Pos(vxw400)) -> LT 28.26/13.46 new_esEs5(vxw30, vxw400, ty_Int) -> new_esEs15(vxw30, vxw400) 28.26/13.46 new_ltEs24(vxw30, vxw31, app(ty_[], dfa)) -> new_ltEs18(vxw30, vxw31, dfa) 28.26/13.46 new_esEs34(vxw48, vxw51, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs21(vxw48, vxw51, efc, efd, efe) 28.26/13.46 new_esEs9(vxw31, vxw401, ty_Integer) -> new_esEs23(vxw31, vxw401) 28.26/13.46 new_esEs39(vxw300, vxw4000, app(app(ty_@2, fgg), fgh)) -> new_esEs19(vxw300, vxw4000, fgg, fgh) 28.26/13.46 new_esEs39(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), ty_Double, cbc) -> new_ltEs8(vxw300, vxw310) 28.26/13.46 new_esEs6(vxw30, vxw400, app(ty_[], bbf)) -> new_esEs26(vxw30, vxw400, bbf) 28.26/13.46 new_esEs16(vxw73, vxw75, ty_Int) -> new_esEs15(vxw73, vxw75) 28.26/13.46 new_esEs37(vxw301, vxw4001, ty_Bool) -> new_esEs17(vxw301, vxw4001) 28.26/13.46 new_primCmpInt(Pos(Zero), Neg(Succ(vxw4000))) -> GT 28.26/13.46 new_ltEs14(vxw30, vxw31) -> new_fsEs(new_compare17(vxw30, vxw31)) 28.26/13.46 new_esEs14(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs15(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) 28.26/13.46 new_primCmpInt(Neg(Succ(vxw300)), Neg(vxw400)) -> new_primCmpNat0(vxw400, Succ(vxw300)) 28.26/13.46 new_compare30(vxw30, vxw400, ty_Bool) -> new_compare31(vxw30, vxw400) 28.26/13.46 new_esEs8(vxw32, vxw402, ty_Float) -> new_esEs14(vxw32, vxw402) 28.26/13.46 new_compare30(vxw30, vxw400, ty_Integer) -> new_compare17(vxw30, vxw400) 28.26/13.46 new_esEs29(vxw302, vxw4002, ty_Float) -> new_esEs14(vxw302, vxw4002) 28.26/13.46 new_esEs37(vxw301, vxw4001, ty_@0) -> new_esEs25(vxw301, vxw4001) 28.26/13.46 new_ltEs24(vxw30, vxw31, ty_@0) -> new_ltEs17(vxw30, vxw31) 28.26/13.46 new_esEs5(vxw30, vxw400, app(app(ty_Either, bhh), bge)) -> new_esEs20(vxw30, vxw400, bhh, bge) 28.26/13.46 new_primCompAux0(vxw65, GT) -> GT 28.26/13.46 new_ltEs24(vxw30, vxw31, ty_Bool) -> new_ltEs5(vxw30, vxw31) 28.26/13.46 new_esEs10(vxw30, vxw400, ty_Char) -> new_esEs12(vxw30, vxw400) 28.26/13.46 new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False 28.26/13.46 new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False 28.26/13.46 new_compare30(vxw30, vxw400, ty_Double) -> new_compare9(vxw30, vxw400) 28.26/13.46 new_esEs33(vxw49, vxw52, ty_Ordering) -> new_esEs13(vxw49, vxw52) 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, ty_Char) -> new_esEs12(vxw300, vxw4000) 28.26/13.46 new_lt23(vxw48, vxw51, app(ty_Maybe, efg)) -> new_lt4(vxw48, vxw51, efg) 28.26/13.46 new_lt23(vxw48, vxw51, app(app(ty_@2, eeg), eeh)) -> new_lt10(vxw48, vxw51, eeg, eeh) 28.26/13.46 new_esEs29(vxw302, vxw4002, app(app(ty_@2, dbe), dbf)) -> new_esEs19(vxw302, vxw4002, dbe, dbf) 28.26/13.46 new_esEs30(vxw301, vxw4001, ty_Char) -> new_esEs12(vxw301, vxw4001) 28.26/13.46 new_esEs16(vxw73, vxw75, app(ty_Ratio, cf)) -> new_esEs22(vxw73, vxw75, cf) 28.26/13.46 new_esEs38(vxw300, vxw4000, app(ty_Maybe, ffd)) -> new_esEs24(vxw300, vxw4000, ffd) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), ty_Char) -> new_ltEs15(vxw300, vxw310) 28.26/13.46 new_esEs11(vxw30, vxw400, ty_Int) -> new_esEs15(vxw30, vxw400) 28.26/13.46 new_lt5(vxw73, vxw75, ty_Char) -> new_lt16(vxw73, vxw75) 28.26/13.46 new_esEs38(vxw300, vxw4000, ty_Ordering) -> new_esEs13(vxw300, vxw4000) 28.26/13.46 new_lt5(vxw73, vxw75, app(app(ty_@2, bg), bh)) -> new_lt10(vxw73, vxw75, bg, bh) 28.26/13.46 new_esEs4(vxw31, vxw401, ty_Char) -> new_esEs12(vxw31, vxw401) 28.26/13.46 new_primCmpNat0(Zero, Zero) -> EQ 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), app(ty_Maybe, egh)) -> new_esEs24(vxw300, vxw4000, egh) 28.26/13.46 new_ltEs24(vxw30, vxw31, ty_Float) -> new_ltEs13(vxw30, vxw31) 28.26/13.46 new_lt22(vxw49, vxw52, ty_Integer) -> new_lt15(vxw49, vxw52) 28.26/13.46 new_esEs6(vxw30, vxw400, ty_@0) -> new_esEs25(vxw30, vxw400) 28.26/13.46 new_esEs8(vxw32, vxw402, app(app(ty_@2, fac), fad)) -> new_esEs19(vxw32, vxw402, fac, fad) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), app(ty_Maybe, ccd), cbc) -> new_ltEs16(vxw300, vxw310, ccd) 28.26/13.46 new_esEs27(vxw301, vxw311, ty_Bool) -> new_esEs17(vxw301, vxw311) 28.26/13.46 new_compare26(vxw37, vxw38, False, bef, beg) -> new_compare12(vxw37, vxw38, new_ltEs21(vxw37, vxw38, beg), bef, beg) 28.26/13.46 new_esEs32(vxw300, vxw310, ty_@0) -> new_esEs25(vxw300, vxw310) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), ty_Integer, cbc) -> new_ltEs14(vxw300, vxw310) 28.26/13.46 new_compare27(vxw59, vxw60, False, bdc) -> new_compare10(vxw59, vxw60, new_ltEs20(vxw59, vxw60, bdc), bdc) 28.26/13.46 new_ltEs24(vxw30, vxw31, ty_Ordering) -> new_ltEs7(vxw30, vxw31) 28.26/13.46 new_compare27(vxw59, vxw60, True, bdc) -> EQ 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), ty_Int, bge) -> new_esEs15(vxw300, vxw4000) 28.26/13.46 new_lt21(vxw300, vxw310, ty_Char) -> new_lt16(vxw300, vxw310) 28.26/13.46 new_compare9(Double(vxw30, Neg(vxw310)), Double(vxw400, Neg(vxw4010))) -> new_compare13(new_sr(vxw30, Neg(vxw4010)), new_sr(Neg(vxw310), vxw400)) 28.26/13.46 new_lt23(vxw48, vxw51, app(app(app(ty_@3, efc), efd), efe)) -> new_lt12(vxw48, vxw51, efc, efd, efe) 28.26/13.46 new_compare15(:%(vxw30, vxw31), :%(vxw400, vxw401), ty_Integer) -> new_compare17(new_sr0(vxw30, vxw401), new_sr0(vxw400, vxw31)) 28.26/13.46 new_ltEs19(vxw302, vxw312, ty_Int) -> new_ltEs6(vxw302, vxw312) 28.26/13.46 new_lt22(vxw49, vxw52, app(ty_[], edd)) -> new_lt18(vxw49, vxw52, edd) 28.26/13.46 new_ltEs11(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), ec, ed, ee) -> new_pePe(new_lt19(vxw300, vxw310, ec), new_asAs(new_esEs28(vxw300, vxw310, ec), new_pePe(new_lt20(vxw301, vxw311, ed), new_asAs(new_esEs27(vxw301, vxw311, ed), new_ltEs19(vxw302, vxw312, ee))))) 28.26/13.46 new_esEs39(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) 28.26/13.46 new_ltEs19(vxw302, vxw312, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs11(vxw302, vxw312, hg, hh, baa) 28.26/13.46 new_ltEs23(vxw50, vxw53, ty_Double) -> new_ltEs8(vxw50, vxw53) 28.26/13.46 new_ltEs23(vxw50, vxw53, app(app(ty_@2, ede), edf)) -> new_ltEs9(vxw50, vxw53, ede, edf) 28.26/13.46 new_esEs33(vxw49, vxw52, app(ty_Ratio, edb)) -> new_esEs22(vxw49, vxw52, edb) 28.26/13.46 new_ltEs19(vxw302, vxw312, ty_Float) -> new_ltEs13(vxw302, vxw312) 28.26/13.46 new_ltEs4(vxw74, vxw76, app(app(ty_Either, dc), dd)) -> new_ltEs10(vxw74, vxw76, dc, dd) 28.26/13.46 new_ltEs21(vxw37, vxw38, ty_Int) -> new_ltEs6(vxw37, vxw38) 28.26/13.46 new_compare30(vxw30, vxw400, app(ty_Ratio, che)) -> new_compare15(vxw30, vxw400, che) 28.26/13.46 new_esEs29(vxw302, vxw4002, ty_Double) -> new_esEs18(vxw302, vxw4002) 28.26/13.46 new_esEs33(vxw49, vxw52, ty_Int) -> new_esEs15(vxw49, vxw52) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), app(app(ty_@2, bgh), bha), bge) -> new_esEs19(vxw300, vxw4000, bgh, bha) 28.26/13.46 new_esEs31(vxw300, vxw4000, app(app(ty_Either, deg), deh)) -> new_esEs20(vxw300, vxw4000, deg, deh) 28.26/13.46 new_compare16(LT, GT) -> LT 28.26/13.46 new_compare110(vxw96, vxw97, True, egc, egd) -> LT 28.26/13.46 new_esEs23(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) 28.26/13.46 new_ltEs22(vxw301, vxw311, ty_Char) -> new_ltEs15(vxw301, vxw311) 28.26/13.46 new_ltEs24(vxw30, vxw31, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs11(vxw30, vxw31, ec, ed, ee) 28.26/13.46 new_esEs28(vxw300, vxw310, ty_Ordering) -> new_esEs13(vxw300, vxw310) 28.26/13.46 new_esEs32(vxw300, vxw310, ty_Bool) -> new_esEs17(vxw300, vxw310) 28.26/13.46 new_esEs31(vxw300, vxw4000, app(app(ty_@2, dea), deb)) -> new_esEs19(vxw300, vxw4000, dea, deb) 28.26/13.46 new_compare32(Char(vxw30), Char(vxw400)) -> new_primCmpNat0(vxw30, vxw400) 28.26/13.46 new_esEs4(vxw31, vxw401, ty_Integer) -> new_esEs23(vxw31, vxw401) 28.26/13.46 new_compare14(@3(vxw30, vxw31, vxw32), @3(vxw400, vxw401, vxw402), dfb, dfc, dfd) -> new_compare210(vxw30, vxw31, vxw32, vxw400, vxw401, vxw402, new_asAs(new_esEs10(vxw30, vxw400, dfb), new_asAs(new_esEs9(vxw31, vxw401, dfc), new_esEs8(vxw32, vxw402, dfd))), dfb, dfc, dfd) 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs12(vxw300, vxw4000) 28.26/13.46 new_esEs28(vxw300, vxw310, ty_Char) -> new_esEs12(vxw300, vxw310) 28.26/13.46 new_esEs34(vxw48, vxw51, app(ty_[], efh)) -> new_esEs26(vxw48, vxw51, efh) 28.26/13.46 new_ltEs21(vxw37, vxw38, ty_Integer) -> new_ltEs14(vxw37, vxw38) 28.26/13.46 new_primCmpNat0(Succ(vxw300), Zero) -> GT 28.26/13.46 new_lt20(vxw301, vxw311, app(app(ty_Either, gc), gd)) -> new_lt11(vxw301, vxw311, gc, gd) 28.26/13.46 new_lt20(vxw301, vxw311, app(app(app(ty_@3, ge), gf), gg)) -> new_lt12(vxw301, vxw311, ge, gf, gg) 28.26/13.46 new_pePe(False, vxw152) -> vxw152 28.26/13.46 new_esEs6(vxw30, vxw400, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs21(vxw30, vxw400, bbc, bbd, bbe) 28.26/13.46 new_ltEs9(@2(vxw300, vxw301), @2(vxw310, vxw311), dfg, dfh) -> new_pePe(new_lt21(vxw300, vxw310, dfg), new_asAs(new_esEs32(vxw300, vxw310, dfg), new_ltEs22(vxw301, vxw311, dfh))) 28.26/13.46 new_esEs11(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) 28.26/13.46 new_compare25(vxw30, vxw31, True, ege, egf) -> EQ 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, ty_Integer) -> new_esEs23(vxw300, vxw4000) 28.26/13.46 new_esEs34(vxw48, vxw51, ty_Float) -> new_esEs14(vxw48, vxw51) 28.26/13.46 new_lt21(vxw300, vxw310, ty_Double) -> new_lt9(vxw300, vxw310) 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, app(ty_Ratio, caa)) -> new_esEs22(vxw300, vxw4000, caa) 28.26/13.46 new_esEs16(vxw73, vxw75, ty_Ordering) -> new_esEs13(vxw73, vxw75) 28.26/13.46 new_ltEs24(vxw30, vxw31, ty_Int) -> new_ltEs6(vxw30, vxw31) 28.26/13.46 new_compare10(vxw113, vxw114, False, bd) -> GT 28.26/13.46 new_compare30(vxw30, vxw400, app(app(ty_@2, cgf), cgg)) -> new_compare29(vxw30, vxw400, cgf, cgg) 28.26/13.46 new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False 28.26/13.46 new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False 28.26/13.46 new_esEs29(vxw302, vxw4002, app(app(ty_Either, dcc), dcd)) -> new_esEs20(vxw302, vxw4002, dcc, dcd) 28.26/13.46 new_compare16(EQ, EQ) -> EQ 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, app(app(ty_Either, cba), cbb)) -> new_esEs20(vxw300, vxw4000, cba, cbb) 28.26/13.46 new_compare5([], :(vxw400, vxw401), cge) -> LT 28.26/13.46 new_esEs10(vxw30, vxw400, ty_Integer) -> new_esEs23(vxw30, vxw400) 28.26/13.46 new_ltEs21(vxw37, vxw38, ty_Float) -> new_ltEs13(vxw37, vxw38) 28.26/13.46 new_esEs31(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) 28.26/13.46 new_compare33(vxw3, vxw40, ty_Integer) -> new_compare17(vxw3, vxw40) 28.26/13.46 new_lt22(vxw49, vxw52, app(app(ty_Either, ece), ecf)) -> new_lt11(vxw49, vxw52, ece, ecf) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, app(app(ty_Either, cda), cdb)) -> new_ltEs10(vxw300, vxw310, cda, cdb) 28.26/13.46 new_esEs4(vxw31, vxw401, ty_Bool) -> new_esEs17(vxw31, vxw401) 28.26/13.46 new_lt5(vxw73, vxw75, app(app(app(ty_@3, cc), cd), ce)) -> new_lt12(vxw73, vxw75, cc, cd, ce) 28.26/13.46 new_esEs30(vxw301, vxw4001, ty_Integer) -> new_esEs23(vxw301, vxw4001) 28.26/13.46 new_esEs33(vxw49, vxw52, app(ty_Maybe, edc)) -> new_esEs24(vxw49, vxw52, edc) 28.26/13.46 new_ltEs22(vxw301, vxw311, app(ty_Maybe, eac)) -> new_ltEs16(vxw301, vxw311, eac) 28.26/13.46 new_primCompAux1(vxw30, vxw400, vxw14, cge) -> new_primCompAux0(vxw14, new_compare30(vxw30, vxw400, cge)) 28.26/13.46 new_esEs11(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) 28.26/13.46 new_esEs11(vxw30, vxw400, app(ty_Ratio, eae)) -> new_esEs22(vxw30, vxw400, eae) 28.26/13.46 new_esEs27(vxw301, vxw311, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs21(vxw301, vxw311, ge, gf, gg) 28.26/13.46 new_esEs10(vxw30, vxw400, app(ty_Maybe, fcf)) -> new_esEs24(vxw30, vxw400, fcf) 28.26/13.46 new_ltEs4(vxw74, vxw76, ty_Double) -> new_ltEs8(vxw74, vxw76) 28.26/13.46 new_compare33(vxw3, vxw40, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_compare14(vxw3, vxw40, dfb, dfc, dfd) 28.26/13.46 new_compare8(Left(vxw30), Right(vxw400), bae, baf) -> LT 28.26/13.46 new_ltEs19(vxw302, vxw312, app(ty_[], bad)) -> new_ltEs18(vxw302, vxw312, bad) 28.26/13.46 new_esEs34(vxw48, vxw51, ty_Double) -> new_esEs18(vxw48, vxw51) 28.26/13.46 new_ltEs21(vxw37, vxw38, app(ty_Ratio, bfg)) -> new_ltEs12(vxw37, vxw38, bfg) 28.26/13.46 new_esEs38(vxw300, vxw4000, ty_Char) -> new_esEs12(vxw300, vxw4000) 28.26/13.46 new_esEs9(vxw31, vxw401, app(ty_[], fcb)) -> new_esEs26(vxw31, vxw401, fcb) 28.26/13.46 new_esEs30(vxw301, vxw4001, app(ty_Maybe, dcf)) -> new_esEs24(vxw301, vxw4001, dcf) 28.26/13.46 new_lt23(vxw48, vxw51, ty_Char) -> new_lt16(vxw48, vxw51) 28.26/13.46 new_fsEs(vxw147) -> new_not(new_esEs13(vxw147, GT)) 28.26/13.46 new_ltEs5(True, False) -> False 28.26/13.46 new_compare30(vxw30, vxw400, ty_@0) -> new_compare28(vxw30, vxw400) 28.26/13.46 new_esEs36(vxw300, vxw4000, ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.46 new_esEs11(vxw30, vxw400, app(app(ty_@2, eag), eah)) -> new_esEs19(vxw30, vxw400, eag, eah) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), app(ty_[], bhe), bge) -> new_esEs26(vxw300, vxw4000, bhe) 28.26/13.46 new_ltEs22(vxw301, vxw311, ty_@0) -> new_ltEs17(vxw301, vxw311) 28.26/13.46 new_ltEs19(vxw302, vxw312, ty_Integer) -> new_ltEs14(vxw302, vxw312) 28.26/13.46 new_ltEs4(vxw74, vxw76, ty_Integer) -> new_ltEs14(vxw74, vxw76) 28.26/13.46 new_esEs32(vxw300, vxw310, ty_Integer) -> new_esEs23(vxw300, vxw310) 28.26/13.46 new_esEs39(vxw300, vxw4000, app(app(ty_Either, fhe), fhf)) -> new_esEs20(vxw300, vxw4000, fhe, fhf) 28.26/13.46 new_esEs6(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 28.26/13.46 new_ltEs20(vxw59, vxw60, ty_Double) -> new_ltEs8(vxw59, vxw60) 28.26/13.46 new_ltEs20(vxw59, vxw60, app(ty_Maybe, bed)) -> new_ltEs16(vxw59, vxw60, bed) 28.26/13.46 new_lt19(vxw300, vxw310, ty_Double) -> new_lt9(vxw300, vxw310) 28.26/13.46 new_esEs10(vxw30, vxw400, ty_@0) -> new_esEs25(vxw30, vxw400) 28.26/13.46 new_esEs16(vxw73, vxw75, app(app(ty_Either, ca), cb)) -> new_esEs20(vxw73, vxw75, ca, cb) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), app(ty_Maybe, bgg), bge) -> new_esEs24(vxw300, vxw4000, bgg) 28.26/13.46 new_esEs6(vxw30, vxw400, ty_Integer) -> new_esEs23(vxw30, vxw400) 28.26/13.46 new_lt22(vxw49, vxw52, ty_Int) -> new_lt7(vxw49, vxw52) 28.26/13.46 new_compare33(vxw3, vxw40, ty_Ordering) -> new_compare16(vxw3, vxw40) 28.26/13.46 new_esEs31(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) 28.26/13.46 new_compare31(True, True) -> EQ 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), ty_Ordering, bge) -> new_esEs13(vxw300, vxw4000) 28.26/13.46 new_esEs29(vxw302, vxw4002, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs21(vxw302, vxw4002, dbg, dbh, dca) 28.26/13.46 new_lt21(vxw300, vxw310, app(app(ty_@2, dga), dgb)) -> new_lt10(vxw300, vxw310, dga, dgb) 28.26/13.46 new_esEs39(vxw300, vxw4000, app(app(app(ty_@3, fha), fhb), fhc)) -> new_esEs21(vxw300, vxw4000, fha, fhb, fhc) 28.26/13.46 new_ltEs23(vxw50, vxw53, app(ty_Ratio, eed)) -> new_ltEs12(vxw50, vxw53, eed) 28.26/13.46 new_esEs7(vxw30, vxw400, ty_Integer) -> new_esEs23(vxw30, vxw400) 28.26/13.46 new_ltEs21(vxw37, vxw38, app(ty_[], bga)) -> new_ltEs18(vxw37, vxw38, bga) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), app(ty_Maybe, dba)) -> new_ltEs16(vxw300, vxw310, dba) 28.26/13.46 new_compare7(Float(vxw30, Neg(vxw310)), Float(vxw400, Neg(vxw4010))) -> new_compare13(new_sr(vxw30, Neg(vxw4010)), new_sr(Neg(vxw310), vxw400)) 28.26/13.46 new_primMulInt(Neg(vxw300), Neg(vxw4010)) -> Pos(new_primMulNat0(vxw300, vxw4010)) 28.26/13.46 new_primCmpInt(Pos(Zero), Pos(Succ(vxw4000))) -> new_primCmpNat0(Zero, Succ(vxw4000)) 28.26/13.46 new_esEs37(vxw301, vxw4001, ty_Char) -> new_esEs12(vxw301, vxw4001) 28.26/13.46 new_esEs34(vxw48, vxw51, ty_@0) -> new_esEs25(vxw48, vxw51) 28.26/13.46 new_esEs28(vxw300, vxw310, app(app(ty_Either, eh), fa)) -> new_esEs20(vxw300, vxw310, eh, fa) 28.26/13.46 new_esEs9(vxw31, vxw401, ty_@0) -> new_esEs25(vxw31, vxw401) 28.26/13.46 new_esEs8(vxw32, vxw402, ty_Double) -> new_esEs18(vxw32, vxw402) 28.26/13.46 new_esEs34(vxw48, vxw51, app(app(ty_@2, eeg), eeh)) -> new_esEs19(vxw48, vxw51, eeg, eeh) 28.26/13.46 new_esEs32(vxw300, vxw310, app(ty_[], dhb)) -> new_esEs26(vxw300, vxw310, dhb) 28.26/13.46 new_ltEs21(vxw37, vxw38, app(app(ty_@2, beh), bfa)) -> new_ltEs9(vxw37, vxw38, beh, bfa) 28.26/13.46 new_esEs7(vxw30, vxw400, app(ty_Maybe, bcb)) -> new_esEs24(vxw30, vxw400, bcb) 28.26/13.46 new_esEs7(vxw30, vxw400, app(app(ty_Either, bda), bdb)) -> new_esEs20(vxw30, vxw400, bda, bdb) 28.26/13.46 new_ltEs7(LT, LT) -> True 28.26/13.46 new_lt16(vxw73, vxw75) -> new_esEs13(new_compare32(vxw73, vxw75), LT) 28.26/13.46 new_ltEs4(vxw74, vxw76, ty_Bool) -> new_ltEs5(vxw74, vxw76) 28.26/13.46 new_primMulInt(Pos(vxw300), Neg(vxw4010)) -> Neg(new_primMulNat0(vxw300, vxw4010)) 28.26/13.46 new_primMulInt(Neg(vxw300), Pos(vxw4010)) -> Neg(new_primMulNat0(vxw300, vxw4010)) 28.26/13.46 new_esEs10(vxw30, vxw400, app(ty_[], fdd)) -> new_esEs26(vxw30, vxw400, fdd) 28.26/13.46 new_ltEs23(vxw50, vxw53, ty_Int) -> new_ltEs6(vxw50, vxw53) 28.26/13.46 new_lt5(vxw73, vxw75, ty_Double) -> new_lt9(vxw73, vxw75) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, ty_Double) -> new_ltEs8(vxw300, vxw310) 28.26/13.46 new_compare25(vxw30, vxw31, False, ege, egf) -> new_compare110(vxw30, vxw31, new_ltEs24(vxw30, vxw31, ege), ege, egf) 28.26/13.46 new_esEs16(vxw73, vxw75, app(app(ty_@2, bg), bh)) -> new_esEs19(vxw73, vxw75, bg, bh) 28.26/13.46 new_compare18(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, False, vxw145, bgb, bgc, bgd) -> new_compare19(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, vxw145, bgb, bgc, bgd) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), app(app(ty_Either, cbf), cbg), cbc) -> new_ltEs10(vxw300, vxw310, cbf, cbg) 28.26/13.46 new_esEs28(vxw300, vxw310, ty_Integer) -> new_esEs23(vxw300, vxw310) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), app(app(ty_Either, bhf), bhg), bge) -> new_esEs20(vxw300, vxw4000, bhf, bhg) 28.26/13.46 new_esEs37(vxw301, vxw4001, ty_Double) -> new_esEs18(vxw301, vxw4001) 28.26/13.46 new_compare33(vxw3, vxw40, app(app(ty_@2, cea), ceb)) -> new_compare29(vxw3, vxw40, cea, ceb) 28.26/13.46 new_ltEs22(vxw301, vxw311, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_ltEs11(vxw301, vxw311, dhg, dhh, eaa) 28.26/13.46 new_sr0(Integer(vxw300), Integer(vxw4010)) -> Integer(new_primMulInt(vxw300, vxw4010)) 28.26/13.46 new_ltEs20(vxw59, vxw60, ty_Integer) -> new_ltEs14(vxw59, vxw60) 28.26/13.46 new_esEs5(vxw30, vxw400, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs21(vxw30, vxw400, cga, cgb, cgc) 28.26/13.46 new_ltEs4(vxw74, vxw76, ty_Ordering) -> new_ltEs7(vxw74, vxw76) 28.26/13.46 new_esEs9(vxw31, vxw401, app(ty_Maybe, fbd)) -> new_esEs24(vxw31, vxw401, fbd) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), ty_Char, bge) -> new_esEs12(vxw300, vxw4000) 28.26/13.46 new_lt19(vxw300, vxw310, app(app(ty_@2, ef), eg)) -> new_lt10(vxw300, vxw310, ef, eg) 28.26/13.46 new_ltEs20(vxw59, vxw60, ty_Char) -> new_ltEs15(vxw59, vxw60) 28.26/13.46 new_esEs30(vxw301, vxw4001, ty_@0) -> new_esEs25(vxw301, vxw4001) 28.26/13.46 new_esEs6(vxw30, vxw400, ty_Char) -> new_esEs12(vxw30, vxw400) 28.26/13.46 new_ltEs10(Left(vxw300), Right(vxw310), ccf, cbc) -> True 28.26/13.46 new_esEs9(vxw31, vxw401, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs21(vxw31, vxw401, fbg, fbh, fca) 28.26/13.46 new_ltEs15(vxw30, vxw31) -> new_fsEs(new_compare32(vxw30, vxw31)) 28.26/13.46 new_compare9(Double(vxw30, Pos(vxw310)), Double(vxw400, Neg(vxw4010))) -> new_compare13(new_sr(vxw30, Pos(vxw4010)), new_sr(Neg(vxw310), vxw400)) 28.26/13.46 new_compare9(Double(vxw30, Neg(vxw310)), Double(vxw400, Pos(vxw4010))) -> new_compare13(new_sr(vxw30, Neg(vxw4010)), new_sr(Pos(vxw310), vxw400)) 28.26/13.46 new_asAs(True, vxw91) -> vxw91 28.26/13.46 new_esEs7(vxw30, vxw400, ty_Int) -> new_esEs15(vxw30, vxw400) 28.26/13.46 new_esEs5(vxw30, vxw400, app(app(ty_@2, cfg), cfh)) -> new_esEs19(vxw30, vxw400, cfg, cfh) 28.26/13.46 new_lt20(vxw301, vxw311, app(app(ty_@2, ga), gb)) -> new_lt10(vxw301, vxw311, ga, gb) 28.26/13.46 new_esEs8(vxw32, vxw402, ty_Ordering) -> new_esEs13(vxw32, vxw402) 28.26/13.46 new_esEs39(vxw300, vxw4000, ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.46 new_ltEs20(vxw59, vxw60, app(app(ty_@2, bdd), bde)) -> new_ltEs9(vxw59, vxw60, bdd, bde) 28.26/13.46 new_esEs16(vxw73, vxw75, ty_Double) -> new_esEs18(vxw73, vxw75) 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), app(ty_Ratio, egg)) -> new_esEs22(vxw300, vxw4000, egg) 28.26/13.46 new_esEs4(vxw31, vxw401, app(ty_[], cfb)) -> new_esEs26(vxw31, vxw401, cfb) 28.26/13.46 new_ltEs20(vxw59, vxw60, app(app(ty_Either, bdf), bdg)) -> new_ltEs10(vxw59, vxw60, bdf, bdg) 28.26/13.46 new_esEs39(vxw300, vxw4000, app(ty_Ratio, fge)) -> new_esEs22(vxw300, vxw4000, fge) 28.26/13.46 new_esEs27(vxw301, vxw311, ty_Float) -> new_esEs14(vxw301, vxw311) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), ty_Float) -> new_ltEs13(vxw300, vxw310) 28.26/13.46 new_esEs29(vxw302, vxw4002, ty_@0) -> new_esEs25(vxw302, vxw4002) 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.46 new_lt21(vxw300, vxw310, app(ty_[], dhb)) -> new_lt18(vxw300, vxw310, dhb) 28.26/13.46 new_ltEs19(vxw302, vxw312, app(app(ty_@2, hc), hd)) -> new_ltEs9(vxw302, vxw312, hc, hd) 28.26/13.46 new_compare33(vxw3, vxw40, ty_Double) -> new_compare9(vxw3, vxw40) 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs21(vxw300, vxw4000, cae, caf, cag) 28.26/13.46 new_compare30(vxw30, vxw400, app(ty_[], chg)) -> new_compare5(vxw30, vxw400, chg) 28.26/13.46 new_sr(vxw30, vxw401) -> new_primMulInt(vxw30, vxw401) 28.26/13.46 new_esEs7(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 28.26/13.46 new_primMulNat0(Zero, Zero) -> Zero 28.26/13.46 new_esEs39(vxw300, vxw4000, app(ty_[], fhd)) -> new_esEs26(vxw300, vxw4000, fhd) 28.26/13.46 new_esEs16(vxw73, vxw75, ty_Char) -> new_esEs12(vxw73, vxw75) 28.26/13.46 new_esEs7(vxw30, vxw400, app(ty_Ratio, bca)) -> new_esEs22(vxw30, vxw400, bca) 28.26/13.46 new_ltEs22(vxw301, vxw311, ty_Bool) -> new_ltEs5(vxw301, vxw311) 28.26/13.46 new_compare30(vxw30, vxw400, ty_Int) -> new_compare13(vxw30, vxw400) 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), app(ty_[], ehf)) -> new_esEs26(vxw300, vxw4000, ehf) 28.26/13.46 new_esEs5(vxw30, vxw400, ty_Char) -> new_esEs12(vxw30, vxw400) 28.26/13.46 new_esEs26(:(vxw300, vxw301), :(vxw4000, vxw4001), cgd) -> new_asAs(new_esEs39(vxw300, vxw4000, cgd), new_esEs26(vxw301, vxw4001, cgd)) 28.26/13.46 new_esEs9(vxw31, vxw401, ty_Ordering) -> new_esEs13(vxw31, vxw401) 28.26/13.46 new_esEs6(vxw30, vxw400, app(app(ty_@2, bba), bbb)) -> new_esEs19(vxw30, vxw400, bba, bbb) 28.26/13.46 new_esEs6(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) 28.26/13.46 new_lt23(vxw48, vxw51, app(app(ty_Either, efa), efb)) -> new_lt11(vxw48, vxw51, efa, efb) 28.26/13.46 new_lt20(vxw301, vxw311, app(ty_Ratio, gh)) -> new_lt13(vxw301, vxw311, gh) 28.26/13.46 new_ltEs4(vxw74, vxw76, app(app(app(ty_@3, de), df), dg)) -> new_ltEs11(vxw74, vxw76, de, df, dg) 28.26/13.46 new_ltEs16(Just(vxw300), Just(vxw310), ty_@0) -> new_ltEs17(vxw300, vxw310) 28.26/13.46 new_esEs37(vxw301, vxw4001, app(app(ty_@2, fec), fed)) -> new_esEs19(vxw301, vxw4001, fec, fed) 28.26/13.46 new_primCompAux0(vxw65, EQ) -> vxw65 28.26/13.46 new_compare18(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, vxw145, bgb, bgc, bgd) -> new_compare19(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, bgb, bgc, bgd) 28.26/13.46 new_compare16(EQ, GT) -> LT 28.26/13.46 new_ltEs18(vxw30, vxw31, dfa) -> new_fsEs(new_compare5(vxw30, vxw31, dfa)) 28.26/13.46 new_lt19(vxw300, vxw310, app(ty_Ratio, ff)) -> new_lt13(vxw300, vxw310, ff) 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, ty_Bool) -> new_esEs17(vxw300, vxw4000) 28.26/13.46 new_ltEs20(vxw59, vxw60, app(ty_Ratio, bec)) -> new_ltEs12(vxw59, vxw60, bec) 28.26/13.46 new_esEs5(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) 28.26/13.46 new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False 28.26/13.46 new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False 28.26/13.46 new_ltEs4(vxw74, vxw76, app(ty_[], eb)) -> new_ltEs18(vxw74, vxw76, eb) 28.26/13.46 new_esEs39(vxw300, vxw4000, ty_Ordering) -> new_esEs13(vxw300, vxw4000) 28.26/13.46 new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 28.26/13.46 new_ltEs17(vxw30, vxw31) -> new_fsEs(new_compare28(vxw30, vxw31)) 28.26/13.46 new_lt7(vxw73, vxw75) -> new_esEs13(new_compare13(vxw73, vxw75), LT) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bhb), bhc), bhd), bge) -> new_esEs21(vxw300, vxw4000, bhb, bhc, bhd) 28.26/13.46 new_esEs8(vxw32, vxw402, ty_Int) -> new_esEs15(vxw32, vxw402) 28.26/13.46 new_lt12(vxw73, vxw75, cc, cd, ce) -> new_esEs13(new_compare14(vxw73, vxw75, cc, cd, ce), LT) 28.26/13.46 new_esEs8(vxw32, vxw402, ty_Bool) -> new_esEs17(vxw32, vxw402) 28.26/13.46 new_esEs31(vxw300, vxw4000, ty_@0) -> new_esEs25(vxw300, vxw4000) 28.26/13.46 new_esEs4(vxw31, vxw401, ty_Ordering) -> new_esEs13(vxw31, vxw401) 28.26/13.46 new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False 28.26/13.46 new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.46 new_primCmpInt(Neg(Zero), Neg(Succ(vxw4000))) -> new_primCmpNat0(Succ(vxw4000), Zero) 28.26/13.46 new_esEs8(vxw32, vxw402, app(ty_Ratio, faa)) -> new_esEs22(vxw32, vxw402, faa) 28.26/13.46 new_esEs38(vxw300, vxw4000, ty_Int) -> new_esEs15(vxw300, vxw4000) 28.26/13.46 new_esEs13(LT, GT) -> False 28.26/13.46 new_esEs13(GT, LT) -> False 28.26/13.46 new_ltEs23(vxw50, vxw53, app(ty_Maybe, eee)) -> new_ltEs16(vxw50, vxw53, eee) 28.26/13.46 new_ltEs19(vxw302, vxw312, app(ty_Ratio, bab)) -> new_ltEs12(vxw302, vxw312, bab) 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs13(vxw300, vxw4000) 28.26/13.46 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 28.26/13.46 new_lt22(vxw49, vxw52, ty_Double) -> new_lt9(vxw49, vxw52) 28.26/13.46 new_ltEs24(vxw30, vxw31, app(app(ty_Either, ccf), cbc)) -> new_ltEs10(vxw30, vxw31, ccf, cbc) 28.26/13.46 new_esEs28(vxw300, vxw310, ty_Float) -> new_esEs14(vxw300, vxw310) 28.26/13.46 new_ltEs23(vxw50, vxw53, app(app(app(ty_@3, eea), eeb), eec)) -> new_ltEs11(vxw50, vxw53, eea, eeb, eec) 28.26/13.46 new_ltEs19(vxw302, vxw312, ty_Bool) -> new_ltEs5(vxw302, vxw312) 28.26/13.46 new_esEs38(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) 28.26/13.46 new_esEs5(vxw30, vxw400, ty_Ordering) -> new_esEs13(vxw30, vxw400) 28.26/13.46 new_ltEs4(vxw74, vxw76, app(app(ty_@2, da), db)) -> new_ltEs9(vxw74, vxw76, da, db) 28.26/13.46 new_compare8(Right(vxw30), Right(vxw400), bae, baf) -> new_compare26(vxw30, vxw400, new_esEs7(vxw30, vxw400, baf), bae, baf) 28.26/13.46 new_compare19(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, bgb, bgc, bgd) -> LT 28.26/13.46 new_esEs25(@0, @0) -> True 28.26/13.46 new_esEs27(vxw301, vxw311, app(ty_Maybe, ha)) -> new_esEs24(vxw301, vxw311, ha) 28.26/13.46 new_ltEs23(vxw50, vxw53, app(app(ty_Either, edg), edh)) -> new_ltEs10(vxw50, vxw53, edg, edh) 28.26/13.46 new_ltEs24(vxw30, vxw31, app(ty_Maybe, chh)) -> new_ltEs16(vxw30, vxw31, chh) 28.26/13.46 new_esEs38(vxw300, vxw4000, app(ty_Ratio, ffc)) -> new_esEs22(vxw300, vxw4000, ffc) 28.26/13.46 new_ltEs7(EQ, GT) -> True 28.26/13.46 new_not(False) -> True 28.26/13.46 new_esEs8(vxw32, vxw402, app(app(app(ty_@3, fae), faf), fag)) -> new_esEs21(vxw32, vxw402, fae, faf, fag) 28.26/13.46 new_esEs6(vxw30, vxw400, ty_Int) -> new_esEs15(vxw30, vxw400) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), ty_@0, cbc) -> new_ltEs17(vxw300, vxw310) 28.26/13.46 new_esEs9(vxw31, vxw401, ty_Char) -> new_esEs12(vxw31, vxw401) 28.26/13.46 new_esEs27(vxw301, vxw311, ty_Integer) -> new_esEs23(vxw301, vxw311) 28.26/13.46 new_ltEs7(EQ, EQ) -> True 28.26/13.46 new_ltEs19(vxw302, vxw312, ty_Ordering) -> new_ltEs7(vxw302, vxw312) 28.26/13.46 new_compare33(vxw3, vxw40, ty_Int) -> new_compare13(vxw3, vxw40) 28.26/13.46 new_ltEs7(GT, EQ) -> False 28.26/13.46 new_esEs4(vxw31, vxw401, app(ty_Ratio, cec)) -> new_esEs22(vxw31, vxw401, cec) 28.26/13.46 new_esEs9(vxw31, vxw401, ty_Bool) -> new_esEs17(vxw31, vxw401) 28.26/13.46 new_ltEs23(vxw50, vxw53, ty_Integer) -> new_ltEs14(vxw50, vxw53) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, app(ty_Ratio, cdf)) -> new_ltEs12(vxw300, vxw310, cdf) 28.26/13.46 new_ltEs19(vxw302, vxw312, app(app(ty_Either, he), hf)) -> new_ltEs10(vxw302, vxw312, he, hf) 28.26/13.46 new_lt23(vxw48, vxw51, ty_Double) -> new_lt9(vxw48, vxw51) 28.26/13.46 new_ltEs20(vxw59, vxw60, ty_Ordering) -> new_ltEs7(vxw59, vxw60) 28.26/13.46 new_compare11(vxw123, vxw124, vxw125, vxw126, True, vxw128, fdg, fdh) -> new_compare111(vxw123, vxw124, vxw125, vxw126, True, fdg, fdh) 28.26/13.46 new_lt23(vxw48, vxw51, app(ty_Ratio, eff)) -> new_lt13(vxw48, vxw51, eff) 28.26/13.46 new_esEs8(vxw32, vxw402, app(app(ty_Either, fba), fbb)) -> new_esEs20(vxw32, vxw402, fba, fbb) 28.26/13.46 new_esEs38(vxw300, vxw4000, app(app(ty_@2, ffe), fff)) -> new_esEs19(vxw300, vxw4000, ffe, fff) 28.26/13.46 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 28.26/13.46 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 28.26/13.46 new_ltEs4(vxw74, vxw76, app(ty_Ratio, dh)) -> new_ltEs12(vxw74, vxw76, dh) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, app(app(ty_@2, ccg), cch)) -> new_ltEs9(vxw300, vxw310, ccg, cch) 28.26/13.46 new_lt18(vxw73, vxw75, cg) -> new_esEs13(new_compare5(vxw73, vxw75, cg), LT) 28.26/13.46 new_esEs4(vxw31, vxw401, ty_Int) -> new_esEs15(vxw31, vxw401) 28.26/13.46 new_esEs4(vxw31, vxw401, ty_Double) -> new_esEs18(vxw31, vxw401) 28.26/13.46 new_esEs16(vxw73, vxw75, app(ty_[], cg)) -> new_esEs26(vxw73, vxw75, cg) 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, ty_Ordering) -> new_esEs13(vxw300, vxw4000) 28.26/13.46 new_compare28(@0, @0) -> EQ 28.26/13.46 new_lt4(vxw73, vxw75, bc) -> new_esEs13(new_compare6(vxw73, vxw75, bc), LT) 28.26/13.46 new_ltEs23(vxw50, vxw53, ty_Ordering) -> new_ltEs7(vxw50, vxw53) 28.26/13.46 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 28.26/13.46 new_lt20(vxw301, vxw311, app(ty_[], hb)) -> new_lt18(vxw301, vxw311, hb) 28.26/13.46 new_compare8(Left(vxw30), Left(vxw400), bae, baf) -> new_compare25(vxw30, vxw400, new_esEs6(vxw30, vxw400, bae), bae, baf) 28.26/13.46 new_ltEs22(vxw301, vxw311, ty_Ordering) -> new_ltEs7(vxw301, vxw311) 28.26/13.46 new_esEs20(Left(vxw300), Left(vxw4000), ty_Double, bge) -> new_esEs18(vxw300, vxw4000) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), app(app(ty_@2, cbd), cbe), cbc) -> new_ltEs9(vxw300, vxw310, cbd, cbe) 28.26/13.46 new_lt21(vxw300, vxw310, app(ty_Ratio, dgh)) -> new_lt13(vxw300, vxw310, dgh) 28.26/13.46 new_esEs24(Nothing, Nothing, cff) -> True 28.26/13.46 new_compare33(vxw3, vxw40, app(ty_Ratio, dfe)) -> new_compare15(vxw3, vxw40, dfe) 28.26/13.46 new_ltEs24(vxw30, vxw31, ty_Integer) -> new_ltEs14(vxw30, vxw31) 28.26/13.46 new_esEs37(vxw301, vxw4001, app(ty_[], feh)) -> new_esEs26(vxw301, vxw4001, feh) 28.26/13.46 new_esEs38(vxw300, vxw4000, app(ty_[], fgb)) -> new_esEs26(vxw300, vxw4000, fgb) 28.26/13.46 new_esEs27(vxw301, vxw311, ty_@0) -> new_esEs25(vxw301, vxw311) 28.26/13.46 new_esEs6(vxw30, vxw400, app(ty_Ratio, bag)) -> new_esEs22(vxw30, vxw400, bag) 28.26/13.46 new_ltEs21(vxw37, vxw38, ty_Bool) -> new_ltEs5(vxw37, vxw38) 28.26/13.46 new_ltEs24(vxw30, vxw31, ty_Char) -> new_ltEs15(vxw30, vxw31) 28.26/13.46 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 28.26/13.46 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 28.26/13.46 new_ltEs21(vxw37, vxw38, ty_Ordering) -> new_ltEs7(vxw37, vxw38) 28.26/13.46 new_lt22(vxw49, vxw52, app(ty_Ratio, edb)) -> new_lt13(vxw49, vxw52, edb) 28.26/13.46 new_compare110(vxw96, vxw97, False, egc, egd) -> GT 28.26/13.46 new_ltEs21(vxw37, vxw38, app(app(ty_Either, bfb), bfc)) -> new_ltEs10(vxw37, vxw38, bfb, bfc) 28.26/13.46 new_primEqNat0(Zero, Zero) -> True 28.26/13.46 new_esEs7(vxw30, vxw400, ty_Ordering) -> new_esEs13(vxw30, vxw400) 28.26/13.46 new_ltEs21(vxw37, vxw38, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs11(vxw37, vxw38, bfd, bfe, bff) 28.26/13.46 new_esEs24(Nothing, Just(vxw4000), cff) -> False 28.26/13.46 new_esEs24(Just(vxw300), Nothing, cff) -> False 28.26/13.46 new_esEs28(vxw300, vxw310, ty_@0) -> new_esEs25(vxw300, vxw310) 28.26/13.46 new_lt5(vxw73, vxw75, app(ty_[], cg)) -> new_lt18(vxw73, vxw75, cg) 28.26/13.46 new_ltEs10(Right(vxw300), Right(vxw310), ccf, app(ty_[], cdh)) -> new_ltEs18(vxw300, vxw310, cdh) 28.26/13.46 new_asAs(False, vxw91) -> False 28.26/13.46 new_ltEs4(vxw74, vxw76, ty_Int) -> new_ltEs6(vxw74, vxw76) 28.26/13.46 new_ltEs20(vxw59, vxw60, ty_Bool) -> new_ltEs5(vxw59, vxw60) 28.26/13.46 new_esEs13(LT, EQ) -> False 28.26/13.46 new_esEs13(EQ, LT) -> False 28.26/13.46 new_lt19(vxw300, vxw310, app(ty_[], fh)) -> new_lt18(vxw300, vxw310, fh) 28.26/13.46 new_ltEs10(Left(vxw300), Left(vxw310), ty_Float, cbc) -> new_ltEs13(vxw300, vxw310) 28.26/13.46 new_esEs4(vxw31, vxw401, app(app(ty_@2, cee), cef)) -> new_esEs19(vxw31, vxw401, cee, cef) 28.26/13.46 new_esEs5(vxw30, vxw400, app(ty_Ratio, cfe)) -> new_esEs22(vxw30, vxw400, cfe) 28.26/13.46 new_esEs20(Right(vxw300), Right(vxw4000), bhh, app(ty_Maybe, cab)) -> new_esEs24(vxw300, vxw4000, cab) 28.26/13.46 new_esEs24(Just(vxw300), Just(vxw4000), app(app(ty_@2, eha), ehb)) -> new_esEs19(vxw300, vxw4000, eha, ehb) 28.26/13.46 new_compare16(GT, EQ) -> GT 28.26/13.46 new_esEs7(vxw30, vxw400, ty_Char) -> new_esEs12(vxw30, vxw400) 28.26/13.46 28.26/13.46 The set Q consists of the following terms: 28.26/13.46 28.26/13.46 new_ltEs24(x0, x1, ty_Bool) 28.26/13.46 new_esEs30(x0, x1, ty_Integer) 28.26/13.46 new_compare14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 28.26/13.46 new_esEs31(x0, x1, ty_@0) 28.26/13.46 new_pePe(False, x0) 28.26/13.46 new_esEs20(Left(x0), Right(x1), x2, x3) 28.26/13.46 new_esEs20(Right(x0), Left(x1), x2, x3) 28.26/13.46 new_lt5(x0, x1, ty_@0) 28.26/13.46 new_esEs7(x0, x1, ty_Integer) 28.26/13.46 new_esEs16(x0, x1, ty_Bool) 28.26/13.46 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs31(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), ty_Double, x2) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 28.26/13.46 new_lt23(x0, x1, ty_@0) 28.26/13.46 new_ltEs20(x0, x1, ty_Int) 28.26/13.46 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs31(x0, x1, ty_Bool) 28.26/13.46 new_lt8(x0, x1) 28.26/13.46 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs8(x0, x1, ty_Int) 28.26/13.46 new_primEqInt(Pos(Zero), Pos(Zero)) 28.26/13.46 new_esEs4(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs29(x0, x1, ty_@0) 28.26/13.46 new_esEs30(x0, x1, ty_Bool) 28.26/13.46 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 28.26/13.46 new_lt23(x0, x1, ty_Bool) 28.26/13.46 new_compare33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_lt23(x0, x1, app(ty_[], x2)) 28.26/13.46 new_ltEs24(x0, x1, ty_Integer) 28.26/13.46 new_esEs34(x0, x1, ty_Float) 28.26/13.46 new_asAs(True, x0) 28.26/13.46 new_esEs39(x0, x1, ty_Int) 28.26/13.46 new_ltEs24(x0, x1, ty_@0) 28.26/13.46 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs13(LT, LT) 28.26/13.46 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 28.26/13.46 new_lt16(x0, x1) 28.26/13.46 new_lt22(x0, x1, ty_Integer) 28.26/13.46 new_primEqInt(Neg(Zero), Neg(Zero)) 28.26/13.46 new_esEs7(x0, x1, ty_@0) 28.26/13.46 new_esEs11(x0, x1, ty_Integer) 28.26/13.46 new_primCompAux0(x0, LT) 28.26/13.46 new_compare24(x0, x1, x2, x3, True, x4, x5) 28.26/13.46 new_esEs33(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_lt23(x0, x1, ty_Integer) 28.26/13.46 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs34(x0, x1, ty_Integer) 28.26/13.46 new_esEs11(x0, x1, ty_@0) 28.26/13.46 new_esEs23(Integer(x0), Integer(x1)) 28.26/13.46 new_compare16(LT, LT) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) 28.26/13.46 new_compare30(x0, x1, ty_Double) 28.26/13.46 new_lt5(x0, x1, ty_Integer) 28.26/13.46 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_ltEs18(x0, x1, x2) 28.26/13.46 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 28.26/13.46 new_esEs39(x0, x1, ty_@0) 28.26/13.46 new_esEs29(x0, x1, ty_Integer) 28.26/13.46 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_lt18(x0, x1, x2) 28.26/13.46 new_esEs29(x0, x1, ty_Bool) 28.26/13.46 new_esEs27(x0, x1, ty_Float) 28.26/13.46 new_esEs7(x0, x1, ty_Float) 28.26/13.46 new_primPlusNat1(Succ(x0), x1) 28.26/13.46 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_lt22(x0, x1, ty_@0) 28.26/13.46 new_compare10(x0, x1, False, x2) 28.26/13.46 new_esEs30(x0, x1, ty_@0) 28.26/13.46 new_compare5(:(x0, x1), :(x2, x3), x4) 28.26/13.46 new_primEqInt(Pos(Zero), Neg(Zero)) 28.26/13.46 new_primEqInt(Neg(Zero), Pos(Zero)) 28.26/13.46 new_esEs34(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs11(x0, x1, app(ty_[], x2)) 28.26/13.46 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs16(x0, x1, ty_Int) 28.26/13.46 new_esEs30(x0, x1, ty_Float) 28.26/13.46 new_esEs28(x0, x1, ty_Float) 28.26/13.46 new_esEs11(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_lt22(x0, x1, ty_Bool) 28.26/13.46 new_esEs16(x0, x1, ty_@0) 28.26/13.46 new_esEs29(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_lt5(x0, x1, ty_Bool) 28.26/13.46 new_esEs11(x0, x1, ty_Bool) 28.26/13.46 new_ltEs21(x0, x1, ty_Char) 28.26/13.46 new_esEs33(x0, x1, ty_Integer) 28.26/13.46 new_esEs31(x0, x1, ty_Int) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, ty_Float) 28.26/13.46 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 28.26/13.46 new_lt21(x0, x1, ty_Integer) 28.26/13.46 new_ltEs20(x0, x1, ty_Bool) 28.26/13.46 new_ltEs21(x0, x1, ty_Double) 28.26/13.46 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 28.26/13.46 new_esEs32(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) 28.26/13.46 new_primPlusNat1(Zero, x0) 28.26/13.46 new_esEs24(Just(x0), Just(x1), ty_Ordering) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 28.26/13.46 new_primPlusNat0(Succ(x0), Succ(x1)) 28.26/13.46 new_lt22(x0, x1, ty_Int) 28.26/13.46 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_ltEs22(x0, x1, ty_Double) 28.26/13.46 new_lt19(x0, x1, ty_Ordering) 28.26/13.46 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs32(x0, x1, ty_Ordering) 28.26/13.46 new_compare110(x0, x1, True, x2, x3) 28.26/13.46 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs6(x0, x1, ty_Int) 28.26/13.46 new_compare30(x0, x1, ty_Char) 28.26/13.46 new_lt19(x0, x1, ty_Double) 28.26/13.46 new_esEs28(x0, x1, app(ty_[], x2)) 28.26/13.46 new_compare6(Nothing, Just(x0), x1) 28.26/13.46 new_esEs8(x0, x1, ty_@0) 28.26/13.46 new_esEs34(x0, x1, ty_Bool) 28.26/13.46 new_compare33(x0, x1, ty_Double) 28.26/13.46 new_esEs11(x0, x1, ty_Int) 28.26/13.46 new_esEs6(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 28.26/13.46 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs27(x0, x1, ty_Integer) 28.26/13.46 new_esEs20(Left(x0), Left(x1), ty_@0, x2) 28.26/13.46 new_lt22(x0, x1, ty_Float) 28.26/13.46 new_compare17(Integer(x0), Integer(x1)) 28.26/13.46 new_ltEs23(x0, x1, ty_Float) 28.26/13.46 new_esEs30(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_ltEs7(GT, LT) 28.26/13.46 new_ltEs7(LT, GT) 28.26/13.46 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs24(Just(x0), Just(x1), ty_Double) 28.26/13.46 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs20(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 28.26/13.46 new_compare33(x0, x1, ty_Ordering) 28.26/13.46 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs7(x0, x1, ty_Int) 28.26/13.46 new_esEs11(x0, x1, ty_Float) 28.26/13.46 new_esEs32(x0, x1, ty_Float) 28.26/13.46 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_lt21(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_lt20(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs37(x0, x1, ty_Int) 28.26/13.46 new_esEs4(x0, x1, ty_Char) 28.26/13.46 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 28.26/13.46 new_esEs27(x0, x1, ty_Ordering) 28.26/13.46 new_esEs34(x0, x1, ty_Int) 28.26/13.46 new_esEs27(x0, x1, ty_Bool) 28.26/13.46 new_ltEs15(x0, x1) 28.26/13.46 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_lt20(x0, x1, ty_Float) 28.26/13.46 new_primMulNat0(Succ(x0), Succ(x1)) 28.26/13.46 new_esEs32(x0, x1, ty_Char) 28.26/13.46 new_esEs36(x0, x1, ty_Integer) 28.26/13.46 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_compare16(EQ, LT) 28.26/13.46 new_compare16(LT, EQ) 28.26/13.46 new_esEs31(x0, x1, ty_Integer) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 28.26/13.46 new_ltEs16(Nothing, Just(x0), x1) 28.26/13.46 new_ltEs5(True, True) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), ty_Char, x2) 28.26/13.46 new_esEs9(x0, x1, ty_Bool) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, ty_Char) 28.26/13.46 new_esEs33(x0, x1, ty_@0) 28.26/13.46 new_sr0(Integer(x0), Integer(x1)) 28.26/13.46 new_lt9(x0, x1) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 28.26/13.46 new_esEs7(x0, x1, ty_Bool) 28.26/13.46 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs9(x0, x1, ty_Int) 28.26/13.46 new_esEs16(x0, x1, ty_Integer) 28.26/13.46 new_lt21(x0, x1, ty_@0) 28.26/13.46 new_compare16(EQ, EQ) 28.26/13.46 new_compare26(x0, x1, False, x2, x3) 28.26/13.46 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 28.26/13.46 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 28.26/13.46 new_esEs13(LT, EQ) 28.26/13.46 new_esEs13(EQ, LT) 28.26/13.46 new_lt22(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, ty_Double) 28.26/13.46 new_lt20(x0, x1, ty_Char) 28.26/13.46 new_esEs8(x0, x1, ty_Float) 28.26/13.46 new_ltEs22(x0, x1, ty_@0) 28.26/13.46 new_primEqNat0(Zero, Succ(x0)) 28.26/13.46 new_esEs13(EQ, EQ) 28.26/13.46 new_esEs37(x0, x1, ty_Bool) 28.26/13.46 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs33(x0, x1, ty_Int) 28.26/13.46 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs37(x0, x1, ty_@0) 28.26/13.46 new_lt19(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs28(x0, x1, ty_Int) 28.26/13.46 new_esEs33(x0, x1, app(ty_[], x2)) 28.26/13.46 new_lt21(x0, x1, ty_Ordering) 28.26/13.46 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_primCompAux0(x0, GT) 28.26/13.46 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs29(x0, x1, app(ty_[], x2)) 28.26/13.46 new_ltEs19(x0, x1, ty_Int) 28.26/13.46 new_esEs10(x0, x1, ty_Integer) 28.26/13.46 new_ltEs4(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, ty_Int) 28.26/13.46 new_esEs27(x0, x1, ty_Char) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), ty_Integer) 28.26/13.46 new_ltEs19(x0, x1, ty_Char) 28.26/13.46 new_esEs20(Left(x0), Left(x1), app(ty_[], x2), x3) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), ty_Bool) 28.26/13.46 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_primPlusNat0(Succ(x0), Zero) 28.26/13.46 new_lt5(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs33(x0, x1, ty_Double) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, ty_Char) 28.26/13.46 new_esEs17(True, True) 28.26/13.46 new_ltEs21(x0, x1, ty_Integer) 28.26/13.46 new_esEs9(x0, x1, ty_Integer) 28.26/13.46 new_esEs35(x0, x1, ty_Integer) 28.26/13.46 new_ltEs23(x0, x1, ty_@0) 28.26/13.46 new_esEs33(x0, x1, ty_Char) 28.26/13.46 new_esEs38(x0, x1, app(ty_[], x2)) 28.26/13.46 new_ltEs23(x0, x1, ty_Char) 28.26/13.46 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), ty_@0) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, ty_Int) 28.26/13.46 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 28.26/13.46 new_lt20(x0, x1, ty_Int) 28.26/13.46 new_compare12(x0, x1, False, x2, x3) 28.26/13.46 new_esEs34(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_compare5([], [], x0) 28.26/13.46 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs6(x0, x1, ty_Bool) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 28.26/13.46 new_ltEs23(x0, x1, ty_Int) 28.26/13.46 new_lt7(x0, x1) 28.26/13.46 new_compare30(x0, x1, ty_Float) 28.26/13.46 new_esEs27(x0, x1, ty_Int) 28.26/13.46 new_ltEs22(x0, x1, app(ty_[], x2)) 28.26/13.46 new_compare30(x0, x1, ty_Integer) 28.26/13.46 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 28.26/13.46 new_compare33(x0, x1, ty_@0) 28.26/13.46 new_primPlusNat0(Zero, Zero) 28.26/13.46 new_compare16(GT, LT) 28.26/13.46 new_ltEs22(x0, x1, ty_Integer) 28.26/13.46 new_compare16(LT, GT) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, ty_Ordering) 28.26/13.46 new_esEs22(:%(x0, x1), :%(x2, x3), x4) 28.26/13.46 new_lt20(x0, x1, ty_@0) 28.26/13.46 new_esEs27(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_compare25(x0, x1, False, x2, x3) 28.26/13.46 new_compare30(x0, x1, ty_Bool) 28.26/13.46 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 28.26/13.46 new_not(True) 28.26/13.46 new_esEs5(x0, x1, ty_Double) 28.26/13.46 new_esEs39(x0, x1, ty_Float) 28.26/13.46 new_esEs37(x0, x1, ty_Char) 28.26/13.46 new_lt20(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_ltEs21(x0, x1, ty_Float) 28.26/13.46 new_esEs11(x0, x1, ty_Double) 28.26/13.46 new_ltEs21(x0, x1, ty_Bool) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) 28.26/13.46 new_lt17(x0, x1) 28.26/13.46 new_compare33(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs28(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs10(x0, x1, ty_@0) 28.26/13.46 new_esEs20(Left(x0), Left(x1), ty_Bool, x2) 28.26/13.46 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 28.26/13.46 new_compare28(@0, @0) 28.26/13.46 new_ltEs23(x0, x1, ty_Integer) 28.26/13.46 new_esEs20(Left(x0), Left(x1), ty_Integer, x2) 28.26/13.46 new_esEs10(x0, x1, ty_Float) 28.26/13.46 new_esEs37(x0, x1, ty_Integer) 28.26/13.46 new_ltEs21(x0, x1, ty_@0) 28.26/13.46 new_ltEs4(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, ty_@0) 28.26/13.46 new_esEs28(x0, x1, ty_Char) 28.26/13.46 new_lt22(x0, x1, ty_Double) 28.26/13.46 new_esEs16(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 28.26/13.46 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_ltEs21(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs17(False, True) 28.26/13.46 new_esEs17(True, False) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), ty_Float) 28.26/13.46 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs30(x0, x1, app(ty_[], x2)) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 28.26/13.46 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_ltEs23(x0, x1, ty_Bool) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 28.26/13.46 new_compare19(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 28.26/13.46 new_esEs20(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 28.26/13.46 new_ltEs7(EQ, GT) 28.26/13.46 new_ltEs7(GT, EQ) 28.26/13.46 new_esEs8(x0, x1, ty_Integer) 28.26/13.46 new_lt20(x0, x1, ty_Bool) 28.26/13.46 new_esEs6(x0, x1, ty_Integer) 28.26/13.46 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 28.26/13.46 new_lt22(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs28(x0, x1, ty_@0) 28.26/13.46 new_esEs38(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs7(GT, GT) 28.26/13.46 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_compare33(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs10(x0, x1, ty_Char) 28.26/13.46 new_ltEs7(LT, EQ) 28.26/13.46 new_ltEs7(EQ, LT) 28.26/13.46 new_esEs12(Char(x0), Char(x1)) 28.26/13.46 new_esEs28(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs32(x0, x1, ty_Double) 28.26/13.46 new_esEs30(x0, x1, ty_Int) 28.26/13.46 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), ty_Int) 28.26/13.46 new_ltEs4(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_lt20(x0, x1, ty_Integer) 28.26/13.46 new_ltEs24(x0, x1, ty_Float) 28.26/13.46 new_esEs5(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs16(x0, x1, ty_Float) 28.26/13.46 new_esEs8(x0, x1, ty_Bool) 28.26/13.46 new_compare13(x0, x1) 28.26/13.46 new_primPlusNat0(Zero, Succ(x0)) 28.26/13.46 new_lt22(x0, x1, ty_Ordering) 28.26/13.46 new_lt19(x0, x1, ty_Int) 28.26/13.46 new_primCmpNat0(Zero, Succ(x0)) 28.26/13.46 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs10(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs34(x0, x1, ty_@0) 28.26/13.46 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 28.26/13.46 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 28.26/13.46 new_esEs4(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs4(x0, x1, ty_@0) 28.26/13.46 new_esEs16(x0, x1, ty_Double) 28.26/13.46 new_esEs14(Float(x0, x1), Float(x2, x3)) 28.26/13.46 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_primMulNat0(Succ(x0), Zero) 28.26/13.46 new_ltEs24(x0, x1, ty_Int) 28.26/13.46 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), ty_Char) 28.26/13.46 new_esEs33(x0, x1, ty_Bool) 28.26/13.46 new_compare111(x0, x1, x2, x3, True, x4, x5) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 28.26/13.46 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs20(Left(x0), Left(x1), ty_Char, x2) 28.26/13.46 new_lt5(x0, x1, ty_Int) 28.26/13.46 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 28.26/13.46 new_compare30(x0, x1, ty_@0) 28.26/13.46 new_compare19(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 28.26/13.46 new_lt5(x0, x1, ty_Float) 28.26/13.46 new_esEs28(x0, x1, ty_Bool) 28.26/13.46 new_esEs10(x0, x1, ty_Int) 28.26/13.46 new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 28.26/13.46 new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 28.26/13.46 new_ltEs22(x0, x1, ty_Float) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) 28.26/13.46 new_esEs30(x0, x1, ty_Char) 28.26/13.46 new_esEs20(Left(x0), Left(x1), ty_Int, x2) 28.26/13.46 new_esEs34(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs26(:(x0, x1), [], x2) 28.26/13.46 new_compare25(x0, x1, True, x2, x3) 28.26/13.46 new_primEqNat0(Zero, Zero) 28.26/13.46 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs39(x0, x1, ty_Bool) 28.26/13.46 new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs8(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs8(x0, x1, ty_Char) 28.26/13.46 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_ltEs19(x0, x1, ty_@0) 28.26/13.46 new_not(False) 28.26/13.46 new_lt23(x0, x1, ty_Int) 28.26/13.46 new_esEs13(EQ, GT) 28.26/13.46 new_esEs13(GT, EQ) 28.26/13.46 new_esEs27(x0, x1, app(ty_[], x2)) 28.26/13.46 new_primCompAux0(x0, EQ) 28.26/13.46 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs24(Nothing, Just(x0), x1) 28.26/13.46 new_esEs6(x0, x1, ty_@0) 28.26/13.46 new_esEs26([], :(x0, x1), x2) 28.26/13.46 new_esEs32(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs31(x0, x1, app(ty_[], x2)) 28.26/13.46 new_ltEs22(x0, x1, ty_Char) 28.26/13.46 new_esEs7(x0, x1, ty_Double) 28.26/13.46 new_esEs5(x0, x1, ty_Ordering) 28.26/13.46 new_esEs11(x0, x1, ty_Ordering) 28.26/13.46 new_esEs5(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_lt19(x0, x1, ty_Char) 28.26/13.46 new_esEs27(x0, x1, ty_Double) 28.26/13.46 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 28.26/13.46 new_esEs10(x0, x1, ty_Bool) 28.26/13.46 new_esEs24(Nothing, Nothing, x0) 28.26/13.46 new_esEs9(x0, x1, ty_@0) 28.26/13.46 new_ltEs19(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs20(Left(x0), Left(x1), ty_Float, x2) 28.26/13.46 new_ltEs22(x0, x1, ty_Int) 28.26/13.46 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs39(x0, x1, ty_Integer) 28.26/13.46 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs15(x0, x1) 28.26/13.46 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_ltEs20(x0, x1, app(ty_[], x2)) 28.26/13.46 new_lt23(x0, x1, ty_Float) 28.26/13.46 new_esEs33(x0, x1, ty_Float) 28.26/13.46 new_esEs21(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 28.26/13.46 new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 28.26/13.46 new_esEs35(x0, x1, ty_Int) 28.26/13.46 new_esEs28(x0, x1, ty_Integer) 28.26/13.46 new_lt19(x0, x1, ty_Float) 28.26/13.46 new_compare12(x0, x1, True, x2, x3) 28.26/13.46 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 28.26/13.46 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_ltEs22(x0, x1, ty_Bool) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), ty_@0, x2) 28.26/13.46 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) 28.26/13.46 new_esEs8(x0, x1, ty_Double) 28.26/13.46 new_esEs24(Just(x0), Just(x1), ty_Bool) 28.26/13.46 new_lt4(x0, x1, x2) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, ty_Float) 28.26/13.46 new_ltEs20(x0, x1, ty_Ordering) 28.26/13.46 new_lt6(x0, x1) 28.26/13.46 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs5(x0, x1, ty_Integer) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_compare110(x0, x1, False, x2, x3) 28.26/13.46 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs8(x0, x1, ty_Ordering) 28.26/13.46 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_lt19(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs29(x0, x1, ty_Char) 28.26/13.46 new_compare8(Right(x0), Right(x1), x2, x3) 28.26/13.46 new_esEs20(Left(x0), Left(x1), ty_Double, x2) 28.26/13.46 new_compare16(GT, GT) 28.26/13.46 new_esEs39(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs17(False, False) 28.26/13.46 new_ltEs5(False, True) 28.26/13.46 new_ltEs5(True, False) 28.26/13.46 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 28.26/13.46 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 28.26/13.46 new_esEs39(x0, x1, ty_Char) 28.26/13.46 new_esEs33(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) 28.26/13.46 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 28.26/13.46 new_compare33(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs4(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_lt19(x0, x1, ty_Bool) 28.26/13.46 new_lt23(x0, x1, ty_Char) 28.26/13.46 new_esEs20(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 28.26/13.46 new_esEs31(x0, x1, ty_Char) 28.26/13.46 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs7(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs5(x0, x1, ty_@0) 28.26/13.46 new_ltEs13(x0, x1) 28.26/13.46 new_esEs9(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs4(x0, x1, ty_Integer) 28.26/13.46 new_lt5(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs20(Left(x0), Left(x1), ty_Ordering, x2) 28.26/13.46 new_lt21(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 28.26/13.46 new_esEs29(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 28.26/13.46 new_compare33(x0, x1, app(ty_[], x2)) 28.26/13.46 new_primCmpNat0(Succ(x0), Succ(x1)) 28.26/13.46 new_esEs5(x0, x1, ty_Float) 28.26/13.46 new_lt5(x0, x1, ty_Char) 28.26/13.46 new_esEs16(x0, x1, ty_Char) 28.26/13.46 new_esEs5(x0, x1, ty_Bool) 28.26/13.46 new_ltEs24(x0, x1, ty_Char) 28.26/13.46 new_ltEs20(x0, x1, ty_Char) 28.26/13.46 new_asAs(False, x0) 28.26/13.46 new_esEs24(Just(x0), Just(x1), ty_Integer) 28.26/13.46 new_lt22(x0, x1, ty_Char) 28.26/13.46 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) 28.26/13.46 new_lt19(x0, x1, ty_Integer) 28.26/13.46 new_ltEs7(EQ, EQ) 28.26/13.46 new_esEs38(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_ltEs21(x0, x1, ty_Int) 28.26/13.46 new_esEs6(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs4(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 28.26/13.46 new_ltEs20(x0, x1, ty_Double) 28.26/13.46 new_esEs4(x0, x1, ty_Float) 28.26/13.46 new_esEs16(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_compare30(x0, x1, app(ty_[], x2)) 28.26/13.46 new_primEqNat0(Succ(x0), Zero) 28.26/13.46 new_compare31(False, False) 28.26/13.46 new_lt14(x0, x1) 28.26/13.46 new_primMulInt(Neg(x0), Neg(x1)) 28.26/13.46 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs37(x0, x1, app(ty_[], x2)) 28.26/13.46 new_compare111(x0, x1, x2, x3, False, x4, x5) 28.26/13.46 new_esEs37(x0, x1, ty_Float) 28.26/13.46 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_ltEs19(x0, x1, ty_Integer) 28.26/13.46 new_primMulNat0(Zero, Succ(x0)) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, ty_Bool) 28.26/13.46 new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs11(x0, x1, ty_Char) 28.26/13.46 new_esEs6(x0, x1, ty_Char) 28.26/13.46 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs29(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs31(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs7(x0, x1, ty_Char) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 28.26/13.46 new_ltEs24(x0, x1, ty_Double) 28.26/13.46 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_lt5(x0, x1, ty_Double) 28.26/13.46 new_lt11(x0, x1, x2, x3) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), ty_Double) 28.26/13.46 new_lt23(x0, x1, ty_Ordering) 28.26/13.46 new_esEs32(x0, x1, ty_Int) 28.26/13.46 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 28.26/13.46 new_compare30(x0, x1, ty_Int) 28.26/13.46 new_esEs29(x0, x1, ty_Double) 28.26/13.46 new_esEs7(x0, x1, ty_Ordering) 28.26/13.46 new_esEs4(x0, x1, ty_Bool) 28.26/13.46 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_compare27(x0, x1, False, x2) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) 28.26/13.46 new_primMulInt(Pos(x0), Neg(x1)) 28.26/13.46 new_primMulInt(Neg(x0), Pos(x1)) 28.26/13.46 new_esEs7(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_lt23(x0, x1, ty_Double) 28.26/13.46 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 28.26/13.46 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 28.26/13.46 new_lt5(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs24(x0, x1, ty_Ordering) 28.26/13.46 new_esEs39(x0, x1, ty_Double) 28.26/13.46 new_ltEs19(x0, x1, ty_Bool) 28.26/13.46 new_esEs30(x0, x1, ty_Double) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 28.26/13.46 new_esEs4(x0, x1, ty_Integer) 28.26/13.46 new_primCmpInt(Neg(Zero), Neg(Zero)) 28.26/13.46 new_esEs10(x0, x1, ty_Double) 28.26/13.46 new_compare5([], :(x0, x1), x2) 28.26/13.46 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 28.26/13.46 new_esEs6(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_lt12(x0, x1, x2, x3, x4) 28.26/13.46 new_primCmpInt(Pos(Zero), Neg(Zero)) 28.26/13.46 new_primCmpInt(Neg(Zero), Pos(Zero)) 28.26/13.46 new_esEs31(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_compare10(x0, x1, True, x2) 28.26/13.46 new_fsEs(x0) 28.26/13.46 new_ltEs14(x0, x1) 28.26/13.46 new_lt15(x0, x1) 28.26/13.46 new_esEs10(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, ty_Integer) 28.26/13.46 new_esEs38(x0, x1, ty_Double) 28.26/13.46 new_esEs9(x0, x1, ty_Float) 28.26/13.46 new_esEs9(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_ltEs6(x0, x1) 28.26/13.46 new_compare6(Just(x0), Just(x1), x2) 28.26/13.46 new_compare8(Right(x0), Left(x1), x2, x3) 28.26/13.46 new_compare8(Left(x0), Right(x1), x2, x3) 28.26/13.46 new_ltEs16(Just(x0), Nothing, x1) 28.26/13.46 new_compare30(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_compare29(@2(x0, x1), @2(x2, x3), x4, x5) 28.26/13.46 new_primMulInt(Pos(x0), Pos(x1)) 28.26/13.46 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_lt19(x0, x1, ty_@0) 28.26/13.46 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_compare24(x0, x1, x2, x3, False, x4, x5) 28.26/13.46 new_compare32(Char(x0), Char(x1)) 28.26/13.46 new_esEs11(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 28.26/13.46 new_esEs24(Just(x0), Just(x1), ty_@0) 28.26/13.46 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_ltEs16(Nothing, Nothing, x0) 28.26/13.46 new_ltEs19(x0, x1, ty_Float) 28.26/13.46 new_esEs34(x0, x1, ty_Char) 28.26/13.46 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_ltEs4(x0, x1, ty_@0) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), ty_Int, x2) 28.26/13.46 new_esEs5(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs13(GT, GT) 28.26/13.46 new_compare8(Left(x0), Left(x1), x2, x3) 28.26/13.46 new_esEs38(x0, x1, ty_@0) 28.26/13.46 new_lt19(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs16(x0, x1, ty_Ordering) 28.26/13.46 new_esEs9(x0, x1, ty_Char) 28.26/13.46 new_esEs32(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs6(x0, x1, ty_Float) 28.26/13.46 new_esEs27(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs26([], [], x0) 28.26/13.46 new_esEs32(x0, x1, ty_Bool) 28.26/13.46 new_compare33(x0, x1, ty_Bool) 28.26/13.46 new_ltEs23(x0, x1, app(ty_[], x2)) 28.26/13.46 new_lt21(x0, x1, ty_Double) 28.26/13.46 new_esEs26(:(x0, x1), :(x2, x3), x4) 28.26/13.46 new_esEs24(Just(x0), Nothing, x1) 28.26/13.46 new_esEs32(x0, x1, ty_@0) 28.26/13.46 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_compare27(x0, x1, True, x2) 28.26/13.46 new_primMulNat0(Zero, Zero) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), ty_Float, x2) 28.26/13.46 new_ltEs4(x0, x1, ty_Double) 28.26/13.46 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_ltEs10(Right(x0), Left(x1), x2, x3) 28.26/13.46 new_ltEs10(Left(x0), Right(x1), x2, x3) 28.26/13.46 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_compare30(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs38(x0, x1, ty_Char) 28.26/13.46 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs8(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs37(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_compare18(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 28.26/13.46 new_esEs33(x0, x1, ty_Ordering) 28.26/13.46 new_esEs28(x0, x1, ty_Double) 28.26/13.46 new_esEs4(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs7(LT, LT) 28.26/13.46 new_esEs8(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, ty_Double) 28.26/13.46 new_compare33(x0, x1, ty_Integer) 28.26/13.46 new_lt13(x0, x1, x2) 28.26/13.46 new_esEs20(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 28.26/13.46 new_compare31(True, False) 28.26/13.46 new_compare31(False, True) 28.26/13.46 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_lt20(x0, x1, ty_Ordering) 28.26/13.46 new_esEs27(x0, x1, ty_@0) 28.26/13.46 new_ltEs20(x0, x1, ty_Float) 28.26/13.46 new_esEs6(x0, x1, app(ty_[], x2)) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 28.26/13.46 new_esEs36(x0, x1, ty_Int) 28.26/13.46 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, app(ty_[], x3)) 28.26/13.46 new_esEs32(x0, x1, ty_Integer) 28.26/13.46 new_esEs4(x0, x1, ty_Double) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 28.26/13.46 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs25(@0, @0) 28.26/13.46 new_ltEs8(x0, x1) 28.26/13.46 new_esEs4(x0, x1, ty_Int) 28.26/13.46 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_compare33(x0, x1, ty_Char) 28.26/13.46 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_lt20(x0, x1, ty_Double) 28.26/13.46 new_esEs34(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs5(False, False) 28.26/13.46 new_esEs38(x0, x1, ty_Integer) 28.26/13.46 new_ltEs19(x0, x1, ty_Ordering) 28.26/13.46 new_esEs16(x0, x1, app(ty_[], x2)) 28.26/13.46 new_compare5(:(x0, x1), [], x2) 28.26/13.46 new_lt23(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs10(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs39(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs5(x0, x1, ty_Int) 28.26/13.46 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_primCmpInt(Pos(Zero), Pos(Zero)) 28.26/13.46 new_lt21(x0, x1, ty_Bool) 28.26/13.46 new_esEs20(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 28.26/13.46 new_compare33(x0, x1, ty_Float) 28.26/13.46 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 28.26/13.46 new_esEs31(x0, x1, ty_Double) 28.26/13.46 new_pePe(True, x0) 28.26/13.46 new_esEs5(x0, x1, ty_Char) 28.26/13.46 new_esEs37(x0, x1, ty_Ordering) 28.26/13.46 new_lt22(x0, x1, app(ty_[], x2)) 28.26/13.46 new_esEs37(x0, x1, ty_Double) 28.26/13.46 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), ty_Ordering) 28.26/13.46 new_esEs31(x0, x1, ty_Float) 28.26/13.46 new_esEs24(Just(x0), Just(x1), ty_Int) 28.26/13.46 new_esEs13(LT, GT) 28.26/13.46 new_esEs13(GT, LT) 28.26/13.46 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 28.26/13.46 new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 28.26/13.46 new_esEs30(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_ltEs23(x0, x1, ty_Double) 28.26/13.46 new_compare33(x0, x1, ty_Int) 28.26/13.46 new_esEs7(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_compare33(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_compare18(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 28.26/13.46 new_lt5(x0, x1, app(ty_[], x2)) 28.26/13.46 new_ltEs22(x0, x1, ty_Ordering) 28.26/13.46 new_ltEs20(x0, x1, ty_@0) 28.26/13.46 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs24(Just(x0), Just(x1), ty_Char) 28.26/13.46 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 28.26/13.46 new_ltEs23(x0, x1, ty_Ordering) 28.26/13.46 new_compare26(x0, x1, True, x2, x3) 28.26/13.46 new_ltEs20(x0, x1, ty_Integer) 28.26/13.46 new_ltEs24(x0, x1, app(ty_[], x2)) 28.26/13.46 new_compare6(Nothing, Nothing, x0) 28.26/13.46 new_esEs9(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 28.26/13.46 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_esEs30(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 28.26/13.46 new_lt21(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs9(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_esEs20(Right(x0), Right(x1), x2, ty_@0) 28.26/13.46 new_ltEs4(x0, x1, ty_Bool) 28.26/13.46 new_primCmpNat0(Succ(x0), Zero) 28.26/13.46 new_primEqNat0(Succ(x0), Succ(x1)) 28.26/13.46 new_ltEs21(x0, x1, ty_Ordering) 28.26/13.46 new_esEs39(x0, x1, ty_Ordering) 28.26/13.46 new_primCompAux1(x0, x1, x2, x3) 28.26/13.46 new_ltEs4(x0, x1, ty_Int) 28.26/13.46 new_compare30(x0, x1, ty_Ordering) 28.26/13.46 new_esEs38(x0, x1, ty_Bool) 28.26/13.46 new_esEs10(x0, x1, ty_Ordering) 28.26/13.46 new_esEs6(x0, x1, ty_Double) 28.26/13.46 new_esEs29(x0, x1, ty_Int) 28.26/13.46 new_compare31(True, True) 28.26/13.46 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 28.26/13.46 new_esEs38(x0, x1, ty_Float) 28.26/13.46 new_ltEs19(x0, x1, ty_Double) 28.26/13.46 new_ltEs17(x0, x1) 28.26/13.46 new_lt21(x0, x1, ty_Char) 28.26/13.46 new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 28.26/13.46 new_ltEs12(x0, x1, x2) 28.26/13.46 new_ltEs4(x0, x1, ty_Char) 28.26/13.46 new_esEs37(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs18(Double(x0, x1), Double(x2, x3)) 28.26/13.46 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 28.26/13.46 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 28.26/13.46 new_esEs38(x0, x1, app(ty_Maybe, x2)) 28.26/13.46 new_lt21(x0, x1, ty_Int) 28.26/13.46 new_esEs29(x0, x1, ty_Float) 28.26/13.46 new_lt20(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_esEs39(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_compare16(EQ, GT) 28.26/13.46 new_compare16(GT, EQ) 28.26/13.46 new_esEs9(x0, x1, ty_Double) 28.26/13.46 new_esEs28(x0, x1, ty_Ordering) 28.26/13.46 new_lt23(x0, x1, app(ty_Ratio, x2)) 28.26/13.46 new_compare6(Just(x0), Nothing, x1) 28.26/13.46 new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) 28.26/13.46 new_lt10(x0, x1, x2, x3) 28.26/13.46 new_esEs38(x0, x1, ty_Int) 28.26/13.46 new_ltEs4(x0, x1, ty_Float) 28.26/13.46 new_esEs34(x0, x1, ty_Double) 28.26/13.46 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 28.26/13.46 new_lt21(x0, x1, ty_Float) 28.26/13.46 new_primCmpNat0(Zero, Zero) 28.26/13.46 new_sr(x0, x1) 28.26/13.46 new_esEs24(Just(x0), Just(x1), ty_Float) 28.26/13.46 28.26/13.46 We have to consider all minimal (P,Q,R)-chains. 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (28) QDPSizeChangeProof (EQUIVALENT) 28.26/13.46 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. 28.26/13.46 28.26/13.46 From the DPs we obtained the following set of size-change graphs: 28.26/13.46 *new_insertBy0(vxw10, vxw11, vxw12, GT, ba) -> new_insertBy(vxw11, vxw12, ba) 28.26/13.46 The graph contains the following edges 2 >= 1, 3 >= 2, 5 >= 3 28.26/13.46 28.26/13.46 28.26/13.46 *new_insertBy(vxw3, :(vxw40, vxw41), bb) -> new_insertBy0(vxw40, vxw3, vxw41, new_compare33(vxw3, vxw40, bb), bb) 28.26/13.46 The graph contains the following edges 2 > 1, 1 >= 2, 2 > 3, 3 >= 5 28.26/13.46 28.26/13.46 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (29) 28.26/13.46 YES 28.26/13.46 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (30) 28.26/13.46 Obligation: 28.26/13.46 Q DP problem: 28.26/13.46 The TRS P consists of the following rules: 28.26/13.46 28.26/13.46 new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) 28.26/13.46 28.26/13.46 R is empty. 28.26/13.46 Q is empty. 28.26/13.46 We have to consider all minimal (P,Q,R)-chains. 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (31) QDPSizeChangeProof (EQUIVALENT) 28.26/13.46 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. 28.26/13.46 28.26/13.46 From the DPs we obtained the following set of size-change graphs: 28.26/13.46 *new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) 28.26/13.46 The graph contains the following edges 1 > 1, 2 > 2 28.26/13.46 28.26/13.46 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (32) 28.26/13.46 YES 28.26/13.46 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (33) 28.26/13.46 Obligation: 28.26/13.46 Q DP problem: 28.26/13.46 The TRS P consists of the following rules: 28.26/13.46 28.26/13.46 new_primPlusNat(Succ(vxw15300), Succ(vxw401000)) -> new_primPlusNat(vxw15300, vxw401000) 28.26/13.46 28.26/13.46 R is empty. 28.26/13.46 Q is empty. 28.26/13.46 We have to consider all minimal (P,Q,R)-chains. 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (34) QDPSizeChangeProof (EQUIVALENT) 28.26/13.46 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. 28.26/13.46 28.26/13.46 From the DPs we obtained the following set of size-change graphs: 28.26/13.46 *new_primPlusNat(Succ(vxw15300), Succ(vxw401000)) -> new_primPlusNat(vxw15300, vxw401000) 28.26/13.46 The graph contains the following edges 1 > 1, 2 > 2 28.26/13.46 28.26/13.46 28.26/13.46 ---------------------------------------- 28.26/13.46 28.26/13.46 (35) 28.26/13.46 YES 28.41/13.52 EOF