/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) DependencyGraphProof [EQUIVALENT, 0 ms] (37) AND (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] (43) YES (44) QDP (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] (46) YES (47) QDP (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] (49) YES (50) QDP (51) QDPSizeChangeProof [EQUIVALENT, 0 ms] (52) YES (53) QDP (54) QDPSizeChangeProof [EQUIVALENT, 0 ms] (55) YES (56) QDP (57) QDPSizeChangeProof [EQUIVALENT, 0 ms] (58) YES (59) QDP (60) DependencyGraphProof [EQUIVALENT, 0 ms] (61) QDP (62) QDPSizeChangeProof [EQUIVALENT, 215 ms] (63) YES (64) QDP (65) QDPSizeChangeProof [EQUIVALENT, 0 ms] (66) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r | key == del_key = glueBal fm_l fm_r; deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = (\(_,mid_elt1) ->mid_elt1) vv2; mid_elt2 = (\(_,mid_elt2) ->mid_elt2) vv3; mid_key1 = (\(mid_key1,_) ->mid_key1) vv2; mid_key2 = (\(mid_key2,_) ->mid_key2) vv3; vv2 = findMax fm1; vv3 = findMin fm2; }; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\(_,mid_elt2)->mid_elt2" is transformed to "mid_elt20 (_,mid_elt2) = mid_elt2; " The following Lambda expression "\(mid_key2,_)->mid_key2" is transformed to "mid_key20 (mid_key2,_) = mid_key2; " The following Lambda expression "\(mid_key1,_)->mid_key1" is transformed to "mid_key10 (mid_key1,_) = mid_key1; " The following Lambda expression "\(_,mid_elt1)->mid_elt1" is transformed to "mid_elt10 (_,mid_elt1) = mid_elt1; " The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r | key == del_key = glueBal fm_l fm_r; deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = mid_elt10 vv2; mid_elt10 (_,mid_elt1) = mid_elt1; mid_elt2 = mid_elt20 vv3; mid_elt20 (_,mid_elt2) = mid_elt2; mid_key1 = mid_key10 vv2; mid_key10 (mid_key1,_) = mid_key1; mid_key2 = mid_key20 vv3; mid_key20 (mid_key2,_) = mid_key2; vv2 = findMax fm1; vv3 = findMin fm2; }; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r | key == del_key = glueBal fm_l fm_r; deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = mid_elt10 vv2; mid_elt10 (_,mid_elt1) = mid_elt1; mid_elt2 = mid_elt20 vv3; mid_elt20 (_,mid_elt2) = mid_elt2; mid_key1 = mid_key10 vv2; mid_key10 (mid_key1,_) = mid_key1; mid_key2 = mid_key20 vv3; mid_key20 (mid_key2,_) = mid_key2; vv2 = findMax fm1; vv3 = findMin fm2; }; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r | key == del_key = glueBal fm_l fm_r; deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = mid_elt10 vv2; mid_elt10 (_,mid_elt1) = mid_elt1; mid_elt2 = mid_elt20 vv3; mid_elt20 (_,mid_elt2) = mid_elt2; mid_key1 = mid_key10 vv2; mid_key10 (mid_key1,_) = mid_key1; mid_key2 = mid_key20 vv3; mid_key20 (mid_key2,_) = mid_key2; vv2 = findMax fm1; vv3 = findMin fm2; }; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r | key == del_key = glueBal fm_l fm_r; deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); findMin (Branch key elt wuw fm_l wux) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = mid_elt10 vv2; mid_elt10 (vyw,mid_elt1) = mid_elt1; mid_elt2 = mid_elt20 vv3; mid_elt20 (vyv,mid_elt2) = mid_elt2; mid_key1 = mid_key10 vv2; mid_key10 (mid_key1,vyx) = mid_key1; mid_key2 = mid_key20 vv3; mid_key20 (mid_key2,vyy) = mid_key2; vv2 = findMax fm1; vv3 = findMin fm2; }; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vzu vzv size vzw vzx) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x wuy = gcd'2 x wuy; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x wuy = x; gcd'1 wuz wvu wvv = gcd'0 wvu wvv; " "gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; gcd'2 wvw wvx = gcd'0 wvw wvx; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd wvy wvz = gcd3 wvy wvz; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x wuy = gcd'2 x wuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wuy = x; gcd'1 wuz wvu wvv = gcd'0 wvu wvv; ; gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; gcd'2 wvw wvx = gcd'0 wvw wvx; } ; " "gcd1 True wvy wvz = error []; gcd1 wwu wwv www = gcd0 wwv www; " "gcd2 True wvy wvz = gcd1 (wvz == 0) wvy wvz; gcd2 wwx wwy wwz = gcd0 wwy wwz; " "gcd3 wvy wvz = gcd2 (wvy == 0) wvy wvz; gcd3 wxu wxv = gcd0 wxu wxv; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " is transformed to "mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); " "mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; " "mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " is transformed to "mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); " "mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; " "mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " The following Function with conditions "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; ; mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; ; single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " The following Function with conditions "glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2|sizeFM fm2 > sizeFM fm1mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2)|otherwisemkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = mid_elt10 vv2; ; mid_elt10 (vyw,mid_elt1) = mid_elt1; ; mid_elt2 = mid_elt20 vv3; ; mid_elt20 (vyv,mid_elt2) = mid_elt2; ; mid_key1 = mid_key10 vv2; ; mid_key10 (mid_key1,vyx) = mid_key1; ; mid_key2 = mid_key20 vv3; ; mid_key20 (mid_key2,vyy) = mid_key2; ; vv2 = findMax fm1; ; vv3 = findMin fm2; } ; " is transformed to "glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; glueBal fm1 fm2 = glueBal2 fm1 fm2; " "glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; ; glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; ; mid_elt1 = mid_elt10 vv2; ; mid_elt10 (vyw,mid_elt1) = mid_elt1; ; mid_elt2 = mid_elt20 vv3; ; mid_elt20 (vyv,mid_elt2) = mid_elt2; ; mid_key1 = mid_key10 vv2; ; mid_key10 (mid_key1,vyx) = mid_key1; ; mid_key2 = mid_key20 vv3; ; mid_key20 (mid_key2,vyy) = mid_key2; ; vv2 = findMax fm1; ; vv3 = findMin fm2; } ; " "glueBal3 fm1 EmptyFM = fm1; glueBal3 wxz wyu = glueBal2 wxz wyu; " "glueBal4 EmptyFM fm2 = fm2; glueBal4 wyw wyx = glueBal3 wyw wyx; " The following Function with conditions "delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key|del_key > keymkBalBranch key elt fm_l (delFromFM fm_r del_key)|del_key < keymkBalBranch key elt (delFromFM fm_l del_key) fm_r|key == del_keyglueBal fm_l fm_r; " is transformed to "delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; " "delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); " "delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); " "delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; " "delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); " "delFromFM4 EmptyFM del_key = emptyFM; delFromFM4 wzu wzv = delFromFM3 wzu wzv; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); delFromFM4 EmptyFM del_key = emptyFM; delFromFM4 wzu wzv = delFromFM3 wzu wzv; deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); findMin (Branch key elt wuw fm_l wux) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; glueBal fm1 fm2 = glueBal2 fm1 fm2; glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; mid_elt1 = mid_elt10 vv2; mid_elt10 (vyw,mid_elt1) = mid_elt1; mid_elt2 = mid_elt20 vv3; mid_elt20 (vyv,mid_elt2) = mid_elt2; mid_key1 = mid_key10 vv2; mid_key10 (mid_key1,vyx) = mid_key1; mid_key2 = mid_key20 vv3; mid_key20 (mid_key2,vyy) = mid_key2; vv2 = findMax fm1; vv3 = findMin fm2; }; glueBal3 fm1 EmptyFM = fm1; glueBal3 wxz wyu = glueBal2 wxz wyu; glueBal4 EmptyFM fm2 = fm2; glueBal4 wyw wyx = glueBal3 wyw wyx; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vzu vzv size vzw vzx) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x wuy = gcd'2 x wuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wuy = x; gcd'1 wuz wvu wvv = gcd'0 wvu wvv; ; gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; gcd'2 wvw wvx = gcd'0 wvw wvx; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x wuy = x; gcd0Gcd'1 wuz wvu wvv = gcd0Gcd'0 wvu wvv; " "gcd0Gcd'2 x wuy = gcd0Gcd'1 (wuy == 0) x wuy; gcd0Gcd'2 wvw wvx = gcd0Gcd'0 wvw wvx; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x wuy = gcd0Gcd'2 x wuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce1 wzw wzx x y True = error []; reduce2Reduce1 wzw wzx x y False = reduce2Reduce0 wzw wzx x y otherwise; " "reduce2D wzw wzx = gcd wzw wzx; " "reduce2Reduce0 wzw wzx x y True = x `quot` reduce2D wzw wzx :% (y `quot` reduce2D wzw wzx); " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); " "mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; " "mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; " "mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wzy wzz fm_lrr fm_r); " "mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; " "mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wzy wzz fm_l fm_rl) fm_rr; " "mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wzy wzz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); " "mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); " "mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); " "mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; " "mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; " "mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; " "mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; " "mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wzy wzz fm_lr fm_r); " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchUnbox xuw xux xuy x = x; " "mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; " "mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchBalance_ok xuw xux xuy = True; " "mkBranchLeft_size xuw xux xuy = sizeFM xuw; " "mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; " "mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; " "mkBranchRight_size xuw xux xuy = sizeFM xuy; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (1 + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvv xvw; " The bindings of the following Let/Where expression "glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; ; glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; ; mid_elt1 = mid_elt10 vv2; ; mid_elt10 (vyw,mid_elt1) = mid_elt1; ; mid_elt2 = mid_elt20 vv3; ; mid_elt20 (vyv,mid_elt2) = mid_elt2; ; mid_key1 = mid_key10 vv2; ; mid_key10 (mid_key1,vyx) = mid_key1; ; mid_key2 = mid_key20 vv3; ; mid_key20 (mid_key2,vyy) = mid_key2; ; vv2 = findMax fm1; ; vv3 = findMin fm2; } " are unpacked to the following functions on top level "glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; " "glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; " "glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; " "glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; " "glueBal2Vv2 xvx xvy = findMax xvx; " "glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; " "glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); " "glueBal2Vv3 xvx xvy = findMin xvy; " "glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); " "glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); " "glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; " "glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); delFromFM4 EmptyFM del_key = emptyFM; delFromFM4 wzu wzv = delFromFM3 wzu wzv; deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); findMin (Branch key elt wuw fm_l wux) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; glueBal fm1 fm2 = glueBal2 fm1 fm2; glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; glueBal2Vv2 xvx xvy = findMax xvx; glueBal2Vv3 xvx xvy = findMin xvy; glueBal3 fm1 EmptyFM = fm1; glueBal3 wxz wyu = glueBal2 wxz wyu; glueBal4 EmptyFM fm2 = fm2; glueBal4 wyw wyx = glueBal3 wyw wyx; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < 2); mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wzy wzz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wzy wzz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wzy wzz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wzy wzz fm_lr fm_r); mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok xuw xux xuy = True; mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); mkBranchLeft_size xuw xux xuy = sizeFM xuw; mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (1 + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvv xvw; mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); mkBranchRight_size xuw xux xuy = sizeFM xuy; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox xuw xux xuy x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vzu vzv size vzw vzx) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); delFromFM4 EmptyFM del_key = emptyFM; delFromFM4 wzu wzv = delFromFM3 wzu wzv; deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); findMin (Branch key elt wuw fm_l wux) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; glueBal fm1 fm2 = glueBal2 fm1 fm2; glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; glueBal2Vv2 xvx xvy = findMax xvx; glueBal2Vv3 xvx xvy = findMin xvy; glueBal3 fm1 EmptyFM = fm1; glueBal3 wxz wyu = glueBal2 wxz wyu; glueBal4 EmptyFM fm2 = fm2; glueBal4 wyw wyx = glueBal3 wyw wyx; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < Pos (Succ (Succ Zero))); mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) wzy wzz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) wzy wzz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wzy wzz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) wzy wzz fm_lr fm_r); mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok xuw xux xuy = True; mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); mkBranchLeft_size xuw xux xuy = sizeFM xuw; mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (Pos (Succ Zero) + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvv xvw; mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); mkBranchRight_size xuw xux xuy = sizeFM xuy; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox xuw xux xuy x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch vzu vzv size vzw vzx) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.delFromFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.delFromFM xwv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.delFromFM xwv3 xwv4",fontsize=16,color="burlywood",shape="triangle"];4721[label="xwv3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 4721[label="",style="solid", color="burlywood", weight=9]; 4721 -> 5[label="",style="solid", color="burlywood", weight=3]; 4722[label="xwv3/FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=10,color="white",style="solid",shape="box"];4 -> 4722[label="",style="solid", color="burlywood", weight=9]; 4722 -> 6[label="",style="solid", color="burlywood", weight=3]; 5[label="FiniteMap.delFromFM FiniteMap.EmptyFM xwv4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 6[label="FiniteMap.delFromFM (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv4",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="FiniteMap.delFromFM4 FiniteMap.EmptyFM xwv4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.delFromFM3 (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv4",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (xwv4 > xwv30)",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 11[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];12[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (compare xwv4 xwv30 == GT)",fontsize=16,color="burlywood",shape="box"];4723[label="xwv4/xwv40 : xwv41",fontsize=10,color="white",style="solid",shape="box"];12 -> 4723[label="",style="solid", color="burlywood", weight=9]; 4723 -> 13[label="",style="solid", color="burlywood", weight=3]; 4724[label="xwv4/[]",fontsize=10,color="white",style="solid",shape="box"];12 -> 4724[label="",style="solid", color="burlywood", weight=9]; 4724 -> 14[label="",style="solid", color="burlywood", weight=3]; 13[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 (xwv40 : xwv41) (compare (xwv40 : xwv41) xwv30 == GT)",fontsize=16,color="burlywood",shape="box"];4725[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];13 -> 4725[label="",style="solid", color="burlywood", weight=9]; 4725 -> 15[label="",style="solid", color="burlywood", weight=3]; 4726[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];13 -> 4726[label="",style="solid", color="burlywood", weight=9]; 4726 -> 16[label="",style="solid", color="burlywood", weight=3]; 14[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 [] (compare [] xwv30 == GT)",fontsize=16,color="burlywood",shape="box"];4727[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];14 -> 4727[label="",style="solid", color="burlywood", weight=9]; 4727 -> 17[label="",style="solid", color="burlywood", weight=3]; 4728[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];14 -> 4728[label="",style="solid", color="burlywood", weight=9]; 4728 -> 18[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.delFromFM2 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 (xwv40 : xwv41) (compare (xwv40 : xwv41) (xwv300 : xwv301) == GT)",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 16[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 (xwv40 : xwv41) (compare (xwv40 : xwv41) [] == GT)",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 17[label="FiniteMap.delFromFM2 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (compare [] (xwv300 : xwv301) == GT)",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 18[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 [] (compare [] [] == GT)",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 19 -> 105[label="",style="dashed", color="red", weight=0]; 19[label="FiniteMap.delFromFM2 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 (xwv40 : xwv41) (primCompAux xwv40 xwv300 (compare xwv41 xwv301) == GT)",fontsize=16,color="magenta"];19 -> 106[label="",style="dashed", color="magenta", weight=3]; 19 -> 107[label="",style="dashed", color="magenta", weight=3]; 19 -> 108[label="",style="dashed", color="magenta", weight=3]; 19 -> 109[label="",style="dashed", color="magenta", weight=3]; 19 -> 110[label="",style="dashed", color="magenta", weight=3]; 19 -> 111[label="",style="dashed", color="magenta", weight=3]; 19 -> 112[label="",style="dashed", color="magenta", weight=3]; 19 -> 113[label="",style="dashed", color="magenta", weight=3]; 19 -> 114[label="",style="dashed", color="magenta", weight=3]; 20[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 (xwv40 : xwv41) (GT == GT)",fontsize=16,color="black",shape="box"];20 -> 24[label="",style="solid", color="black", weight=3]; 21[label="FiniteMap.delFromFM2 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (LT == GT)",fontsize=16,color="black",shape="box"];21 -> 25[label="",style="solid", color="black", weight=3]; 22[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 [] (EQ == GT)",fontsize=16,color="black",shape="box"];22 -> 26[label="",style="solid", color="black", weight=3]; 106[label="xwv300",fontsize=16,color="green",shape="box"];107[label="xwv34",fontsize=16,color="green",shape="box"];108[label="xwv41",fontsize=16,color="green",shape="box"];109[label="xwv301",fontsize=16,color="green",shape="box"];110[label="xwv31",fontsize=16,color="green",shape="box"];111[label="xwv32",fontsize=16,color="green",shape="box"];112[label="xwv40",fontsize=16,color="green",shape="box"];113[label="xwv33",fontsize=16,color="green",shape="box"];114[label="primCompAux xwv40 xwv300 (compare xwv41 xwv301)",fontsize=16,color="black",shape="triangle"];114 -> 128[label="",style="solid", color="black", weight=3]; 105[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (xwv27 == GT)",fontsize=16,color="burlywood",shape="triangle"];4729[label="xwv27/LT",fontsize=10,color="white",style="solid",shape="box"];105 -> 4729[label="",style="solid", color="burlywood", weight=9]; 4729 -> 129[label="",style="solid", color="burlywood", weight=3]; 4730[label="xwv27/EQ",fontsize=10,color="white",style="solid",shape="box"];105 -> 4730[label="",style="solid", color="burlywood", weight=9]; 4730 -> 130[label="",style="solid", color="burlywood", weight=3]; 4731[label="xwv27/GT",fontsize=10,color="white",style="solid",shape="box"];105 -> 4731[label="",style="solid", color="burlywood", weight=9]; 4731 -> 131[label="",style="solid", color="burlywood", weight=3]; 24[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 (xwv40 : xwv41) True",fontsize=16,color="black",shape="box"];24 -> 37[label="",style="solid", color="black", weight=3]; 25[label="FiniteMap.delFromFM2 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="black",shape="box"];25 -> 38[label="",style="solid", color="black", weight=3]; 26[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="black",shape="box"];26 -> 39[label="",style="solid", color="black", weight=3]; 128 -> 141[label="",style="dashed", color="red", weight=0]; 128[label="primCompAux0 (compare xwv41 xwv301) (compare xwv40 xwv300)",fontsize=16,color="magenta"];128 -> 142[label="",style="dashed", color="magenta", weight=3]; 128 -> 143[label="",style="dashed", color="magenta", weight=3]; 128 -> 144[label="",style="dashed", color="magenta", weight=3]; 129[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (LT == GT)",fontsize=16,color="black",shape="box"];129 -> 145[label="",style="solid", color="black", weight=3]; 130[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (EQ == GT)",fontsize=16,color="black",shape="box"];130 -> 146[label="",style="solid", color="black", weight=3]; 131[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (GT == GT)",fontsize=16,color="black",shape="box"];131 -> 147[label="",style="solid", color="black", weight=3]; 37 -> 3792[label="",style="dashed", color="red", weight=0]; 37[label="FiniteMap.mkBalBranch [] xwv31 xwv33 (FiniteMap.delFromFM xwv34 (xwv40 : xwv41))",fontsize=16,color="magenta"];37 -> 3793[label="",style="dashed", color="magenta", weight=3]; 37 -> 3794[label="",style="dashed", color="magenta", weight=3]; 37 -> 3795[label="",style="dashed", color="magenta", weight=3]; 37 -> 3796[label="",style="dashed", color="magenta", weight=3]; 38[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] ([] < xwv300 : xwv301)",fontsize=16,color="black",shape="box"];38 -> 59[label="",style="solid", color="black", weight=3]; 39[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] ([] < [])",fontsize=16,color="black",shape="box"];39 -> 60[label="",style="solid", color="black", weight=3]; 142[label="xwv301",fontsize=16,color="green",shape="box"];143[label="compare xwv40 xwv300",fontsize=16,color="blue",shape="box"];4732[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4732[label="",style="solid", color="blue", weight=9]; 4732 -> 148[label="",style="solid", color="blue", weight=3]; 4733[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4733[label="",style="solid", color="blue", weight=9]; 4733 -> 149[label="",style="solid", color="blue", weight=3]; 4734[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4734[label="",style="solid", color="blue", weight=9]; 4734 -> 150[label="",style="solid", color="blue", weight=3]; 4735[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4735[label="",style="solid", color="blue", weight=9]; 4735 -> 151[label="",style="solid", color="blue", weight=3]; 4736[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4736[label="",style="solid", color="blue", weight=9]; 4736 -> 152[label="",style="solid", color="blue", weight=3]; 4737[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4737[label="",style="solid", color="blue", weight=9]; 4737 -> 153[label="",style="solid", color="blue", weight=3]; 4738[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4738[label="",style="solid", color="blue", weight=9]; 4738 -> 154[label="",style="solid", color="blue", weight=3]; 4739[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4739[label="",style="solid", color="blue", weight=9]; 4739 -> 155[label="",style="solid", color="blue", weight=3]; 4740[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4740[label="",style="solid", color="blue", weight=9]; 4740 -> 156[label="",style="solid", color="blue", weight=3]; 4741[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4741[label="",style="solid", color="blue", weight=9]; 4741 -> 157[label="",style="solid", color="blue", weight=3]; 4742[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4742[label="",style="solid", color="blue", weight=9]; 4742 -> 158[label="",style="solid", color="blue", weight=3]; 4743[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4743[label="",style="solid", color="blue", weight=9]; 4743 -> 159[label="",style="solid", color="blue", weight=3]; 4744[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4744[label="",style="solid", color="blue", weight=9]; 4744 -> 160[label="",style="solid", color="blue", weight=3]; 4745[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];143 -> 4745[label="",style="solid", color="blue", weight=9]; 4745 -> 161[label="",style="solid", color="blue", weight=3]; 144[label="xwv41",fontsize=16,color="green",shape="box"];141[label="primCompAux0 (compare xwv32 xwv33) xwv34",fontsize=16,color="burlywood",shape="triangle"];4746[label="xwv34/LT",fontsize=10,color="white",style="solid",shape="box"];141 -> 4746[label="",style="solid", color="burlywood", weight=9]; 4746 -> 162[label="",style="solid", color="burlywood", weight=3]; 4747[label="xwv34/EQ",fontsize=10,color="white",style="solid",shape="box"];141 -> 4747[label="",style="solid", color="burlywood", weight=9]; 4747 -> 163[label="",style="solid", color="burlywood", weight=3]; 4748[label="xwv34/GT",fontsize=10,color="white",style="solid",shape="box"];141 -> 4748[label="",style="solid", color="burlywood", weight=9]; 4748 -> 164[label="",style="solid", color="burlywood", weight=3]; 145[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) False",fontsize=16,color="black",shape="triangle"];145 -> 172[label="",style="solid", color="black", weight=3]; 146 -> 145[label="",style="dashed", color="red", weight=0]; 146[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) False",fontsize=16,color="magenta"];147[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) True",fontsize=16,color="black",shape="box"];147 -> 173[label="",style="solid", color="black", weight=3]; 3793 -> 4[label="",style="dashed", color="red", weight=0]; 3793[label="FiniteMap.delFromFM xwv34 (xwv40 : xwv41)",fontsize=16,color="magenta"];3793 -> 3830[label="",style="dashed", color="magenta", weight=3]; 3793 -> 3831[label="",style="dashed", color="magenta", weight=3]; 3794[label="xwv33",fontsize=16,color="green",shape="box"];3795[label="[]",fontsize=16,color="green",shape="box"];3796[label="xwv31",fontsize=16,color="green",shape="box"];3792[label="FiniteMap.mkBalBranch xwv340 xwv341 xwv355 xwv344",fontsize=16,color="black",shape="triangle"];3792 -> 3832[label="",style="solid", color="black", weight=3]; 59 -> 82[label="",style="dashed", color="red", weight=0]; 59[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (compare [] (xwv300 : xwv301) == LT)",fontsize=16,color="magenta"];59 -> 83[label="",style="dashed", color="magenta", weight=3]; 60 -> 84[label="",style="dashed", color="red", weight=0]; 60[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] (compare [] [] == LT)",fontsize=16,color="magenta"];60 -> 85[label="",style="dashed", color="magenta", weight=3]; 148[label="compare xwv40 xwv300",fontsize=16,color="black",shape="triangle"];148 -> 174[label="",style="solid", color="black", weight=3]; 149[label="compare xwv40 xwv300",fontsize=16,color="burlywood",shape="triangle"];4749[label="xwv40/xwv400 : xwv401",fontsize=10,color="white",style="solid",shape="box"];149 -> 4749[label="",style="solid", color="burlywood", weight=9]; 4749 -> 175[label="",style="solid", color="burlywood", weight=3]; 4750[label="xwv40/[]",fontsize=10,color="white",style="solid",shape="box"];149 -> 4750[label="",style="solid", color="burlywood", weight=9]; 4750 -> 176[label="",style="solid", color="burlywood", weight=3]; 150[label="compare xwv40 xwv300",fontsize=16,color="burlywood",shape="triangle"];4751[label="xwv40/()",fontsize=10,color="white",style="solid",shape="box"];150 -> 4751[label="",style="solid", color="burlywood", weight=9]; 4751 -> 177[label="",style="solid", color="burlywood", weight=3]; 151[label="compare xwv40 xwv300",fontsize=16,color="burlywood",shape="triangle"];4752[label="xwv40/Integer xwv400",fontsize=10,color="white",style="solid",shape="box"];151 -> 4752[label="",style="solid", color="burlywood", weight=9]; 4752 -> 178[label="",style="solid", color="burlywood", weight=3]; 152[label="compare xwv40 xwv300",fontsize=16,color="black",shape="triangle"];152 -> 179[label="",style="solid", color="black", weight=3]; 153[label="compare xwv40 xwv300",fontsize=16,color="black",shape="triangle"];153 -> 180[label="",style="solid", color="black", weight=3]; 154[label="compare xwv40 xwv300",fontsize=16,color="black",shape="triangle"];154 -> 181[label="",style="solid", color="black", weight=3]; 155[label="compare xwv40 xwv300",fontsize=16,color="black",shape="triangle"];155 -> 182[label="",style="solid", color="black", weight=3]; 156[label="compare xwv40 xwv300",fontsize=16,color="burlywood",shape="triangle"];4753[label="xwv40/xwv400 :% xwv401",fontsize=10,color="white",style="solid",shape="box"];156 -> 4753[label="",style="solid", color="burlywood", weight=9]; 4753 -> 183[label="",style="solid", color="burlywood", weight=3]; 157[label="compare xwv40 xwv300",fontsize=16,color="black",shape="triangle"];157 -> 184[label="",style="solid", color="black", weight=3]; 158[label="compare xwv40 xwv300",fontsize=16,color="black",shape="triangle"];158 -> 185[label="",style="solid", color="black", weight=3]; 159[label="compare xwv40 xwv300",fontsize=16,color="black",shape="triangle"];159 -> 186[label="",style="solid", color="black", weight=3]; 160[label="compare xwv40 xwv300",fontsize=16,color="black",shape="triangle"];160 -> 187[label="",style="solid", color="black", weight=3]; 161[label="compare xwv40 xwv300",fontsize=16,color="black",shape="triangle"];161 -> 188[label="",style="solid", color="black", weight=3]; 162[label="primCompAux0 (compare xwv32 xwv33) LT",fontsize=16,color="black",shape="box"];162 -> 189[label="",style="solid", color="black", weight=3]; 163[label="primCompAux0 (compare xwv32 xwv33) EQ",fontsize=16,color="black",shape="box"];163 -> 190[label="",style="solid", color="black", weight=3]; 164[label="primCompAux0 (compare xwv32 xwv33) GT",fontsize=16,color="black",shape="box"];164 -> 191[label="",style="solid", color="black", weight=3]; 172[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (xwv21 : xwv22 < xwv15 : xwv16)",fontsize=16,color="black",shape="box"];172 -> 194[label="",style="solid", color="black", weight=3]; 173 -> 3792[label="",style="dashed", color="red", weight=0]; 173[label="FiniteMap.mkBalBranch (xwv15 : xwv16) xwv17 xwv19 (FiniteMap.delFromFM xwv20 (xwv21 : xwv22))",fontsize=16,color="magenta"];173 -> 3801[label="",style="dashed", color="magenta", weight=3]; 173 -> 3802[label="",style="dashed", color="magenta", weight=3]; 173 -> 3803[label="",style="dashed", color="magenta", weight=3]; 173 -> 3804[label="",style="dashed", color="magenta", weight=3]; 3830[label="xwv40 : xwv41",fontsize=16,color="green",shape="box"];3831[label="xwv34",fontsize=16,color="green",shape="box"];3832[label="FiniteMap.mkBalBranch6 xwv340 xwv341 xwv355 xwv344",fontsize=16,color="black",shape="box"];3832 -> 3849[label="",style="solid", color="black", weight=3]; 83[label="compare [] (xwv300 : xwv301)",fontsize=16,color="black",shape="box"];83 -> 133[label="",style="solid", color="black", weight=3]; 82[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (xwv25 == LT)",fontsize=16,color="burlywood",shape="triangle"];4754[label="xwv25/LT",fontsize=10,color="white",style="solid",shape="box"];82 -> 4754[label="",style="solid", color="burlywood", weight=9]; 4754 -> 134[label="",style="solid", color="burlywood", weight=3]; 4755[label="xwv25/EQ",fontsize=10,color="white",style="solid",shape="box"];82 -> 4755[label="",style="solid", color="burlywood", weight=9]; 4755 -> 135[label="",style="solid", color="burlywood", weight=3]; 4756[label="xwv25/GT",fontsize=10,color="white",style="solid",shape="box"];82 -> 4756[label="",style="solid", color="burlywood", weight=9]; 4756 -> 136[label="",style="solid", color="burlywood", weight=3]; 85[label="compare [] []",fontsize=16,color="black",shape="box"];85 -> 137[label="",style="solid", color="black", weight=3]; 84[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] (xwv26 == LT)",fontsize=16,color="burlywood",shape="triangle"];4757[label="xwv26/LT",fontsize=10,color="white",style="solid",shape="box"];84 -> 4757[label="",style="solid", color="burlywood", weight=9]; 4757 -> 138[label="",style="solid", color="burlywood", weight=3]; 4758[label="xwv26/EQ",fontsize=10,color="white",style="solid",shape="box"];84 -> 4758[label="",style="solid", color="burlywood", weight=9]; 4758 -> 139[label="",style="solid", color="burlywood", weight=3]; 4759[label="xwv26/GT",fontsize=10,color="white",style="solid",shape="box"];84 -> 4759[label="",style="solid", color="burlywood", weight=9]; 4759 -> 140[label="",style="solid", color="burlywood", weight=3]; 174[label="compare3 xwv40 xwv300",fontsize=16,color="black",shape="box"];174 -> 197[label="",style="solid", color="black", weight=3]; 175[label="compare (xwv400 : xwv401) xwv300",fontsize=16,color="burlywood",shape="box"];4760[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];175 -> 4760[label="",style="solid", color="burlywood", weight=9]; 4760 -> 198[label="",style="solid", color="burlywood", weight=3]; 4761[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];175 -> 4761[label="",style="solid", color="burlywood", weight=9]; 4761 -> 199[label="",style="solid", color="burlywood", weight=3]; 176[label="compare [] xwv300",fontsize=16,color="burlywood",shape="box"];4762[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];176 -> 4762[label="",style="solid", color="burlywood", weight=9]; 4762 -> 200[label="",style="solid", color="burlywood", weight=3]; 4763[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];176 -> 4763[label="",style="solid", color="burlywood", weight=9]; 4763 -> 201[label="",style="solid", color="burlywood", weight=3]; 177[label="compare () xwv300",fontsize=16,color="burlywood",shape="box"];4764[label="xwv300/()",fontsize=10,color="white",style="solid",shape="box"];177 -> 4764[label="",style="solid", color="burlywood", weight=9]; 4764 -> 202[label="",style="solid", color="burlywood", weight=3]; 178[label="compare (Integer xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];4765[label="xwv300/Integer xwv3000",fontsize=10,color="white",style="solid",shape="box"];178 -> 4765[label="",style="solid", color="burlywood", weight=9]; 4765 -> 203[label="",style="solid", color="burlywood", weight=3]; 179[label="primCmpInt xwv40 xwv300",fontsize=16,color="burlywood",shape="triangle"];4766[label="xwv40/Pos xwv400",fontsize=10,color="white",style="solid",shape="box"];179 -> 4766[label="",style="solid", color="burlywood", weight=9]; 4766 -> 204[label="",style="solid", color="burlywood", weight=3]; 4767[label="xwv40/Neg xwv400",fontsize=10,color="white",style="solid",shape="box"];179 -> 4767[label="",style="solid", color="burlywood", weight=9]; 4767 -> 205[label="",style="solid", color="burlywood", weight=3]; 180[label="compare3 xwv40 xwv300",fontsize=16,color="black",shape="box"];180 -> 206[label="",style="solid", color="black", weight=3]; 181[label="compare3 xwv40 xwv300",fontsize=16,color="black",shape="box"];181 -> 207[label="",style="solid", color="black", weight=3]; 182[label="compare3 xwv40 xwv300",fontsize=16,color="black",shape="box"];182 -> 208[label="",style="solid", color="black", weight=3]; 183[label="compare (xwv400 :% xwv401) xwv300",fontsize=16,color="burlywood",shape="box"];4768[label="xwv300/xwv3000 :% xwv3001",fontsize=10,color="white",style="solid",shape="box"];183 -> 4768[label="",style="solid", color="burlywood", weight=9]; 4768 -> 209[label="",style="solid", color="burlywood", weight=3]; 184[label="compare3 xwv40 xwv300",fontsize=16,color="black",shape="box"];184 -> 210[label="",style="solid", color="black", weight=3]; 185[label="primCmpDouble xwv40 xwv300",fontsize=16,color="burlywood",shape="box"];4769[label="xwv40/Double xwv400 xwv401",fontsize=10,color="white",style="solid",shape="box"];185 -> 4769[label="",style="solid", color="burlywood", weight=9]; 4769 -> 211[label="",style="solid", color="burlywood", weight=3]; 186[label="compare3 xwv40 xwv300",fontsize=16,color="black",shape="box"];186 -> 212[label="",style="solid", color="black", weight=3]; 187[label="primCmpChar xwv40 xwv300",fontsize=16,color="burlywood",shape="box"];4770[label="xwv40/Char xwv400",fontsize=10,color="white",style="solid",shape="box"];187 -> 4770[label="",style="solid", color="burlywood", weight=9]; 4770 -> 213[label="",style="solid", color="burlywood", weight=3]; 188[label="primCmpFloat xwv40 xwv300",fontsize=16,color="burlywood",shape="box"];4771[label="xwv40/Float xwv400 xwv401",fontsize=10,color="white",style="solid",shape="box"];188 -> 4771[label="",style="solid", color="burlywood", weight=9]; 4771 -> 214[label="",style="solid", color="burlywood", weight=3]; 189[label="LT",fontsize=16,color="green",shape="box"];190[label="compare xwv32 xwv33",fontsize=16,color="blue",shape="box"];4772[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4772[label="",style="solid", color="blue", weight=9]; 4772 -> 215[label="",style="solid", color="blue", weight=3]; 4773[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4773[label="",style="solid", color="blue", weight=9]; 4773 -> 216[label="",style="solid", color="blue", weight=3]; 4774[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4774[label="",style="solid", color="blue", weight=9]; 4774 -> 217[label="",style="solid", color="blue", weight=3]; 4775[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4775[label="",style="solid", color="blue", weight=9]; 4775 -> 218[label="",style="solid", color="blue", weight=3]; 4776[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4776[label="",style="solid", color="blue", weight=9]; 4776 -> 219[label="",style="solid", color="blue", weight=3]; 4777[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4777[label="",style="solid", color="blue", weight=9]; 4777 -> 220[label="",style="solid", color="blue", weight=3]; 4778[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4778[label="",style="solid", color="blue", weight=9]; 4778 -> 221[label="",style="solid", color="blue", weight=3]; 4779[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4779[label="",style="solid", color="blue", weight=9]; 4779 -> 222[label="",style="solid", color="blue", weight=3]; 4780[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4780[label="",style="solid", color="blue", weight=9]; 4780 -> 223[label="",style="solid", color="blue", weight=3]; 4781[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4781[label="",style="solid", color="blue", weight=9]; 4781 -> 224[label="",style="solid", color="blue", weight=3]; 4782[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4782[label="",style="solid", color="blue", weight=9]; 4782 -> 225[label="",style="solid", color="blue", weight=3]; 4783[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4783[label="",style="solid", color="blue", weight=9]; 4783 -> 226[label="",style="solid", color="blue", weight=3]; 4784[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4784[label="",style="solid", color="blue", weight=9]; 4784 -> 227[label="",style="solid", color="blue", weight=3]; 4785[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];190 -> 4785[label="",style="solid", color="blue", weight=9]; 4785 -> 228[label="",style="solid", color="blue", weight=3]; 191[label="GT",fontsize=16,color="green",shape="box"];194 -> 229[label="",style="dashed", color="red", weight=0]; 194[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (compare (xwv21 : xwv22) (xwv15 : xwv16) == LT)",fontsize=16,color="magenta"];194 -> 230[label="",style="dashed", color="magenta", weight=3]; 3801 -> 4[label="",style="dashed", color="red", weight=0]; 3801[label="FiniteMap.delFromFM xwv20 (xwv21 : xwv22)",fontsize=16,color="magenta"];3801 -> 3833[label="",style="dashed", color="magenta", weight=3]; 3801 -> 3834[label="",style="dashed", color="magenta", weight=3]; 3802[label="xwv19",fontsize=16,color="green",shape="box"];3803[label="xwv15 : xwv16",fontsize=16,color="green",shape="box"];3804[label="xwv17",fontsize=16,color="green",shape="box"];3849 -> 3858[label="",style="dashed", color="red", weight=0]; 3849[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];3849 -> 3859[label="",style="dashed", color="magenta", weight=3]; 133[label="LT",fontsize=16,color="green",shape="box"];134[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (LT == LT)",fontsize=16,color="black",shape="box"];134 -> 166[label="",style="solid", color="black", weight=3]; 135[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (EQ == LT)",fontsize=16,color="black",shape="box"];135 -> 167[label="",style="solid", color="black", weight=3]; 136[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (GT == LT)",fontsize=16,color="black",shape="box"];136 -> 168[label="",style="solid", color="black", weight=3]; 137[label="EQ",fontsize=16,color="green",shape="box"];138[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] (LT == LT)",fontsize=16,color="black",shape="box"];138 -> 169[label="",style="solid", color="black", weight=3]; 139[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] (EQ == LT)",fontsize=16,color="black",shape="box"];139 -> 170[label="",style="solid", color="black", weight=3]; 140[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] (GT == LT)",fontsize=16,color="black",shape="box"];140 -> 171[label="",style="solid", color="black", weight=3]; 197[label="compare2 xwv40 xwv300 (xwv40 == xwv300)",fontsize=16,color="burlywood",shape="box"];4786[label="xwv40/Left xwv400",fontsize=10,color="white",style="solid",shape="box"];197 -> 4786[label="",style="solid", color="burlywood", weight=9]; 4786 -> 234[label="",style="solid", color="burlywood", weight=3]; 4787[label="xwv40/Right xwv400",fontsize=10,color="white",style="solid",shape="box"];197 -> 4787[label="",style="solid", color="burlywood", weight=9]; 4787 -> 235[label="",style="solid", color="burlywood", weight=3]; 198[label="compare (xwv400 : xwv401) (xwv3000 : xwv3001)",fontsize=16,color="black",shape="box"];198 -> 236[label="",style="solid", color="black", weight=3]; 199[label="compare (xwv400 : xwv401) []",fontsize=16,color="black",shape="box"];199 -> 237[label="",style="solid", color="black", weight=3]; 200[label="compare [] (xwv3000 : xwv3001)",fontsize=16,color="black",shape="box"];200 -> 238[label="",style="solid", color="black", weight=3]; 201[label="compare [] []",fontsize=16,color="black",shape="box"];201 -> 239[label="",style="solid", color="black", weight=3]; 202[label="compare () ()",fontsize=16,color="black",shape="box"];202 -> 240[label="",style="solid", color="black", weight=3]; 203[label="compare (Integer xwv400) (Integer xwv3000)",fontsize=16,color="black",shape="box"];203 -> 241[label="",style="solid", color="black", weight=3]; 204[label="primCmpInt (Pos xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];4788[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];204 -> 4788[label="",style="solid", color="burlywood", weight=9]; 4788 -> 242[label="",style="solid", color="burlywood", weight=3]; 4789[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];204 -> 4789[label="",style="solid", color="burlywood", weight=9]; 4789 -> 243[label="",style="solid", color="burlywood", weight=3]; 205[label="primCmpInt (Neg xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];4790[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];205 -> 4790[label="",style="solid", color="burlywood", weight=9]; 4790 -> 244[label="",style="solid", color="burlywood", weight=3]; 4791[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];205 -> 4791[label="",style="solid", color="burlywood", weight=9]; 4791 -> 245[label="",style="solid", color="burlywood", weight=3]; 206[label="compare2 xwv40 xwv300 (xwv40 == xwv300)",fontsize=16,color="burlywood",shape="box"];4792[label="xwv40/(xwv400,xwv401,xwv402)",fontsize=10,color="white",style="solid",shape="box"];206 -> 4792[label="",style="solid", color="burlywood", weight=9]; 4792 -> 246[label="",style="solid", color="burlywood", weight=3]; 207[label="compare2 xwv40 xwv300 (xwv40 == xwv300)",fontsize=16,color="burlywood",shape="box"];4793[label="xwv40/False",fontsize=10,color="white",style="solid",shape="box"];207 -> 4793[label="",style="solid", color="burlywood", weight=9]; 4793 -> 247[label="",style="solid", color="burlywood", weight=3]; 4794[label="xwv40/True",fontsize=10,color="white",style="solid",shape="box"];207 -> 4794[label="",style="solid", color="burlywood", weight=9]; 4794 -> 248[label="",style="solid", color="burlywood", weight=3]; 208[label="compare2 xwv40 xwv300 (xwv40 == xwv300)",fontsize=16,color="burlywood",shape="box"];4795[label="xwv40/(xwv400,xwv401)",fontsize=10,color="white",style="solid",shape="box"];208 -> 4795[label="",style="solid", color="burlywood", weight=9]; 4795 -> 249[label="",style="solid", color="burlywood", weight=3]; 209[label="compare (xwv400 :% xwv401) (xwv3000 :% xwv3001)",fontsize=16,color="black",shape="box"];209 -> 250[label="",style="solid", color="black", weight=3]; 210[label="compare2 xwv40 xwv300 (xwv40 == xwv300)",fontsize=16,color="burlywood",shape="box"];4796[label="xwv40/Nothing",fontsize=10,color="white",style="solid",shape="box"];210 -> 4796[label="",style="solid", color="burlywood", weight=9]; 4796 -> 251[label="",style="solid", color="burlywood", weight=3]; 4797[label="xwv40/Just xwv400",fontsize=10,color="white",style="solid",shape="box"];210 -> 4797[label="",style="solid", color="burlywood", weight=9]; 4797 -> 252[label="",style="solid", color="burlywood", weight=3]; 211[label="primCmpDouble (Double xwv400 xwv401) xwv300",fontsize=16,color="burlywood",shape="box"];4798[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];211 -> 4798[label="",style="solid", color="burlywood", weight=9]; 4798 -> 253[label="",style="solid", color="burlywood", weight=3]; 4799[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];211 -> 4799[label="",style="solid", color="burlywood", weight=9]; 4799 -> 254[label="",style="solid", color="burlywood", weight=3]; 212[label="compare2 xwv40 xwv300 (xwv40 == xwv300)",fontsize=16,color="burlywood",shape="box"];4800[label="xwv40/LT",fontsize=10,color="white",style="solid",shape="box"];212 -> 4800[label="",style="solid", color="burlywood", weight=9]; 4800 -> 255[label="",style="solid", color="burlywood", weight=3]; 4801[label="xwv40/EQ",fontsize=10,color="white",style="solid",shape="box"];212 -> 4801[label="",style="solid", color="burlywood", weight=9]; 4801 -> 256[label="",style="solid", color="burlywood", weight=3]; 4802[label="xwv40/GT",fontsize=10,color="white",style="solid",shape="box"];212 -> 4802[label="",style="solid", color="burlywood", weight=9]; 4802 -> 257[label="",style="solid", color="burlywood", weight=3]; 213[label="primCmpChar (Char xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];4803[label="xwv300/Char xwv3000",fontsize=10,color="white",style="solid",shape="box"];213 -> 4803[label="",style="solid", color="burlywood", weight=9]; 4803 -> 258[label="",style="solid", color="burlywood", weight=3]; 214[label="primCmpFloat (Float xwv400 xwv401) xwv300",fontsize=16,color="burlywood",shape="box"];4804[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];214 -> 4804[label="",style="solid", color="burlywood", weight=9]; 4804 -> 259[label="",style="solid", color="burlywood", weight=3]; 4805[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];214 -> 4805[label="",style="solid", color="burlywood", weight=9]; 4805 -> 260[label="",style="solid", color="burlywood", weight=3]; 215 -> 148[label="",style="dashed", color="red", weight=0]; 215[label="compare xwv32 xwv33",fontsize=16,color="magenta"];215 -> 261[label="",style="dashed", color="magenta", weight=3]; 215 -> 262[label="",style="dashed", color="magenta", weight=3]; 216 -> 149[label="",style="dashed", color="red", weight=0]; 216[label="compare xwv32 xwv33",fontsize=16,color="magenta"];216 -> 263[label="",style="dashed", color="magenta", weight=3]; 216 -> 264[label="",style="dashed", color="magenta", weight=3]; 217 -> 150[label="",style="dashed", color="red", weight=0]; 217[label="compare xwv32 xwv33",fontsize=16,color="magenta"];217 -> 265[label="",style="dashed", color="magenta", weight=3]; 217 -> 266[label="",style="dashed", color="magenta", weight=3]; 218 -> 151[label="",style="dashed", color="red", weight=0]; 218[label="compare xwv32 xwv33",fontsize=16,color="magenta"];218 -> 267[label="",style="dashed", color="magenta", weight=3]; 218 -> 268[label="",style="dashed", color="magenta", weight=3]; 219 -> 152[label="",style="dashed", color="red", weight=0]; 219[label="compare xwv32 xwv33",fontsize=16,color="magenta"];219 -> 269[label="",style="dashed", color="magenta", weight=3]; 219 -> 270[label="",style="dashed", color="magenta", weight=3]; 220 -> 153[label="",style="dashed", color="red", weight=0]; 220[label="compare xwv32 xwv33",fontsize=16,color="magenta"];220 -> 271[label="",style="dashed", color="magenta", weight=3]; 220 -> 272[label="",style="dashed", color="magenta", weight=3]; 221 -> 154[label="",style="dashed", color="red", weight=0]; 221[label="compare xwv32 xwv33",fontsize=16,color="magenta"];221 -> 273[label="",style="dashed", color="magenta", weight=3]; 221 -> 274[label="",style="dashed", color="magenta", weight=3]; 222 -> 155[label="",style="dashed", color="red", weight=0]; 222[label="compare xwv32 xwv33",fontsize=16,color="magenta"];222 -> 275[label="",style="dashed", color="magenta", weight=3]; 222 -> 276[label="",style="dashed", color="magenta", weight=3]; 223 -> 156[label="",style="dashed", color="red", weight=0]; 223[label="compare xwv32 xwv33",fontsize=16,color="magenta"];223 -> 277[label="",style="dashed", color="magenta", weight=3]; 223 -> 278[label="",style="dashed", color="magenta", weight=3]; 224 -> 157[label="",style="dashed", color="red", weight=0]; 224[label="compare xwv32 xwv33",fontsize=16,color="magenta"];224 -> 279[label="",style="dashed", color="magenta", weight=3]; 224 -> 280[label="",style="dashed", color="magenta", weight=3]; 225 -> 158[label="",style="dashed", color="red", weight=0]; 225[label="compare xwv32 xwv33",fontsize=16,color="magenta"];225 -> 281[label="",style="dashed", color="magenta", weight=3]; 225 -> 282[label="",style="dashed", color="magenta", weight=3]; 226 -> 159[label="",style="dashed", color="red", weight=0]; 226[label="compare xwv32 xwv33",fontsize=16,color="magenta"];226 -> 283[label="",style="dashed", color="magenta", weight=3]; 226 -> 284[label="",style="dashed", color="magenta", weight=3]; 227 -> 160[label="",style="dashed", color="red", weight=0]; 227[label="compare xwv32 xwv33",fontsize=16,color="magenta"];227 -> 285[label="",style="dashed", color="magenta", weight=3]; 227 -> 286[label="",style="dashed", color="magenta", weight=3]; 228 -> 161[label="",style="dashed", color="red", weight=0]; 228[label="compare xwv32 xwv33",fontsize=16,color="magenta"];228 -> 287[label="",style="dashed", color="magenta", weight=3]; 228 -> 288[label="",style="dashed", color="magenta", weight=3]; 230 -> 149[label="",style="dashed", color="red", weight=0]; 230[label="compare (xwv21 : xwv22) (xwv15 : xwv16)",fontsize=16,color="magenta"];230 -> 289[label="",style="dashed", color="magenta", weight=3]; 230 -> 290[label="",style="dashed", color="magenta", weight=3]; 229[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (xwv37 == LT)",fontsize=16,color="burlywood",shape="triangle"];4806[label="xwv37/LT",fontsize=10,color="white",style="solid",shape="box"];229 -> 4806[label="",style="solid", color="burlywood", weight=9]; 4806 -> 291[label="",style="solid", color="burlywood", weight=3]; 4807[label="xwv37/EQ",fontsize=10,color="white",style="solid",shape="box"];229 -> 4807[label="",style="solid", color="burlywood", weight=9]; 4807 -> 292[label="",style="solid", color="burlywood", weight=3]; 4808[label="xwv37/GT",fontsize=10,color="white",style="solid",shape="box"];229 -> 4808[label="",style="solid", color="burlywood", weight=9]; 4808 -> 293[label="",style="solid", color="burlywood", weight=3]; 3833[label="xwv21 : xwv22",fontsize=16,color="green",shape="box"];3834[label="xwv20",fontsize=16,color="green",shape="box"];3859 -> 1618[label="",style="dashed", color="red", weight=0]; 3859[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];3859 -> 3860[label="",style="dashed", color="magenta", weight=3]; 3859 -> 3861[label="",style="dashed", color="magenta", weight=3]; 3858[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 xwv356",fontsize=16,color="burlywood",shape="triangle"];4809[label="xwv356/False",fontsize=10,color="white",style="solid",shape="box"];3858 -> 4809[label="",style="solid", color="burlywood", weight=9]; 4809 -> 3862[label="",style="solid", color="burlywood", weight=3]; 4810[label="xwv356/True",fontsize=10,color="white",style="solid",shape="box"];3858 -> 4810[label="",style="solid", color="burlywood", weight=9]; 4810 -> 3863[label="",style="solid", color="burlywood", weight=3]; 166[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] True",fontsize=16,color="black",shape="box"];166 -> 294[label="",style="solid", color="black", weight=3]; 167[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="black",shape="triangle"];167 -> 295[label="",style="solid", color="black", weight=3]; 168 -> 167[label="",style="dashed", color="red", weight=0]; 168[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="magenta"];169[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] True",fontsize=16,color="black",shape="box"];169 -> 296[label="",style="solid", color="black", weight=3]; 170[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="black",shape="triangle"];170 -> 297[label="",style="solid", color="black", weight=3]; 171 -> 170[label="",style="dashed", color="red", weight=0]; 171[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="magenta"];234[label="compare2 (Left xwv400) xwv300 (Left xwv400 == xwv300)",fontsize=16,color="burlywood",shape="box"];4811[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];234 -> 4811[label="",style="solid", color="burlywood", weight=9]; 4811 -> 304[label="",style="solid", color="burlywood", weight=3]; 4812[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];234 -> 4812[label="",style="solid", color="burlywood", weight=9]; 4812 -> 305[label="",style="solid", color="burlywood", weight=3]; 235[label="compare2 (Right xwv400) xwv300 (Right xwv400 == xwv300)",fontsize=16,color="burlywood",shape="box"];4813[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];235 -> 4813[label="",style="solid", color="burlywood", weight=9]; 4813 -> 306[label="",style="solid", color="burlywood", weight=3]; 4814[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];235 -> 4814[label="",style="solid", color="burlywood", weight=9]; 4814 -> 307[label="",style="solid", color="burlywood", weight=3]; 236 -> 114[label="",style="dashed", color="red", weight=0]; 236[label="primCompAux xwv400 xwv3000 (compare xwv401 xwv3001)",fontsize=16,color="magenta"];236 -> 308[label="",style="dashed", color="magenta", weight=3]; 236 -> 309[label="",style="dashed", color="magenta", weight=3]; 236 -> 310[label="",style="dashed", color="magenta", weight=3]; 236 -> 311[label="",style="dashed", color="magenta", weight=3]; 237[label="GT",fontsize=16,color="green",shape="box"];238[label="LT",fontsize=16,color="green",shape="box"];239[label="EQ",fontsize=16,color="green",shape="box"];240[label="EQ",fontsize=16,color="green",shape="box"];241 -> 179[label="",style="dashed", color="red", weight=0]; 241[label="primCmpInt xwv400 xwv3000",fontsize=16,color="magenta"];241 -> 312[label="",style="dashed", color="magenta", weight=3]; 241 -> 313[label="",style="dashed", color="magenta", weight=3]; 242[label="primCmpInt (Pos (Succ xwv4000)) xwv300",fontsize=16,color="burlywood",shape="box"];4815[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];242 -> 4815[label="",style="solid", color="burlywood", weight=9]; 4815 -> 314[label="",style="solid", color="burlywood", weight=3]; 4816[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];242 -> 4816[label="",style="solid", color="burlywood", weight=9]; 4816 -> 315[label="",style="solid", color="burlywood", weight=3]; 243[label="primCmpInt (Pos Zero) xwv300",fontsize=16,color="burlywood",shape="box"];4817[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];243 -> 4817[label="",style="solid", color="burlywood", weight=9]; 4817 -> 316[label="",style="solid", color="burlywood", weight=3]; 4818[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];243 -> 4818[label="",style="solid", color="burlywood", weight=9]; 4818 -> 317[label="",style="solid", color="burlywood", weight=3]; 244[label="primCmpInt (Neg (Succ xwv4000)) xwv300",fontsize=16,color="burlywood",shape="box"];4819[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];244 -> 4819[label="",style="solid", color="burlywood", weight=9]; 4819 -> 318[label="",style="solid", color="burlywood", weight=3]; 4820[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];244 -> 4820[label="",style="solid", color="burlywood", weight=9]; 4820 -> 319[label="",style="solid", color="burlywood", weight=3]; 245[label="primCmpInt (Neg Zero) xwv300",fontsize=16,color="burlywood",shape="box"];4821[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];245 -> 4821[label="",style="solid", color="burlywood", weight=9]; 4821 -> 320[label="",style="solid", color="burlywood", weight=3]; 4822[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];245 -> 4822[label="",style="solid", color="burlywood", weight=9]; 4822 -> 321[label="",style="solid", color="burlywood", weight=3]; 246[label="compare2 (xwv400,xwv401,xwv402) xwv300 ((xwv400,xwv401,xwv402) == xwv300)",fontsize=16,color="burlywood",shape="box"];4823[label="xwv300/(xwv3000,xwv3001,xwv3002)",fontsize=10,color="white",style="solid",shape="box"];246 -> 4823[label="",style="solid", color="burlywood", weight=9]; 4823 -> 322[label="",style="solid", color="burlywood", weight=3]; 247[label="compare2 False xwv300 (False == xwv300)",fontsize=16,color="burlywood",shape="box"];4824[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];247 -> 4824[label="",style="solid", color="burlywood", weight=9]; 4824 -> 323[label="",style="solid", color="burlywood", weight=3]; 4825[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];247 -> 4825[label="",style="solid", color="burlywood", weight=9]; 4825 -> 324[label="",style="solid", color="burlywood", weight=3]; 248[label="compare2 True xwv300 (True == xwv300)",fontsize=16,color="burlywood",shape="box"];4826[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];248 -> 4826[label="",style="solid", color="burlywood", weight=9]; 4826 -> 325[label="",style="solid", color="burlywood", weight=3]; 4827[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];248 -> 4827[label="",style="solid", color="burlywood", weight=9]; 4827 -> 326[label="",style="solid", color="burlywood", weight=3]; 249[label="compare2 (xwv400,xwv401) xwv300 ((xwv400,xwv401) == xwv300)",fontsize=16,color="burlywood",shape="box"];4828[label="xwv300/(xwv3000,xwv3001)",fontsize=10,color="white",style="solid",shape="box"];249 -> 4828[label="",style="solid", color="burlywood", weight=9]; 4828 -> 327[label="",style="solid", color="burlywood", weight=3]; 250[label="compare (xwv400 * xwv3001) (xwv3000 * xwv401)",fontsize=16,color="blue",shape="box"];4829[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];250 -> 4829[label="",style="solid", color="blue", weight=9]; 4829 -> 328[label="",style="solid", color="blue", weight=3]; 4830[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];250 -> 4830[label="",style="solid", color="blue", weight=9]; 4830 -> 329[label="",style="solid", color="blue", weight=3]; 251[label="compare2 Nothing xwv300 (Nothing == xwv300)",fontsize=16,color="burlywood",shape="box"];4831[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];251 -> 4831[label="",style="solid", color="burlywood", weight=9]; 4831 -> 330[label="",style="solid", color="burlywood", weight=3]; 4832[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];251 -> 4832[label="",style="solid", color="burlywood", weight=9]; 4832 -> 331[label="",style="solid", color="burlywood", weight=3]; 252[label="compare2 (Just xwv400) xwv300 (Just xwv400 == xwv300)",fontsize=16,color="burlywood",shape="box"];4833[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];252 -> 4833[label="",style="solid", color="burlywood", weight=9]; 4833 -> 332[label="",style="solid", color="burlywood", weight=3]; 4834[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];252 -> 4834[label="",style="solid", color="burlywood", weight=9]; 4834 -> 333[label="",style="solid", color="burlywood", weight=3]; 253[label="primCmpDouble (Double xwv400 (Pos xwv4010)) xwv300",fontsize=16,color="burlywood",shape="box"];4835[label="xwv300/Double xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];253 -> 4835[label="",style="solid", color="burlywood", weight=9]; 4835 -> 334[label="",style="solid", color="burlywood", weight=3]; 254[label="primCmpDouble (Double xwv400 (Neg xwv4010)) xwv300",fontsize=16,color="burlywood",shape="box"];4836[label="xwv300/Double xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];254 -> 4836[label="",style="solid", color="burlywood", weight=9]; 4836 -> 335[label="",style="solid", color="burlywood", weight=3]; 255[label="compare2 LT xwv300 (LT == xwv300)",fontsize=16,color="burlywood",shape="box"];4837[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];255 -> 4837[label="",style="solid", color="burlywood", weight=9]; 4837 -> 336[label="",style="solid", color="burlywood", weight=3]; 4838[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];255 -> 4838[label="",style="solid", color="burlywood", weight=9]; 4838 -> 337[label="",style="solid", color="burlywood", weight=3]; 4839[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];255 -> 4839[label="",style="solid", color="burlywood", weight=9]; 4839 -> 338[label="",style="solid", color="burlywood", weight=3]; 256[label="compare2 EQ xwv300 (EQ == xwv300)",fontsize=16,color="burlywood",shape="box"];4840[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];256 -> 4840[label="",style="solid", color="burlywood", weight=9]; 4840 -> 339[label="",style="solid", color="burlywood", weight=3]; 4841[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];256 -> 4841[label="",style="solid", color="burlywood", weight=9]; 4841 -> 340[label="",style="solid", color="burlywood", weight=3]; 4842[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];256 -> 4842[label="",style="solid", color="burlywood", weight=9]; 4842 -> 341[label="",style="solid", color="burlywood", weight=3]; 257[label="compare2 GT xwv300 (GT == xwv300)",fontsize=16,color="burlywood",shape="box"];4843[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];257 -> 4843[label="",style="solid", color="burlywood", weight=9]; 4843 -> 342[label="",style="solid", color="burlywood", weight=3]; 4844[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];257 -> 4844[label="",style="solid", color="burlywood", weight=9]; 4844 -> 343[label="",style="solid", color="burlywood", weight=3]; 4845[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];257 -> 4845[label="",style="solid", color="burlywood", weight=9]; 4845 -> 344[label="",style="solid", color="burlywood", weight=3]; 258[label="primCmpChar (Char xwv400) (Char xwv3000)",fontsize=16,color="black",shape="box"];258 -> 345[label="",style="solid", color="black", weight=3]; 259[label="primCmpFloat (Float xwv400 (Pos xwv4010)) xwv300",fontsize=16,color="burlywood",shape="box"];4846[label="xwv300/Float xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];259 -> 4846[label="",style="solid", color="burlywood", weight=9]; 4846 -> 346[label="",style="solid", color="burlywood", weight=3]; 260[label="primCmpFloat (Float xwv400 (Neg xwv4010)) xwv300",fontsize=16,color="burlywood",shape="box"];4847[label="xwv300/Float xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];260 -> 4847[label="",style="solid", color="burlywood", weight=9]; 4847 -> 347[label="",style="solid", color="burlywood", weight=3]; 261[label="xwv33",fontsize=16,color="green",shape="box"];262[label="xwv32",fontsize=16,color="green",shape="box"];263[label="xwv33",fontsize=16,color="green",shape="box"];264[label="xwv32",fontsize=16,color="green",shape="box"];265[label="xwv33",fontsize=16,color="green",shape="box"];266[label="xwv32",fontsize=16,color="green",shape="box"];267[label="xwv33",fontsize=16,color="green",shape="box"];268[label="xwv32",fontsize=16,color="green",shape="box"];269[label="xwv33",fontsize=16,color="green",shape="box"];270[label="xwv32",fontsize=16,color="green",shape="box"];271[label="xwv33",fontsize=16,color="green",shape="box"];272[label="xwv32",fontsize=16,color="green",shape="box"];273[label="xwv33",fontsize=16,color="green",shape="box"];274[label="xwv32",fontsize=16,color="green",shape="box"];275[label="xwv33",fontsize=16,color="green",shape="box"];276[label="xwv32",fontsize=16,color="green",shape="box"];277[label="xwv33",fontsize=16,color="green",shape="box"];278[label="xwv32",fontsize=16,color="green",shape="box"];279[label="xwv33",fontsize=16,color="green",shape="box"];280[label="xwv32",fontsize=16,color="green",shape="box"];281[label="xwv33",fontsize=16,color="green",shape="box"];282[label="xwv32",fontsize=16,color="green",shape="box"];283[label="xwv33",fontsize=16,color="green",shape="box"];284[label="xwv32",fontsize=16,color="green",shape="box"];285[label="xwv33",fontsize=16,color="green",shape="box"];286[label="xwv32",fontsize=16,color="green",shape="box"];287[label="xwv33",fontsize=16,color="green",shape="box"];288[label="xwv32",fontsize=16,color="green",shape="box"];289[label="xwv15 : xwv16",fontsize=16,color="green",shape="box"];290[label="xwv21 : xwv22",fontsize=16,color="green",shape="box"];291[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (LT == LT)",fontsize=16,color="black",shape="box"];291 -> 348[label="",style="solid", color="black", weight=3]; 292[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (EQ == LT)",fontsize=16,color="black",shape="box"];292 -> 349[label="",style="solid", color="black", weight=3]; 293[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (GT == LT)",fontsize=16,color="black",shape="box"];293 -> 350[label="",style="solid", color="black", weight=3]; 3860[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355",fontsize=16,color="black",shape="box"];3860 -> 3877[label="",style="solid", color="black", weight=3]; 3861[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1618[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1618 -> 1985[label="",style="solid", color="black", weight=3]; 3862[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 False",fontsize=16,color="black",shape="box"];3862 -> 3878[label="",style="solid", color="black", weight=3]; 3863[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 True",fontsize=16,color="black",shape="box"];3863 -> 3879[label="",style="solid", color="black", weight=3]; 294 -> 3792[label="",style="dashed", color="red", weight=0]; 294[label="FiniteMap.mkBalBranch (xwv300 : xwv301) xwv31 (FiniteMap.delFromFM xwv33 []) xwv34",fontsize=16,color="magenta"];294 -> 3809[label="",style="dashed", color="magenta", weight=3]; 294 -> 3810[label="",style="dashed", color="magenta", weight=3]; 294 -> 3811[label="",style="dashed", color="magenta", weight=3]; 294 -> 3812[label="",style="dashed", color="magenta", weight=3]; 295[label="FiniteMap.delFromFM0 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (xwv300 : xwv301 == [])",fontsize=16,color="black",shape="box"];295 -> 356[label="",style="solid", color="black", weight=3]; 296 -> 3792[label="",style="dashed", color="red", weight=0]; 296[label="FiniteMap.mkBalBranch [] xwv31 (FiniteMap.delFromFM xwv33 []) xwv34",fontsize=16,color="magenta"];296 -> 3813[label="",style="dashed", color="magenta", weight=3]; 296 -> 3814[label="",style="dashed", color="magenta", weight=3]; 296 -> 3815[label="",style="dashed", color="magenta", weight=3]; 296 -> 3816[label="",style="dashed", color="magenta", weight=3]; 297[label="FiniteMap.delFromFM0 [] xwv31 xwv32 xwv33 xwv34 [] ([] == [])",fontsize=16,color="black",shape="box"];297 -> 359[label="",style="solid", color="black", weight=3]; 304[label="compare2 (Left xwv400) (Left xwv3000) (Left xwv400 == Left xwv3000)",fontsize=16,color="black",shape="box"];304 -> 365[label="",style="solid", color="black", weight=3]; 305[label="compare2 (Left xwv400) (Right xwv3000) (Left xwv400 == Right xwv3000)",fontsize=16,color="black",shape="box"];305 -> 366[label="",style="solid", color="black", weight=3]; 306[label="compare2 (Right xwv400) (Left xwv3000) (Right xwv400 == Left xwv3000)",fontsize=16,color="black",shape="box"];306 -> 367[label="",style="solid", color="black", weight=3]; 307[label="compare2 (Right xwv400) (Right xwv3000) (Right xwv400 == Right xwv3000)",fontsize=16,color="black",shape="box"];307 -> 368[label="",style="solid", color="black", weight=3]; 308[label="xwv3000",fontsize=16,color="green",shape="box"];309[label="xwv401",fontsize=16,color="green",shape="box"];310[label="xwv400",fontsize=16,color="green",shape="box"];311[label="xwv3001",fontsize=16,color="green",shape="box"];312[label="xwv3000",fontsize=16,color="green",shape="box"];313[label="xwv400",fontsize=16,color="green",shape="box"];314[label="primCmpInt (Pos (Succ xwv4000)) (Pos xwv3000)",fontsize=16,color="black",shape="box"];314 -> 369[label="",style="solid", color="black", weight=3]; 315[label="primCmpInt (Pos (Succ xwv4000)) (Neg xwv3000)",fontsize=16,color="black",shape="box"];315 -> 370[label="",style="solid", color="black", weight=3]; 316[label="primCmpInt (Pos Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4848[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];316 -> 4848[label="",style="solid", color="burlywood", weight=9]; 4848 -> 371[label="",style="solid", color="burlywood", weight=3]; 4849[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];316 -> 4849[label="",style="solid", color="burlywood", weight=9]; 4849 -> 372[label="",style="solid", color="burlywood", weight=3]; 317[label="primCmpInt (Pos Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4850[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];317 -> 4850[label="",style="solid", color="burlywood", weight=9]; 4850 -> 373[label="",style="solid", color="burlywood", weight=3]; 4851[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];317 -> 4851[label="",style="solid", color="burlywood", weight=9]; 4851 -> 374[label="",style="solid", color="burlywood", weight=3]; 318[label="primCmpInt (Neg (Succ xwv4000)) (Pos xwv3000)",fontsize=16,color="black",shape="box"];318 -> 375[label="",style="solid", color="black", weight=3]; 319[label="primCmpInt (Neg (Succ xwv4000)) (Neg xwv3000)",fontsize=16,color="black",shape="box"];319 -> 376[label="",style="solid", color="black", weight=3]; 320[label="primCmpInt (Neg Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4852[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];320 -> 4852[label="",style="solid", color="burlywood", weight=9]; 4852 -> 377[label="",style="solid", color="burlywood", weight=3]; 4853[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];320 -> 4853[label="",style="solid", color="burlywood", weight=9]; 4853 -> 378[label="",style="solid", color="burlywood", weight=3]; 321[label="primCmpInt (Neg Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4854[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];321 -> 4854[label="",style="solid", color="burlywood", weight=9]; 4854 -> 379[label="",style="solid", color="burlywood", weight=3]; 4855[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];321 -> 4855[label="",style="solid", color="burlywood", weight=9]; 4855 -> 380[label="",style="solid", color="burlywood", weight=3]; 322[label="compare2 (xwv400,xwv401,xwv402) (xwv3000,xwv3001,xwv3002) ((xwv400,xwv401,xwv402) == (xwv3000,xwv3001,xwv3002))",fontsize=16,color="black",shape="box"];322 -> 381[label="",style="solid", color="black", weight=3]; 323[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];323 -> 382[label="",style="solid", color="black", weight=3]; 324[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];324 -> 383[label="",style="solid", color="black", weight=3]; 325[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];325 -> 384[label="",style="solid", color="black", weight=3]; 326[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];326 -> 385[label="",style="solid", color="black", weight=3]; 327[label="compare2 (xwv400,xwv401) (xwv3000,xwv3001) ((xwv400,xwv401) == (xwv3000,xwv3001))",fontsize=16,color="black",shape="box"];327 -> 386[label="",style="solid", color="black", weight=3]; 328 -> 151[label="",style="dashed", color="red", weight=0]; 328[label="compare (xwv400 * xwv3001) (xwv3000 * xwv401)",fontsize=16,color="magenta"];328 -> 387[label="",style="dashed", color="magenta", weight=3]; 328 -> 388[label="",style="dashed", color="magenta", weight=3]; 329 -> 152[label="",style="dashed", color="red", weight=0]; 329[label="compare (xwv400 * xwv3001) (xwv3000 * xwv401)",fontsize=16,color="magenta"];329 -> 389[label="",style="dashed", color="magenta", weight=3]; 329 -> 390[label="",style="dashed", color="magenta", weight=3]; 330[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];330 -> 391[label="",style="solid", color="black", weight=3]; 331[label="compare2 Nothing (Just xwv3000) (Nothing == Just xwv3000)",fontsize=16,color="black",shape="box"];331 -> 392[label="",style="solid", color="black", weight=3]; 332[label="compare2 (Just xwv400) Nothing (Just xwv400 == Nothing)",fontsize=16,color="black",shape="box"];332 -> 393[label="",style="solid", color="black", weight=3]; 333[label="compare2 (Just xwv400) (Just xwv3000) (Just xwv400 == Just xwv3000)",fontsize=16,color="black",shape="box"];333 -> 394[label="",style="solid", color="black", weight=3]; 334[label="primCmpDouble (Double xwv400 (Pos xwv4010)) (Double xwv3000 xwv3001)",fontsize=16,color="burlywood",shape="box"];4856[label="xwv3001/Pos xwv30010",fontsize=10,color="white",style="solid",shape="box"];334 -> 4856[label="",style="solid", color="burlywood", weight=9]; 4856 -> 395[label="",style="solid", color="burlywood", weight=3]; 4857[label="xwv3001/Neg xwv30010",fontsize=10,color="white",style="solid",shape="box"];334 -> 4857[label="",style="solid", color="burlywood", weight=9]; 4857 -> 396[label="",style="solid", color="burlywood", weight=3]; 335[label="primCmpDouble (Double xwv400 (Neg xwv4010)) (Double xwv3000 xwv3001)",fontsize=16,color="burlywood",shape="box"];4858[label="xwv3001/Pos xwv30010",fontsize=10,color="white",style="solid",shape="box"];335 -> 4858[label="",style="solid", color="burlywood", weight=9]; 4858 -> 397[label="",style="solid", color="burlywood", weight=3]; 4859[label="xwv3001/Neg xwv30010",fontsize=10,color="white",style="solid",shape="box"];335 -> 4859[label="",style="solid", color="burlywood", weight=9]; 4859 -> 398[label="",style="solid", color="burlywood", weight=3]; 336[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];336 -> 399[label="",style="solid", color="black", weight=3]; 337[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];337 -> 400[label="",style="solid", color="black", weight=3]; 338[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];338 -> 401[label="",style="solid", color="black", weight=3]; 339[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];339 -> 402[label="",style="solid", color="black", weight=3]; 340[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];340 -> 403[label="",style="solid", color="black", weight=3]; 341[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];341 -> 404[label="",style="solid", color="black", weight=3]; 342[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];342 -> 405[label="",style="solid", color="black", weight=3]; 343[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];343 -> 406[label="",style="solid", color="black", weight=3]; 344[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];344 -> 407[label="",style="solid", color="black", weight=3]; 345[label="primCmpNat xwv400 xwv3000",fontsize=16,color="burlywood",shape="triangle"];4860[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];345 -> 4860[label="",style="solid", color="burlywood", weight=9]; 4860 -> 408[label="",style="solid", color="burlywood", weight=3]; 4861[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];345 -> 4861[label="",style="solid", color="burlywood", weight=9]; 4861 -> 409[label="",style="solid", color="burlywood", weight=3]; 346[label="primCmpFloat (Float xwv400 (Pos xwv4010)) (Float xwv3000 xwv3001)",fontsize=16,color="burlywood",shape="box"];4862[label="xwv3001/Pos xwv30010",fontsize=10,color="white",style="solid",shape="box"];346 -> 4862[label="",style="solid", color="burlywood", weight=9]; 4862 -> 410[label="",style="solid", color="burlywood", weight=3]; 4863[label="xwv3001/Neg xwv30010",fontsize=10,color="white",style="solid",shape="box"];346 -> 4863[label="",style="solid", color="burlywood", weight=9]; 4863 -> 411[label="",style="solid", color="burlywood", weight=3]; 347[label="primCmpFloat (Float xwv400 (Neg xwv4010)) (Float xwv3000 xwv3001)",fontsize=16,color="burlywood",shape="box"];4864[label="xwv3001/Pos xwv30010",fontsize=10,color="white",style="solid",shape="box"];347 -> 4864[label="",style="solid", color="burlywood", weight=9]; 4864 -> 412[label="",style="solid", color="burlywood", weight=3]; 4865[label="xwv3001/Neg xwv30010",fontsize=10,color="white",style="solid",shape="box"];347 -> 4865[label="",style="solid", color="burlywood", weight=9]; 4865 -> 413[label="",style="solid", color="burlywood", weight=3]; 348[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) True",fontsize=16,color="black",shape="box"];348 -> 414[label="",style="solid", color="black", weight=3]; 349[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) False",fontsize=16,color="black",shape="triangle"];349 -> 415[label="",style="solid", color="black", weight=3]; 350 -> 349[label="",style="dashed", color="red", weight=0]; 350[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) False",fontsize=16,color="magenta"];3877 -> 3902[label="",style="dashed", color="red", weight=0]; 3877[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355)",fontsize=16,color="magenta"];3877 -> 3903[label="",style="dashed", color="magenta", weight=3]; 1985 -> 518[label="",style="dashed", color="red", weight=0]; 1985[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1985 -> 2397[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2398[label="",style="dashed", color="magenta", weight=3]; 3878 -> 3899[label="",style="dashed", color="red", weight=0]; 3878[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355)",fontsize=16,color="magenta"];3878 -> 3900[label="",style="dashed", color="magenta", weight=3]; 3879 -> 4594[label="",style="dashed", color="red", weight=0]; 3879[label="FiniteMap.mkBranch (Pos (Succ Zero)) xwv340 xwv341 xwv355 xwv344",fontsize=16,color="magenta"];3879 -> 4595[label="",style="dashed", color="magenta", weight=3]; 3879 -> 4596[label="",style="dashed", color="magenta", weight=3]; 3879 -> 4597[label="",style="dashed", color="magenta", weight=3]; 3879 -> 4598[label="",style="dashed", color="magenta", weight=3]; 3879 -> 4599[label="",style="dashed", color="magenta", weight=3]; 3809[label="xwv34",fontsize=16,color="green",shape="box"];3810 -> 4[label="",style="dashed", color="red", weight=0]; 3810[label="FiniteMap.delFromFM xwv33 []",fontsize=16,color="magenta"];3810 -> 3835[label="",style="dashed", color="magenta", weight=3]; 3810 -> 3836[label="",style="dashed", color="magenta", weight=3]; 3811[label="xwv300 : xwv301",fontsize=16,color="green",shape="box"];3812[label="xwv31",fontsize=16,color="green",shape="box"];356[label="FiniteMap.delFromFM0 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="black",shape="box"];356 -> 418[label="",style="solid", color="black", weight=3]; 3813[label="xwv34",fontsize=16,color="green",shape="box"];3814 -> 4[label="",style="dashed", color="red", weight=0]; 3814[label="FiniteMap.delFromFM xwv33 []",fontsize=16,color="magenta"];3814 -> 3837[label="",style="dashed", color="magenta", weight=3]; 3814 -> 3838[label="",style="dashed", color="magenta", weight=3]; 3815[label="[]",fontsize=16,color="green",shape="box"];3816[label="xwv31",fontsize=16,color="green",shape="box"];359[label="FiniteMap.delFromFM0 [] xwv31 xwv32 xwv33 xwv34 [] True",fontsize=16,color="black",shape="box"];359 -> 421[label="",style="solid", color="black", weight=3]; 365 -> 427[label="",style="dashed", color="red", weight=0]; 365[label="compare2 (Left xwv400) (Left xwv3000) (xwv400 == xwv3000)",fontsize=16,color="magenta"];365 -> 428[label="",style="dashed", color="magenta", weight=3]; 365 -> 429[label="",style="dashed", color="magenta", weight=3]; 365 -> 430[label="",style="dashed", color="magenta", weight=3]; 366[label="compare2 (Left xwv400) (Right xwv3000) False",fontsize=16,color="black",shape="box"];366 -> 431[label="",style="solid", color="black", weight=3]; 367[label="compare2 (Right xwv400) (Left xwv3000) False",fontsize=16,color="black",shape="box"];367 -> 432[label="",style="solid", color="black", weight=3]; 368 -> 433[label="",style="dashed", color="red", weight=0]; 368[label="compare2 (Right xwv400) (Right xwv3000) (xwv400 == xwv3000)",fontsize=16,color="magenta"];368 -> 434[label="",style="dashed", color="magenta", weight=3]; 368 -> 435[label="",style="dashed", color="magenta", weight=3]; 368 -> 436[label="",style="dashed", color="magenta", weight=3]; 369 -> 345[label="",style="dashed", color="red", weight=0]; 369[label="primCmpNat (Succ xwv4000) xwv3000",fontsize=16,color="magenta"];369 -> 437[label="",style="dashed", color="magenta", weight=3]; 369 -> 438[label="",style="dashed", color="magenta", weight=3]; 370[label="GT",fontsize=16,color="green",shape="box"];371[label="primCmpInt (Pos Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];371 -> 439[label="",style="solid", color="black", weight=3]; 372[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];372 -> 440[label="",style="solid", color="black", weight=3]; 373[label="primCmpInt (Pos Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];373 -> 441[label="",style="solid", color="black", weight=3]; 374[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];374 -> 442[label="",style="solid", color="black", weight=3]; 375[label="LT",fontsize=16,color="green",shape="box"];376 -> 345[label="",style="dashed", color="red", weight=0]; 376[label="primCmpNat xwv3000 (Succ xwv4000)",fontsize=16,color="magenta"];376 -> 443[label="",style="dashed", color="magenta", weight=3]; 376 -> 444[label="",style="dashed", color="magenta", weight=3]; 377[label="primCmpInt (Neg Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];377 -> 445[label="",style="solid", color="black", weight=3]; 378[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];378 -> 446[label="",style="solid", color="black", weight=3]; 379[label="primCmpInt (Neg Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];379 -> 447[label="",style="solid", color="black", weight=3]; 380[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];380 -> 448[label="",style="solid", color="black", weight=3]; 381 -> 1167[label="",style="dashed", color="red", weight=0]; 381[label="compare2 (xwv400,xwv401,xwv402) (xwv3000,xwv3001,xwv3002) (xwv400 == xwv3000 && xwv401 == xwv3001 && xwv402 == xwv3002)",fontsize=16,color="magenta"];381 -> 1168[label="",style="dashed", color="magenta", weight=3]; 381 -> 1169[label="",style="dashed", color="magenta", weight=3]; 381 -> 1170[label="",style="dashed", color="magenta", weight=3]; 381 -> 1171[label="",style="dashed", color="magenta", weight=3]; 381 -> 1172[label="",style="dashed", color="magenta", weight=3]; 381 -> 1173[label="",style="dashed", color="magenta", weight=3]; 381 -> 1174[label="",style="dashed", color="magenta", weight=3]; 382[label="compare2 False False True",fontsize=16,color="black",shape="box"];382 -> 457[label="",style="solid", color="black", weight=3]; 383[label="compare2 False True False",fontsize=16,color="black",shape="box"];383 -> 458[label="",style="solid", color="black", weight=3]; 384[label="compare2 True False False",fontsize=16,color="black",shape="box"];384 -> 459[label="",style="solid", color="black", weight=3]; 385[label="compare2 True True True",fontsize=16,color="black",shape="box"];385 -> 460[label="",style="solid", color="black", weight=3]; 386 -> 952[label="",style="dashed", color="red", weight=0]; 386[label="compare2 (xwv400,xwv401) (xwv3000,xwv3001) (xwv400 == xwv3000 && xwv401 == xwv3001)",fontsize=16,color="magenta"];386 -> 953[label="",style="dashed", color="magenta", weight=3]; 386 -> 954[label="",style="dashed", color="magenta", weight=3]; 386 -> 955[label="",style="dashed", color="magenta", weight=3]; 386 -> 956[label="",style="dashed", color="magenta", weight=3]; 386 -> 957[label="",style="dashed", color="magenta", weight=3]; 387[label="xwv3000 * xwv401",fontsize=16,color="burlywood",shape="triangle"];4866[label="xwv3000/Integer xwv30000",fontsize=10,color="white",style="solid",shape="box"];387 -> 4866[label="",style="solid", color="burlywood", weight=9]; 4866 -> 467[label="",style="solid", color="burlywood", weight=3]; 388 -> 387[label="",style="dashed", color="red", weight=0]; 388[label="xwv400 * xwv3001",fontsize=16,color="magenta"];388 -> 468[label="",style="dashed", color="magenta", weight=3]; 388 -> 469[label="",style="dashed", color="magenta", weight=3]; 389[label="xwv3000 * xwv401",fontsize=16,color="black",shape="triangle"];389 -> 470[label="",style="solid", color="black", weight=3]; 390 -> 389[label="",style="dashed", color="red", weight=0]; 390[label="xwv400 * xwv3001",fontsize=16,color="magenta"];390 -> 471[label="",style="dashed", color="magenta", weight=3]; 390 -> 472[label="",style="dashed", color="magenta", weight=3]; 391[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];391 -> 473[label="",style="solid", color="black", weight=3]; 392[label="compare2 Nothing (Just xwv3000) False",fontsize=16,color="black",shape="box"];392 -> 474[label="",style="solid", color="black", weight=3]; 393[label="compare2 (Just xwv400) Nothing False",fontsize=16,color="black",shape="box"];393 -> 475[label="",style="solid", color="black", weight=3]; 394 -> 476[label="",style="dashed", color="red", weight=0]; 394[label="compare2 (Just xwv400) (Just xwv3000) (xwv400 == xwv3000)",fontsize=16,color="magenta"];394 -> 477[label="",style="dashed", color="magenta", weight=3]; 394 -> 478[label="",style="dashed", color="magenta", weight=3]; 394 -> 479[label="",style="dashed", color="magenta", weight=3]; 395[label="primCmpDouble (Double xwv400 (Pos xwv4010)) (Double xwv3000 (Pos xwv30010))",fontsize=16,color="black",shape="box"];395 -> 480[label="",style="solid", color="black", weight=3]; 396[label="primCmpDouble (Double xwv400 (Pos xwv4010)) (Double xwv3000 (Neg xwv30010))",fontsize=16,color="black",shape="box"];396 -> 481[label="",style="solid", color="black", weight=3]; 397[label="primCmpDouble (Double xwv400 (Neg xwv4010)) (Double xwv3000 (Pos xwv30010))",fontsize=16,color="black",shape="box"];397 -> 482[label="",style="solid", color="black", weight=3]; 398[label="primCmpDouble (Double xwv400 (Neg xwv4010)) (Double xwv3000 (Neg xwv30010))",fontsize=16,color="black",shape="box"];398 -> 483[label="",style="solid", color="black", weight=3]; 399[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];399 -> 484[label="",style="solid", color="black", weight=3]; 400[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];400 -> 485[label="",style="solid", color="black", weight=3]; 401[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];401 -> 486[label="",style="solid", color="black", weight=3]; 402[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];402 -> 487[label="",style="solid", color="black", weight=3]; 403[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];403 -> 488[label="",style="solid", color="black", weight=3]; 404[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];404 -> 489[label="",style="solid", color="black", weight=3]; 405[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];405 -> 490[label="",style="solid", color="black", weight=3]; 406[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];406 -> 491[label="",style="solid", color="black", weight=3]; 407[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];407 -> 492[label="",style="solid", color="black", weight=3]; 408[label="primCmpNat (Succ xwv4000) xwv3000",fontsize=16,color="burlywood",shape="box"];4867[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];408 -> 4867[label="",style="solid", color="burlywood", weight=9]; 4867 -> 493[label="",style="solid", color="burlywood", weight=3]; 4868[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];408 -> 4868[label="",style="solid", color="burlywood", weight=9]; 4868 -> 494[label="",style="solid", color="burlywood", weight=3]; 409[label="primCmpNat Zero xwv3000",fontsize=16,color="burlywood",shape="box"];4869[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];409 -> 4869[label="",style="solid", color="burlywood", weight=9]; 4869 -> 495[label="",style="solid", color="burlywood", weight=3]; 4870[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];409 -> 4870[label="",style="solid", color="burlywood", weight=9]; 4870 -> 496[label="",style="solid", color="burlywood", weight=3]; 410[label="primCmpFloat (Float xwv400 (Pos xwv4010)) (Float xwv3000 (Pos xwv30010))",fontsize=16,color="black",shape="box"];410 -> 497[label="",style="solid", color="black", weight=3]; 411[label="primCmpFloat (Float xwv400 (Pos xwv4010)) (Float xwv3000 (Neg xwv30010))",fontsize=16,color="black",shape="box"];411 -> 498[label="",style="solid", color="black", weight=3]; 412[label="primCmpFloat (Float xwv400 (Neg xwv4010)) (Float xwv3000 (Pos xwv30010))",fontsize=16,color="black",shape="box"];412 -> 499[label="",style="solid", color="black", weight=3]; 413[label="primCmpFloat (Float xwv400 (Neg xwv4010)) (Float xwv3000 (Neg xwv30010))",fontsize=16,color="black",shape="box"];413 -> 500[label="",style="solid", color="black", weight=3]; 414 -> 3792[label="",style="dashed", color="red", weight=0]; 414[label="FiniteMap.mkBalBranch (xwv15 : xwv16) xwv17 (FiniteMap.delFromFM xwv19 (xwv21 : xwv22)) xwv20",fontsize=16,color="magenta"];414 -> 3817[label="",style="dashed", color="magenta", weight=3]; 414 -> 3818[label="",style="dashed", color="magenta", weight=3]; 414 -> 3819[label="",style="dashed", color="magenta", weight=3]; 414 -> 3820[label="",style="dashed", color="magenta", weight=3]; 415[label="FiniteMap.delFromFM0 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (xwv15 : xwv16 == xwv21 : xwv22)",fontsize=16,color="black",shape="box"];415 -> 503[label="",style="solid", color="black", weight=3]; 3903[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355",fontsize=16,color="black",shape="triangle"];3903 -> 3905[label="",style="solid", color="black", weight=3]; 3902[label="primPlusInt xwv359 (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355)",fontsize=16,color="burlywood",shape="triangle"];4871[label="xwv359/Pos xwv3590",fontsize=10,color="white",style="solid",shape="box"];3902 -> 4871[label="",style="solid", color="burlywood", weight=9]; 4871 -> 3906[label="",style="solid", color="burlywood", weight=3]; 4872[label="xwv359/Neg xwv3590",fontsize=10,color="white",style="solid",shape="box"];3902 -> 4872[label="",style="solid", color="burlywood", weight=9]; 4872 -> 3907[label="",style="solid", color="burlywood", weight=3]; 2397 -> 152[label="",style="dashed", color="red", weight=0]; 2397[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2397 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2397 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2398[label="LT",fontsize=16,color="green",shape="box"];518[label="xwv400 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4873[label="xwv400/LT",fontsize=10,color="white",style="solid",shape="box"];518 -> 4873[label="",style="solid", color="burlywood", weight=9]; 4873 -> 663[label="",style="solid", color="burlywood", weight=3]; 4874[label="xwv400/EQ",fontsize=10,color="white",style="solid",shape="box"];518 -> 4874[label="",style="solid", color="burlywood", weight=9]; 4874 -> 664[label="",style="solid", color="burlywood", weight=3]; 4875[label="xwv400/GT",fontsize=10,color="white",style="solid",shape="box"];518 -> 4875[label="",style="solid", color="burlywood", weight=9]; 4875 -> 665[label="",style="solid", color="burlywood", weight=3]; 3900 -> 1724[label="",style="dashed", color="red", weight=0]; 3900[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355",fontsize=16,color="magenta"];3900 -> 3908[label="",style="dashed", color="magenta", weight=3]; 3900 -> 3909[label="",style="dashed", color="magenta", weight=3]; 3899[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 xwv357",fontsize=16,color="burlywood",shape="triangle"];4876[label="xwv357/False",fontsize=10,color="white",style="solid",shape="box"];3899 -> 4876[label="",style="solid", color="burlywood", weight=9]; 4876 -> 3910[label="",style="solid", color="burlywood", weight=3]; 4877[label="xwv357/True",fontsize=10,color="white",style="solid",shape="box"];3899 -> 4877[label="",style="solid", color="burlywood", weight=9]; 4877 -> 3911[label="",style="solid", color="burlywood", weight=3]; 4595[label="xwv340",fontsize=16,color="green",shape="box"];4596[label="xwv344",fontsize=16,color="green",shape="box"];4597[label="xwv355",fontsize=16,color="green",shape="box"];4598[label="Zero",fontsize=16,color="green",shape="box"];4599[label="xwv341",fontsize=16,color="green",shape="box"];4594[label="FiniteMap.mkBranch (Pos (Succ xwv472)) xwv473 xwv474 xwv475 xwv476",fontsize=16,color="black",shape="triangle"];4594 -> 4650[label="",style="solid", color="black", weight=3]; 3835[label="[]",fontsize=16,color="green",shape="box"];3836[label="xwv33",fontsize=16,color="green",shape="box"];418[label="error []",fontsize=16,color="red",shape="box"];3837[label="[]",fontsize=16,color="green",shape="box"];3838[label="xwv33",fontsize=16,color="green",shape="box"];421[label="FiniteMap.glueBal xwv33 xwv34",fontsize=16,color="burlywood",shape="triangle"];4878[label="xwv33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];421 -> 4878[label="",style="solid", color="burlywood", weight=9]; 4878 -> 509[label="",style="solid", color="burlywood", weight=3]; 4879[label="xwv33/FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=10,color="white",style="solid",shape="box"];421 -> 4879[label="",style="solid", color="burlywood", weight=9]; 4879 -> 510[label="",style="solid", color="burlywood", weight=3]; 428[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4880[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4880[label="",style="solid", color="blue", weight=9]; 4880 -> 511[label="",style="solid", color="blue", weight=3]; 4881[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4881[label="",style="solid", color="blue", weight=9]; 4881 -> 512[label="",style="solid", color="blue", weight=3]; 4882[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4882[label="",style="solid", color="blue", weight=9]; 4882 -> 513[label="",style="solid", color="blue", weight=3]; 4883[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4883[label="",style="solid", color="blue", weight=9]; 4883 -> 514[label="",style="solid", color="blue", weight=3]; 4884[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4884[label="",style="solid", color="blue", weight=9]; 4884 -> 515[label="",style="solid", color="blue", weight=3]; 4885[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4885[label="",style="solid", color="blue", weight=9]; 4885 -> 516[label="",style="solid", color="blue", weight=3]; 4886[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4886[label="",style="solid", color="blue", weight=9]; 4886 -> 517[label="",style="solid", color="blue", weight=3]; 4887[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4887[label="",style="solid", color="blue", weight=9]; 4887 -> 518[label="",style="solid", color="blue", weight=3]; 4888[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4888[label="",style="solid", color="blue", weight=9]; 4888 -> 519[label="",style="solid", color="blue", weight=3]; 4889[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4889[label="",style="solid", color="blue", weight=9]; 4889 -> 520[label="",style="solid", color="blue", weight=3]; 4890[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4890[label="",style="solid", color="blue", weight=9]; 4890 -> 521[label="",style="solid", color="blue", weight=3]; 4891[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4891[label="",style="solid", color="blue", weight=9]; 4891 -> 522[label="",style="solid", color="blue", weight=3]; 4892[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4892[label="",style="solid", color="blue", weight=9]; 4892 -> 523[label="",style="solid", color="blue", weight=3]; 4893[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];428 -> 4893[label="",style="solid", color="blue", weight=9]; 4893 -> 524[label="",style="solid", color="blue", weight=3]; 429[label="xwv400",fontsize=16,color="green",shape="box"];430[label="xwv3000",fontsize=16,color="green",shape="box"];427[label="compare2 (Left xwv43) (Left xwv44) xwv45",fontsize=16,color="burlywood",shape="triangle"];4894[label="xwv45/False",fontsize=10,color="white",style="solid",shape="box"];427 -> 4894[label="",style="solid", color="burlywood", weight=9]; 4894 -> 525[label="",style="solid", color="burlywood", weight=3]; 4895[label="xwv45/True",fontsize=10,color="white",style="solid",shape="box"];427 -> 4895[label="",style="solid", color="burlywood", weight=9]; 4895 -> 526[label="",style="solid", color="burlywood", weight=3]; 431[label="compare1 (Left xwv400) (Right xwv3000) (Left xwv400 <= Right xwv3000)",fontsize=16,color="black",shape="box"];431 -> 527[label="",style="solid", color="black", weight=3]; 432[label="compare1 (Right xwv400) (Left xwv3000) (Right xwv400 <= Left xwv3000)",fontsize=16,color="black",shape="box"];432 -> 528[label="",style="solid", color="black", weight=3]; 434[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4896[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4896[label="",style="solid", color="blue", weight=9]; 4896 -> 529[label="",style="solid", color="blue", weight=3]; 4897[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4897[label="",style="solid", color="blue", weight=9]; 4897 -> 530[label="",style="solid", color="blue", weight=3]; 4898[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4898[label="",style="solid", color="blue", weight=9]; 4898 -> 531[label="",style="solid", color="blue", weight=3]; 4899[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4899[label="",style="solid", color="blue", weight=9]; 4899 -> 532[label="",style="solid", color="blue", weight=3]; 4900[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4900[label="",style="solid", color="blue", weight=9]; 4900 -> 533[label="",style="solid", color="blue", weight=3]; 4901[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4901[label="",style="solid", color="blue", weight=9]; 4901 -> 534[label="",style="solid", color="blue", weight=3]; 4902[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4902[label="",style="solid", color="blue", weight=9]; 4902 -> 535[label="",style="solid", color="blue", weight=3]; 4903[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4903[label="",style="solid", color="blue", weight=9]; 4903 -> 536[label="",style="solid", color="blue", weight=3]; 4904[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4904[label="",style="solid", color="blue", weight=9]; 4904 -> 537[label="",style="solid", color="blue", weight=3]; 4905[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4905[label="",style="solid", color="blue", weight=9]; 4905 -> 538[label="",style="solid", color="blue", weight=3]; 4906[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4906[label="",style="solid", color="blue", weight=9]; 4906 -> 539[label="",style="solid", color="blue", weight=3]; 4907[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4907[label="",style="solid", color="blue", weight=9]; 4907 -> 540[label="",style="solid", color="blue", weight=3]; 4908[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4908[label="",style="solid", color="blue", weight=9]; 4908 -> 541[label="",style="solid", color="blue", weight=3]; 4909[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];434 -> 4909[label="",style="solid", color="blue", weight=9]; 4909 -> 542[label="",style="solid", color="blue", weight=3]; 435[label="xwv400",fontsize=16,color="green",shape="box"];436[label="xwv3000",fontsize=16,color="green",shape="box"];433[label="compare2 (Right xwv50) (Right xwv51) xwv52",fontsize=16,color="burlywood",shape="triangle"];4910[label="xwv52/False",fontsize=10,color="white",style="solid",shape="box"];433 -> 4910[label="",style="solid", color="burlywood", weight=9]; 4910 -> 543[label="",style="solid", color="burlywood", weight=3]; 4911[label="xwv52/True",fontsize=10,color="white",style="solid",shape="box"];433 -> 4911[label="",style="solid", color="burlywood", weight=9]; 4911 -> 544[label="",style="solid", color="burlywood", weight=3]; 437[label="Succ xwv4000",fontsize=16,color="green",shape="box"];438[label="xwv3000",fontsize=16,color="green",shape="box"];439 -> 345[label="",style="dashed", color="red", weight=0]; 439[label="primCmpNat Zero (Succ xwv30000)",fontsize=16,color="magenta"];439 -> 545[label="",style="dashed", color="magenta", weight=3]; 439 -> 546[label="",style="dashed", color="magenta", weight=3]; 440[label="EQ",fontsize=16,color="green",shape="box"];441[label="GT",fontsize=16,color="green",shape="box"];442[label="EQ",fontsize=16,color="green",shape="box"];443[label="xwv3000",fontsize=16,color="green",shape="box"];444[label="Succ xwv4000",fontsize=16,color="green",shape="box"];445[label="LT",fontsize=16,color="green",shape="box"];446[label="EQ",fontsize=16,color="green",shape="box"];447 -> 345[label="",style="dashed", color="red", weight=0]; 447[label="primCmpNat (Succ xwv30000) Zero",fontsize=16,color="magenta"];447 -> 547[label="",style="dashed", color="magenta", weight=3]; 447 -> 548[label="",style="dashed", color="magenta", weight=3]; 448[label="EQ",fontsize=16,color="green",shape="box"];1168[label="xwv3002",fontsize=16,color="green",shape="box"];1169 -> 1219[label="",style="dashed", color="red", weight=0]; 1169[label="xwv400 == xwv3000 && xwv401 == xwv3001 && xwv402 == xwv3002",fontsize=16,color="magenta"];1169 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1169 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1170[label="xwv402",fontsize=16,color="green",shape="box"];1171[label="xwv400",fontsize=16,color="green",shape="box"];1172[label="xwv3000",fontsize=16,color="green",shape="box"];1173[label="xwv401",fontsize=16,color="green",shape="box"];1174[label="xwv3001",fontsize=16,color="green",shape="box"];1167[label="compare2 (xwv115,xwv116,xwv117) (xwv118,xwv119,xwv120) xwv158",fontsize=16,color="burlywood",shape="triangle"];4912[label="xwv158/False",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4912[label="",style="solid", color="burlywood", weight=9]; 4912 -> 1214[label="",style="solid", color="burlywood", weight=3]; 4913[label="xwv158/True",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4913[label="",style="solid", color="burlywood", weight=9]; 4913 -> 1215[label="",style="solid", color="burlywood", weight=3]; 457[label="EQ",fontsize=16,color="green",shape="box"];458[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];458 -> 565[label="",style="solid", color="black", weight=3]; 459[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];459 -> 566[label="",style="solid", color="black", weight=3]; 460[label="EQ",fontsize=16,color="green",shape="box"];953[label="xwv3000",fontsize=16,color="green",shape="box"];954 -> 1219[label="",style="dashed", color="red", weight=0]; 954[label="xwv400 == xwv3000 && xwv401 == xwv3001",fontsize=16,color="magenta"];954 -> 1222[label="",style="dashed", color="magenta", weight=3]; 954 -> 1223[label="",style="dashed", color="magenta", weight=3]; 955[label="xwv3001",fontsize=16,color="green",shape="box"];956[label="xwv400",fontsize=16,color="green",shape="box"];957[label="xwv401",fontsize=16,color="green",shape="box"];952[label="compare2 (xwv128,xwv129) (xwv130,xwv131) xwv132",fontsize=16,color="burlywood",shape="triangle"];4914[label="xwv132/False",fontsize=10,color="white",style="solid",shape="box"];952 -> 4914[label="",style="solid", color="burlywood", weight=9]; 4914 -> 977[label="",style="solid", color="burlywood", weight=3]; 4915[label="xwv132/True",fontsize=10,color="white",style="solid",shape="box"];952 -> 4915[label="",style="solid", color="burlywood", weight=9]; 4915 -> 978[label="",style="solid", color="burlywood", weight=3]; 467[label="Integer xwv30000 * xwv401",fontsize=16,color="burlywood",shape="box"];4916[label="xwv401/Integer xwv4010",fontsize=10,color="white",style="solid",shape="box"];467 -> 4916[label="",style="solid", color="burlywood", weight=9]; 4916 -> 583[label="",style="solid", color="burlywood", weight=3]; 468[label="xwv3001",fontsize=16,color="green",shape="box"];469[label="xwv400",fontsize=16,color="green",shape="box"];470[label="primMulInt xwv3000 xwv401",fontsize=16,color="burlywood",shape="triangle"];4917[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];470 -> 4917[label="",style="solid", color="burlywood", weight=9]; 4917 -> 584[label="",style="solid", color="burlywood", weight=3]; 4918[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];470 -> 4918[label="",style="solid", color="burlywood", weight=9]; 4918 -> 585[label="",style="solid", color="burlywood", weight=3]; 471[label="xwv3001",fontsize=16,color="green",shape="box"];472[label="xwv400",fontsize=16,color="green",shape="box"];473[label="EQ",fontsize=16,color="green",shape="box"];474[label="compare1 Nothing (Just xwv3000) (Nothing <= Just xwv3000)",fontsize=16,color="black",shape="box"];474 -> 586[label="",style="solid", color="black", weight=3]; 475[label="compare1 (Just xwv400) Nothing (Just xwv400 <= Nothing)",fontsize=16,color="black",shape="box"];475 -> 587[label="",style="solid", color="black", weight=3]; 477[label="xwv400",fontsize=16,color="green",shape="box"];478[label="xwv3000",fontsize=16,color="green",shape="box"];479[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4919[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4919[label="",style="solid", color="blue", weight=9]; 4919 -> 588[label="",style="solid", color="blue", weight=3]; 4920[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4920[label="",style="solid", color="blue", weight=9]; 4920 -> 589[label="",style="solid", color="blue", weight=3]; 4921[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4921[label="",style="solid", color="blue", weight=9]; 4921 -> 590[label="",style="solid", color="blue", weight=3]; 4922[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4922[label="",style="solid", color="blue", weight=9]; 4922 -> 591[label="",style="solid", color="blue", weight=3]; 4923[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4923[label="",style="solid", color="blue", weight=9]; 4923 -> 592[label="",style="solid", color="blue", weight=3]; 4924[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4924[label="",style="solid", color="blue", weight=9]; 4924 -> 593[label="",style="solid", color="blue", weight=3]; 4925[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4925[label="",style="solid", color="blue", weight=9]; 4925 -> 594[label="",style="solid", color="blue", weight=3]; 4926[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4926[label="",style="solid", color="blue", weight=9]; 4926 -> 595[label="",style="solid", color="blue", weight=3]; 4927[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4927[label="",style="solid", color="blue", weight=9]; 4927 -> 596[label="",style="solid", color="blue", weight=3]; 4928[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4928[label="",style="solid", color="blue", weight=9]; 4928 -> 597[label="",style="solid", color="blue", weight=3]; 4929[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4929[label="",style="solid", color="blue", weight=9]; 4929 -> 598[label="",style="solid", color="blue", weight=3]; 4930[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4930[label="",style="solid", color="blue", weight=9]; 4930 -> 599[label="",style="solid", color="blue", weight=3]; 4931[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4931[label="",style="solid", color="blue", weight=9]; 4931 -> 600[label="",style="solid", color="blue", weight=3]; 4932[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 4932[label="",style="solid", color="blue", weight=9]; 4932 -> 601[label="",style="solid", color="blue", weight=3]; 476[label="compare2 (Just xwv83) (Just xwv84) xwv85",fontsize=16,color="burlywood",shape="triangle"];4933[label="xwv85/False",fontsize=10,color="white",style="solid",shape="box"];476 -> 4933[label="",style="solid", color="burlywood", weight=9]; 4933 -> 602[label="",style="solid", color="burlywood", weight=3]; 4934[label="xwv85/True",fontsize=10,color="white",style="solid",shape="box"];476 -> 4934[label="",style="solid", color="burlywood", weight=9]; 4934 -> 603[label="",style="solid", color="burlywood", weight=3]; 480 -> 152[label="",style="dashed", color="red", weight=0]; 480[label="compare (xwv400 * Pos xwv30010) (Pos xwv4010 * xwv3000)",fontsize=16,color="magenta"];480 -> 609[label="",style="dashed", color="magenta", weight=3]; 480 -> 610[label="",style="dashed", color="magenta", weight=3]; 481 -> 152[label="",style="dashed", color="red", weight=0]; 481[label="compare (xwv400 * Pos xwv30010) (Neg xwv4010 * xwv3000)",fontsize=16,color="magenta"];481 -> 611[label="",style="dashed", color="magenta", weight=3]; 481 -> 612[label="",style="dashed", color="magenta", weight=3]; 482 -> 152[label="",style="dashed", color="red", weight=0]; 482[label="compare (xwv400 * Neg xwv30010) (Pos xwv4010 * xwv3000)",fontsize=16,color="magenta"];482 -> 613[label="",style="dashed", color="magenta", weight=3]; 482 -> 614[label="",style="dashed", color="magenta", weight=3]; 483 -> 152[label="",style="dashed", color="red", weight=0]; 483[label="compare (xwv400 * Neg xwv30010) (Neg xwv4010 * xwv3000)",fontsize=16,color="magenta"];483 -> 615[label="",style="dashed", color="magenta", weight=3]; 483 -> 616[label="",style="dashed", color="magenta", weight=3]; 484[label="EQ",fontsize=16,color="green",shape="box"];485[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];485 -> 617[label="",style="solid", color="black", weight=3]; 486[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];486 -> 618[label="",style="solid", color="black", weight=3]; 487[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];487 -> 619[label="",style="solid", color="black", weight=3]; 488[label="EQ",fontsize=16,color="green",shape="box"];489[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];489 -> 620[label="",style="solid", color="black", weight=3]; 490[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];490 -> 621[label="",style="solid", color="black", weight=3]; 491[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];491 -> 622[label="",style="solid", color="black", weight=3]; 492[label="EQ",fontsize=16,color="green",shape="box"];493[label="primCmpNat (Succ xwv4000) (Succ xwv30000)",fontsize=16,color="black",shape="box"];493 -> 623[label="",style="solid", color="black", weight=3]; 494[label="primCmpNat (Succ xwv4000) Zero",fontsize=16,color="black",shape="box"];494 -> 624[label="",style="solid", color="black", weight=3]; 495[label="primCmpNat Zero (Succ xwv30000)",fontsize=16,color="black",shape="box"];495 -> 625[label="",style="solid", color="black", weight=3]; 496[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];496 -> 626[label="",style="solid", color="black", weight=3]; 497 -> 152[label="",style="dashed", color="red", weight=0]; 497[label="compare (xwv400 * Pos xwv30010) (Pos xwv4010 * xwv3000)",fontsize=16,color="magenta"];497 -> 627[label="",style="dashed", color="magenta", weight=3]; 497 -> 628[label="",style="dashed", color="magenta", weight=3]; 498 -> 152[label="",style="dashed", color="red", weight=0]; 498[label="compare (xwv400 * Pos xwv30010) (Neg xwv4010 * xwv3000)",fontsize=16,color="magenta"];498 -> 629[label="",style="dashed", color="magenta", weight=3]; 498 -> 630[label="",style="dashed", color="magenta", weight=3]; 499 -> 152[label="",style="dashed", color="red", weight=0]; 499[label="compare (xwv400 * Neg xwv30010) (Pos xwv4010 * xwv3000)",fontsize=16,color="magenta"];499 -> 631[label="",style="dashed", color="magenta", weight=3]; 499 -> 632[label="",style="dashed", color="magenta", weight=3]; 500 -> 152[label="",style="dashed", color="red", weight=0]; 500[label="compare (xwv400 * Neg xwv30010) (Neg xwv4010 * xwv3000)",fontsize=16,color="magenta"];500 -> 633[label="",style="dashed", color="magenta", weight=3]; 500 -> 634[label="",style="dashed", color="magenta", weight=3]; 3817[label="xwv20",fontsize=16,color="green",shape="box"];3818 -> 4[label="",style="dashed", color="red", weight=0]; 3818[label="FiniteMap.delFromFM xwv19 (xwv21 : xwv22)",fontsize=16,color="magenta"];3818 -> 3839[label="",style="dashed", color="magenta", weight=3]; 3818 -> 3840[label="",style="dashed", color="magenta", weight=3]; 3819[label="xwv15 : xwv16",fontsize=16,color="green",shape="box"];3820[label="xwv17",fontsize=16,color="green",shape="box"];503 -> 861[label="",style="dashed", color="red", weight=0]; 503[label="FiniteMap.delFromFM0 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (xwv15 == xwv21 && xwv16 == xwv22)",fontsize=16,color="magenta"];503 -> 862[label="",style="dashed", color="magenta", weight=3]; 503 -> 863[label="",style="dashed", color="magenta", weight=3]; 503 -> 864[label="",style="dashed", color="magenta", weight=3]; 503 -> 865[label="",style="dashed", color="magenta", weight=3]; 503 -> 866[label="",style="dashed", color="magenta", weight=3]; 503 -> 867[label="",style="dashed", color="magenta", weight=3]; 503 -> 868[label="",style="dashed", color="magenta", weight=3]; 503 -> 869[label="",style="dashed", color="magenta", weight=3]; 503 -> 870[label="",style="dashed", color="magenta", weight=3]; 503 -> 871[label="",style="dashed", color="magenta", weight=3]; 3905 -> 1496[label="",style="dashed", color="red", weight=0]; 3905[label="FiniteMap.sizeFM xwv355",fontsize=16,color="magenta"];3905 -> 3925[label="",style="dashed", color="magenta", weight=3]; 3906[label="primPlusInt (Pos xwv3590) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355)",fontsize=16,color="black",shape="box"];3906 -> 3926[label="",style="solid", color="black", weight=3]; 3907[label="primPlusInt (Neg xwv3590) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355)",fontsize=16,color="black",shape="box"];3907 -> 3927[label="",style="solid", color="black", weight=3]; 2688[label="xwv118",fontsize=16,color="green",shape="box"];2689[label="xwv115",fontsize=16,color="green",shape="box"];663[label="LT == xwv3000",fontsize=16,color="burlywood",shape="box"];4935[label="xwv3000/LT",fontsize=10,color="white",style="solid",shape="box"];663 -> 4935[label="",style="solid", color="burlywood", weight=9]; 4935 -> 917[label="",style="solid", color="burlywood", weight=3]; 4936[label="xwv3000/EQ",fontsize=10,color="white",style="solid",shape="box"];663 -> 4936[label="",style="solid", color="burlywood", weight=9]; 4936 -> 918[label="",style="solid", color="burlywood", weight=3]; 4937[label="xwv3000/GT",fontsize=10,color="white",style="solid",shape="box"];663 -> 4937[label="",style="solid", color="burlywood", weight=9]; 4937 -> 919[label="",style="solid", color="burlywood", weight=3]; 664[label="EQ == xwv3000",fontsize=16,color="burlywood",shape="box"];4938[label="xwv3000/LT",fontsize=10,color="white",style="solid",shape="box"];664 -> 4938[label="",style="solid", color="burlywood", weight=9]; 4938 -> 920[label="",style="solid", color="burlywood", weight=3]; 4939[label="xwv3000/EQ",fontsize=10,color="white",style="solid",shape="box"];664 -> 4939[label="",style="solid", color="burlywood", weight=9]; 4939 -> 921[label="",style="solid", color="burlywood", weight=3]; 4940[label="xwv3000/GT",fontsize=10,color="white",style="solid",shape="box"];664 -> 4940[label="",style="solid", color="burlywood", weight=9]; 4940 -> 922[label="",style="solid", color="burlywood", weight=3]; 665[label="GT == xwv3000",fontsize=16,color="burlywood",shape="box"];4941[label="xwv3000/LT",fontsize=10,color="white",style="solid",shape="box"];665 -> 4941[label="",style="solid", color="burlywood", weight=9]; 4941 -> 923[label="",style="solid", color="burlywood", weight=3]; 4942[label="xwv3000/EQ",fontsize=10,color="white",style="solid",shape="box"];665 -> 4942[label="",style="solid", color="burlywood", weight=9]; 4942 -> 924[label="",style="solid", color="burlywood", weight=3]; 4943[label="xwv3000/GT",fontsize=10,color="white",style="solid",shape="box"];665 -> 4943[label="",style="solid", color="burlywood", weight=9]; 4943 -> 925[label="",style="solid", color="burlywood", weight=3]; 3908[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355",fontsize=16,color="black",shape="triangle"];3908 -> 3928[label="",style="solid", color="black", weight=3]; 3909 -> 389[label="",style="dashed", color="red", weight=0]; 3909[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355",fontsize=16,color="magenta"];3909 -> 3929[label="",style="dashed", color="magenta", weight=3]; 3909 -> 3930[label="",style="dashed", color="magenta", weight=3]; 1724[label="xwv217 > xwv216",fontsize=16,color="black",shape="triangle"];1724 -> 1738[label="",style="solid", color="black", weight=3]; 3910[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 False",fontsize=16,color="black",shape="box"];3910 -> 3931[label="",style="solid", color="black", weight=3]; 3911[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 True",fontsize=16,color="black",shape="box"];3911 -> 3932[label="",style="solid", color="black", weight=3]; 4650[label="FiniteMap.mkBranchResult xwv473 xwv474 xwv475 xwv476",fontsize=16,color="black",shape="box"];4650 -> 4689[label="",style="solid", color="black", weight=3]; 509[label="FiniteMap.glueBal FiniteMap.EmptyFM xwv34",fontsize=16,color="black",shape="box"];509 -> 651[label="",style="solid", color="black", weight=3]; 510[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) xwv34",fontsize=16,color="burlywood",shape="box"];4944[label="xwv34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];510 -> 4944[label="",style="solid", color="burlywood", weight=9]; 4944 -> 652[label="",style="solid", color="burlywood", weight=3]; 4945[label="xwv34/FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=10,color="white",style="solid",shape="box"];510 -> 4945[label="",style="solid", color="burlywood", weight=9]; 4945 -> 653[label="",style="solid", color="burlywood", weight=3]; 511[label="xwv400 == xwv3000",fontsize=16,color="black",shape="triangle"];511 -> 654[label="",style="solid", color="black", weight=3]; 512[label="xwv400 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4946[label="xwv400/False",fontsize=10,color="white",style="solid",shape="box"];512 -> 4946[label="",style="solid", color="burlywood", weight=9]; 4946 -> 655[label="",style="solid", color="burlywood", weight=3]; 4947[label="xwv400/True",fontsize=10,color="white",style="solid",shape="box"];512 -> 4947[label="",style="solid", color="burlywood", weight=9]; 4947 -> 656[label="",style="solid", color="burlywood", weight=3]; 513[label="xwv400 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4948[label="xwv400/(xwv4000,xwv4001,xwv4002)",fontsize=10,color="white",style="solid",shape="box"];513 -> 4948[label="",style="solid", color="burlywood", weight=9]; 4948 -> 657[label="",style="solid", color="burlywood", weight=3]; 514[label="xwv400 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4949[label="xwv400/()",fontsize=10,color="white",style="solid",shape="box"];514 -> 4949[label="",style="solid", color="burlywood", weight=9]; 4949 -> 658[label="",style="solid", color="burlywood", weight=3]; 515[label="xwv400 == xwv3000",fontsize=16,color="black",shape="triangle"];515 -> 659[label="",style="solid", color="black", weight=3]; 516[label="xwv400 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4950[label="xwv400/Nothing",fontsize=10,color="white",style="solid",shape="box"];516 -> 4950[label="",style="solid", color="burlywood", weight=9]; 4950 -> 660[label="",style="solid", color="burlywood", weight=3]; 4951[label="xwv400/Just xwv4000",fontsize=10,color="white",style="solid",shape="box"];516 -> 4951[label="",style="solid", color="burlywood", weight=9]; 4951 -> 661[label="",style="solid", color="burlywood", weight=3]; 517[label="xwv400 == xwv3000",fontsize=16,color="black",shape="triangle"];517 -> 662[label="",style="solid", color="black", weight=3]; 519[label="xwv400 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4952[label="xwv400/xwv4000 :% xwv4001",fontsize=10,color="white",style="solid",shape="box"];519 -> 4952[label="",style="solid", color="burlywood", weight=9]; 4952 -> 666[label="",style="solid", color="burlywood", weight=3]; 520[label="xwv400 == xwv3000",fontsize=16,color="black",shape="triangle"];520 -> 667[label="",style="solid", color="black", weight=3]; 521[label="xwv400 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4953[label="xwv400/Left xwv4000",fontsize=10,color="white",style="solid",shape="box"];521 -> 4953[label="",style="solid", color="burlywood", weight=9]; 4953 -> 668[label="",style="solid", color="burlywood", weight=3]; 4954[label="xwv400/Right xwv4000",fontsize=10,color="white",style="solid",shape="box"];521 -> 4954[label="",style="solid", color="burlywood", weight=9]; 4954 -> 669[label="",style="solid", color="burlywood", weight=3]; 522[label="xwv400 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4955[label="xwv400/Integer xwv4000",fontsize=10,color="white",style="solid",shape="box"];522 -> 4955[label="",style="solid", color="burlywood", weight=9]; 4955 -> 670[label="",style="solid", color="burlywood", weight=3]; 523[label="xwv400 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4956[label="xwv400/(xwv4000,xwv4001)",fontsize=10,color="white",style="solid",shape="box"];523 -> 4956[label="",style="solid", color="burlywood", weight=9]; 4956 -> 671[label="",style="solid", color="burlywood", weight=3]; 524[label="xwv400 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4957[label="xwv400/xwv4000 : xwv4001",fontsize=10,color="white",style="solid",shape="box"];524 -> 4957[label="",style="solid", color="burlywood", weight=9]; 4957 -> 672[label="",style="solid", color="burlywood", weight=3]; 4958[label="xwv400/[]",fontsize=10,color="white",style="solid",shape="box"];524 -> 4958[label="",style="solid", color="burlywood", weight=9]; 4958 -> 673[label="",style="solid", color="burlywood", weight=3]; 525[label="compare2 (Left xwv43) (Left xwv44) False",fontsize=16,color="black",shape="box"];525 -> 674[label="",style="solid", color="black", weight=3]; 526[label="compare2 (Left xwv43) (Left xwv44) True",fontsize=16,color="black",shape="box"];526 -> 675[label="",style="solid", color="black", weight=3]; 527[label="compare1 (Left xwv400) (Right xwv3000) True",fontsize=16,color="black",shape="box"];527 -> 676[label="",style="solid", color="black", weight=3]; 528[label="compare1 (Right xwv400) (Left xwv3000) False",fontsize=16,color="black",shape="box"];528 -> 677[label="",style="solid", color="black", weight=3]; 529 -> 511[label="",style="dashed", color="red", weight=0]; 529[label="xwv400 == xwv3000",fontsize=16,color="magenta"];529 -> 678[label="",style="dashed", color="magenta", weight=3]; 529 -> 679[label="",style="dashed", color="magenta", weight=3]; 530 -> 512[label="",style="dashed", color="red", weight=0]; 530[label="xwv400 == xwv3000",fontsize=16,color="magenta"];530 -> 680[label="",style="dashed", color="magenta", weight=3]; 530 -> 681[label="",style="dashed", color="magenta", weight=3]; 531 -> 513[label="",style="dashed", color="red", weight=0]; 531[label="xwv400 == xwv3000",fontsize=16,color="magenta"];531 -> 682[label="",style="dashed", color="magenta", weight=3]; 531 -> 683[label="",style="dashed", color="magenta", weight=3]; 532 -> 514[label="",style="dashed", color="red", weight=0]; 532[label="xwv400 == xwv3000",fontsize=16,color="magenta"];532 -> 684[label="",style="dashed", color="magenta", weight=3]; 532 -> 685[label="",style="dashed", color="magenta", weight=3]; 533 -> 515[label="",style="dashed", color="red", weight=0]; 533[label="xwv400 == xwv3000",fontsize=16,color="magenta"];533 -> 686[label="",style="dashed", color="magenta", weight=3]; 533 -> 687[label="",style="dashed", color="magenta", weight=3]; 534 -> 516[label="",style="dashed", color="red", weight=0]; 534[label="xwv400 == xwv3000",fontsize=16,color="magenta"];534 -> 688[label="",style="dashed", color="magenta", weight=3]; 534 -> 689[label="",style="dashed", color="magenta", weight=3]; 535 -> 517[label="",style="dashed", color="red", weight=0]; 535[label="xwv400 == xwv3000",fontsize=16,color="magenta"];535 -> 690[label="",style="dashed", color="magenta", weight=3]; 535 -> 691[label="",style="dashed", color="magenta", weight=3]; 536 -> 518[label="",style="dashed", color="red", weight=0]; 536[label="xwv400 == xwv3000",fontsize=16,color="magenta"];536 -> 692[label="",style="dashed", color="magenta", weight=3]; 536 -> 693[label="",style="dashed", color="magenta", weight=3]; 537 -> 519[label="",style="dashed", color="red", weight=0]; 537[label="xwv400 == xwv3000",fontsize=16,color="magenta"];537 -> 694[label="",style="dashed", color="magenta", weight=3]; 537 -> 695[label="",style="dashed", color="magenta", weight=3]; 538 -> 520[label="",style="dashed", color="red", weight=0]; 538[label="xwv400 == xwv3000",fontsize=16,color="magenta"];538 -> 696[label="",style="dashed", color="magenta", weight=3]; 538 -> 697[label="",style="dashed", color="magenta", weight=3]; 539 -> 521[label="",style="dashed", color="red", weight=0]; 539[label="xwv400 == xwv3000",fontsize=16,color="magenta"];539 -> 698[label="",style="dashed", color="magenta", weight=3]; 539 -> 699[label="",style="dashed", color="magenta", weight=3]; 540 -> 522[label="",style="dashed", color="red", weight=0]; 540[label="xwv400 == xwv3000",fontsize=16,color="magenta"];540 -> 700[label="",style="dashed", color="magenta", weight=3]; 540 -> 701[label="",style="dashed", color="magenta", weight=3]; 541 -> 523[label="",style="dashed", color="red", weight=0]; 541[label="xwv400 == xwv3000",fontsize=16,color="magenta"];541 -> 702[label="",style="dashed", color="magenta", weight=3]; 541 -> 703[label="",style="dashed", color="magenta", weight=3]; 542 -> 524[label="",style="dashed", color="red", weight=0]; 542[label="xwv400 == xwv3000",fontsize=16,color="magenta"];542 -> 704[label="",style="dashed", color="magenta", weight=3]; 542 -> 705[label="",style="dashed", color="magenta", weight=3]; 543[label="compare2 (Right xwv50) (Right xwv51) False",fontsize=16,color="black",shape="box"];543 -> 706[label="",style="solid", color="black", weight=3]; 544[label="compare2 (Right xwv50) (Right xwv51) True",fontsize=16,color="black",shape="box"];544 -> 707[label="",style="solid", color="black", weight=3]; 545[label="Zero",fontsize=16,color="green",shape="box"];546[label="Succ xwv30000",fontsize=16,color="green",shape="box"];547[label="Succ xwv30000",fontsize=16,color="green",shape="box"];548[label="Zero",fontsize=16,color="green",shape="box"];1220[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4959[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4959[label="",style="solid", color="blue", weight=9]; 4959 -> 1238[label="",style="solid", color="blue", weight=3]; 4960[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4960[label="",style="solid", color="blue", weight=9]; 4960 -> 1239[label="",style="solid", color="blue", weight=3]; 4961[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4961[label="",style="solid", color="blue", weight=9]; 4961 -> 1240[label="",style="solid", color="blue", weight=3]; 4962[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4962[label="",style="solid", color="blue", weight=9]; 4962 -> 1241[label="",style="solid", color="blue", weight=3]; 4963[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4963[label="",style="solid", color="blue", weight=9]; 4963 -> 1242[label="",style="solid", color="blue", weight=3]; 4964[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4964[label="",style="solid", color="blue", weight=9]; 4964 -> 1243[label="",style="solid", color="blue", weight=3]; 4965[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4965[label="",style="solid", color="blue", weight=9]; 4965 -> 1244[label="",style="solid", color="blue", weight=3]; 4966[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4966[label="",style="solid", color="blue", weight=9]; 4966 -> 1245[label="",style="solid", color="blue", weight=3]; 4967[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4967[label="",style="solid", color="blue", weight=9]; 4967 -> 1246[label="",style="solid", color="blue", weight=3]; 4968[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4968[label="",style="solid", color="blue", weight=9]; 4968 -> 1247[label="",style="solid", color="blue", weight=3]; 4969[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4969[label="",style="solid", color="blue", weight=9]; 4969 -> 1248[label="",style="solid", color="blue", weight=3]; 4970[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4970[label="",style="solid", color="blue", weight=9]; 4970 -> 1249[label="",style="solid", color="blue", weight=3]; 4971[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4971[label="",style="solid", color="blue", weight=9]; 4971 -> 1250[label="",style="solid", color="blue", weight=3]; 4972[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4972[label="",style="solid", color="blue", weight=9]; 4972 -> 1251[label="",style="solid", color="blue", weight=3]; 1221 -> 1219[label="",style="dashed", color="red", weight=0]; 1221[label="xwv401 == xwv3001 && xwv402 == xwv3002",fontsize=16,color="magenta"];1221 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1219[label="xwv163 && xwv164",fontsize=16,color="burlywood",shape="triangle"];4973[label="xwv163/False",fontsize=10,color="white",style="solid",shape="box"];1219 -> 4973[label="",style="solid", color="burlywood", weight=9]; 4973 -> 1254[label="",style="solid", color="burlywood", weight=3]; 4974[label="xwv163/True",fontsize=10,color="white",style="solid",shape="box"];1219 -> 4974[label="",style="solid", color="burlywood", weight=9]; 4974 -> 1255[label="",style="solid", color="burlywood", weight=3]; 1214[label="compare2 (xwv115,xwv116,xwv117) (xwv118,xwv119,xwv120) False",fontsize=16,color="black",shape="box"];1214 -> 1256[label="",style="solid", color="black", weight=3]; 1215[label="compare2 (xwv115,xwv116,xwv117) (xwv118,xwv119,xwv120) True",fontsize=16,color="black",shape="box"];1215 -> 1257[label="",style="solid", color="black", weight=3]; 565[label="compare1 False True True",fontsize=16,color="black",shape="box"];565 -> 738[label="",style="solid", color="black", weight=3]; 566[label="compare1 True False False",fontsize=16,color="black",shape="box"];566 -> 739[label="",style="solid", color="black", weight=3]; 1222[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4975[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4975[label="",style="solid", color="blue", weight=9]; 4975 -> 1258[label="",style="solid", color="blue", weight=3]; 4976[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4976[label="",style="solid", color="blue", weight=9]; 4976 -> 1259[label="",style="solid", color="blue", weight=3]; 4977[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4977[label="",style="solid", color="blue", weight=9]; 4977 -> 1260[label="",style="solid", color="blue", weight=3]; 4978[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4978[label="",style="solid", color="blue", weight=9]; 4978 -> 1261[label="",style="solid", color="blue", weight=3]; 4979[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4979[label="",style="solid", color="blue", weight=9]; 4979 -> 1262[label="",style="solid", color="blue", weight=3]; 4980[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4980[label="",style="solid", color="blue", weight=9]; 4980 -> 1263[label="",style="solid", color="blue", weight=3]; 4981[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4981[label="",style="solid", color="blue", weight=9]; 4981 -> 1264[label="",style="solid", color="blue", weight=3]; 4982[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4982[label="",style="solid", color="blue", weight=9]; 4982 -> 1265[label="",style="solid", color="blue", weight=3]; 4983[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4983[label="",style="solid", color="blue", weight=9]; 4983 -> 1266[label="",style="solid", color="blue", weight=3]; 4984[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4984[label="",style="solid", color="blue", weight=9]; 4984 -> 1267[label="",style="solid", color="blue", weight=3]; 4985[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4985[label="",style="solid", color="blue", weight=9]; 4985 -> 1268[label="",style="solid", color="blue", weight=3]; 4986[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4986[label="",style="solid", color="blue", weight=9]; 4986 -> 1269[label="",style="solid", color="blue", weight=3]; 4987[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4987[label="",style="solid", color="blue", weight=9]; 4987 -> 1270[label="",style="solid", color="blue", weight=3]; 4988[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4988[label="",style="solid", color="blue", weight=9]; 4988 -> 1271[label="",style="solid", color="blue", weight=3]; 1223[label="xwv401 == xwv3001",fontsize=16,color="blue",shape="box"];4989[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4989[label="",style="solid", color="blue", weight=9]; 4989 -> 1272[label="",style="solid", color="blue", weight=3]; 4990[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4990[label="",style="solid", color="blue", weight=9]; 4990 -> 1273[label="",style="solid", color="blue", weight=3]; 4991[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4991[label="",style="solid", color="blue", weight=9]; 4991 -> 1274[label="",style="solid", color="blue", weight=3]; 4992[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4992[label="",style="solid", color="blue", weight=9]; 4992 -> 1275[label="",style="solid", color="blue", weight=3]; 4993[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4993[label="",style="solid", color="blue", weight=9]; 4993 -> 1276[label="",style="solid", color="blue", weight=3]; 4994[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4994[label="",style="solid", color="blue", weight=9]; 4994 -> 1277[label="",style="solid", color="blue", weight=3]; 4995[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4995[label="",style="solid", color="blue", weight=9]; 4995 -> 1278[label="",style="solid", color="blue", weight=3]; 4996[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4996[label="",style="solid", color="blue", weight=9]; 4996 -> 1279[label="",style="solid", color="blue", weight=3]; 4997[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4997[label="",style="solid", color="blue", weight=9]; 4997 -> 1280[label="",style="solid", color="blue", weight=3]; 4998[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4998[label="",style="solid", color="blue", weight=9]; 4998 -> 1281[label="",style="solid", color="blue", weight=3]; 4999[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4999[label="",style="solid", color="blue", weight=9]; 4999 -> 1282[label="",style="solid", color="blue", weight=3]; 5000[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 5000[label="",style="solid", color="blue", weight=9]; 5000 -> 1283[label="",style="solid", color="blue", weight=3]; 5001[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 5001[label="",style="solid", color="blue", weight=9]; 5001 -> 1284[label="",style="solid", color="blue", weight=3]; 5002[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 5002[label="",style="solid", color="blue", weight=9]; 5002 -> 1285[label="",style="solid", color="blue", weight=3]; 977[label="compare2 (xwv128,xwv129) (xwv130,xwv131) False",fontsize=16,color="black",shape="box"];977 -> 1040[label="",style="solid", color="black", weight=3]; 978[label="compare2 (xwv128,xwv129) (xwv130,xwv131) True",fontsize=16,color="black",shape="box"];978 -> 1041[label="",style="solid", color="black", weight=3]; 583[label="Integer xwv30000 * Integer xwv4010",fontsize=16,color="black",shape="box"];583 -> 770[label="",style="solid", color="black", weight=3]; 584[label="primMulInt (Pos xwv30000) xwv401",fontsize=16,color="burlywood",shape="box"];5003[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];584 -> 5003[label="",style="solid", color="burlywood", weight=9]; 5003 -> 771[label="",style="solid", color="burlywood", weight=3]; 5004[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];584 -> 5004[label="",style="solid", color="burlywood", weight=9]; 5004 -> 772[label="",style="solid", color="burlywood", weight=3]; 585[label="primMulInt (Neg xwv30000) xwv401",fontsize=16,color="burlywood",shape="box"];5005[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];585 -> 5005[label="",style="solid", color="burlywood", weight=9]; 5005 -> 773[label="",style="solid", color="burlywood", weight=3]; 5006[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];585 -> 5006[label="",style="solid", color="burlywood", weight=9]; 5006 -> 774[label="",style="solid", color="burlywood", weight=3]; 586[label="compare1 Nothing (Just xwv3000) True",fontsize=16,color="black",shape="box"];586 -> 775[label="",style="solid", color="black", weight=3]; 587[label="compare1 (Just xwv400) Nothing False",fontsize=16,color="black",shape="box"];587 -> 776[label="",style="solid", color="black", weight=3]; 588 -> 511[label="",style="dashed", color="red", weight=0]; 588[label="xwv400 == xwv3000",fontsize=16,color="magenta"];588 -> 777[label="",style="dashed", color="magenta", weight=3]; 588 -> 778[label="",style="dashed", color="magenta", weight=3]; 589 -> 512[label="",style="dashed", color="red", weight=0]; 589[label="xwv400 == xwv3000",fontsize=16,color="magenta"];589 -> 779[label="",style="dashed", color="magenta", weight=3]; 589 -> 780[label="",style="dashed", color="magenta", weight=3]; 590 -> 513[label="",style="dashed", color="red", weight=0]; 590[label="xwv400 == xwv3000",fontsize=16,color="magenta"];590 -> 781[label="",style="dashed", color="magenta", weight=3]; 590 -> 782[label="",style="dashed", color="magenta", weight=3]; 591 -> 514[label="",style="dashed", color="red", weight=0]; 591[label="xwv400 == xwv3000",fontsize=16,color="magenta"];591 -> 783[label="",style="dashed", color="magenta", weight=3]; 591 -> 784[label="",style="dashed", color="magenta", weight=3]; 592 -> 515[label="",style="dashed", color="red", weight=0]; 592[label="xwv400 == xwv3000",fontsize=16,color="magenta"];592 -> 785[label="",style="dashed", color="magenta", weight=3]; 592 -> 786[label="",style="dashed", color="magenta", weight=3]; 593 -> 516[label="",style="dashed", color="red", weight=0]; 593[label="xwv400 == xwv3000",fontsize=16,color="magenta"];593 -> 787[label="",style="dashed", color="magenta", weight=3]; 593 -> 788[label="",style="dashed", color="magenta", weight=3]; 594 -> 517[label="",style="dashed", color="red", weight=0]; 594[label="xwv400 == xwv3000",fontsize=16,color="magenta"];594 -> 789[label="",style="dashed", color="magenta", weight=3]; 594 -> 790[label="",style="dashed", color="magenta", weight=3]; 595 -> 518[label="",style="dashed", color="red", weight=0]; 595[label="xwv400 == xwv3000",fontsize=16,color="magenta"];595 -> 791[label="",style="dashed", color="magenta", weight=3]; 595 -> 792[label="",style="dashed", color="magenta", weight=3]; 596 -> 519[label="",style="dashed", color="red", weight=0]; 596[label="xwv400 == xwv3000",fontsize=16,color="magenta"];596 -> 793[label="",style="dashed", color="magenta", weight=3]; 596 -> 794[label="",style="dashed", color="magenta", weight=3]; 597 -> 520[label="",style="dashed", color="red", weight=0]; 597[label="xwv400 == xwv3000",fontsize=16,color="magenta"];597 -> 795[label="",style="dashed", color="magenta", weight=3]; 597 -> 796[label="",style="dashed", color="magenta", weight=3]; 598 -> 521[label="",style="dashed", color="red", weight=0]; 598[label="xwv400 == xwv3000",fontsize=16,color="magenta"];598 -> 797[label="",style="dashed", color="magenta", weight=3]; 598 -> 798[label="",style="dashed", color="magenta", weight=3]; 599 -> 522[label="",style="dashed", color="red", weight=0]; 599[label="xwv400 == xwv3000",fontsize=16,color="magenta"];599 -> 799[label="",style="dashed", color="magenta", weight=3]; 599 -> 800[label="",style="dashed", color="magenta", weight=3]; 600 -> 523[label="",style="dashed", color="red", weight=0]; 600[label="xwv400 == xwv3000",fontsize=16,color="magenta"];600 -> 801[label="",style="dashed", color="magenta", weight=3]; 600 -> 802[label="",style="dashed", color="magenta", weight=3]; 601 -> 524[label="",style="dashed", color="red", weight=0]; 601[label="xwv400 == xwv3000",fontsize=16,color="magenta"];601 -> 803[label="",style="dashed", color="magenta", weight=3]; 601 -> 804[label="",style="dashed", color="magenta", weight=3]; 602[label="compare2 (Just xwv83) (Just xwv84) False",fontsize=16,color="black",shape="box"];602 -> 805[label="",style="solid", color="black", weight=3]; 603[label="compare2 (Just xwv83) (Just xwv84) True",fontsize=16,color="black",shape="box"];603 -> 806[label="",style="solid", color="black", weight=3]; 609 -> 389[label="",style="dashed", color="red", weight=0]; 609[label="Pos xwv4010 * xwv3000",fontsize=16,color="magenta"];609 -> 807[label="",style="dashed", color="magenta", weight=3]; 609 -> 808[label="",style="dashed", color="magenta", weight=3]; 610 -> 389[label="",style="dashed", color="red", weight=0]; 610[label="xwv400 * Pos xwv30010",fontsize=16,color="magenta"];610 -> 809[label="",style="dashed", color="magenta", weight=3]; 610 -> 810[label="",style="dashed", color="magenta", weight=3]; 611 -> 389[label="",style="dashed", color="red", weight=0]; 611[label="Neg xwv4010 * xwv3000",fontsize=16,color="magenta"];611 -> 811[label="",style="dashed", color="magenta", weight=3]; 611 -> 812[label="",style="dashed", color="magenta", weight=3]; 612 -> 389[label="",style="dashed", color="red", weight=0]; 612[label="xwv400 * Pos xwv30010",fontsize=16,color="magenta"];612 -> 813[label="",style="dashed", color="magenta", weight=3]; 612 -> 814[label="",style="dashed", color="magenta", weight=3]; 613 -> 389[label="",style="dashed", color="red", weight=0]; 613[label="Pos xwv4010 * xwv3000",fontsize=16,color="magenta"];613 -> 815[label="",style="dashed", color="magenta", weight=3]; 613 -> 816[label="",style="dashed", color="magenta", weight=3]; 614 -> 389[label="",style="dashed", color="red", weight=0]; 614[label="xwv400 * Neg xwv30010",fontsize=16,color="magenta"];614 -> 817[label="",style="dashed", color="magenta", weight=3]; 614 -> 818[label="",style="dashed", color="magenta", weight=3]; 615 -> 389[label="",style="dashed", color="red", weight=0]; 615[label="Neg xwv4010 * xwv3000",fontsize=16,color="magenta"];615 -> 819[label="",style="dashed", color="magenta", weight=3]; 615 -> 820[label="",style="dashed", color="magenta", weight=3]; 616 -> 389[label="",style="dashed", color="red", weight=0]; 616[label="xwv400 * Neg xwv30010",fontsize=16,color="magenta"];616 -> 821[label="",style="dashed", color="magenta", weight=3]; 616 -> 822[label="",style="dashed", color="magenta", weight=3]; 617[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];617 -> 823[label="",style="solid", color="black", weight=3]; 618[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];618 -> 824[label="",style="solid", color="black", weight=3]; 619[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];619 -> 825[label="",style="solid", color="black", weight=3]; 620[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];620 -> 826[label="",style="solid", color="black", weight=3]; 621[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];621 -> 827[label="",style="solid", color="black", weight=3]; 622[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];622 -> 828[label="",style="solid", color="black", weight=3]; 623 -> 345[label="",style="dashed", color="red", weight=0]; 623[label="primCmpNat xwv4000 xwv30000",fontsize=16,color="magenta"];623 -> 829[label="",style="dashed", color="magenta", weight=3]; 623 -> 830[label="",style="dashed", color="magenta", weight=3]; 624[label="GT",fontsize=16,color="green",shape="box"];625[label="LT",fontsize=16,color="green",shape="box"];626[label="EQ",fontsize=16,color="green",shape="box"];627 -> 389[label="",style="dashed", color="red", weight=0]; 627[label="Pos xwv4010 * xwv3000",fontsize=16,color="magenta"];627 -> 831[label="",style="dashed", color="magenta", weight=3]; 627 -> 832[label="",style="dashed", color="magenta", weight=3]; 628 -> 389[label="",style="dashed", color="red", weight=0]; 628[label="xwv400 * Pos xwv30010",fontsize=16,color="magenta"];628 -> 833[label="",style="dashed", color="magenta", weight=3]; 628 -> 834[label="",style="dashed", color="magenta", weight=3]; 629 -> 389[label="",style="dashed", color="red", weight=0]; 629[label="Neg xwv4010 * xwv3000",fontsize=16,color="magenta"];629 -> 835[label="",style="dashed", color="magenta", weight=3]; 629 -> 836[label="",style="dashed", color="magenta", weight=3]; 630 -> 389[label="",style="dashed", color="red", weight=0]; 630[label="xwv400 * Pos xwv30010",fontsize=16,color="magenta"];630 -> 837[label="",style="dashed", color="magenta", weight=3]; 630 -> 838[label="",style="dashed", color="magenta", weight=3]; 631 -> 389[label="",style="dashed", color="red", weight=0]; 631[label="Pos xwv4010 * xwv3000",fontsize=16,color="magenta"];631 -> 839[label="",style="dashed", color="magenta", weight=3]; 631 -> 840[label="",style="dashed", color="magenta", weight=3]; 632 -> 389[label="",style="dashed", color="red", weight=0]; 632[label="xwv400 * Neg xwv30010",fontsize=16,color="magenta"];632 -> 841[label="",style="dashed", color="magenta", weight=3]; 632 -> 842[label="",style="dashed", color="magenta", weight=3]; 633 -> 389[label="",style="dashed", color="red", weight=0]; 633[label="Neg xwv4010 * xwv3000",fontsize=16,color="magenta"];633 -> 843[label="",style="dashed", color="magenta", weight=3]; 633 -> 844[label="",style="dashed", color="magenta", weight=3]; 634 -> 389[label="",style="dashed", color="red", weight=0]; 634[label="xwv400 * Neg xwv30010",fontsize=16,color="magenta"];634 -> 845[label="",style="dashed", color="magenta", weight=3]; 634 -> 846[label="",style="dashed", color="magenta", weight=3]; 3839[label="xwv21 : xwv22",fontsize=16,color="green",shape="box"];3840[label="xwv19",fontsize=16,color="green",shape="box"];862[label="xwv22",fontsize=16,color="green",shape="box"];863[label="xwv19",fontsize=16,color="green",shape="box"];864 -> 524[label="",style="dashed", color="red", weight=0]; 864[label="xwv16 == xwv22",fontsize=16,color="magenta"];864 -> 873[label="",style="dashed", color="magenta", weight=3]; 864 -> 874[label="",style="dashed", color="magenta", weight=3]; 865[label="xwv15",fontsize=16,color="green",shape="box"];866[label="xwv17",fontsize=16,color="green",shape="box"];867[label="xwv21",fontsize=16,color="green",shape="box"];868[label="xwv15 == xwv21",fontsize=16,color="blue",shape="box"];5007[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5007[label="",style="solid", color="blue", weight=9]; 5007 -> 875[label="",style="solid", color="blue", weight=3]; 5008[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5008[label="",style="solid", color="blue", weight=9]; 5008 -> 876[label="",style="solid", color="blue", weight=3]; 5009[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5009[label="",style="solid", color="blue", weight=9]; 5009 -> 877[label="",style="solid", color="blue", weight=3]; 5010[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5010[label="",style="solid", color="blue", weight=9]; 5010 -> 878[label="",style="solid", color="blue", weight=3]; 5011[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5011[label="",style="solid", color="blue", weight=9]; 5011 -> 879[label="",style="solid", color="blue", weight=3]; 5012[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5012[label="",style="solid", color="blue", weight=9]; 5012 -> 880[label="",style="solid", color="blue", weight=3]; 5013[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5013[label="",style="solid", color="blue", weight=9]; 5013 -> 881[label="",style="solid", color="blue", weight=3]; 5014[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5014[label="",style="solid", color="blue", weight=9]; 5014 -> 882[label="",style="solid", color="blue", weight=3]; 5015[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5015[label="",style="solid", color="blue", weight=9]; 5015 -> 883[label="",style="solid", color="blue", weight=3]; 5016[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5016[label="",style="solid", color="blue", weight=9]; 5016 -> 884[label="",style="solid", color="blue", weight=3]; 5017[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5017[label="",style="solid", color="blue", weight=9]; 5017 -> 885[label="",style="solid", color="blue", weight=3]; 5018[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5018[label="",style="solid", color="blue", weight=9]; 5018 -> 886[label="",style="solid", color="blue", weight=3]; 5019[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5019[label="",style="solid", color="blue", weight=9]; 5019 -> 887[label="",style="solid", color="blue", weight=3]; 5020[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];868 -> 5020[label="",style="solid", color="blue", weight=9]; 5020 -> 888[label="",style="solid", color="blue", weight=3]; 869[label="xwv16",fontsize=16,color="green",shape="box"];870[label="xwv20",fontsize=16,color="green",shape="box"];871[label="xwv18",fontsize=16,color="green",shape="box"];861[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) (xwv105 && xwv106)",fontsize=16,color="burlywood",shape="triangle"];5021[label="xwv105/False",fontsize=10,color="white",style="solid",shape="box"];861 -> 5021[label="",style="solid", color="burlywood", weight=9]; 5021 -> 889[label="",style="solid", color="burlywood", weight=3]; 5022[label="xwv105/True",fontsize=10,color="white",style="solid",shape="box"];861 -> 5022[label="",style="solid", color="burlywood", weight=9]; 5022 -> 890[label="",style="solid", color="burlywood", weight=3]; 3925[label="xwv355",fontsize=16,color="green",shape="box"];1496[label="FiniteMap.sizeFM xwv33",fontsize=16,color="burlywood",shape="triangle"];5023[label="xwv33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1496 -> 5023[label="",style="solid", color="burlywood", weight=9]; 5023 -> 1710[label="",style="solid", color="burlywood", weight=3]; 5024[label="xwv33/FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=10,color="white",style="solid",shape="box"];1496 -> 5024[label="",style="solid", color="burlywood", weight=9]; 5024 -> 1711[label="",style="solid", color="burlywood", weight=3]; 3926 -> 3942[label="",style="dashed", color="red", weight=0]; 3926[label="primPlusInt (Pos xwv3590) (FiniteMap.sizeFM xwv344)",fontsize=16,color="magenta"];3926 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3927 -> 3944[label="",style="dashed", color="red", weight=0]; 3927[label="primPlusInt (Neg xwv3590) (FiniteMap.sizeFM xwv344)",fontsize=16,color="magenta"];3927 -> 3945[label="",style="dashed", color="magenta", weight=3]; 917[label="LT == LT",fontsize=16,color="black",shape="box"];917 -> 1108[label="",style="solid", color="black", weight=3]; 918[label="LT == EQ",fontsize=16,color="black",shape="box"];918 -> 1109[label="",style="solid", color="black", weight=3]; 919[label="LT == GT",fontsize=16,color="black",shape="box"];919 -> 1110[label="",style="solid", color="black", weight=3]; 920[label="EQ == LT",fontsize=16,color="black",shape="box"];920 -> 1111[label="",style="solid", color="black", weight=3]; 921[label="EQ == EQ",fontsize=16,color="black",shape="box"];921 -> 1112[label="",style="solid", color="black", weight=3]; 922[label="EQ == GT",fontsize=16,color="black",shape="box"];922 -> 1113[label="",style="solid", color="black", weight=3]; 923[label="GT == LT",fontsize=16,color="black",shape="box"];923 -> 1114[label="",style="solid", color="black", weight=3]; 924[label="GT == EQ",fontsize=16,color="black",shape="box"];924 -> 1115[label="",style="solid", color="black", weight=3]; 925[label="GT == GT",fontsize=16,color="black",shape="box"];925 -> 1116[label="",style="solid", color="black", weight=3]; 3928 -> 1496[label="",style="dashed", color="red", weight=0]; 3928[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3928 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3929 -> 3903[label="",style="dashed", color="red", weight=0]; 3929[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355",fontsize=16,color="magenta"];3930[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];3930 -> 3947[label="",style="solid", color="black", weight=3]; 1738 -> 518[label="",style="dashed", color="red", weight=0]; 1738[label="compare xwv217 xwv216 == GT",fontsize=16,color="magenta"];1738 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1738 -> 1980[label="",style="dashed", color="magenta", weight=3]; 3931 -> 3948[label="",style="dashed", color="red", weight=0]; 3931[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355)",fontsize=16,color="magenta"];3931 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3932[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 xwv344 xwv355 xwv355 xwv344 xwv344",fontsize=16,color="burlywood",shape="box"];5025[label="xwv344/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3932 -> 5025[label="",style="solid", color="burlywood", weight=9]; 5025 -> 3950[label="",style="solid", color="burlywood", weight=3]; 5026[label="xwv344/FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444",fontsize=10,color="white",style="solid",shape="box"];3932 -> 5026[label="",style="solid", color="burlywood", weight=9]; 5026 -> 3951[label="",style="solid", color="burlywood", weight=3]; 4689[label="FiniteMap.Branch xwv473 xwv474 (FiniteMap.mkBranchUnbox xwv475 xwv473 xwv476 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv475 xwv473 xwv476 + FiniteMap.mkBranchRight_size xwv475 xwv473 xwv476)) xwv475 xwv476",fontsize=16,color="green",shape="box"];4689 -> 4696[label="",style="dashed", color="green", weight=3]; 651[label="FiniteMap.glueBal4 FiniteMap.EmptyFM xwv34",fontsize=16,color="black",shape="box"];651 -> 900[label="",style="solid", color="black", weight=3]; 652[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];652 -> 901[label="",style="solid", color="black", weight=3]; 653[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];653 -> 902[label="",style="solid", color="black", weight=3]; 654[label="primEqInt xwv400 xwv3000",fontsize=16,color="burlywood",shape="triangle"];5027[label="xwv400/Pos xwv4000",fontsize=10,color="white",style="solid",shape="box"];654 -> 5027[label="",style="solid", color="burlywood", weight=9]; 5027 -> 903[label="",style="solid", color="burlywood", weight=3]; 5028[label="xwv400/Neg xwv4000",fontsize=10,color="white",style="solid",shape="box"];654 -> 5028[label="",style="solid", color="burlywood", weight=9]; 5028 -> 904[label="",style="solid", color="burlywood", weight=3]; 655[label="False == xwv3000",fontsize=16,color="burlywood",shape="box"];5029[label="xwv3000/False",fontsize=10,color="white",style="solid",shape="box"];655 -> 5029[label="",style="solid", color="burlywood", weight=9]; 5029 -> 905[label="",style="solid", color="burlywood", weight=3]; 5030[label="xwv3000/True",fontsize=10,color="white",style="solid",shape="box"];655 -> 5030[label="",style="solid", color="burlywood", weight=9]; 5030 -> 906[label="",style="solid", color="burlywood", weight=3]; 656[label="True == xwv3000",fontsize=16,color="burlywood",shape="box"];5031[label="xwv3000/False",fontsize=10,color="white",style="solid",shape="box"];656 -> 5031[label="",style="solid", color="burlywood", weight=9]; 5031 -> 907[label="",style="solid", color="burlywood", weight=3]; 5032[label="xwv3000/True",fontsize=10,color="white",style="solid",shape="box"];656 -> 5032[label="",style="solid", color="burlywood", weight=9]; 5032 -> 908[label="",style="solid", color="burlywood", weight=3]; 657[label="(xwv4000,xwv4001,xwv4002) == xwv3000",fontsize=16,color="burlywood",shape="box"];5033[label="xwv3000/(xwv30000,xwv30001,xwv30002)",fontsize=10,color="white",style="solid",shape="box"];657 -> 5033[label="",style="solid", color="burlywood", weight=9]; 5033 -> 909[label="",style="solid", color="burlywood", weight=3]; 658[label="() == xwv3000",fontsize=16,color="burlywood",shape="box"];5034[label="xwv3000/()",fontsize=10,color="white",style="solid",shape="box"];658 -> 5034[label="",style="solid", color="burlywood", weight=9]; 5034 -> 910[label="",style="solid", color="burlywood", weight=3]; 659[label="primEqFloat xwv400 xwv3000",fontsize=16,color="burlywood",shape="box"];5035[label="xwv400/Float xwv4000 xwv4001",fontsize=10,color="white",style="solid",shape="box"];659 -> 5035[label="",style="solid", color="burlywood", weight=9]; 5035 -> 911[label="",style="solid", color="burlywood", weight=3]; 660[label="Nothing == xwv3000",fontsize=16,color="burlywood",shape="box"];5036[label="xwv3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];660 -> 5036[label="",style="solid", color="burlywood", weight=9]; 5036 -> 912[label="",style="solid", color="burlywood", weight=3]; 5037[label="xwv3000/Just xwv30000",fontsize=10,color="white",style="solid",shape="box"];660 -> 5037[label="",style="solid", color="burlywood", weight=9]; 5037 -> 913[label="",style="solid", color="burlywood", weight=3]; 661[label="Just xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="box"];5038[label="xwv3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];661 -> 5038[label="",style="solid", color="burlywood", weight=9]; 5038 -> 914[label="",style="solid", color="burlywood", weight=3]; 5039[label="xwv3000/Just xwv30000",fontsize=10,color="white",style="solid",shape="box"];661 -> 5039[label="",style="solid", color="burlywood", weight=9]; 5039 -> 915[label="",style="solid", color="burlywood", weight=3]; 662[label="primEqChar xwv400 xwv3000",fontsize=16,color="burlywood",shape="box"];5040[label="xwv400/Char xwv4000",fontsize=10,color="white",style="solid",shape="box"];662 -> 5040[label="",style="solid", color="burlywood", weight=9]; 5040 -> 916[label="",style="solid", color="burlywood", weight=3]; 666[label="xwv4000 :% xwv4001 == xwv3000",fontsize=16,color="burlywood",shape="box"];5041[label="xwv3000/xwv30000 :% xwv30001",fontsize=10,color="white",style="solid",shape="box"];666 -> 5041[label="",style="solid", color="burlywood", weight=9]; 5041 -> 926[label="",style="solid", color="burlywood", weight=3]; 667[label="primEqDouble xwv400 xwv3000",fontsize=16,color="burlywood",shape="box"];5042[label="xwv400/Double xwv4000 xwv4001",fontsize=10,color="white",style="solid",shape="box"];667 -> 5042[label="",style="solid", color="burlywood", weight=9]; 5042 -> 927[label="",style="solid", color="burlywood", weight=3]; 668[label="Left xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="box"];5043[label="xwv3000/Left xwv30000",fontsize=10,color="white",style="solid",shape="box"];668 -> 5043[label="",style="solid", color="burlywood", weight=9]; 5043 -> 928[label="",style="solid", color="burlywood", weight=3]; 5044[label="xwv3000/Right xwv30000",fontsize=10,color="white",style="solid",shape="box"];668 -> 5044[label="",style="solid", color="burlywood", weight=9]; 5044 -> 929[label="",style="solid", color="burlywood", weight=3]; 669[label="Right xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="box"];5045[label="xwv3000/Left xwv30000",fontsize=10,color="white",style="solid",shape="box"];669 -> 5045[label="",style="solid", color="burlywood", weight=9]; 5045 -> 930[label="",style="solid", color="burlywood", weight=3]; 5046[label="xwv3000/Right xwv30000",fontsize=10,color="white",style="solid",shape="box"];669 -> 5046[label="",style="solid", color="burlywood", weight=9]; 5046 -> 931[label="",style="solid", color="burlywood", weight=3]; 670[label="Integer xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="box"];5047[label="xwv3000/Integer xwv30000",fontsize=10,color="white",style="solid",shape="box"];670 -> 5047[label="",style="solid", color="burlywood", weight=9]; 5047 -> 932[label="",style="solid", color="burlywood", weight=3]; 671[label="(xwv4000,xwv4001) == xwv3000",fontsize=16,color="burlywood",shape="box"];5048[label="xwv3000/(xwv30000,xwv30001)",fontsize=10,color="white",style="solid",shape="box"];671 -> 5048[label="",style="solid", color="burlywood", weight=9]; 5048 -> 933[label="",style="solid", color="burlywood", weight=3]; 672[label="xwv4000 : xwv4001 == xwv3000",fontsize=16,color="burlywood",shape="box"];5049[label="xwv3000/xwv30000 : xwv30001",fontsize=10,color="white",style="solid",shape="box"];672 -> 5049[label="",style="solid", color="burlywood", weight=9]; 5049 -> 934[label="",style="solid", color="burlywood", weight=3]; 5050[label="xwv3000/[]",fontsize=10,color="white",style="solid",shape="box"];672 -> 5050[label="",style="solid", color="burlywood", weight=9]; 5050 -> 935[label="",style="solid", color="burlywood", weight=3]; 673[label="[] == xwv3000",fontsize=16,color="burlywood",shape="box"];5051[label="xwv3000/xwv30000 : xwv30001",fontsize=10,color="white",style="solid",shape="box"];673 -> 5051[label="",style="solid", color="burlywood", weight=9]; 5051 -> 936[label="",style="solid", color="burlywood", weight=3]; 5052[label="xwv3000/[]",fontsize=10,color="white",style="solid",shape="box"];673 -> 5052[label="",style="solid", color="burlywood", weight=9]; 5052 -> 937[label="",style="solid", color="burlywood", weight=3]; 674 -> 1129[label="",style="dashed", color="red", weight=0]; 674[label="compare1 (Left xwv43) (Left xwv44) (Left xwv43 <= Left xwv44)",fontsize=16,color="magenta"];674 -> 1130[label="",style="dashed", color="magenta", weight=3]; 674 -> 1131[label="",style="dashed", color="magenta", weight=3]; 674 -> 1132[label="",style="dashed", color="magenta", weight=3]; 675[label="EQ",fontsize=16,color="green",shape="box"];676[label="LT",fontsize=16,color="green",shape="box"];677[label="compare0 (Right xwv400) (Left xwv3000) otherwise",fontsize=16,color="black",shape="box"];677 -> 939[label="",style="solid", color="black", weight=3]; 678[label="xwv400",fontsize=16,color="green",shape="box"];679[label="xwv3000",fontsize=16,color="green",shape="box"];680[label="xwv400",fontsize=16,color="green",shape="box"];681[label="xwv3000",fontsize=16,color="green",shape="box"];682[label="xwv400",fontsize=16,color="green",shape="box"];683[label="xwv3000",fontsize=16,color="green",shape="box"];684[label="xwv400",fontsize=16,color="green",shape="box"];685[label="xwv3000",fontsize=16,color="green",shape="box"];686[label="xwv400",fontsize=16,color="green",shape="box"];687[label="xwv3000",fontsize=16,color="green",shape="box"];688[label="xwv400",fontsize=16,color="green",shape="box"];689[label="xwv3000",fontsize=16,color="green",shape="box"];690[label="xwv400",fontsize=16,color="green",shape="box"];691[label="xwv3000",fontsize=16,color="green",shape="box"];692[label="xwv400",fontsize=16,color="green",shape="box"];693[label="xwv3000",fontsize=16,color="green",shape="box"];694[label="xwv400",fontsize=16,color="green",shape="box"];695[label="xwv3000",fontsize=16,color="green",shape="box"];696[label="xwv400",fontsize=16,color="green",shape="box"];697[label="xwv3000",fontsize=16,color="green",shape="box"];698[label="xwv400",fontsize=16,color="green",shape="box"];699[label="xwv3000",fontsize=16,color="green",shape="box"];700[label="xwv400",fontsize=16,color="green",shape="box"];701[label="xwv3000",fontsize=16,color="green",shape="box"];702[label="xwv400",fontsize=16,color="green",shape="box"];703[label="xwv3000",fontsize=16,color="green",shape="box"];704[label="xwv400",fontsize=16,color="green",shape="box"];705[label="xwv3000",fontsize=16,color="green",shape="box"];706 -> 1142[label="",style="dashed", color="red", weight=0]; 706[label="compare1 (Right xwv50) (Right xwv51) (Right xwv50 <= Right xwv51)",fontsize=16,color="magenta"];706 -> 1143[label="",style="dashed", color="magenta", weight=3]; 706 -> 1144[label="",style="dashed", color="magenta", weight=3]; 706 -> 1145[label="",style="dashed", color="magenta", weight=3]; 707[label="EQ",fontsize=16,color="green",shape="box"];1238 -> 511[label="",style="dashed", color="red", weight=0]; 1238[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1238 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1239 -> 512[label="",style="dashed", color="red", weight=0]; 1239[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1239 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1240 -> 513[label="",style="dashed", color="red", weight=0]; 1240[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1240 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1241 -> 514[label="",style="dashed", color="red", weight=0]; 1241[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1241 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1242 -> 515[label="",style="dashed", color="red", weight=0]; 1242[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1242 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1243 -> 516[label="",style="dashed", color="red", weight=0]; 1243[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1243 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1244 -> 517[label="",style="dashed", color="red", weight=0]; 1244[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1244 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1245 -> 518[label="",style="dashed", color="red", weight=0]; 1245[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1245 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1245 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1246 -> 519[label="",style="dashed", color="red", weight=0]; 1246[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1246 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1246 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1247 -> 520[label="",style="dashed", color="red", weight=0]; 1247[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1247 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1247 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1248 -> 521[label="",style="dashed", color="red", weight=0]; 1248[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1248 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1248 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1249 -> 522[label="",style="dashed", color="red", weight=0]; 1249[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1249 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1249 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1250 -> 523[label="",style="dashed", color="red", weight=0]; 1250[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1250 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1250 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1251 -> 524[label="",style="dashed", color="red", weight=0]; 1251[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1251 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1252[label="xwv401 == xwv3001",fontsize=16,color="blue",shape="box"];5053[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5053[label="",style="solid", color="blue", weight=9]; 5053 -> 1317[label="",style="solid", color="blue", weight=3]; 5054[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5054[label="",style="solid", color="blue", weight=9]; 5054 -> 1318[label="",style="solid", color="blue", weight=3]; 5055[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5055[label="",style="solid", color="blue", weight=9]; 5055 -> 1319[label="",style="solid", color="blue", weight=3]; 5056[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5056[label="",style="solid", color="blue", weight=9]; 5056 -> 1320[label="",style="solid", color="blue", weight=3]; 5057[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5057[label="",style="solid", color="blue", weight=9]; 5057 -> 1321[label="",style="solid", color="blue", weight=3]; 5058[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5058[label="",style="solid", color="blue", weight=9]; 5058 -> 1322[label="",style="solid", color="blue", weight=3]; 5059[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5059[label="",style="solid", color="blue", weight=9]; 5059 -> 1323[label="",style="solid", color="blue", weight=3]; 5060[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5060[label="",style="solid", color="blue", weight=9]; 5060 -> 1324[label="",style="solid", color="blue", weight=3]; 5061[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5061[label="",style="solid", color="blue", weight=9]; 5061 -> 1325[label="",style="solid", color="blue", weight=3]; 5062[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5062[label="",style="solid", color="blue", weight=9]; 5062 -> 1326[label="",style="solid", color="blue", weight=3]; 5063[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5063[label="",style="solid", color="blue", weight=9]; 5063 -> 1327[label="",style="solid", color="blue", weight=3]; 5064[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5064[label="",style="solid", color="blue", weight=9]; 5064 -> 1328[label="",style="solid", color="blue", weight=3]; 5065[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5065[label="",style="solid", color="blue", weight=9]; 5065 -> 1329[label="",style="solid", color="blue", weight=3]; 5066[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 5066[label="",style="solid", color="blue", weight=9]; 5066 -> 1330[label="",style="solid", color="blue", weight=3]; 1253[label="xwv402 == xwv3002",fontsize=16,color="blue",shape="box"];5067[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5067[label="",style="solid", color="blue", weight=9]; 5067 -> 1331[label="",style="solid", color="blue", weight=3]; 5068[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5068[label="",style="solid", color="blue", weight=9]; 5068 -> 1332[label="",style="solid", color="blue", weight=3]; 5069[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5069[label="",style="solid", color="blue", weight=9]; 5069 -> 1333[label="",style="solid", color="blue", weight=3]; 5070[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5070[label="",style="solid", color="blue", weight=9]; 5070 -> 1334[label="",style="solid", color="blue", weight=3]; 5071[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5071[label="",style="solid", color="blue", weight=9]; 5071 -> 1335[label="",style="solid", color="blue", weight=3]; 5072[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5072[label="",style="solid", color="blue", weight=9]; 5072 -> 1336[label="",style="solid", color="blue", weight=3]; 5073[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5073[label="",style="solid", color="blue", weight=9]; 5073 -> 1337[label="",style="solid", color="blue", weight=3]; 5074[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5074[label="",style="solid", color="blue", weight=9]; 5074 -> 1338[label="",style="solid", color="blue", weight=3]; 5075[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5075[label="",style="solid", color="blue", weight=9]; 5075 -> 1339[label="",style="solid", color="blue", weight=3]; 5076[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5076[label="",style="solid", color="blue", weight=9]; 5076 -> 1340[label="",style="solid", color="blue", weight=3]; 5077[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5077[label="",style="solid", color="blue", weight=9]; 5077 -> 1341[label="",style="solid", color="blue", weight=3]; 5078[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5078[label="",style="solid", color="blue", weight=9]; 5078 -> 1342[label="",style="solid", color="blue", weight=3]; 5079[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5079[label="",style="solid", color="blue", weight=9]; 5079 -> 1343[label="",style="solid", color="blue", weight=3]; 5080[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1253 -> 5080[label="",style="solid", color="blue", weight=9]; 5080 -> 1344[label="",style="solid", color="blue", weight=3]; 1254[label="False && xwv164",fontsize=16,color="black",shape="box"];1254 -> 1345[label="",style="solid", color="black", weight=3]; 1255[label="True && xwv164",fontsize=16,color="black",shape="box"];1255 -> 1346[label="",style="solid", color="black", weight=3]; 1256[label="compare1 (xwv115,xwv116,xwv117) (xwv118,xwv119,xwv120) ((xwv115,xwv116,xwv117) <= (xwv118,xwv119,xwv120))",fontsize=16,color="black",shape="box"];1256 -> 1347[label="",style="solid", color="black", weight=3]; 1257[label="EQ",fontsize=16,color="green",shape="box"];738[label="LT",fontsize=16,color="green",shape="box"];739[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];739 -> 950[label="",style="solid", color="black", weight=3]; 1258 -> 511[label="",style="dashed", color="red", weight=0]; 1258[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1258 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1259 -> 512[label="",style="dashed", color="red", weight=0]; 1259[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1259 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1260 -> 513[label="",style="dashed", color="red", weight=0]; 1260[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1260 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1260 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1261 -> 514[label="",style="dashed", color="red", weight=0]; 1261[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1261 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1262 -> 515[label="",style="dashed", color="red", weight=0]; 1262[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1262 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1263 -> 516[label="",style="dashed", color="red", weight=0]; 1263[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1263 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1263 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1264 -> 517[label="",style="dashed", color="red", weight=0]; 1264[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1264 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1265 -> 518[label="",style="dashed", color="red", weight=0]; 1265[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1265 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1266 -> 519[label="",style="dashed", color="red", weight=0]; 1266[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1266 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1267 -> 520[label="",style="dashed", color="red", weight=0]; 1267[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1267 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1268 -> 521[label="",style="dashed", color="red", weight=0]; 1268[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1268 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1269 -> 522[label="",style="dashed", color="red", weight=0]; 1269[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1269 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1270 -> 523[label="",style="dashed", color="red", weight=0]; 1270[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1270 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1271 -> 524[label="",style="dashed", color="red", weight=0]; 1271[label="xwv400 == xwv3000",fontsize=16,color="magenta"];1271 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1272 -> 511[label="",style="dashed", color="red", weight=0]; 1272[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1272 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1273 -> 512[label="",style="dashed", color="red", weight=0]; 1273[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1273 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1273 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1274 -> 513[label="",style="dashed", color="red", weight=0]; 1274[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1274 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1274 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1275 -> 514[label="",style="dashed", color="red", weight=0]; 1275[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1275 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1275 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1276 -> 515[label="",style="dashed", color="red", weight=0]; 1276[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1276 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1277 -> 516[label="",style="dashed", color="red", weight=0]; 1277[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1277 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1277 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1278 -> 517[label="",style="dashed", color="red", weight=0]; 1278[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1278 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1278 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1279 -> 518[label="",style="dashed", color="red", weight=0]; 1279[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1279 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1279 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1280 -> 519[label="",style="dashed", color="red", weight=0]; 1280[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1280 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1281 -> 520[label="",style="dashed", color="red", weight=0]; 1281[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1281 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1281 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1282 -> 521[label="",style="dashed", color="red", weight=0]; 1282[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1282 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1282 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1283 -> 522[label="",style="dashed", color="red", weight=0]; 1283[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1283 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1283 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1284 -> 523[label="",style="dashed", color="red", weight=0]; 1284[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1284 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1284 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1285 -> 524[label="",style="dashed", color="red", weight=0]; 1285[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1285 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1285 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1040[label="compare1 (xwv128,xwv129) (xwv130,xwv131) ((xwv128,xwv129) <= (xwv130,xwv131))",fontsize=16,color="black",shape="box"];1040 -> 1086[label="",style="solid", color="black", weight=3]; 1041[label="EQ",fontsize=16,color="green",shape="box"];770[label="Integer (primMulInt xwv30000 xwv4010)",fontsize=16,color="green",shape="box"];770 -> 995[label="",style="dashed", color="green", weight=3]; 771[label="primMulInt (Pos xwv30000) (Pos xwv4010)",fontsize=16,color="black",shape="box"];771 -> 996[label="",style="solid", color="black", weight=3]; 772[label="primMulInt (Pos xwv30000) (Neg xwv4010)",fontsize=16,color="black",shape="box"];772 -> 997[label="",style="solid", color="black", weight=3]; 773[label="primMulInt (Neg xwv30000) (Pos xwv4010)",fontsize=16,color="black",shape="box"];773 -> 998[label="",style="solid", color="black", weight=3]; 774[label="primMulInt (Neg xwv30000) (Neg xwv4010)",fontsize=16,color="black",shape="box"];774 -> 999[label="",style="solid", color="black", weight=3]; 775[label="LT",fontsize=16,color="green",shape="box"];776[label="compare0 (Just xwv400) Nothing otherwise",fontsize=16,color="black",shape="box"];776 -> 1000[label="",style="solid", color="black", weight=3]; 777[label="xwv400",fontsize=16,color="green",shape="box"];778[label="xwv3000",fontsize=16,color="green",shape="box"];779[label="xwv400",fontsize=16,color="green",shape="box"];780[label="xwv3000",fontsize=16,color="green",shape="box"];781[label="xwv400",fontsize=16,color="green",shape="box"];782[label="xwv3000",fontsize=16,color="green",shape="box"];783[label="xwv400",fontsize=16,color="green",shape="box"];784[label="xwv3000",fontsize=16,color="green",shape="box"];785[label="xwv400",fontsize=16,color="green",shape="box"];786[label="xwv3000",fontsize=16,color="green",shape="box"];787[label="xwv400",fontsize=16,color="green",shape="box"];788[label="xwv3000",fontsize=16,color="green",shape="box"];789[label="xwv400",fontsize=16,color="green",shape="box"];790[label="xwv3000",fontsize=16,color="green",shape="box"];791[label="xwv400",fontsize=16,color="green",shape="box"];792[label="xwv3000",fontsize=16,color="green",shape="box"];793[label="xwv400",fontsize=16,color="green",shape="box"];794[label="xwv3000",fontsize=16,color="green",shape="box"];795[label="xwv400",fontsize=16,color="green",shape="box"];796[label="xwv3000",fontsize=16,color="green",shape="box"];797[label="xwv400",fontsize=16,color="green",shape="box"];798[label="xwv3000",fontsize=16,color="green",shape="box"];799[label="xwv400",fontsize=16,color="green",shape="box"];800[label="xwv3000",fontsize=16,color="green",shape="box"];801[label="xwv400",fontsize=16,color="green",shape="box"];802[label="xwv3000",fontsize=16,color="green",shape="box"];803[label="xwv400",fontsize=16,color="green",shape="box"];804[label="xwv3000",fontsize=16,color="green",shape="box"];805 -> 1411[label="",style="dashed", color="red", weight=0]; 805[label="compare1 (Just xwv83) (Just xwv84) (Just xwv83 <= Just xwv84)",fontsize=16,color="magenta"];805 -> 1412[label="",style="dashed", color="magenta", weight=3]; 805 -> 1413[label="",style="dashed", color="magenta", weight=3]; 805 -> 1414[label="",style="dashed", color="magenta", weight=3]; 806[label="EQ",fontsize=16,color="green",shape="box"];807[label="xwv3000",fontsize=16,color="green",shape="box"];808[label="Pos xwv4010",fontsize=16,color="green",shape="box"];809[label="Pos xwv30010",fontsize=16,color="green",shape="box"];810[label="xwv400",fontsize=16,color="green",shape="box"];811[label="xwv3000",fontsize=16,color="green",shape="box"];812[label="Neg xwv4010",fontsize=16,color="green",shape="box"];813[label="Pos xwv30010",fontsize=16,color="green",shape="box"];814[label="xwv400",fontsize=16,color="green",shape="box"];815[label="xwv3000",fontsize=16,color="green",shape="box"];816[label="Pos xwv4010",fontsize=16,color="green",shape="box"];817[label="Neg xwv30010",fontsize=16,color="green",shape="box"];818[label="xwv400",fontsize=16,color="green",shape="box"];819[label="xwv3000",fontsize=16,color="green",shape="box"];820[label="Neg xwv4010",fontsize=16,color="green",shape="box"];821[label="Neg xwv30010",fontsize=16,color="green",shape="box"];822[label="xwv400",fontsize=16,color="green",shape="box"];823[label="LT",fontsize=16,color="green",shape="box"];824[label="LT",fontsize=16,color="green",shape="box"];825[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];825 -> 1002[label="",style="solid", color="black", weight=3]; 826[label="LT",fontsize=16,color="green",shape="box"];827[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];827 -> 1003[label="",style="solid", color="black", weight=3]; 828[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];828 -> 1004[label="",style="solid", color="black", weight=3]; 829[label="xwv4000",fontsize=16,color="green",shape="box"];830[label="xwv30000",fontsize=16,color="green",shape="box"];831[label="xwv3000",fontsize=16,color="green",shape="box"];832[label="Pos xwv4010",fontsize=16,color="green",shape="box"];833[label="Pos xwv30010",fontsize=16,color="green",shape="box"];834[label="xwv400",fontsize=16,color="green",shape="box"];835[label="xwv3000",fontsize=16,color="green",shape="box"];836[label="Neg xwv4010",fontsize=16,color="green",shape="box"];837[label="Pos xwv30010",fontsize=16,color="green",shape="box"];838[label="xwv400",fontsize=16,color="green",shape="box"];839[label="xwv3000",fontsize=16,color="green",shape="box"];840[label="Pos xwv4010",fontsize=16,color="green",shape="box"];841[label="Neg xwv30010",fontsize=16,color="green",shape="box"];842[label="xwv400",fontsize=16,color="green",shape="box"];843[label="xwv3000",fontsize=16,color="green",shape="box"];844[label="Neg xwv4010",fontsize=16,color="green",shape="box"];845[label="Neg xwv30010",fontsize=16,color="green",shape="box"];846[label="xwv400",fontsize=16,color="green",shape="box"];873[label="xwv16",fontsize=16,color="green",shape="box"];874[label="xwv22",fontsize=16,color="green",shape="box"];875 -> 511[label="",style="dashed", color="red", weight=0]; 875[label="xwv15 == xwv21",fontsize=16,color="magenta"];875 -> 1005[label="",style="dashed", color="magenta", weight=3]; 875 -> 1006[label="",style="dashed", color="magenta", weight=3]; 876 -> 512[label="",style="dashed", color="red", weight=0]; 876[label="xwv15 == xwv21",fontsize=16,color="magenta"];876 -> 1007[label="",style="dashed", color="magenta", weight=3]; 876 -> 1008[label="",style="dashed", color="magenta", weight=3]; 877 -> 513[label="",style="dashed", color="red", weight=0]; 877[label="xwv15 == xwv21",fontsize=16,color="magenta"];877 -> 1009[label="",style="dashed", color="magenta", weight=3]; 877 -> 1010[label="",style="dashed", color="magenta", weight=3]; 878 -> 514[label="",style="dashed", color="red", weight=0]; 878[label="xwv15 == xwv21",fontsize=16,color="magenta"];878 -> 1011[label="",style="dashed", color="magenta", weight=3]; 878 -> 1012[label="",style="dashed", color="magenta", weight=3]; 879 -> 515[label="",style="dashed", color="red", weight=0]; 879[label="xwv15 == xwv21",fontsize=16,color="magenta"];879 -> 1013[label="",style="dashed", color="magenta", weight=3]; 879 -> 1014[label="",style="dashed", color="magenta", weight=3]; 880 -> 516[label="",style="dashed", color="red", weight=0]; 880[label="xwv15 == xwv21",fontsize=16,color="magenta"];880 -> 1015[label="",style="dashed", color="magenta", weight=3]; 880 -> 1016[label="",style="dashed", color="magenta", weight=3]; 881 -> 517[label="",style="dashed", color="red", weight=0]; 881[label="xwv15 == xwv21",fontsize=16,color="magenta"];881 -> 1017[label="",style="dashed", color="magenta", weight=3]; 881 -> 1018[label="",style="dashed", color="magenta", weight=3]; 882 -> 518[label="",style="dashed", color="red", weight=0]; 882[label="xwv15 == xwv21",fontsize=16,color="magenta"];882 -> 1019[label="",style="dashed", color="magenta", weight=3]; 882 -> 1020[label="",style="dashed", color="magenta", weight=3]; 883 -> 519[label="",style="dashed", color="red", weight=0]; 883[label="xwv15 == xwv21",fontsize=16,color="magenta"];883 -> 1021[label="",style="dashed", color="magenta", weight=3]; 883 -> 1022[label="",style="dashed", color="magenta", weight=3]; 884 -> 520[label="",style="dashed", color="red", weight=0]; 884[label="xwv15 == xwv21",fontsize=16,color="magenta"];884 -> 1023[label="",style="dashed", color="magenta", weight=3]; 884 -> 1024[label="",style="dashed", color="magenta", weight=3]; 885 -> 521[label="",style="dashed", color="red", weight=0]; 885[label="xwv15 == xwv21",fontsize=16,color="magenta"];885 -> 1025[label="",style="dashed", color="magenta", weight=3]; 885 -> 1026[label="",style="dashed", color="magenta", weight=3]; 886 -> 522[label="",style="dashed", color="red", weight=0]; 886[label="xwv15 == xwv21",fontsize=16,color="magenta"];886 -> 1027[label="",style="dashed", color="magenta", weight=3]; 886 -> 1028[label="",style="dashed", color="magenta", weight=3]; 887 -> 523[label="",style="dashed", color="red", weight=0]; 887[label="xwv15 == xwv21",fontsize=16,color="magenta"];887 -> 1029[label="",style="dashed", color="magenta", weight=3]; 887 -> 1030[label="",style="dashed", color="magenta", weight=3]; 888 -> 524[label="",style="dashed", color="red", weight=0]; 888[label="xwv15 == xwv21",fontsize=16,color="magenta"];888 -> 1031[label="",style="dashed", color="magenta", weight=3]; 888 -> 1032[label="",style="dashed", color="magenta", weight=3]; 889[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) (False && xwv106)",fontsize=16,color="black",shape="box"];889 -> 1033[label="",style="solid", color="black", weight=3]; 890[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) (True && xwv106)",fontsize=16,color="black",shape="box"];890 -> 1034[label="",style="solid", color="black", weight=3]; 1710[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1710 -> 2111[label="",style="solid", color="black", weight=3]; 1711[label="FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="black",shape="box"];1711 -> 2112[label="",style="solid", color="black", weight=3]; 3943 -> 1496[label="",style="dashed", color="red", weight=0]; 3943[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3943 -> 3953[label="",style="dashed", color="magenta", weight=3]; 3942[label="primPlusInt (Pos xwv3590) xwv360",fontsize=16,color="burlywood",shape="triangle"];5081[label="xwv360/Pos xwv3600",fontsize=10,color="white",style="solid",shape="box"];3942 -> 5081[label="",style="solid", color="burlywood", weight=9]; 5081 -> 3954[label="",style="solid", color="burlywood", weight=3]; 5082[label="xwv360/Neg xwv3600",fontsize=10,color="white",style="solid",shape="box"];3942 -> 5082[label="",style="solid", color="burlywood", weight=9]; 5082 -> 3955[label="",style="solid", color="burlywood", weight=3]; 3945 -> 1496[label="",style="dashed", color="red", weight=0]; 3945[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3945 -> 3956[label="",style="dashed", color="magenta", weight=3]; 3944[label="primPlusInt (Neg xwv3590) xwv361",fontsize=16,color="burlywood",shape="triangle"];5083[label="xwv361/Pos xwv3610",fontsize=10,color="white",style="solid",shape="box"];3944 -> 5083[label="",style="solid", color="burlywood", weight=9]; 5083 -> 3957[label="",style="solid", color="burlywood", weight=3]; 5084[label="xwv361/Neg xwv3610",fontsize=10,color="white",style="solid",shape="box"];3944 -> 5084[label="",style="solid", color="burlywood", weight=9]; 5084 -> 3958[label="",style="solid", color="burlywood", weight=3]; 1108[label="True",fontsize=16,color="green",shape="box"];1109[label="False",fontsize=16,color="green",shape="box"];1110[label="False",fontsize=16,color="green",shape="box"];1111[label="False",fontsize=16,color="green",shape="box"];1112[label="True",fontsize=16,color="green",shape="box"];1113[label="False",fontsize=16,color="green",shape="box"];1114[label="False",fontsize=16,color="green",shape="box"];1115[label="False",fontsize=16,color="green",shape="box"];1116[label="True",fontsize=16,color="green",shape="box"];3946[label="xwv344",fontsize=16,color="green",shape="box"];3947[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1979 -> 152[label="",style="dashed", color="red", weight=0]; 1979[label="compare xwv217 xwv216",fontsize=16,color="magenta"];1979 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1980[label="GT",fontsize=16,color="green",shape="box"];3949 -> 1724[label="",style="dashed", color="red", weight=0]; 3949[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355",fontsize=16,color="magenta"];3949 -> 3959[label="",style="dashed", color="magenta", weight=3]; 3949 -> 3960[label="",style="dashed", color="magenta", weight=3]; 3948[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 xwv362",fontsize=16,color="burlywood",shape="triangle"];5085[label="xwv362/False",fontsize=10,color="white",style="solid",shape="box"];3948 -> 5085[label="",style="solid", color="burlywood", weight=9]; 5085 -> 3961[label="",style="solid", color="burlywood", weight=3]; 5086[label="xwv362/True",fontsize=10,color="white",style="solid",shape="box"];3948 -> 5086[label="",style="solid", color="burlywood", weight=9]; 5086 -> 3962[label="",style="solid", color="burlywood", weight=3]; 3950[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 FiniteMap.EmptyFM xwv355 xwv355 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3950 -> 3975[label="",style="solid", color="black", weight=3]; 3951[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3951 -> 3976[label="",style="solid", color="black", weight=3]; 4696[label="FiniteMap.mkBranchUnbox xwv475 xwv473 xwv476 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv475 xwv473 xwv476 + FiniteMap.mkBranchRight_size xwv475 xwv473 xwv476)",fontsize=16,color="black",shape="box"];4696 -> 4697[label="",style="solid", color="black", weight=3]; 900[label="xwv34",fontsize=16,color="green",shape="box"];901[label="FiniteMap.glueBal3 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];901 -> 1090[label="",style="solid", color="black", weight=3]; 902[label="FiniteMap.glueBal2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];902 -> 1091[label="",style="solid", color="black", weight=3]; 903[label="primEqInt (Pos xwv4000) xwv3000",fontsize=16,color="burlywood",shape="box"];5087[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];903 -> 5087[label="",style="solid", color="burlywood", weight=9]; 5087 -> 1092[label="",style="solid", color="burlywood", weight=3]; 5088[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];903 -> 5088[label="",style="solid", color="burlywood", weight=9]; 5088 -> 1093[label="",style="solid", color="burlywood", weight=3]; 904[label="primEqInt (Neg xwv4000) xwv3000",fontsize=16,color="burlywood",shape="box"];5089[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];904 -> 5089[label="",style="solid", color="burlywood", weight=9]; 5089 -> 1094[label="",style="solid", color="burlywood", weight=3]; 5090[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];904 -> 5090[label="",style="solid", color="burlywood", weight=9]; 5090 -> 1095[label="",style="solid", color="burlywood", weight=3]; 905[label="False == False",fontsize=16,color="black",shape="box"];905 -> 1096[label="",style="solid", color="black", weight=3]; 906[label="False == True",fontsize=16,color="black",shape="box"];906 -> 1097[label="",style="solid", color="black", weight=3]; 907[label="True == False",fontsize=16,color="black",shape="box"];907 -> 1098[label="",style="solid", color="black", weight=3]; 908[label="True == True",fontsize=16,color="black",shape="box"];908 -> 1099[label="",style="solid", color="black", weight=3]; 909[label="(xwv4000,xwv4001,xwv4002) == (xwv30000,xwv30001,xwv30002)",fontsize=16,color="black",shape="box"];909 -> 1100[label="",style="solid", color="black", weight=3]; 910[label="() == ()",fontsize=16,color="black",shape="box"];910 -> 1101[label="",style="solid", color="black", weight=3]; 911[label="primEqFloat (Float xwv4000 xwv4001) xwv3000",fontsize=16,color="burlywood",shape="box"];5091[label="xwv3000/Float xwv30000 xwv30001",fontsize=10,color="white",style="solid",shape="box"];911 -> 5091[label="",style="solid", color="burlywood", weight=9]; 5091 -> 1102[label="",style="solid", color="burlywood", weight=3]; 912[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];912 -> 1103[label="",style="solid", color="black", weight=3]; 913[label="Nothing == Just xwv30000",fontsize=16,color="black",shape="box"];913 -> 1104[label="",style="solid", color="black", weight=3]; 914[label="Just xwv4000 == Nothing",fontsize=16,color="black",shape="box"];914 -> 1105[label="",style="solid", color="black", weight=3]; 915[label="Just xwv4000 == Just xwv30000",fontsize=16,color="black",shape="box"];915 -> 1106[label="",style="solid", color="black", weight=3]; 916[label="primEqChar (Char xwv4000) xwv3000",fontsize=16,color="burlywood",shape="box"];5092[label="xwv3000/Char xwv30000",fontsize=10,color="white",style="solid",shape="box"];916 -> 5092[label="",style="solid", color="burlywood", weight=9]; 5092 -> 1107[label="",style="solid", color="burlywood", weight=3]; 926[label="xwv4000 :% xwv4001 == xwv30000 :% xwv30001",fontsize=16,color="black",shape="box"];926 -> 1117[label="",style="solid", color="black", weight=3]; 927[label="primEqDouble (Double xwv4000 xwv4001) xwv3000",fontsize=16,color="burlywood",shape="box"];5093[label="xwv3000/Double xwv30000 xwv30001",fontsize=10,color="white",style="solid",shape="box"];927 -> 5093[label="",style="solid", color="burlywood", weight=9]; 5093 -> 1118[label="",style="solid", color="burlywood", weight=3]; 928[label="Left xwv4000 == Left xwv30000",fontsize=16,color="black",shape="box"];928 -> 1119[label="",style="solid", color="black", weight=3]; 929[label="Left xwv4000 == Right xwv30000",fontsize=16,color="black",shape="box"];929 -> 1120[label="",style="solid", color="black", weight=3]; 930[label="Right xwv4000 == Left xwv30000",fontsize=16,color="black",shape="box"];930 -> 1121[label="",style="solid", color="black", weight=3]; 931[label="Right xwv4000 == Right xwv30000",fontsize=16,color="black",shape="box"];931 -> 1122[label="",style="solid", color="black", weight=3]; 932[label="Integer xwv4000 == Integer xwv30000",fontsize=16,color="black",shape="box"];932 -> 1123[label="",style="solid", color="black", weight=3]; 933[label="(xwv4000,xwv4001) == (xwv30000,xwv30001)",fontsize=16,color="black",shape="box"];933 -> 1124[label="",style="solid", color="black", weight=3]; 934[label="xwv4000 : xwv4001 == xwv30000 : xwv30001",fontsize=16,color="black",shape="box"];934 -> 1125[label="",style="solid", color="black", weight=3]; 935[label="xwv4000 : xwv4001 == []",fontsize=16,color="black",shape="box"];935 -> 1126[label="",style="solid", color="black", weight=3]; 936[label="[] == xwv30000 : xwv30001",fontsize=16,color="black",shape="box"];936 -> 1127[label="",style="solid", color="black", weight=3]; 937[label="[] == []",fontsize=16,color="black",shape="box"];937 -> 1128[label="",style="solid", color="black", weight=3]; 1130[label="xwv43",fontsize=16,color="green",shape="box"];1131[label="Left xwv43 <= Left xwv44",fontsize=16,color="black",shape="box"];1131 -> 1138[label="",style="solid", color="black", weight=3]; 1132[label="xwv44",fontsize=16,color="green",shape="box"];1129[label="compare1 (Left xwv148) (Left xwv149) xwv150",fontsize=16,color="burlywood",shape="triangle"];5094[label="xwv150/False",fontsize=10,color="white",style="solid",shape="box"];1129 -> 5094[label="",style="solid", color="burlywood", weight=9]; 5094 -> 1139[label="",style="solid", color="burlywood", weight=3]; 5095[label="xwv150/True",fontsize=10,color="white",style="solid",shape="box"];1129 -> 5095[label="",style="solid", color="burlywood", weight=9]; 5095 -> 1140[label="",style="solid", color="burlywood", weight=3]; 939[label="compare0 (Right xwv400) (Left xwv3000) True",fontsize=16,color="black",shape="box"];939 -> 1141[label="",style="solid", color="black", weight=3]; 1143[label="Right xwv50 <= Right xwv51",fontsize=16,color="black",shape="box"];1143 -> 1149[label="",style="solid", color="black", weight=3]; 1144[label="xwv50",fontsize=16,color="green",shape="box"];1145[label="xwv51",fontsize=16,color="green",shape="box"];1142[label="compare1 (Right xwv155) (Right xwv156) xwv157",fontsize=16,color="burlywood",shape="triangle"];5096[label="xwv157/False",fontsize=10,color="white",style="solid",shape="box"];1142 -> 5096[label="",style="solid", color="burlywood", weight=9]; 5096 -> 1150[label="",style="solid", color="burlywood", weight=3]; 5097[label="xwv157/True",fontsize=10,color="white",style="solid",shape="box"];1142 -> 5097[label="",style="solid", color="burlywood", weight=9]; 5097 -> 1151[label="",style="solid", color="burlywood", weight=3]; 1289[label="xwv400",fontsize=16,color="green",shape="box"];1290[label="xwv3000",fontsize=16,color="green",shape="box"];1291[label="xwv400",fontsize=16,color="green",shape="box"];1292[label="xwv3000",fontsize=16,color="green",shape="box"];1293[label="xwv400",fontsize=16,color="green",shape="box"];1294[label="xwv3000",fontsize=16,color="green",shape="box"];1295[label="xwv400",fontsize=16,color="green",shape="box"];1296[label="xwv3000",fontsize=16,color="green",shape="box"];1297[label="xwv400",fontsize=16,color="green",shape="box"];1298[label="xwv3000",fontsize=16,color="green",shape="box"];1299[label="xwv400",fontsize=16,color="green",shape="box"];1300[label="xwv3000",fontsize=16,color="green",shape="box"];1301[label="xwv400",fontsize=16,color="green",shape="box"];1302[label="xwv3000",fontsize=16,color="green",shape="box"];1303[label="xwv400",fontsize=16,color="green",shape="box"];1304[label="xwv3000",fontsize=16,color="green",shape="box"];1305[label="xwv400",fontsize=16,color="green",shape="box"];1306[label="xwv3000",fontsize=16,color="green",shape="box"];1307[label="xwv400",fontsize=16,color="green",shape="box"];1308[label="xwv3000",fontsize=16,color="green",shape="box"];1309[label="xwv400",fontsize=16,color="green",shape="box"];1310[label="xwv3000",fontsize=16,color="green",shape="box"];1311[label="xwv400",fontsize=16,color="green",shape="box"];1312[label="xwv3000",fontsize=16,color="green",shape="box"];1313[label="xwv400",fontsize=16,color="green",shape="box"];1314[label="xwv3000",fontsize=16,color="green",shape="box"];1315[label="xwv400",fontsize=16,color="green",shape="box"];1316[label="xwv3000",fontsize=16,color="green",shape="box"];1317 -> 511[label="",style="dashed", color="red", weight=0]; 1317[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1317 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1318 -> 512[label="",style="dashed", color="red", weight=0]; 1318[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1318 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1319 -> 513[label="",style="dashed", color="red", weight=0]; 1319[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1319 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1320 -> 514[label="",style="dashed", color="red", weight=0]; 1320[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1320 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1321 -> 515[label="",style="dashed", color="red", weight=0]; 1321[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1321 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1322 -> 516[label="",style="dashed", color="red", weight=0]; 1322[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1322 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1429[label="",style="dashed", color="magenta", weight=3]; 1323 -> 517[label="",style="dashed", color="red", weight=0]; 1323[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1323 -> 1430[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1324 -> 518[label="",style="dashed", color="red", weight=0]; 1324[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1324 -> 1432[label="",style="dashed", color="magenta", weight=3]; 1324 -> 1433[label="",style="dashed", color="magenta", weight=3]; 1325 -> 519[label="",style="dashed", color="red", weight=0]; 1325[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1325 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1326 -> 520[label="",style="dashed", color="red", weight=0]; 1326[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1326 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1326 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1327 -> 521[label="",style="dashed", color="red", weight=0]; 1327[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1327 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1328 -> 522[label="",style="dashed", color="red", weight=0]; 1328[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1328 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1328 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1329 -> 523[label="",style="dashed", color="red", weight=0]; 1329[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1329 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1329 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1330 -> 524[label="",style="dashed", color="red", weight=0]; 1330[label="xwv401 == xwv3001",fontsize=16,color="magenta"];1330 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1330 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1331 -> 511[label="",style="dashed", color="red", weight=0]; 1331[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1331 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1332 -> 512[label="",style="dashed", color="red", weight=0]; 1332[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1332 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1333 -> 513[label="",style="dashed", color="red", weight=0]; 1333[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1333 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1334 -> 514[label="",style="dashed", color="red", weight=0]; 1334[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1334 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1335 -> 515[label="",style="dashed", color="red", weight=0]; 1335[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1335 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1336 -> 516[label="",style="dashed", color="red", weight=0]; 1336[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1336 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1337 -> 517[label="",style="dashed", color="red", weight=0]; 1337[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1337 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1338 -> 518[label="",style="dashed", color="red", weight=0]; 1338[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1338 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1339 -> 519[label="",style="dashed", color="red", weight=0]; 1339[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1339 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1340 -> 520[label="",style="dashed", color="red", weight=0]; 1340[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1340 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1341 -> 521[label="",style="dashed", color="red", weight=0]; 1341[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1341 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1342 -> 522[label="",style="dashed", color="red", weight=0]; 1342[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1342 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1343 -> 523[label="",style="dashed", color="red", weight=0]; 1343[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1343 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1344 -> 524[label="",style="dashed", color="red", weight=0]; 1344[label="xwv402 == xwv3002",fontsize=16,color="magenta"];1344 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1345[label="False",fontsize=16,color="green",shape="box"];1346[label="xwv164",fontsize=16,color="green",shape="box"];1347 -> 1595[label="",style="dashed", color="red", weight=0]; 1347[label="compare1 (xwv115,xwv116,xwv117) (xwv118,xwv119,xwv120) (xwv115 < xwv118 || xwv115 == xwv118 && (xwv116 < xwv119 || xwv116 == xwv119 && xwv117 <= xwv120))",fontsize=16,color="magenta"];1347 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1603[label="",style="dashed", color="magenta", weight=3]; 950[label="compare0 True False True",fontsize=16,color="black",shape="box"];950 -> 1286[label="",style="solid", color="black", weight=3]; 1348[label="xwv400",fontsize=16,color="green",shape="box"];1349[label="xwv3000",fontsize=16,color="green",shape="box"];1350[label="xwv400",fontsize=16,color="green",shape="box"];1351[label="xwv3000",fontsize=16,color="green",shape="box"];1352[label="xwv400",fontsize=16,color="green",shape="box"];1353[label="xwv3000",fontsize=16,color="green",shape="box"];1354[label="xwv400",fontsize=16,color="green",shape="box"];1355[label="xwv3000",fontsize=16,color="green",shape="box"];1356[label="xwv400",fontsize=16,color="green",shape="box"];1357[label="xwv3000",fontsize=16,color="green",shape="box"];1358[label="xwv400",fontsize=16,color="green",shape="box"];1359[label="xwv3000",fontsize=16,color="green",shape="box"];1360[label="xwv400",fontsize=16,color="green",shape="box"];1361[label="xwv3000",fontsize=16,color="green",shape="box"];1362[label="xwv400",fontsize=16,color="green",shape="box"];1363[label="xwv3000",fontsize=16,color="green",shape="box"];1364[label="xwv400",fontsize=16,color="green",shape="box"];1365[label="xwv3000",fontsize=16,color="green",shape="box"];1366[label="xwv400",fontsize=16,color="green",shape="box"];1367[label="xwv3000",fontsize=16,color="green",shape="box"];1368[label="xwv400",fontsize=16,color="green",shape="box"];1369[label="xwv3000",fontsize=16,color="green",shape="box"];1370[label="xwv400",fontsize=16,color="green",shape="box"];1371[label="xwv3000",fontsize=16,color="green",shape="box"];1372[label="xwv400",fontsize=16,color="green",shape="box"];1373[label="xwv3000",fontsize=16,color="green",shape="box"];1374[label="xwv400",fontsize=16,color="green",shape="box"];1375[label="xwv3000",fontsize=16,color="green",shape="box"];1376[label="xwv401",fontsize=16,color="green",shape="box"];1377[label="xwv3001",fontsize=16,color="green",shape="box"];1378[label="xwv401",fontsize=16,color="green",shape="box"];1379[label="xwv3001",fontsize=16,color="green",shape="box"];1380[label="xwv401",fontsize=16,color="green",shape="box"];1381[label="xwv3001",fontsize=16,color="green",shape="box"];1382[label="xwv401",fontsize=16,color="green",shape="box"];1383[label="xwv3001",fontsize=16,color="green",shape="box"];1384[label="xwv401",fontsize=16,color="green",shape="box"];1385[label="xwv3001",fontsize=16,color="green",shape="box"];1386[label="xwv401",fontsize=16,color="green",shape="box"];1387[label="xwv3001",fontsize=16,color="green",shape="box"];1388[label="xwv401",fontsize=16,color="green",shape="box"];1389[label="xwv3001",fontsize=16,color="green",shape="box"];1390[label="xwv401",fontsize=16,color="green",shape="box"];1391[label="xwv3001",fontsize=16,color="green",shape="box"];1392[label="xwv401",fontsize=16,color="green",shape="box"];1393[label="xwv3001",fontsize=16,color="green",shape="box"];1394[label="xwv401",fontsize=16,color="green",shape="box"];1395[label="xwv3001",fontsize=16,color="green",shape="box"];1396[label="xwv401",fontsize=16,color="green",shape="box"];1397[label="xwv3001",fontsize=16,color="green",shape="box"];1398[label="xwv401",fontsize=16,color="green",shape="box"];1399[label="xwv3001",fontsize=16,color="green",shape="box"];1400[label="xwv401",fontsize=16,color="green",shape="box"];1401[label="xwv3001",fontsize=16,color="green",shape="box"];1402[label="xwv401",fontsize=16,color="green",shape="box"];1403[label="xwv3001",fontsize=16,color="green",shape="box"];1086 -> 1632[label="",style="dashed", color="red", weight=0]; 1086[label="compare1 (xwv128,xwv129) (xwv130,xwv131) (xwv128 < xwv130 || xwv128 == xwv130 && xwv129 <= xwv131)",fontsize=16,color="magenta"];1086 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1638[label="",style="dashed", color="magenta", weight=3]; 995 -> 470[label="",style="dashed", color="red", weight=0]; 995[label="primMulInt xwv30000 xwv4010",fontsize=16,color="magenta"];995 -> 1404[label="",style="dashed", color="magenta", weight=3]; 995 -> 1405[label="",style="dashed", color="magenta", weight=3]; 996[label="Pos (primMulNat xwv30000 xwv4010)",fontsize=16,color="green",shape="box"];996 -> 1406[label="",style="dashed", color="green", weight=3]; 997[label="Neg (primMulNat xwv30000 xwv4010)",fontsize=16,color="green",shape="box"];997 -> 1407[label="",style="dashed", color="green", weight=3]; 998[label="Neg (primMulNat xwv30000 xwv4010)",fontsize=16,color="green",shape="box"];998 -> 1408[label="",style="dashed", color="green", weight=3]; 999[label="Pos (primMulNat xwv30000 xwv4010)",fontsize=16,color="green",shape="box"];999 -> 1409[label="",style="dashed", color="green", weight=3]; 1000[label="compare0 (Just xwv400) Nothing True",fontsize=16,color="black",shape="box"];1000 -> 1410[label="",style="solid", color="black", weight=3]; 1412[label="xwv83",fontsize=16,color="green",shape="box"];1413[label="xwv84",fontsize=16,color="green",shape="box"];1414[label="Just xwv83 <= Just xwv84",fontsize=16,color="black",shape="box"];1414 -> 1476[label="",style="solid", color="black", weight=3]; 1411[label="compare1 (Just xwv170) (Just xwv171) xwv172",fontsize=16,color="burlywood",shape="triangle"];5098[label="xwv172/False",fontsize=10,color="white",style="solid",shape="box"];1411 -> 5098[label="",style="solid", color="burlywood", weight=9]; 5098 -> 1477[label="",style="solid", color="burlywood", weight=3]; 5099[label="xwv172/True",fontsize=10,color="white",style="solid",shape="box"];1411 -> 5099[label="",style="solid", color="burlywood", weight=9]; 5099 -> 1478[label="",style="solid", color="burlywood", weight=3]; 1002[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1002 -> 1479[label="",style="solid", color="black", weight=3]; 1003[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1003 -> 1480[label="",style="solid", color="black", weight=3]; 1004[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1004 -> 1481[label="",style="solid", color="black", weight=3]; 1005[label="xwv15",fontsize=16,color="green",shape="box"];1006[label="xwv21",fontsize=16,color="green",shape="box"];1007[label="xwv15",fontsize=16,color="green",shape="box"];1008[label="xwv21",fontsize=16,color="green",shape="box"];1009[label="xwv15",fontsize=16,color="green",shape="box"];1010[label="xwv21",fontsize=16,color="green",shape="box"];1011[label="xwv15",fontsize=16,color="green",shape="box"];1012[label="xwv21",fontsize=16,color="green",shape="box"];1013[label="xwv15",fontsize=16,color="green",shape="box"];1014[label="xwv21",fontsize=16,color="green",shape="box"];1015[label="xwv15",fontsize=16,color="green",shape="box"];1016[label="xwv21",fontsize=16,color="green",shape="box"];1017[label="xwv15",fontsize=16,color="green",shape="box"];1018[label="xwv21",fontsize=16,color="green",shape="box"];1019[label="xwv15",fontsize=16,color="green",shape="box"];1020[label="xwv21",fontsize=16,color="green",shape="box"];1021[label="xwv15",fontsize=16,color="green",shape="box"];1022[label="xwv21",fontsize=16,color="green",shape="box"];1023[label="xwv15",fontsize=16,color="green",shape="box"];1024[label="xwv21",fontsize=16,color="green",shape="box"];1025[label="xwv15",fontsize=16,color="green",shape="box"];1026[label="xwv21",fontsize=16,color="green",shape="box"];1027[label="xwv15",fontsize=16,color="green",shape="box"];1028[label="xwv21",fontsize=16,color="green",shape="box"];1029[label="xwv15",fontsize=16,color="green",shape="box"];1030[label="xwv21",fontsize=16,color="green",shape="box"];1031[label="xwv15",fontsize=16,color="green",shape="box"];1032[label="xwv21",fontsize=16,color="green",shape="box"];1033[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) False",fontsize=16,color="black",shape="box"];1033 -> 1482[label="",style="solid", color="black", weight=3]; 1034[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) xwv106",fontsize=16,color="burlywood",shape="box"];5100[label="xwv106/False",fontsize=10,color="white",style="solid",shape="box"];1034 -> 5100[label="",style="solid", color="burlywood", weight=9]; 5100 -> 1483[label="",style="solid", color="burlywood", weight=3]; 5101[label="xwv106/True",fontsize=10,color="white",style="solid",shape="box"];1034 -> 5101[label="",style="solid", color="burlywood", weight=9]; 5101 -> 1484[label="",style="solid", color="burlywood", weight=3]; 2111[label="Pos Zero",fontsize=16,color="green",shape="box"];2112[label="xwv332",fontsize=16,color="green",shape="box"];3953[label="xwv344",fontsize=16,color="green",shape="box"];3954[label="primPlusInt (Pos xwv3590) (Pos xwv3600)",fontsize=16,color="black",shape="box"];3954 -> 3978[label="",style="solid", color="black", weight=3]; 3955[label="primPlusInt (Pos xwv3590) (Neg xwv3600)",fontsize=16,color="black",shape="box"];3955 -> 3979[label="",style="solid", color="black", weight=3]; 3956[label="xwv344",fontsize=16,color="green",shape="box"];3957[label="primPlusInt (Neg xwv3590) (Pos xwv3610)",fontsize=16,color="black",shape="box"];3957 -> 3980[label="",style="solid", color="black", weight=3]; 3958[label="primPlusInt (Neg xwv3590) (Neg xwv3610)",fontsize=16,color="black",shape="box"];3958 -> 3981[label="",style="solid", color="black", weight=3]; 2099[label="xwv216",fontsize=16,color="green",shape="box"];2100[label="xwv217",fontsize=16,color="green",shape="box"];3959 -> 3903[label="",style="dashed", color="red", weight=0]; 3959[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv355",fontsize=16,color="magenta"];3960 -> 389[label="",style="dashed", color="red", weight=0]; 3960[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355",fontsize=16,color="magenta"];3960 -> 3982[label="",style="dashed", color="magenta", weight=3]; 3960 -> 3983[label="",style="dashed", color="magenta", weight=3]; 3961[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 False",fontsize=16,color="black",shape="box"];3961 -> 3984[label="",style="solid", color="black", weight=3]; 3962[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 True",fontsize=16,color="black",shape="box"];3962 -> 3985[label="",style="solid", color="black", weight=3]; 3975[label="error []",fontsize=16,color="red",shape="box"];3976[label="FiniteMap.mkBalBranch6MkBalBranch02 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3976 -> 3994[label="",style="solid", color="black", weight=3]; 4697[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv475 xwv473 xwv476 + FiniteMap.mkBranchRight_size xwv475 xwv473 xwv476",fontsize=16,color="black",shape="box"];4697 -> 4698[label="",style="solid", color="black", weight=3]; 1090[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];1091 -> 1719[label="",style="dashed", color="red", weight=0]; 1091[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.sizeFM (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) > FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334))",fontsize=16,color="magenta"];1091 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1092[label="primEqInt (Pos (Succ xwv40000)) xwv3000",fontsize=16,color="burlywood",shape="box"];5102[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1092 -> 5102[label="",style="solid", color="burlywood", weight=9]; 5102 -> 1506[label="",style="solid", color="burlywood", weight=3]; 5103[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1092 -> 5103[label="",style="solid", color="burlywood", weight=9]; 5103 -> 1507[label="",style="solid", color="burlywood", weight=3]; 1093[label="primEqInt (Pos Zero) xwv3000",fontsize=16,color="burlywood",shape="box"];5104[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1093 -> 5104[label="",style="solid", color="burlywood", weight=9]; 5104 -> 1508[label="",style="solid", color="burlywood", weight=3]; 5105[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1093 -> 5105[label="",style="solid", color="burlywood", weight=9]; 5105 -> 1509[label="",style="solid", color="burlywood", weight=3]; 1094[label="primEqInt (Neg (Succ xwv40000)) xwv3000",fontsize=16,color="burlywood",shape="box"];5106[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1094 -> 5106[label="",style="solid", color="burlywood", weight=9]; 5106 -> 1510[label="",style="solid", color="burlywood", weight=3]; 5107[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1094 -> 5107[label="",style="solid", color="burlywood", weight=9]; 5107 -> 1511[label="",style="solid", color="burlywood", weight=3]; 1095[label="primEqInt (Neg Zero) xwv3000",fontsize=16,color="burlywood",shape="box"];5108[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1095 -> 5108[label="",style="solid", color="burlywood", weight=9]; 5108 -> 1512[label="",style="solid", color="burlywood", weight=3]; 5109[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1095 -> 5109[label="",style="solid", color="burlywood", weight=9]; 5109 -> 1513[label="",style="solid", color="burlywood", weight=3]; 1096[label="True",fontsize=16,color="green",shape="box"];1097[label="False",fontsize=16,color="green",shape="box"];1098[label="False",fontsize=16,color="green",shape="box"];1099[label="True",fontsize=16,color="green",shape="box"];1100 -> 1219[label="",style="dashed", color="red", weight=0]; 1100[label="xwv4000 == xwv30000 && xwv4001 == xwv30001 && xwv4002 == xwv30002",fontsize=16,color="magenta"];1100 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1101[label="True",fontsize=16,color="green",shape="box"];1102[label="primEqFloat (Float xwv4000 xwv4001) (Float xwv30000 xwv30001)",fontsize=16,color="black",shape="box"];1102 -> 1514[label="",style="solid", color="black", weight=3]; 1103[label="True",fontsize=16,color="green",shape="box"];1104[label="False",fontsize=16,color="green",shape="box"];1105[label="False",fontsize=16,color="green",shape="box"];1106[label="xwv4000 == xwv30000",fontsize=16,color="blue",shape="box"];5110[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5110[label="",style="solid", color="blue", weight=9]; 5110 -> 1515[label="",style="solid", color="blue", weight=3]; 5111[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5111[label="",style="solid", color="blue", weight=9]; 5111 -> 1516[label="",style="solid", color="blue", weight=3]; 5112[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5112[label="",style="solid", color="blue", weight=9]; 5112 -> 1517[label="",style="solid", color="blue", weight=3]; 5113[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5113[label="",style="solid", color="blue", weight=9]; 5113 -> 1518[label="",style="solid", color="blue", weight=3]; 5114[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5114[label="",style="solid", color="blue", weight=9]; 5114 -> 1519[label="",style="solid", color="blue", weight=3]; 5115[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5115[label="",style="solid", color="blue", weight=9]; 5115 -> 1520[label="",style="solid", color="blue", weight=3]; 5116[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5116[label="",style="solid", color="blue", weight=9]; 5116 -> 1521[label="",style="solid", color="blue", weight=3]; 5117[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5117[label="",style="solid", color="blue", weight=9]; 5117 -> 1522[label="",style="solid", color="blue", weight=3]; 5118[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5118[label="",style="solid", color="blue", weight=9]; 5118 -> 1523[label="",style="solid", color="blue", weight=3]; 5119[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5119[label="",style="solid", color="blue", weight=9]; 5119 -> 1524[label="",style="solid", color="blue", weight=3]; 5120[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5120[label="",style="solid", color="blue", weight=9]; 5120 -> 1525[label="",style="solid", color="blue", weight=3]; 5121[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5121[label="",style="solid", color="blue", weight=9]; 5121 -> 1526[label="",style="solid", color="blue", weight=3]; 5122[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5122[label="",style="solid", color="blue", weight=9]; 5122 -> 1527[label="",style="solid", color="blue", weight=3]; 5123[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 5123[label="",style="solid", color="blue", weight=9]; 5123 -> 1528[label="",style="solid", color="blue", weight=3]; 1107[label="primEqChar (Char xwv4000) (Char xwv30000)",fontsize=16,color="black",shape="box"];1107 -> 1529[label="",style="solid", color="black", weight=3]; 1117 -> 1219[label="",style="dashed", color="red", weight=0]; 1117[label="xwv4000 == xwv30000 && xwv4001 == xwv30001",fontsize=16,color="magenta"];1117 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1117 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1118[label="primEqDouble (Double xwv4000 xwv4001) (Double xwv30000 xwv30001)",fontsize=16,color="black",shape="box"];1118 -> 1530[label="",style="solid", color="black", weight=3]; 1119[label="xwv4000 == xwv30000",fontsize=16,color="blue",shape="box"];5124[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5124[label="",style="solid", color="blue", weight=9]; 5124 -> 1531[label="",style="solid", color="blue", weight=3]; 5125[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5125[label="",style="solid", color="blue", weight=9]; 5125 -> 1532[label="",style="solid", color="blue", weight=3]; 5126[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5126[label="",style="solid", color="blue", weight=9]; 5126 -> 1533[label="",style="solid", color="blue", weight=3]; 5127[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5127[label="",style="solid", color="blue", weight=9]; 5127 -> 1534[label="",style="solid", color="blue", weight=3]; 5128[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5128[label="",style="solid", color="blue", weight=9]; 5128 -> 1535[label="",style="solid", color="blue", weight=3]; 5129[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5129[label="",style="solid", color="blue", weight=9]; 5129 -> 1536[label="",style="solid", color="blue", weight=3]; 5130[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5130[label="",style="solid", color="blue", weight=9]; 5130 -> 1537[label="",style="solid", color="blue", weight=3]; 5131[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5131[label="",style="solid", color="blue", weight=9]; 5131 -> 1538[label="",style="solid", color="blue", weight=3]; 5132[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5132[label="",style="solid", color="blue", weight=9]; 5132 -> 1539[label="",style="solid", color="blue", weight=3]; 5133[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5133[label="",style="solid", color="blue", weight=9]; 5133 -> 1540[label="",style="solid", color="blue", weight=3]; 5134[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5134[label="",style="solid", color="blue", weight=9]; 5134 -> 1541[label="",style="solid", color="blue", weight=3]; 5135[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5135[label="",style="solid", color="blue", weight=9]; 5135 -> 1542[label="",style="solid", color="blue", weight=3]; 5136[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5136[label="",style="solid", color="blue", weight=9]; 5136 -> 1543[label="",style="solid", color="blue", weight=3]; 5137[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 5137[label="",style="solid", color="blue", weight=9]; 5137 -> 1544[label="",style="solid", color="blue", weight=3]; 1120[label="False",fontsize=16,color="green",shape="box"];1121[label="False",fontsize=16,color="green",shape="box"];1122[label="xwv4000 == xwv30000",fontsize=16,color="blue",shape="box"];5138[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5138[label="",style="solid", color="blue", weight=9]; 5138 -> 1545[label="",style="solid", color="blue", weight=3]; 5139[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5139[label="",style="solid", color="blue", weight=9]; 5139 -> 1546[label="",style="solid", color="blue", weight=3]; 5140[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5140[label="",style="solid", color="blue", weight=9]; 5140 -> 1547[label="",style="solid", color="blue", weight=3]; 5141[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5141[label="",style="solid", color="blue", weight=9]; 5141 -> 1548[label="",style="solid", color="blue", weight=3]; 5142[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5142[label="",style="solid", color="blue", weight=9]; 5142 -> 1549[label="",style="solid", color="blue", weight=3]; 5143[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5143[label="",style="solid", color="blue", weight=9]; 5143 -> 1550[label="",style="solid", color="blue", weight=3]; 5144[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5144[label="",style="solid", color="blue", weight=9]; 5144 -> 1551[label="",style="solid", color="blue", weight=3]; 5145[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5145[label="",style="solid", color="blue", weight=9]; 5145 -> 1552[label="",style="solid", color="blue", weight=3]; 5146[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5146[label="",style="solid", color="blue", weight=9]; 5146 -> 1553[label="",style="solid", color="blue", weight=3]; 5147[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5147[label="",style="solid", color="blue", weight=9]; 5147 -> 1554[label="",style="solid", color="blue", weight=3]; 5148[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5148[label="",style="solid", color="blue", weight=9]; 5148 -> 1555[label="",style="solid", color="blue", weight=3]; 5149[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5149[label="",style="solid", color="blue", weight=9]; 5149 -> 1556[label="",style="solid", color="blue", weight=3]; 5150[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5150[label="",style="solid", color="blue", weight=9]; 5150 -> 1557[label="",style="solid", color="blue", weight=3]; 5151[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 5151[label="",style="solid", color="blue", weight=9]; 5151 -> 1558[label="",style="solid", color="blue", weight=3]; 1123 -> 654[label="",style="dashed", color="red", weight=0]; 1123[label="primEqInt xwv4000 xwv30000",fontsize=16,color="magenta"];1123 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1219[label="",style="dashed", color="red", weight=0]; 1124[label="xwv4000 == xwv30000 && xwv4001 == xwv30001",fontsize=16,color="magenta"];1124 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1219[label="",style="dashed", color="red", weight=0]; 1125[label="xwv4000 == xwv30000 && xwv4001 == xwv30001",fontsize=16,color="magenta"];1125 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1126[label="False",fontsize=16,color="green",shape="box"];1127[label="False",fontsize=16,color="green",shape="box"];1128[label="True",fontsize=16,color="green",shape="box"];1138[label="xwv43 <= xwv44",fontsize=16,color="blue",shape="box"];5152[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5152[label="",style="solid", color="blue", weight=9]; 5152 -> 1561[label="",style="solid", color="blue", weight=3]; 5153[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5153[label="",style="solid", color="blue", weight=9]; 5153 -> 1562[label="",style="solid", color="blue", weight=3]; 5154[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5154[label="",style="solid", color="blue", weight=9]; 5154 -> 1563[label="",style="solid", color="blue", weight=3]; 5155[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5155[label="",style="solid", color="blue", weight=9]; 5155 -> 1564[label="",style="solid", color="blue", weight=3]; 5156[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5156[label="",style="solid", color="blue", weight=9]; 5156 -> 1565[label="",style="solid", color="blue", weight=3]; 5157[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5157[label="",style="solid", color="blue", weight=9]; 5157 -> 1566[label="",style="solid", color="blue", weight=3]; 5158[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5158[label="",style="solid", color="blue", weight=9]; 5158 -> 1567[label="",style="solid", color="blue", weight=3]; 5159[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5159[label="",style="solid", color="blue", weight=9]; 5159 -> 1568[label="",style="solid", color="blue", weight=3]; 5160[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5160[label="",style="solid", color="blue", weight=9]; 5160 -> 1569[label="",style="solid", color="blue", weight=3]; 5161[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5161[label="",style="solid", color="blue", weight=9]; 5161 -> 1570[label="",style="solid", color="blue", weight=3]; 5162[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5162[label="",style="solid", color="blue", weight=9]; 5162 -> 1571[label="",style="solid", color="blue", weight=3]; 5163[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5163[label="",style="solid", color="blue", weight=9]; 5163 -> 1572[label="",style="solid", color="blue", weight=3]; 5164[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5164[label="",style="solid", color="blue", weight=9]; 5164 -> 1573[label="",style="solid", color="blue", weight=3]; 5165[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 5165[label="",style="solid", color="blue", weight=9]; 5165 -> 1574[label="",style="solid", color="blue", weight=3]; 1139[label="compare1 (Left xwv148) (Left xwv149) False",fontsize=16,color="black",shape="box"];1139 -> 1575[label="",style="solid", color="black", weight=3]; 1140[label="compare1 (Left xwv148) (Left xwv149) True",fontsize=16,color="black",shape="box"];1140 -> 1576[label="",style="solid", color="black", weight=3]; 1141[label="GT",fontsize=16,color="green",shape="box"];1149[label="xwv50 <= xwv51",fontsize=16,color="blue",shape="box"];5166[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5166[label="",style="solid", color="blue", weight=9]; 5166 -> 1577[label="",style="solid", color="blue", weight=3]; 5167[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5167[label="",style="solid", color="blue", weight=9]; 5167 -> 1578[label="",style="solid", color="blue", weight=3]; 5168[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5168[label="",style="solid", color="blue", weight=9]; 5168 -> 1579[label="",style="solid", color="blue", weight=3]; 5169[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5169[label="",style="solid", color="blue", weight=9]; 5169 -> 1580[label="",style="solid", color="blue", weight=3]; 5170[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5170[label="",style="solid", color="blue", weight=9]; 5170 -> 1581[label="",style="solid", color="blue", weight=3]; 5171[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5171[label="",style="solid", color="blue", weight=9]; 5171 -> 1582[label="",style="solid", color="blue", weight=3]; 5172[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5172[label="",style="solid", color="blue", weight=9]; 5172 -> 1583[label="",style="solid", color="blue", weight=3]; 5173[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5173[label="",style="solid", color="blue", weight=9]; 5173 -> 1584[label="",style="solid", color="blue", weight=3]; 5174[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5174[label="",style="solid", color="blue", weight=9]; 5174 -> 1585[label="",style="solid", color="blue", weight=3]; 5175[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5175[label="",style="solid", color="blue", weight=9]; 5175 -> 1586[label="",style="solid", color="blue", weight=3]; 5176[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5176[label="",style="solid", color="blue", weight=9]; 5176 -> 1587[label="",style="solid", color="blue", weight=3]; 5177[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5177[label="",style="solid", color="blue", weight=9]; 5177 -> 1588[label="",style="solid", color="blue", weight=3]; 5178[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5178[label="",style="solid", color="blue", weight=9]; 5178 -> 1589[label="",style="solid", color="blue", weight=3]; 5179[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 5179[label="",style="solid", color="blue", weight=9]; 5179 -> 1590[label="",style="solid", color="blue", weight=3]; 1150[label="compare1 (Right xwv155) (Right xwv156) False",fontsize=16,color="black",shape="box"];1150 -> 1591[label="",style="solid", color="black", weight=3]; 1151[label="compare1 (Right xwv155) (Right xwv156) True",fontsize=16,color="black",shape="box"];1151 -> 1592[label="",style="solid", color="black", weight=3]; 1418[label="xwv401",fontsize=16,color="green",shape="box"];1419[label="xwv3001",fontsize=16,color="green",shape="box"];1420[label="xwv401",fontsize=16,color="green",shape="box"];1421[label="xwv3001",fontsize=16,color="green",shape="box"];1422[label="xwv401",fontsize=16,color="green",shape="box"];1423[label="xwv3001",fontsize=16,color="green",shape="box"];1424[label="xwv401",fontsize=16,color="green",shape="box"];1425[label="xwv3001",fontsize=16,color="green",shape="box"];1426[label="xwv401",fontsize=16,color="green",shape="box"];1427[label="xwv3001",fontsize=16,color="green",shape="box"];1428[label="xwv401",fontsize=16,color="green",shape="box"];1429[label="xwv3001",fontsize=16,color="green",shape="box"];1430[label="xwv401",fontsize=16,color="green",shape="box"];1431[label="xwv3001",fontsize=16,color="green",shape="box"];1432[label="xwv401",fontsize=16,color="green",shape="box"];1433[label="xwv3001",fontsize=16,color="green",shape="box"];1434[label="xwv401",fontsize=16,color="green",shape="box"];1435[label="xwv3001",fontsize=16,color="green",shape="box"];1436[label="xwv401",fontsize=16,color="green",shape="box"];1437[label="xwv3001",fontsize=16,color="green",shape="box"];1438[label="xwv401",fontsize=16,color="green",shape="box"];1439[label="xwv3001",fontsize=16,color="green",shape="box"];1440[label="xwv401",fontsize=16,color="green",shape="box"];1441[label="xwv3001",fontsize=16,color="green",shape="box"];1442[label="xwv401",fontsize=16,color="green",shape="box"];1443[label="xwv3001",fontsize=16,color="green",shape="box"];1444[label="xwv401",fontsize=16,color="green",shape="box"];1445[label="xwv3001",fontsize=16,color="green",shape="box"];1446[label="xwv402",fontsize=16,color="green",shape="box"];1447[label="xwv3002",fontsize=16,color="green",shape="box"];1448[label="xwv402",fontsize=16,color="green",shape="box"];1449[label="xwv3002",fontsize=16,color="green",shape="box"];1450[label="xwv402",fontsize=16,color="green",shape="box"];1451[label="xwv3002",fontsize=16,color="green",shape="box"];1452[label="xwv402",fontsize=16,color="green",shape="box"];1453[label="xwv3002",fontsize=16,color="green",shape="box"];1454[label="xwv402",fontsize=16,color="green",shape="box"];1455[label="xwv3002",fontsize=16,color="green",shape="box"];1456[label="xwv402",fontsize=16,color="green",shape="box"];1457[label="xwv3002",fontsize=16,color="green",shape="box"];1458[label="xwv402",fontsize=16,color="green",shape="box"];1459[label="xwv3002",fontsize=16,color="green",shape="box"];1460[label="xwv402",fontsize=16,color="green",shape="box"];1461[label="xwv3002",fontsize=16,color="green",shape="box"];1462[label="xwv402",fontsize=16,color="green",shape="box"];1463[label="xwv3002",fontsize=16,color="green",shape="box"];1464[label="xwv402",fontsize=16,color="green",shape="box"];1465[label="xwv3002",fontsize=16,color="green",shape="box"];1466[label="xwv402",fontsize=16,color="green",shape="box"];1467[label="xwv3002",fontsize=16,color="green",shape="box"];1468[label="xwv402",fontsize=16,color="green",shape="box"];1469[label="xwv3002",fontsize=16,color="green",shape="box"];1470[label="xwv402",fontsize=16,color="green",shape="box"];1471[label="xwv3002",fontsize=16,color="green",shape="box"];1472[label="xwv402",fontsize=16,color="green",shape="box"];1473[label="xwv3002",fontsize=16,color="green",shape="box"];1596[label="xwv117",fontsize=16,color="green",shape="box"];1597 -> 1219[label="",style="dashed", color="red", weight=0]; 1597[label="xwv115 == xwv118 && (xwv116 < xwv119 || xwv116 == xwv119 && xwv117 <= xwv120)",fontsize=16,color="magenta"];1597 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1598[label="xwv115",fontsize=16,color="green",shape="box"];1599[label="xwv116",fontsize=16,color="green",shape="box"];1600[label="xwv115 < xwv118",fontsize=16,color="blue",shape="box"];5180[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5180[label="",style="solid", color="blue", weight=9]; 5180 -> 1614[label="",style="solid", color="blue", weight=3]; 5181[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5181[label="",style="solid", color="blue", weight=9]; 5181 -> 1615[label="",style="solid", color="blue", weight=3]; 5182[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5182[label="",style="solid", color="blue", weight=9]; 5182 -> 1616[label="",style="solid", color="blue", weight=3]; 5183[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5183[label="",style="solid", color="blue", weight=9]; 5183 -> 1617[label="",style="solid", color="blue", weight=3]; 5184[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5184[label="",style="solid", color="blue", weight=9]; 5184 -> 1618[label="",style="solid", color="blue", weight=3]; 5185[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5185[label="",style="solid", color="blue", weight=9]; 5185 -> 1619[label="",style="solid", color="blue", weight=3]; 5186[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5186[label="",style="solid", color="blue", weight=9]; 5186 -> 1620[label="",style="solid", color="blue", weight=3]; 5187[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5187[label="",style="solid", color="blue", weight=9]; 5187 -> 1621[label="",style="solid", color="blue", weight=3]; 5188[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5188[label="",style="solid", color="blue", weight=9]; 5188 -> 1622[label="",style="solid", color="blue", weight=3]; 5189[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5189[label="",style="solid", color="blue", weight=9]; 5189 -> 1623[label="",style="solid", color="blue", weight=3]; 5190[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5190[label="",style="solid", color="blue", weight=9]; 5190 -> 1624[label="",style="solid", color="blue", weight=3]; 5191[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5191[label="",style="solid", color="blue", weight=9]; 5191 -> 1625[label="",style="solid", color="blue", weight=3]; 5192[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5192[label="",style="solid", color="blue", weight=9]; 5192 -> 1626[label="",style="solid", color="blue", weight=3]; 5193[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 5193[label="",style="solid", color="blue", weight=9]; 5193 -> 1627[label="",style="solid", color="blue", weight=3]; 1601[label="xwv118",fontsize=16,color="green",shape="box"];1602[label="xwv119",fontsize=16,color="green",shape="box"];1603[label="xwv120",fontsize=16,color="green",shape="box"];1595[label="compare1 (xwv187,xwv188,xwv189) (xwv190,xwv191,xwv192) (xwv193 || xwv194)",fontsize=16,color="burlywood",shape="triangle"];5194[label="xwv193/False",fontsize=10,color="white",style="solid",shape="box"];1595 -> 5194[label="",style="solid", color="burlywood", weight=9]; 5194 -> 1628[label="",style="solid", color="burlywood", weight=3]; 5195[label="xwv193/True",fontsize=10,color="white",style="solid",shape="box"];1595 -> 5195[label="",style="solid", color="burlywood", weight=9]; 5195 -> 1629[label="",style="solid", color="burlywood", weight=3]; 1286[label="GT",fontsize=16,color="green",shape="box"];1633[label="xwv131",fontsize=16,color="green",shape="box"];1634 -> 1219[label="",style="dashed", color="red", weight=0]; 1634[label="xwv128 == xwv130 && xwv129 <= xwv131",fontsize=16,color="magenta"];1634 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1635[label="xwv128",fontsize=16,color="green",shape="box"];1636[label="xwv129",fontsize=16,color="green",shape="box"];1637[label="xwv128 < xwv130",fontsize=16,color="blue",shape="box"];5196[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5196[label="",style="solid", color="blue", weight=9]; 5196 -> 1647[label="",style="solid", color="blue", weight=3]; 5197[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5197[label="",style="solid", color="blue", weight=9]; 5197 -> 1648[label="",style="solid", color="blue", weight=3]; 5198[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5198[label="",style="solid", color="blue", weight=9]; 5198 -> 1649[label="",style="solid", color="blue", weight=3]; 5199[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5199[label="",style="solid", color="blue", weight=9]; 5199 -> 1650[label="",style="solid", color="blue", weight=3]; 5200[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5200[label="",style="solid", color="blue", weight=9]; 5200 -> 1651[label="",style="solid", color="blue", weight=3]; 5201[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5201[label="",style="solid", color="blue", weight=9]; 5201 -> 1652[label="",style="solid", color="blue", weight=3]; 5202[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5202[label="",style="solid", color="blue", weight=9]; 5202 -> 1653[label="",style="solid", color="blue", weight=3]; 5203[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5203[label="",style="solid", color="blue", weight=9]; 5203 -> 1654[label="",style="solid", color="blue", weight=3]; 5204[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5204[label="",style="solid", color="blue", weight=9]; 5204 -> 1655[label="",style="solid", color="blue", weight=3]; 5205[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5205[label="",style="solid", color="blue", weight=9]; 5205 -> 1656[label="",style="solid", color="blue", weight=3]; 5206[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5206[label="",style="solid", color="blue", weight=9]; 5206 -> 1657[label="",style="solid", color="blue", weight=3]; 5207[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5207[label="",style="solid", color="blue", weight=9]; 5207 -> 1658[label="",style="solid", color="blue", weight=3]; 5208[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5208[label="",style="solid", color="blue", weight=9]; 5208 -> 1659[label="",style="solid", color="blue", weight=3]; 5209[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 5209[label="",style="solid", color="blue", weight=9]; 5209 -> 1660[label="",style="solid", color="blue", weight=3]; 1638[label="xwv130",fontsize=16,color="green",shape="box"];1632[label="compare1 (xwv202,xwv203) (xwv204,xwv205) (xwv206 || xwv207)",fontsize=16,color="burlywood",shape="triangle"];5210[label="xwv206/False",fontsize=10,color="white",style="solid",shape="box"];1632 -> 5210[label="",style="solid", color="burlywood", weight=9]; 5210 -> 1661[label="",style="solid", color="burlywood", weight=3]; 5211[label="xwv206/True",fontsize=10,color="white",style="solid",shape="box"];1632 -> 5211[label="",style="solid", color="burlywood", weight=9]; 5211 -> 1662[label="",style="solid", color="burlywood", weight=3]; 1404[label="xwv4010",fontsize=16,color="green",shape="box"];1405[label="xwv30000",fontsize=16,color="green",shape="box"];1406[label="primMulNat xwv30000 xwv4010",fontsize=16,color="burlywood",shape="triangle"];5212[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1406 -> 5212[label="",style="solid", color="burlywood", weight=9]; 5212 -> 1663[label="",style="solid", color="burlywood", weight=3]; 5213[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1406 -> 5213[label="",style="solid", color="burlywood", weight=9]; 5213 -> 1664[label="",style="solid", color="burlywood", weight=3]; 1407 -> 1406[label="",style="dashed", color="red", weight=0]; 1407[label="primMulNat xwv30000 xwv4010",fontsize=16,color="magenta"];1407 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1406[label="",style="dashed", color="red", weight=0]; 1408[label="primMulNat xwv30000 xwv4010",fontsize=16,color="magenta"];1408 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1406[label="",style="dashed", color="red", weight=0]; 1409[label="primMulNat xwv30000 xwv4010",fontsize=16,color="magenta"];1409 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1410[label="GT",fontsize=16,color="green",shape="box"];1476[label="xwv83 <= xwv84",fontsize=16,color="blue",shape="box"];5214[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5214[label="",style="solid", color="blue", weight=9]; 5214 -> 1669[label="",style="solid", color="blue", weight=3]; 5215[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5215[label="",style="solid", color="blue", weight=9]; 5215 -> 1670[label="",style="solid", color="blue", weight=3]; 5216[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5216[label="",style="solid", color="blue", weight=9]; 5216 -> 1671[label="",style="solid", color="blue", weight=3]; 5217[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5217[label="",style="solid", color="blue", weight=9]; 5217 -> 1672[label="",style="solid", color="blue", weight=3]; 5218[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5218[label="",style="solid", color="blue", weight=9]; 5218 -> 1673[label="",style="solid", color="blue", weight=3]; 5219[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5219[label="",style="solid", color="blue", weight=9]; 5219 -> 1674[label="",style="solid", color="blue", weight=3]; 5220[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5220[label="",style="solid", color="blue", weight=9]; 5220 -> 1675[label="",style="solid", color="blue", weight=3]; 5221[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5221[label="",style="solid", color="blue", weight=9]; 5221 -> 1676[label="",style="solid", color="blue", weight=3]; 5222[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5222[label="",style="solid", color="blue", weight=9]; 5222 -> 1677[label="",style="solid", color="blue", weight=3]; 5223[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5223[label="",style="solid", color="blue", weight=9]; 5223 -> 1678[label="",style="solid", color="blue", weight=3]; 5224[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5224[label="",style="solid", color="blue", weight=9]; 5224 -> 1679[label="",style="solid", color="blue", weight=3]; 5225[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5225[label="",style="solid", color="blue", weight=9]; 5225 -> 1680[label="",style="solid", color="blue", weight=3]; 5226[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5226[label="",style="solid", color="blue", weight=9]; 5226 -> 1681[label="",style="solid", color="blue", weight=3]; 5227[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1476 -> 5227[label="",style="solid", color="blue", weight=9]; 5227 -> 1682[label="",style="solid", color="blue", weight=3]; 1477[label="compare1 (Just xwv170) (Just xwv171) False",fontsize=16,color="black",shape="box"];1477 -> 1683[label="",style="solid", color="black", weight=3]; 1478[label="compare1 (Just xwv170) (Just xwv171) True",fontsize=16,color="black",shape="box"];1478 -> 1684[label="",style="solid", color="black", weight=3]; 1479[label="GT",fontsize=16,color="green",shape="box"];1480[label="GT",fontsize=16,color="green",shape="box"];1481[label="GT",fontsize=16,color="green",shape="box"];1482[label="error []",fontsize=16,color="red",shape="box"];1483[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) False",fontsize=16,color="black",shape="box"];1483 -> 1685[label="",style="solid", color="black", weight=3]; 1484[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) True",fontsize=16,color="black",shape="box"];1484 -> 1686[label="",style="solid", color="black", weight=3]; 3978[label="Pos (primPlusNat xwv3590 xwv3600)",fontsize=16,color="green",shape="box"];3978 -> 3996[label="",style="dashed", color="green", weight=3]; 3979[label="primMinusNat xwv3590 xwv3600",fontsize=16,color="burlywood",shape="triangle"];5228[label="xwv3590/Succ xwv35900",fontsize=10,color="white",style="solid",shape="box"];3979 -> 5228[label="",style="solid", color="burlywood", weight=9]; 5228 -> 3997[label="",style="solid", color="burlywood", weight=3]; 5229[label="xwv3590/Zero",fontsize=10,color="white",style="solid",shape="box"];3979 -> 5229[label="",style="solid", color="burlywood", weight=9]; 5229 -> 3998[label="",style="solid", color="burlywood", weight=3]; 3980 -> 3979[label="",style="dashed", color="red", weight=0]; 3980[label="primMinusNat xwv3610 xwv3590",fontsize=16,color="magenta"];3980 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3980 -> 4000[label="",style="dashed", color="magenta", weight=3]; 3981[label="Neg (primPlusNat xwv3590 xwv3610)",fontsize=16,color="green",shape="box"];3981 -> 4001[label="",style="dashed", color="green", weight=3]; 3982 -> 3908[label="",style="dashed", color="red", weight=0]; 3982[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv355",fontsize=16,color="magenta"];3983 -> 3930[label="",style="dashed", color="red", weight=0]; 3983[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3984[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 otherwise",fontsize=16,color="black",shape="box"];3984 -> 4002[label="",style="solid", color="black", weight=3]; 3985[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 xwv355 xwv355 xwv344 xwv355",fontsize=16,color="burlywood",shape="box"];5230[label="xwv355/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3985 -> 5230[label="",style="solid", color="burlywood", weight=9]; 5230 -> 4003[label="",style="solid", color="burlywood", weight=3]; 5231[label="xwv355/FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554",fontsize=10,color="white",style="solid",shape="box"];3985 -> 5231[label="",style="solid", color="burlywood", weight=9]; 5231 -> 4004[label="",style="solid", color="burlywood", weight=3]; 3994 -> 4017[label="",style="dashed", color="red", weight=0]; 3994[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 (FiniteMap.sizeFM xwv3443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3444)",fontsize=16,color="magenta"];3994 -> 4018[label="",style="dashed", color="magenta", weight=3]; 4698 -> 4700[label="",style="dashed", color="red", weight=0]; 4698[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv475 xwv473 xwv476) (FiniteMap.mkBranchRight_size xwv475 xwv473 xwv476)",fontsize=16,color="magenta"];4698 -> 4701[label="",style="dashed", color="magenta", weight=3]; 1720 -> 1724[label="",style="dashed", color="red", weight=0]; 1720[label="FiniteMap.sizeFM (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) > FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="magenta"];1720 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1720 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1719[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) xwv212",fontsize=16,color="burlywood",shape="triangle"];5232[label="xwv212/False",fontsize=10,color="white",style="solid",shape="box"];1719 -> 5232[label="",style="solid", color="burlywood", weight=9]; 5232 -> 1742[label="",style="solid", color="burlywood", weight=3]; 5233[label="xwv212/True",fontsize=10,color="white",style="solid",shape="box"];1719 -> 5233[label="",style="solid", color="burlywood", weight=9]; 5233 -> 1743[label="",style="solid", color="burlywood", weight=3]; 1506[label="primEqInt (Pos (Succ xwv40000)) (Pos xwv30000)",fontsize=16,color="burlywood",shape="box"];5234[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1506 -> 5234[label="",style="solid", color="burlywood", weight=9]; 5234 -> 1744[label="",style="solid", color="burlywood", weight=3]; 5235[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1506 -> 5235[label="",style="solid", color="burlywood", weight=9]; 5235 -> 1745[label="",style="solid", color="burlywood", weight=3]; 1507[label="primEqInt (Pos (Succ xwv40000)) (Neg xwv30000)",fontsize=16,color="black",shape="box"];1507 -> 1746[label="",style="solid", color="black", weight=3]; 1508[label="primEqInt (Pos Zero) (Pos xwv30000)",fontsize=16,color="burlywood",shape="box"];5236[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1508 -> 5236[label="",style="solid", color="burlywood", weight=9]; 5236 -> 1747[label="",style="solid", color="burlywood", weight=3]; 5237[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1508 -> 5237[label="",style="solid", color="burlywood", weight=9]; 5237 -> 1748[label="",style="solid", color="burlywood", weight=3]; 1509[label="primEqInt (Pos Zero) (Neg xwv30000)",fontsize=16,color="burlywood",shape="box"];5238[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1509 -> 5238[label="",style="solid", color="burlywood", weight=9]; 5238 -> 1749[label="",style="solid", color="burlywood", weight=3]; 5239[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1509 -> 5239[label="",style="solid", color="burlywood", weight=9]; 5239 -> 1750[label="",style="solid", color="burlywood", weight=3]; 1510[label="primEqInt (Neg (Succ xwv40000)) (Pos xwv30000)",fontsize=16,color="black",shape="box"];1510 -> 1751[label="",style="solid", color="black", weight=3]; 1511[label="primEqInt (Neg (Succ xwv40000)) (Neg xwv30000)",fontsize=16,color="burlywood",shape="box"];5240[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1511 -> 5240[label="",style="solid", color="burlywood", weight=9]; 5240 -> 1752[label="",style="solid", color="burlywood", weight=3]; 5241[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1511 -> 5241[label="",style="solid", color="burlywood", weight=9]; 5241 -> 1753[label="",style="solid", color="burlywood", weight=3]; 1512[label="primEqInt (Neg Zero) (Pos xwv30000)",fontsize=16,color="burlywood",shape="box"];5242[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1512 -> 5242[label="",style="solid", color="burlywood", weight=9]; 5242 -> 1754[label="",style="solid", color="burlywood", weight=3]; 5243[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1512 -> 5243[label="",style="solid", color="burlywood", weight=9]; 5243 -> 1755[label="",style="solid", color="burlywood", weight=3]; 1513[label="primEqInt (Neg Zero) (Neg xwv30000)",fontsize=16,color="burlywood",shape="box"];5244[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1513 -> 5244[label="",style="solid", color="burlywood", weight=9]; 5244 -> 1756[label="",style="solid", color="burlywood", weight=3]; 5245[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1513 -> 5245[label="",style="solid", color="burlywood", weight=9]; 5245 -> 1757[label="",style="solid", color="burlywood", weight=3]; 1228[label="xwv4000 == xwv30000",fontsize=16,color="blue",shape="box"];5246[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5246[label="",style="solid", color="blue", weight=9]; 5246 -> 1758[label="",style="solid", color="blue", weight=3]; 5247[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5247[label="",style="solid", color="blue", weight=9]; 5247 -> 1759[label="",style="solid", color="blue", weight=3]; 5248[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5248[label="",style="solid", color="blue", weight=9]; 5248 -> 1760[label="",style="solid", color="blue", weight=3]; 5249[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5249[label="",style="solid", color="blue", weight=9]; 5249 -> 1761[label="",style="solid", color="blue", weight=3]; 5250[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5250[label="",style="solid", color="blue", weight=9]; 5250 -> 1762[label="",style="solid", color="blue", weight=3]; 5251[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5251[label="",style="solid", color="blue", weight=9]; 5251 -> 1763[label="",style="solid", color="blue", weight=3]; 5252[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5252[label="",style="solid", color="blue", weight=9]; 5252 -> 1764[label="",style="solid", color="blue", weight=3]; 5253[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5253[label="",style="solid", color="blue", weight=9]; 5253 -> 1765[label="",style="solid", color="blue", weight=3]; 5254[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5254[label="",style="solid", color="blue", weight=9]; 5254 -> 1766[label="",style="solid", color="blue", weight=3]; 5255[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5255[label="",style="solid", color="blue", weight=9]; 5255 -> 1767[label="",style="solid", color="blue", weight=3]; 5256[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5256[label="",style="solid", color="blue", weight=9]; 5256 -> 1768[label="",style="solid", color="blue", weight=3]; 5257[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5257[label="",style="solid", color="blue", weight=9]; 5257 -> 1769[label="",style="solid", color="blue", weight=3]; 5258[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5258[label="",style="solid", color="blue", weight=9]; 5258 -> 1770[label="",style="solid", color="blue", weight=3]; 5259[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 5259[label="",style="solid", color="blue", weight=9]; 5259 -> 1771[label="",style="solid", color="blue", weight=3]; 1229 -> 1219[label="",style="dashed", color="red", weight=0]; 1229[label="xwv4001 == xwv30001 && xwv4002 == xwv30002",fontsize=16,color="magenta"];1229 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1514 -> 511[label="",style="dashed", color="red", weight=0]; 1514[label="xwv4000 * xwv30001 == xwv4001 * xwv30000",fontsize=16,color="magenta"];1514 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1515 -> 511[label="",style="dashed", color="red", weight=0]; 1515[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1515 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1516 -> 512[label="",style="dashed", color="red", weight=0]; 1516[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1516 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1517 -> 513[label="",style="dashed", color="red", weight=0]; 1517[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1517 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1518 -> 514[label="",style="dashed", color="red", weight=0]; 1518[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1518 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1519 -> 515[label="",style="dashed", color="red", weight=0]; 1519[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1519 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1520 -> 516[label="",style="dashed", color="red", weight=0]; 1520[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1520 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1521 -> 517[label="",style="dashed", color="red", weight=0]; 1521[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1521 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1522 -> 518[label="",style="dashed", color="red", weight=0]; 1522[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1522 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1523 -> 519[label="",style="dashed", color="red", weight=0]; 1523[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1523 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1524 -> 520[label="",style="dashed", color="red", weight=0]; 1524[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1524 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1525 -> 521[label="",style="dashed", color="red", weight=0]; 1525[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1525 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1526 -> 522[label="",style="dashed", color="red", weight=0]; 1526[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1526 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1527 -> 523[label="",style="dashed", color="red", weight=0]; 1527[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1527 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1528 -> 524[label="",style="dashed", color="red", weight=0]; 1528[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1528 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1529[label="primEqNat xwv4000 xwv30000",fontsize=16,color="burlywood",shape="triangle"];5260[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];1529 -> 5260[label="",style="solid", color="burlywood", weight=9]; 5260 -> 1804[label="",style="solid", color="burlywood", weight=3]; 5261[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1529 -> 5261[label="",style="solid", color="burlywood", weight=9]; 5261 -> 1805[label="",style="solid", color="burlywood", weight=3]; 1230[label="xwv4000 == xwv30000",fontsize=16,color="blue",shape="box"];5262[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 5262[label="",style="solid", color="blue", weight=9]; 5262 -> 1806[label="",style="solid", color="blue", weight=3]; 5263[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 5263[label="",style="solid", color="blue", weight=9]; 5263 -> 1807[label="",style="solid", color="blue", weight=3]; 1231[label="xwv4001 == xwv30001",fontsize=16,color="blue",shape="box"];5264[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 5264[label="",style="solid", color="blue", weight=9]; 5264 -> 1808[label="",style="solid", color="blue", weight=3]; 5265[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 5265[label="",style="solid", color="blue", weight=9]; 5265 -> 1809[label="",style="solid", color="blue", weight=3]; 1530 -> 511[label="",style="dashed", color="red", weight=0]; 1530[label="xwv4000 * xwv30001 == xwv4001 * xwv30000",fontsize=16,color="magenta"];1530 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1531 -> 511[label="",style="dashed", color="red", weight=0]; 1531[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1531 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1532 -> 512[label="",style="dashed", color="red", weight=0]; 1532[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1532 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1533 -> 513[label="",style="dashed", color="red", weight=0]; 1533[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1533 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1534 -> 514[label="",style="dashed", color="red", weight=0]; 1534[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1534 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1535 -> 515[label="",style="dashed", color="red", weight=0]; 1535[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1535 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1536 -> 516[label="",style="dashed", color="red", weight=0]; 1536[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1536 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1537 -> 517[label="",style="dashed", color="red", weight=0]; 1537[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1537 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1538 -> 518[label="",style="dashed", color="red", weight=0]; 1538[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1538 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1539 -> 519[label="",style="dashed", color="red", weight=0]; 1539[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1539 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1540 -> 520[label="",style="dashed", color="red", weight=0]; 1540[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1540 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1541 -> 521[label="",style="dashed", color="red", weight=0]; 1541[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1541 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1542 -> 522[label="",style="dashed", color="red", weight=0]; 1542[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1542 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1543 -> 523[label="",style="dashed", color="red", weight=0]; 1543[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1543 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1544 -> 524[label="",style="dashed", color="red", weight=0]; 1544[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1544 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1545 -> 511[label="",style="dashed", color="red", weight=0]; 1545[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1545 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1546 -> 512[label="",style="dashed", color="red", weight=0]; 1546[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1546 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1547 -> 513[label="",style="dashed", color="red", weight=0]; 1547[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1547 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1548 -> 514[label="",style="dashed", color="red", weight=0]; 1548[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1548 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1549 -> 515[label="",style="dashed", color="red", weight=0]; 1549[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1549 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1550 -> 516[label="",style="dashed", color="red", weight=0]; 1550[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1550 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1551 -> 517[label="",style="dashed", color="red", weight=0]; 1551[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1551 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1552 -> 518[label="",style="dashed", color="red", weight=0]; 1552[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1552 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1553 -> 519[label="",style="dashed", color="red", weight=0]; 1553[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1553 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1554 -> 520[label="",style="dashed", color="red", weight=0]; 1554[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1554 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1555 -> 521[label="",style="dashed", color="red", weight=0]; 1555[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1555 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1556 -> 522[label="",style="dashed", color="red", weight=0]; 1556[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1556 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1557 -> 523[label="",style="dashed", color="red", weight=0]; 1557[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1557 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1558 -> 524[label="",style="dashed", color="red", weight=0]; 1558[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1558 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1559[label="xwv4000",fontsize=16,color="green",shape="box"];1560[label="xwv30000",fontsize=16,color="green",shape="box"];1232[label="xwv4000 == xwv30000",fontsize=16,color="blue",shape="box"];5266[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5266[label="",style="solid", color="blue", weight=9]; 5266 -> 1868[label="",style="solid", color="blue", weight=3]; 5267[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5267[label="",style="solid", color="blue", weight=9]; 5267 -> 1869[label="",style="solid", color="blue", weight=3]; 5268[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5268[label="",style="solid", color="blue", weight=9]; 5268 -> 1870[label="",style="solid", color="blue", weight=3]; 5269[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5269[label="",style="solid", color="blue", weight=9]; 5269 -> 1871[label="",style="solid", color="blue", weight=3]; 5270[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5270[label="",style="solid", color="blue", weight=9]; 5270 -> 1872[label="",style="solid", color="blue", weight=3]; 5271[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5271[label="",style="solid", color="blue", weight=9]; 5271 -> 1873[label="",style="solid", color="blue", weight=3]; 5272[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5272[label="",style="solid", color="blue", weight=9]; 5272 -> 1874[label="",style="solid", color="blue", weight=3]; 5273[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5273[label="",style="solid", color="blue", weight=9]; 5273 -> 1875[label="",style="solid", color="blue", weight=3]; 5274[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5274[label="",style="solid", color="blue", weight=9]; 5274 -> 1876[label="",style="solid", color="blue", weight=3]; 5275[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5275[label="",style="solid", color="blue", weight=9]; 5275 -> 1877[label="",style="solid", color="blue", weight=3]; 5276[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5276[label="",style="solid", color="blue", weight=9]; 5276 -> 1878[label="",style="solid", color="blue", weight=3]; 5277[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5277[label="",style="solid", color="blue", weight=9]; 5277 -> 1879[label="",style="solid", color="blue", weight=3]; 5278[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5278[label="",style="solid", color="blue", weight=9]; 5278 -> 1880[label="",style="solid", color="blue", weight=3]; 5279[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 5279[label="",style="solid", color="blue", weight=9]; 5279 -> 1881[label="",style="solid", color="blue", weight=3]; 1233[label="xwv4001 == xwv30001",fontsize=16,color="blue",shape="box"];5280[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5280[label="",style="solid", color="blue", weight=9]; 5280 -> 1882[label="",style="solid", color="blue", weight=3]; 5281[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5281[label="",style="solid", color="blue", weight=9]; 5281 -> 1883[label="",style="solid", color="blue", weight=3]; 5282[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5282[label="",style="solid", color="blue", weight=9]; 5282 -> 1884[label="",style="solid", color="blue", weight=3]; 5283[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5283[label="",style="solid", color="blue", weight=9]; 5283 -> 1885[label="",style="solid", color="blue", weight=3]; 5284[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5284[label="",style="solid", color="blue", weight=9]; 5284 -> 1886[label="",style="solid", color="blue", weight=3]; 5285[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5285[label="",style="solid", color="blue", weight=9]; 5285 -> 1887[label="",style="solid", color="blue", weight=3]; 5286[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5286[label="",style="solid", color="blue", weight=9]; 5286 -> 1888[label="",style="solid", color="blue", weight=3]; 5287[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5287[label="",style="solid", color="blue", weight=9]; 5287 -> 1889[label="",style="solid", color="blue", weight=3]; 5288[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5288[label="",style="solid", color="blue", weight=9]; 5288 -> 1890[label="",style="solid", color="blue", weight=3]; 5289[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5289[label="",style="solid", color="blue", weight=9]; 5289 -> 1891[label="",style="solid", color="blue", weight=3]; 5290[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5290[label="",style="solid", color="blue", weight=9]; 5290 -> 1892[label="",style="solid", color="blue", weight=3]; 5291[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5291[label="",style="solid", color="blue", weight=9]; 5291 -> 1893[label="",style="solid", color="blue", weight=3]; 5292[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5292[label="",style="solid", color="blue", weight=9]; 5292 -> 1894[label="",style="solid", color="blue", weight=3]; 5293[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 5293[label="",style="solid", color="blue", weight=9]; 5293 -> 1895[label="",style="solid", color="blue", weight=3]; 1234[label="xwv4000 == xwv30000",fontsize=16,color="blue",shape="box"];5294[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5294[label="",style="solid", color="blue", weight=9]; 5294 -> 1896[label="",style="solid", color="blue", weight=3]; 5295[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5295[label="",style="solid", color="blue", weight=9]; 5295 -> 1897[label="",style="solid", color="blue", weight=3]; 5296[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5296[label="",style="solid", color="blue", weight=9]; 5296 -> 1898[label="",style="solid", color="blue", weight=3]; 5297[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5297[label="",style="solid", color="blue", weight=9]; 5297 -> 1899[label="",style="solid", color="blue", weight=3]; 5298[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5298[label="",style="solid", color="blue", weight=9]; 5298 -> 1900[label="",style="solid", color="blue", weight=3]; 5299[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5299[label="",style="solid", color="blue", weight=9]; 5299 -> 1901[label="",style="solid", color="blue", weight=3]; 5300[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5300[label="",style="solid", color="blue", weight=9]; 5300 -> 1902[label="",style="solid", color="blue", weight=3]; 5301[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5301[label="",style="solid", color="blue", weight=9]; 5301 -> 1903[label="",style="solid", color="blue", weight=3]; 5302[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5302[label="",style="solid", color="blue", weight=9]; 5302 -> 1904[label="",style="solid", color="blue", weight=3]; 5303[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5303[label="",style="solid", color="blue", weight=9]; 5303 -> 1905[label="",style="solid", color="blue", weight=3]; 5304[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5304[label="",style="solid", color="blue", weight=9]; 5304 -> 1906[label="",style="solid", color="blue", weight=3]; 5305[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5305[label="",style="solid", color="blue", weight=9]; 5305 -> 1907[label="",style="solid", color="blue", weight=3]; 5306[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5306[label="",style="solid", color="blue", weight=9]; 5306 -> 1908[label="",style="solid", color="blue", weight=3]; 5307[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1234 -> 5307[label="",style="solid", color="blue", weight=9]; 5307 -> 1909[label="",style="solid", color="blue", weight=3]; 1235 -> 524[label="",style="dashed", color="red", weight=0]; 1235[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1235 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1561[label="xwv43 <= xwv44",fontsize=16,color="burlywood",shape="triangle"];5308[label="xwv43/Left xwv430",fontsize=10,color="white",style="solid",shape="box"];1561 -> 5308[label="",style="solid", color="burlywood", weight=9]; 5308 -> 1912[label="",style="solid", color="burlywood", weight=3]; 5309[label="xwv43/Right xwv430",fontsize=10,color="white",style="solid",shape="box"];1561 -> 5309[label="",style="solid", color="burlywood", weight=9]; 5309 -> 1913[label="",style="solid", color="burlywood", weight=3]; 1562[label="xwv43 <= xwv44",fontsize=16,color="black",shape="triangle"];1562 -> 1914[label="",style="solid", color="black", weight=3]; 1563[label="xwv43 <= xwv44",fontsize=16,color="black",shape="triangle"];1563 -> 1915[label="",style="solid", color="black", weight=3]; 1564[label="xwv43 <= xwv44",fontsize=16,color="black",shape="triangle"];1564 -> 1916[label="",style="solid", color="black", weight=3]; 1565[label="xwv43 <= xwv44",fontsize=16,color="black",shape="triangle"];1565 -> 1917[label="",style="solid", color="black", weight=3]; 1566[label="xwv43 <= xwv44",fontsize=16,color="burlywood",shape="triangle"];5310[label="xwv43/(xwv430,xwv431,xwv432)",fontsize=10,color="white",style="solid",shape="box"];1566 -> 5310[label="",style="solid", color="burlywood", weight=9]; 5310 -> 1918[label="",style="solid", color="burlywood", weight=3]; 1567[label="xwv43 <= xwv44",fontsize=16,color="burlywood",shape="triangle"];5311[label="xwv43/False",fontsize=10,color="white",style="solid",shape="box"];1567 -> 5311[label="",style="solid", color="burlywood", weight=9]; 5311 -> 1919[label="",style="solid", color="burlywood", weight=3]; 5312[label="xwv43/True",fontsize=10,color="white",style="solid",shape="box"];1567 -> 5312[label="",style="solid", color="burlywood", weight=9]; 5312 -> 1920[label="",style="solid", color="burlywood", weight=3]; 1568[label="xwv43 <= xwv44",fontsize=16,color="burlywood",shape="triangle"];5313[label="xwv43/(xwv430,xwv431)",fontsize=10,color="white",style="solid",shape="box"];1568 -> 5313[label="",style="solid", color="burlywood", weight=9]; 5313 -> 1921[label="",style="solid", color="burlywood", weight=3]; 1569[label="xwv43 <= xwv44",fontsize=16,color="black",shape="triangle"];1569 -> 1922[label="",style="solid", color="black", weight=3]; 1570[label="xwv43 <= xwv44",fontsize=16,color="burlywood",shape="triangle"];5314[label="xwv43/Nothing",fontsize=10,color="white",style="solid",shape="box"];1570 -> 5314[label="",style="solid", color="burlywood", weight=9]; 5314 -> 1923[label="",style="solid", color="burlywood", weight=3]; 5315[label="xwv43/Just xwv430",fontsize=10,color="white",style="solid",shape="box"];1570 -> 5315[label="",style="solid", color="burlywood", weight=9]; 5315 -> 1924[label="",style="solid", color="burlywood", weight=3]; 1571[label="xwv43 <= xwv44",fontsize=16,color="black",shape="triangle"];1571 -> 1925[label="",style="solid", color="black", weight=3]; 1572[label="xwv43 <= xwv44",fontsize=16,color="burlywood",shape="triangle"];5316[label="xwv43/LT",fontsize=10,color="white",style="solid",shape="box"];1572 -> 5316[label="",style="solid", color="burlywood", weight=9]; 5316 -> 1926[label="",style="solid", color="burlywood", weight=3]; 5317[label="xwv43/EQ",fontsize=10,color="white",style="solid",shape="box"];1572 -> 5317[label="",style="solid", color="burlywood", weight=9]; 5317 -> 1927[label="",style="solid", color="burlywood", weight=3]; 5318[label="xwv43/GT",fontsize=10,color="white",style="solid",shape="box"];1572 -> 5318[label="",style="solid", color="burlywood", weight=9]; 5318 -> 1928[label="",style="solid", color="burlywood", weight=3]; 1573[label="xwv43 <= xwv44",fontsize=16,color="black",shape="triangle"];1573 -> 1929[label="",style="solid", color="black", weight=3]; 1574[label="xwv43 <= xwv44",fontsize=16,color="black",shape="triangle"];1574 -> 1930[label="",style="solid", color="black", weight=3]; 1575[label="compare0 (Left xwv148) (Left xwv149) otherwise",fontsize=16,color="black",shape="box"];1575 -> 1931[label="",style="solid", color="black", weight=3]; 1576[label="LT",fontsize=16,color="green",shape="box"];1577 -> 1561[label="",style="dashed", color="red", weight=0]; 1577[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1577 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1562[label="",style="dashed", color="red", weight=0]; 1578[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1578 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1563[label="",style="dashed", color="red", weight=0]; 1579[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1579 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1564[label="",style="dashed", color="red", weight=0]; 1580[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1580 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1565[label="",style="dashed", color="red", weight=0]; 1581[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1581 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1566[label="",style="dashed", color="red", weight=0]; 1582[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1582 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1567[label="",style="dashed", color="red", weight=0]; 1583[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1583 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1568[label="",style="dashed", color="red", weight=0]; 1584[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1584 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1569[label="",style="dashed", color="red", weight=0]; 1585[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1585 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1570[label="",style="dashed", color="red", weight=0]; 1586[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1586 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1571[label="",style="dashed", color="red", weight=0]; 1587[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1587 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1572[label="",style="dashed", color="red", weight=0]; 1588[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1588 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1573[label="",style="dashed", color="red", weight=0]; 1589[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1589 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1574[label="",style="dashed", color="red", weight=0]; 1590[label="xwv50 <= xwv51",fontsize=16,color="magenta"];1590 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1591[label="compare0 (Right xwv155) (Right xwv156) otherwise",fontsize=16,color="black",shape="box"];1591 -> 1960[label="",style="solid", color="black", weight=3]; 1592[label="LT",fontsize=16,color="green",shape="box"];1612[label="xwv115 == xwv118",fontsize=16,color="blue",shape="box"];5319[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5319[label="",style="solid", color="blue", weight=9]; 5319 -> 1961[label="",style="solid", color="blue", weight=3]; 5320[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5320[label="",style="solid", color="blue", weight=9]; 5320 -> 1962[label="",style="solid", color="blue", weight=3]; 5321[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5321[label="",style="solid", color="blue", weight=9]; 5321 -> 1963[label="",style="solid", color="blue", weight=3]; 5322[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5322[label="",style="solid", color="blue", weight=9]; 5322 -> 1964[label="",style="solid", color="blue", weight=3]; 5323[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5323[label="",style="solid", color="blue", weight=9]; 5323 -> 1965[label="",style="solid", color="blue", weight=3]; 5324[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5324[label="",style="solid", color="blue", weight=9]; 5324 -> 1966[label="",style="solid", color="blue", weight=3]; 5325[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5325[label="",style="solid", color="blue", weight=9]; 5325 -> 1967[label="",style="solid", color="blue", weight=3]; 5326[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5326[label="",style="solid", color="blue", weight=9]; 5326 -> 1968[label="",style="solid", color="blue", weight=3]; 5327[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5327[label="",style="solid", color="blue", weight=9]; 5327 -> 1969[label="",style="solid", color="blue", weight=3]; 5328[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5328[label="",style="solid", color="blue", weight=9]; 5328 -> 1970[label="",style="solid", color="blue", weight=3]; 5329[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5329[label="",style="solid", color="blue", weight=9]; 5329 -> 1971[label="",style="solid", color="blue", weight=3]; 5330[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5330[label="",style="solid", color="blue", weight=9]; 5330 -> 1972[label="",style="solid", color="blue", weight=3]; 5331[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5331[label="",style="solid", color="blue", weight=9]; 5331 -> 1973[label="",style="solid", color="blue", weight=3]; 5332[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 5332[label="",style="solid", color="blue", weight=9]; 5332 -> 1974[label="",style="solid", color="blue", weight=3]; 1613 -> 2366[label="",style="dashed", color="red", weight=0]; 1613[label="xwv116 < xwv119 || xwv116 == xwv119 && xwv117 <= xwv120",fontsize=16,color="magenta"];1613 -> 2367[label="",style="dashed", color="magenta", weight=3]; 1613 -> 2368[label="",style="dashed", color="magenta", weight=3]; 1614[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1614 -> 1981[label="",style="solid", color="black", weight=3]; 1615[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1615 -> 1982[label="",style="solid", color="black", weight=3]; 1616[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1616 -> 1983[label="",style="solid", color="black", weight=3]; 1617[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1617 -> 1984[label="",style="solid", color="black", weight=3]; 1619[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1619 -> 1986[label="",style="solid", color="black", weight=3]; 1620[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1620 -> 1987[label="",style="solid", color="black", weight=3]; 1621[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1621 -> 1988[label="",style="solid", color="black", weight=3]; 1622[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1622 -> 1989[label="",style="solid", color="black", weight=3]; 1623[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1623 -> 1990[label="",style="solid", color="black", weight=3]; 1624[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1624 -> 1991[label="",style="solid", color="black", weight=3]; 1625[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1625 -> 1992[label="",style="solid", color="black", weight=3]; 1626[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1626 -> 1993[label="",style="solid", color="black", weight=3]; 1627[label="xwv115 < xwv118",fontsize=16,color="black",shape="triangle"];1627 -> 1994[label="",style="solid", color="black", weight=3]; 1628[label="compare1 (xwv187,xwv188,xwv189) (xwv190,xwv191,xwv192) (False || xwv194)",fontsize=16,color="black",shape="box"];1628 -> 1995[label="",style="solid", color="black", weight=3]; 1629[label="compare1 (xwv187,xwv188,xwv189) (xwv190,xwv191,xwv192) (True || xwv194)",fontsize=16,color="black",shape="box"];1629 -> 1996[label="",style="solid", color="black", weight=3]; 1645[label="xwv128 == xwv130",fontsize=16,color="blue",shape="box"];5333[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5333[label="",style="solid", color="blue", weight=9]; 5333 -> 1997[label="",style="solid", color="blue", weight=3]; 5334[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5334[label="",style="solid", color="blue", weight=9]; 5334 -> 1998[label="",style="solid", color="blue", weight=3]; 5335[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5335[label="",style="solid", color="blue", weight=9]; 5335 -> 1999[label="",style="solid", color="blue", weight=3]; 5336[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5336[label="",style="solid", color="blue", weight=9]; 5336 -> 2000[label="",style="solid", color="blue", weight=3]; 5337[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5337[label="",style="solid", color="blue", weight=9]; 5337 -> 2001[label="",style="solid", color="blue", weight=3]; 5338[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5338[label="",style="solid", color="blue", weight=9]; 5338 -> 2002[label="",style="solid", color="blue", weight=3]; 5339[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5339[label="",style="solid", color="blue", weight=9]; 5339 -> 2003[label="",style="solid", color="blue", weight=3]; 5340[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5340[label="",style="solid", color="blue", weight=9]; 5340 -> 2004[label="",style="solid", color="blue", weight=3]; 5341[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5341[label="",style="solid", color="blue", weight=9]; 5341 -> 2005[label="",style="solid", color="blue", weight=3]; 5342[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5342[label="",style="solid", color="blue", weight=9]; 5342 -> 2006[label="",style="solid", color="blue", weight=3]; 5343[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5343[label="",style="solid", color="blue", weight=9]; 5343 -> 2007[label="",style="solid", color="blue", weight=3]; 5344[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5344[label="",style="solid", color="blue", weight=9]; 5344 -> 2008[label="",style="solid", color="blue", weight=3]; 5345[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5345[label="",style="solid", color="blue", weight=9]; 5345 -> 2009[label="",style="solid", color="blue", weight=3]; 5346[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 5346[label="",style="solid", color="blue", weight=9]; 5346 -> 2010[label="",style="solid", color="blue", weight=3]; 1646[label="xwv129 <= xwv131",fontsize=16,color="blue",shape="box"];5347[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5347[label="",style="solid", color="blue", weight=9]; 5347 -> 2011[label="",style="solid", color="blue", weight=3]; 5348[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5348[label="",style="solid", color="blue", weight=9]; 5348 -> 2012[label="",style="solid", color="blue", weight=3]; 5349[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5349[label="",style="solid", color="blue", weight=9]; 5349 -> 2013[label="",style="solid", color="blue", weight=3]; 5350[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5350[label="",style="solid", color="blue", weight=9]; 5350 -> 2014[label="",style="solid", color="blue", weight=3]; 5351[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5351[label="",style="solid", color="blue", weight=9]; 5351 -> 2015[label="",style="solid", color="blue", weight=3]; 5352[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5352[label="",style="solid", color="blue", weight=9]; 5352 -> 2016[label="",style="solid", color="blue", weight=3]; 5353[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5353[label="",style="solid", color="blue", weight=9]; 5353 -> 2017[label="",style="solid", color="blue", weight=3]; 5354[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5354[label="",style="solid", color="blue", weight=9]; 5354 -> 2018[label="",style="solid", color="blue", weight=3]; 5355[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5355[label="",style="solid", color="blue", weight=9]; 5355 -> 2019[label="",style="solid", color="blue", weight=3]; 5356[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5356[label="",style="solid", color="blue", weight=9]; 5356 -> 2020[label="",style="solid", color="blue", weight=3]; 5357[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5357[label="",style="solid", color="blue", weight=9]; 5357 -> 2021[label="",style="solid", color="blue", weight=3]; 5358[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5358[label="",style="solid", color="blue", weight=9]; 5358 -> 2022[label="",style="solid", color="blue", weight=3]; 5359[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5359[label="",style="solid", color="blue", weight=9]; 5359 -> 2023[label="",style="solid", color="blue", weight=3]; 5360[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5360[label="",style="solid", color="blue", weight=9]; 5360 -> 2024[label="",style="solid", color="blue", weight=3]; 1647 -> 1614[label="",style="dashed", color="red", weight=0]; 1647[label="xwv128 < xwv130",fontsize=16,color="magenta"];1647 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1647 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1615[label="",style="dashed", color="red", weight=0]; 1648[label="xwv128 < xwv130",fontsize=16,color="magenta"];1648 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1648 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1649 -> 1616[label="",style="dashed", color="red", weight=0]; 1649[label="xwv128 < xwv130",fontsize=16,color="magenta"];1649 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1649 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1617[label="",style="dashed", color="red", weight=0]; 1650[label="xwv128 < xwv130",fontsize=16,color="magenta"];1650 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1650 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1618[label="",style="dashed", color="red", weight=0]; 1651[label="xwv128 < xwv130",fontsize=16,color="magenta"];1651 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1651 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1619[label="",style="dashed", color="red", weight=0]; 1652[label="xwv128 < xwv130",fontsize=16,color="magenta"];1652 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1652 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1620[label="",style="dashed", color="red", weight=0]; 1653[label="xwv128 < xwv130",fontsize=16,color="magenta"];1653 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1653 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1621[label="",style="dashed", color="red", weight=0]; 1654[label="xwv128 < xwv130",fontsize=16,color="magenta"];1654 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1654 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1622[label="",style="dashed", color="red", weight=0]; 1655[label="xwv128 < xwv130",fontsize=16,color="magenta"];1655 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1655 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1623[label="",style="dashed", color="red", weight=0]; 1656[label="xwv128 < xwv130",fontsize=16,color="magenta"];1656 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1656 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1657 -> 1624[label="",style="dashed", color="red", weight=0]; 1657[label="xwv128 < xwv130",fontsize=16,color="magenta"];1657 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1657 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1625[label="",style="dashed", color="red", weight=0]; 1658[label="xwv128 < xwv130",fontsize=16,color="magenta"];1658 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1658 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1626[label="",style="dashed", color="red", weight=0]; 1659[label="xwv128 < xwv130",fontsize=16,color="magenta"];1659 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1659 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1660 -> 1627[label="",style="dashed", color="red", weight=0]; 1660[label="xwv128 < xwv130",fontsize=16,color="magenta"];1660 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1660 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1661[label="compare1 (xwv202,xwv203) (xwv204,xwv205) (False || xwv207)",fontsize=16,color="black",shape="box"];1661 -> 2053[label="",style="solid", color="black", weight=3]; 1662[label="compare1 (xwv202,xwv203) (xwv204,xwv205) (True || xwv207)",fontsize=16,color="black",shape="box"];1662 -> 2054[label="",style="solid", color="black", weight=3]; 1663[label="primMulNat (Succ xwv300000) xwv4010",fontsize=16,color="burlywood",shape="box"];5361[label="xwv4010/Succ xwv40100",fontsize=10,color="white",style="solid",shape="box"];1663 -> 5361[label="",style="solid", color="burlywood", weight=9]; 5361 -> 2055[label="",style="solid", color="burlywood", weight=3]; 5362[label="xwv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1663 -> 5362[label="",style="solid", color="burlywood", weight=9]; 5362 -> 2056[label="",style="solid", color="burlywood", weight=3]; 1664[label="primMulNat Zero xwv4010",fontsize=16,color="burlywood",shape="box"];5363[label="xwv4010/Succ xwv40100",fontsize=10,color="white",style="solid",shape="box"];1664 -> 5363[label="",style="solid", color="burlywood", weight=9]; 5363 -> 2057[label="",style="solid", color="burlywood", weight=3]; 5364[label="xwv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1664 -> 5364[label="",style="solid", color="burlywood", weight=9]; 5364 -> 2058[label="",style="solid", color="burlywood", weight=3]; 1665[label="xwv4010",fontsize=16,color="green",shape="box"];1666[label="xwv30000",fontsize=16,color="green",shape="box"];1667[label="xwv4010",fontsize=16,color="green",shape="box"];1668[label="xwv30000",fontsize=16,color="green",shape="box"];1669 -> 1561[label="",style="dashed", color="red", weight=0]; 1669[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1669 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1669 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1670 -> 1562[label="",style="dashed", color="red", weight=0]; 1670[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1670 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1670 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1671 -> 1563[label="",style="dashed", color="red", weight=0]; 1671[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1671 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1671 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1672 -> 1564[label="",style="dashed", color="red", weight=0]; 1672[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1672 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1672 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1673 -> 1565[label="",style="dashed", color="red", weight=0]; 1673[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1673 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1673 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1674 -> 1566[label="",style="dashed", color="red", weight=0]; 1674[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1674 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1674 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1675 -> 1567[label="",style="dashed", color="red", weight=0]; 1675[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1675 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1675 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1568[label="",style="dashed", color="red", weight=0]; 1676[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1676 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1676 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1677 -> 1569[label="",style="dashed", color="red", weight=0]; 1677[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1677 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1677 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1678 -> 1570[label="",style="dashed", color="red", weight=0]; 1678[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1678 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1678 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1679 -> 1571[label="",style="dashed", color="red", weight=0]; 1679[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1679 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1679 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1680 -> 1572[label="",style="dashed", color="red", weight=0]; 1680[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1680 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1680 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1681 -> 1573[label="",style="dashed", color="red", weight=0]; 1681[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1681 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1681 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1682 -> 1574[label="",style="dashed", color="red", weight=0]; 1682[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1682 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1682 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1683[label="compare0 (Just xwv170) (Just xwv171) otherwise",fontsize=16,color="black",shape="box"];1683 -> 2087[label="",style="solid", color="black", weight=3]; 1684[label="LT",fontsize=16,color="green",shape="box"];1685[label="error []",fontsize=16,color="red",shape="box"];1686 -> 421[label="",style="dashed", color="red", weight=0]; 1686[label="FiniteMap.glueBal xwv101 xwv102",fontsize=16,color="magenta"];1686 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1686 -> 2089[label="",style="dashed", color="magenta", weight=3]; 3996 -> 2872[label="",style="dashed", color="red", weight=0]; 3996[label="primPlusNat xwv3590 xwv3600",fontsize=16,color="magenta"];3996 -> 4025[label="",style="dashed", color="magenta", weight=3]; 3996 -> 4026[label="",style="dashed", color="magenta", weight=3]; 3997[label="primMinusNat (Succ xwv35900) xwv3600",fontsize=16,color="burlywood",shape="box"];5365[label="xwv3600/Succ xwv36000",fontsize=10,color="white",style="solid",shape="box"];3997 -> 5365[label="",style="solid", color="burlywood", weight=9]; 5365 -> 4027[label="",style="solid", color="burlywood", weight=3]; 5366[label="xwv3600/Zero",fontsize=10,color="white",style="solid",shape="box"];3997 -> 5366[label="",style="solid", color="burlywood", weight=9]; 5366 -> 4028[label="",style="solid", color="burlywood", weight=3]; 3998[label="primMinusNat Zero xwv3600",fontsize=16,color="burlywood",shape="box"];5367[label="xwv3600/Succ xwv36000",fontsize=10,color="white",style="solid",shape="box"];3998 -> 5367[label="",style="solid", color="burlywood", weight=9]; 5367 -> 4029[label="",style="solid", color="burlywood", weight=3]; 5368[label="xwv3600/Zero",fontsize=10,color="white",style="solid",shape="box"];3998 -> 5368[label="",style="solid", color="burlywood", weight=9]; 5368 -> 4030[label="",style="solid", color="burlywood", weight=3]; 3999[label="xwv3610",fontsize=16,color="green",shape="box"];4000[label="xwv3590",fontsize=16,color="green",shape="box"];4001 -> 2872[label="",style="dashed", color="red", weight=0]; 4001[label="primPlusNat xwv3590 xwv3610",fontsize=16,color="magenta"];4001 -> 4031[label="",style="dashed", color="magenta", weight=3]; 4001 -> 4032[label="",style="dashed", color="magenta", weight=3]; 4002[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv340 xwv341 xwv344 xwv355 xwv340 xwv341 xwv355 xwv344 True",fontsize=16,color="black",shape="box"];4002 -> 4033[label="",style="solid", color="black", weight=3]; 4003[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 FiniteMap.EmptyFM FiniteMap.EmptyFM xwv344 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4003 -> 4034[label="",style="solid", color="black", weight=3]; 4004[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554)",fontsize=16,color="black",shape="box"];4004 -> 4035[label="",style="solid", color="black", weight=3]; 4018 -> 1618[label="",style="dashed", color="red", weight=0]; 4018[label="FiniteMap.sizeFM xwv3443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];4018 -> 4036[label="",style="dashed", color="magenta", weight=3]; 4018 -> 4037[label="",style="dashed", color="magenta", weight=3]; 4017[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 xwv367",fontsize=16,color="burlywood",shape="triangle"];5369[label="xwv367/False",fontsize=10,color="white",style="solid",shape="box"];4017 -> 5369[label="",style="solid", color="burlywood", weight=9]; 5369 -> 4038[label="",style="solid", color="burlywood", weight=3]; 5370[label="xwv367/True",fontsize=10,color="white",style="solid",shape="box"];4017 -> 5370[label="",style="solid", color="burlywood", weight=9]; 5370 -> 4039[label="",style="solid", color="burlywood", weight=3]; 4701[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv475 xwv473 xwv476",fontsize=16,color="black",shape="box"];4701 -> 4703[label="",style="solid", color="black", weight=3]; 4700[label="primPlusInt xwv477 (FiniteMap.mkBranchRight_size xwv475 xwv473 xwv476)",fontsize=16,color="burlywood",shape="triangle"];5371[label="xwv477/Pos xwv4770",fontsize=10,color="white",style="solid",shape="box"];4700 -> 5371[label="",style="solid", color="burlywood", weight=9]; 5371 -> 4704[label="",style="solid", color="burlywood", weight=3]; 5372[label="xwv477/Neg xwv4770",fontsize=10,color="white",style="solid",shape="box"];4700 -> 5372[label="",style="solid", color="burlywood", weight=9]; 5372 -> 4705[label="",style="solid", color="burlywood", weight=3]; 1733 -> 1496[label="",style="dashed", color="red", weight=0]; 1733[label="FiniteMap.sizeFM (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="magenta"];1733 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1734 -> 1496[label="",style="dashed", color="red", weight=0]; 1734[label="FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="magenta"];1734 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1742[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) False",fontsize=16,color="black",shape="box"];1742 -> 2124[label="",style="solid", color="black", weight=3]; 1743[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) True",fontsize=16,color="black",shape="box"];1743 -> 2125[label="",style="solid", color="black", weight=3]; 1744[label="primEqInt (Pos (Succ xwv40000)) (Pos (Succ xwv300000))",fontsize=16,color="black",shape="box"];1744 -> 2126[label="",style="solid", color="black", weight=3]; 1745[label="primEqInt (Pos (Succ xwv40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1745 -> 2127[label="",style="solid", color="black", weight=3]; 1746[label="False",fontsize=16,color="green",shape="box"];1747[label="primEqInt (Pos Zero) (Pos (Succ xwv300000))",fontsize=16,color="black",shape="box"];1747 -> 2128[label="",style="solid", color="black", weight=3]; 1748[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1748 -> 2129[label="",style="solid", color="black", weight=3]; 1749[label="primEqInt (Pos Zero) (Neg (Succ xwv300000))",fontsize=16,color="black",shape="box"];1749 -> 2130[label="",style="solid", color="black", weight=3]; 1750[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1750 -> 2131[label="",style="solid", color="black", weight=3]; 1751[label="False",fontsize=16,color="green",shape="box"];1752[label="primEqInt (Neg (Succ xwv40000)) (Neg (Succ xwv300000))",fontsize=16,color="black",shape="box"];1752 -> 2132[label="",style="solid", color="black", weight=3]; 1753[label="primEqInt (Neg (Succ xwv40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1753 -> 2133[label="",style="solid", color="black", weight=3]; 1754[label="primEqInt (Neg Zero) (Pos (Succ xwv300000))",fontsize=16,color="black",shape="box"];1754 -> 2134[label="",style="solid", color="black", weight=3]; 1755[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1755 -> 2135[label="",style="solid", color="black", weight=3]; 1756[label="primEqInt (Neg Zero) (Neg (Succ xwv300000))",fontsize=16,color="black",shape="box"];1756 -> 2136[label="",style="solid", color="black", weight=3]; 1757[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1757 -> 2137[label="",style="solid", color="black", weight=3]; 1758 -> 511[label="",style="dashed", color="red", weight=0]; 1758[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1758 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1758 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1759 -> 512[label="",style="dashed", color="red", weight=0]; 1759[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1759 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1759 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1760 -> 513[label="",style="dashed", color="red", weight=0]; 1760[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1760 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1760 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1761 -> 514[label="",style="dashed", color="red", weight=0]; 1761[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1761 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1761 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1762 -> 515[label="",style="dashed", color="red", weight=0]; 1762[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1762 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1762 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1763 -> 516[label="",style="dashed", color="red", weight=0]; 1763[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1763 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1763 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1764 -> 517[label="",style="dashed", color="red", weight=0]; 1764[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1764 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1764 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1765 -> 518[label="",style="dashed", color="red", weight=0]; 1765[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1765 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1765 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1766 -> 519[label="",style="dashed", color="red", weight=0]; 1766[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1766 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1766 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1767 -> 520[label="",style="dashed", color="red", weight=0]; 1767[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1767 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1767 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1768 -> 521[label="",style="dashed", color="red", weight=0]; 1768[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1768 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1768 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1769 -> 522[label="",style="dashed", color="red", weight=0]; 1769[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1769 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1769 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1770 -> 523[label="",style="dashed", color="red", weight=0]; 1770[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1770 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1770 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1771 -> 524[label="",style="dashed", color="red", weight=0]; 1771[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1771 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1771 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1772[label="xwv4001 == xwv30001",fontsize=16,color="blue",shape="box"];5373[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5373[label="",style="solid", color="blue", weight=9]; 5373 -> 2166[label="",style="solid", color="blue", weight=3]; 5374[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5374[label="",style="solid", color="blue", weight=9]; 5374 -> 2167[label="",style="solid", color="blue", weight=3]; 5375[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5375[label="",style="solid", color="blue", weight=9]; 5375 -> 2168[label="",style="solid", color="blue", weight=3]; 5376[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5376[label="",style="solid", color="blue", weight=9]; 5376 -> 2169[label="",style="solid", color="blue", weight=3]; 5377[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5377[label="",style="solid", color="blue", weight=9]; 5377 -> 2170[label="",style="solid", color="blue", weight=3]; 5378[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5378[label="",style="solid", color="blue", weight=9]; 5378 -> 2171[label="",style="solid", color="blue", weight=3]; 5379[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5379[label="",style="solid", color="blue", weight=9]; 5379 -> 2172[label="",style="solid", color="blue", weight=3]; 5380[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5380[label="",style="solid", color="blue", weight=9]; 5380 -> 2173[label="",style="solid", color="blue", weight=3]; 5381[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5381[label="",style="solid", color="blue", weight=9]; 5381 -> 2174[label="",style="solid", color="blue", weight=3]; 5382[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5382[label="",style="solid", color="blue", weight=9]; 5382 -> 2175[label="",style="solid", color="blue", weight=3]; 5383[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5383[label="",style="solid", color="blue", weight=9]; 5383 -> 2176[label="",style="solid", color="blue", weight=3]; 5384[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5384[label="",style="solid", color="blue", weight=9]; 5384 -> 2177[label="",style="solid", color="blue", weight=3]; 5385[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5385[label="",style="solid", color="blue", weight=9]; 5385 -> 2178[label="",style="solid", color="blue", weight=3]; 5386[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1772 -> 5386[label="",style="solid", color="blue", weight=9]; 5386 -> 2179[label="",style="solid", color="blue", weight=3]; 1773[label="xwv4002 == xwv30002",fontsize=16,color="blue",shape="box"];5387[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5387[label="",style="solid", color="blue", weight=9]; 5387 -> 2180[label="",style="solid", color="blue", weight=3]; 5388[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5388[label="",style="solid", color="blue", weight=9]; 5388 -> 2181[label="",style="solid", color="blue", weight=3]; 5389[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5389[label="",style="solid", color="blue", weight=9]; 5389 -> 2182[label="",style="solid", color="blue", weight=3]; 5390[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5390[label="",style="solid", color="blue", weight=9]; 5390 -> 2183[label="",style="solid", color="blue", weight=3]; 5391[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5391[label="",style="solid", color="blue", weight=9]; 5391 -> 2184[label="",style="solid", color="blue", weight=3]; 5392[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5392[label="",style="solid", color="blue", weight=9]; 5392 -> 2185[label="",style="solid", color="blue", weight=3]; 5393[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5393[label="",style="solid", color="blue", weight=9]; 5393 -> 2186[label="",style="solid", color="blue", weight=3]; 5394[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5394[label="",style="solid", color="blue", weight=9]; 5394 -> 2187[label="",style="solid", color="blue", weight=3]; 5395[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5395[label="",style="solid", color="blue", weight=9]; 5395 -> 2188[label="",style="solid", color="blue", weight=3]; 5396[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5396[label="",style="solid", color="blue", weight=9]; 5396 -> 2189[label="",style="solid", color="blue", weight=3]; 5397[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5397[label="",style="solid", color="blue", weight=9]; 5397 -> 2190[label="",style="solid", color="blue", weight=3]; 5398[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5398[label="",style="solid", color="blue", weight=9]; 5398 -> 2191[label="",style="solid", color="blue", weight=3]; 5399[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5399[label="",style="solid", color="blue", weight=9]; 5399 -> 2192[label="",style="solid", color="blue", weight=3]; 5400[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1773 -> 5400[label="",style="solid", color="blue", weight=9]; 5400 -> 2193[label="",style="solid", color="blue", weight=3]; 1774 -> 389[label="",style="dashed", color="red", weight=0]; 1774[label="xwv4000 * xwv30001",fontsize=16,color="magenta"];1774 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1774 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1775 -> 389[label="",style="dashed", color="red", weight=0]; 1775[label="xwv4001 * xwv30000",fontsize=16,color="magenta"];1775 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1775 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1776[label="xwv4000",fontsize=16,color="green",shape="box"];1777[label="xwv30000",fontsize=16,color="green",shape="box"];1778[label="xwv4000",fontsize=16,color="green",shape="box"];1779[label="xwv30000",fontsize=16,color="green",shape="box"];1780[label="xwv4000",fontsize=16,color="green",shape="box"];1781[label="xwv30000",fontsize=16,color="green",shape="box"];1782[label="xwv4000",fontsize=16,color="green",shape="box"];1783[label="xwv30000",fontsize=16,color="green",shape="box"];1784[label="xwv4000",fontsize=16,color="green",shape="box"];1785[label="xwv30000",fontsize=16,color="green",shape="box"];1786[label="xwv4000",fontsize=16,color="green",shape="box"];1787[label="xwv30000",fontsize=16,color="green",shape="box"];1788[label="xwv4000",fontsize=16,color="green",shape="box"];1789[label="xwv30000",fontsize=16,color="green",shape="box"];1790[label="xwv4000",fontsize=16,color="green",shape="box"];1791[label="xwv30000",fontsize=16,color="green",shape="box"];1792[label="xwv4000",fontsize=16,color="green",shape="box"];1793[label="xwv30000",fontsize=16,color="green",shape="box"];1794[label="xwv4000",fontsize=16,color="green",shape="box"];1795[label="xwv30000",fontsize=16,color="green",shape="box"];1796[label="xwv4000",fontsize=16,color="green",shape="box"];1797[label="xwv30000",fontsize=16,color="green",shape="box"];1798[label="xwv4000",fontsize=16,color="green",shape="box"];1799[label="xwv30000",fontsize=16,color="green",shape="box"];1800[label="xwv4000",fontsize=16,color="green",shape="box"];1801[label="xwv30000",fontsize=16,color="green",shape="box"];1802[label="xwv4000",fontsize=16,color="green",shape="box"];1803[label="xwv30000",fontsize=16,color="green",shape="box"];1804[label="primEqNat (Succ xwv40000) xwv30000",fontsize=16,color="burlywood",shape="box"];5401[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1804 -> 5401[label="",style="solid", color="burlywood", weight=9]; 5401 -> 2198[label="",style="solid", color="burlywood", weight=3]; 5402[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1804 -> 5402[label="",style="solid", color="burlywood", weight=9]; 5402 -> 2199[label="",style="solid", color="burlywood", weight=3]; 1805[label="primEqNat Zero xwv30000",fontsize=16,color="burlywood",shape="box"];5403[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1805 -> 5403[label="",style="solid", color="burlywood", weight=9]; 5403 -> 2200[label="",style="solid", color="burlywood", weight=3]; 5404[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1805 -> 5404[label="",style="solid", color="burlywood", weight=9]; 5404 -> 2201[label="",style="solid", color="burlywood", weight=3]; 1806 -> 511[label="",style="dashed", color="red", weight=0]; 1806[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1806 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1806 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1807 -> 522[label="",style="dashed", color="red", weight=0]; 1807[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1807 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1807 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1808 -> 511[label="",style="dashed", color="red", weight=0]; 1808[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1808 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1808 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1809 -> 522[label="",style="dashed", color="red", weight=0]; 1809[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1809 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1809 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1810 -> 389[label="",style="dashed", color="red", weight=0]; 1810[label="xwv4000 * xwv30001",fontsize=16,color="magenta"];1810 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1810 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1811 -> 389[label="",style="dashed", color="red", weight=0]; 1811[label="xwv4001 * xwv30000",fontsize=16,color="magenta"];1811 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1811 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1812[label="xwv4000",fontsize=16,color="green",shape="box"];1813[label="xwv30000",fontsize=16,color="green",shape="box"];1814[label="xwv4000",fontsize=16,color="green",shape="box"];1815[label="xwv30000",fontsize=16,color="green",shape="box"];1816[label="xwv4000",fontsize=16,color="green",shape="box"];1817[label="xwv30000",fontsize=16,color="green",shape="box"];1818[label="xwv4000",fontsize=16,color="green",shape="box"];1819[label="xwv30000",fontsize=16,color="green",shape="box"];1820[label="xwv4000",fontsize=16,color="green",shape="box"];1821[label="xwv30000",fontsize=16,color="green",shape="box"];1822[label="xwv4000",fontsize=16,color="green",shape="box"];1823[label="xwv30000",fontsize=16,color="green",shape="box"];1824[label="xwv4000",fontsize=16,color="green",shape="box"];1825[label="xwv30000",fontsize=16,color="green",shape="box"];1826[label="xwv4000",fontsize=16,color="green",shape="box"];1827[label="xwv30000",fontsize=16,color="green",shape="box"];1828[label="xwv4000",fontsize=16,color="green",shape="box"];1829[label="xwv30000",fontsize=16,color="green",shape="box"];1830[label="xwv4000",fontsize=16,color="green",shape="box"];1831[label="xwv30000",fontsize=16,color="green",shape="box"];1832[label="xwv4000",fontsize=16,color="green",shape="box"];1833[label="xwv30000",fontsize=16,color="green",shape="box"];1834[label="xwv4000",fontsize=16,color="green",shape="box"];1835[label="xwv30000",fontsize=16,color="green",shape="box"];1836[label="xwv4000",fontsize=16,color="green",shape="box"];1837[label="xwv30000",fontsize=16,color="green",shape="box"];1838[label="xwv4000",fontsize=16,color="green",shape="box"];1839[label="xwv30000",fontsize=16,color="green",shape="box"];1840[label="xwv4000",fontsize=16,color="green",shape="box"];1841[label="xwv30000",fontsize=16,color="green",shape="box"];1842[label="xwv4000",fontsize=16,color="green",shape="box"];1843[label="xwv30000",fontsize=16,color="green",shape="box"];1844[label="xwv4000",fontsize=16,color="green",shape="box"];1845[label="xwv30000",fontsize=16,color="green",shape="box"];1846[label="xwv4000",fontsize=16,color="green",shape="box"];1847[label="xwv30000",fontsize=16,color="green",shape="box"];1848[label="xwv4000",fontsize=16,color="green",shape="box"];1849[label="xwv30000",fontsize=16,color="green",shape="box"];1850[label="xwv4000",fontsize=16,color="green",shape="box"];1851[label="xwv30000",fontsize=16,color="green",shape="box"];1852[label="xwv4000",fontsize=16,color="green",shape="box"];1853[label="xwv30000",fontsize=16,color="green",shape="box"];1854[label="xwv4000",fontsize=16,color="green",shape="box"];1855[label="xwv30000",fontsize=16,color="green",shape="box"];1856[label="xwv4000",fontsize=16,color="green",shape="box"];1857[label="xwv30000",fontsize=16,color="green",shape="box"];1858[label="xwv4000",fontsize=16,color="green",shape="box"];1859[label="xwv30000",fontsize=16,color="green",shape="box"];1860[label="xwv4000",fontsize=16,color="green",shape="box"];1861[label="xwv30000",fontsize=16,color="green",shape="box"];1862[label="xwv4000",fontsize=16,color="green",shape="box"];1863[label="xwv30000",fontsize=16,color="green",shape="box"];1864[label="xwv4000",fontsize=16,color="green",shape="box"];1865[label="xwv30000",fontsize=16,color="green",shape="box"];1866[label="xwv4000",fontsize=16,color="green",shape="box"];1867[label="xwv30000",fontsize=16,color="green",shape="box"];1868 -> 511[label="",style="dashed", color="red", weight=0]; 1868[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1868 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1868 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1869 -> 512[label="",style="dashed", color="red", weight=0]; 1869[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1869 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1869 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1870 -> 513[label="",style="dashed", color="red", weight=0]; 1870[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1870 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1870 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1871 -> 514[label="",style="dashed", color="red", weight=0]; 1871[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1871 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1871 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1872 -> 515[label="",style="dashed", color="red", weight=0]; 1872[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1872 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1872 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1873 -> 516[label="",style="dashed", color="red", weight=0]; 1873[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1873 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1873 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1874 -> 517[label="",style="dashed", color="red", weight=0]; 1874[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1874 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1874 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1875 -> 518[label="",style="dashed", color="red", weight=0]; 1875[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1875 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1875 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1876 -> 519[label="",style="dashed", color="red", weight=0]; 1876[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1876 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1876 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1877 -> 520[label="",style="dashed", color="red", weight=0]; 1877[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1877 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1877 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1878 -> 521[label="",style="dashed", color="red", weight=0]; 1878[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1878 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1879 -> 522[label="",style="dashed", color="red", weight=0]; 1879[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1879 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1880 -> 523[label="",style="dashed", color="red", weight=0]; 1880[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1880 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1881 -> 524[label="",style="dashed", color="red", weight=0]; 1881[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1881 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1881 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1882 -> 511[label="",style="dashed", color="red", weight=0]; 1882[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1882 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1882 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1883 -> 512[label="",style="dashed", color="red", weight=0]; 1883[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1883 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1884 -> 513[label="",style="dashed", color="red", weight=0]; 1884[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1884 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1885 -> 514[label="",style="dashed", color="red", weight=0]; 1885[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1885 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2249[label="",style="dashed", color="magenta", weight=3]; 1886 -> 515[label="",style="dashed", color="red", weight=0]; 1886[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1886 -> 2250[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2251[label="",style="dashed", color="magenta", weight=3]; 1887 -> 516[label="",style="dashed", color="red", weight=0]; 1887[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1887 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1888 -> 517[label="",style="dashed", color="red", weight=0]; 1888[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1888 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1889 -> 518[label="",style="dashed", color="red", weight=0]; 1889[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1889 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1889 -> 2257[label="",style="dashed", color="magenta", weight=3]; 1890 -> 519[label="",style="dashed", color="red", weight=0]; 1890[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1890 -> 2258[label="",style="dashed", color="magenta", weight=3]; 1890 -> 2259[label="",style="dashed", color="magenta", weight=3]; 1891 -> 520[label="",style="dashed", color="red", weight=0]; 1891[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1891 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2261[label="",style="dashed", color="magenta", weight=3]; 1892 -> 521[label="",style="dashed", color="red", weight=0]; 1892[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1892 -> 2262[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1893 -> 522[label="",style="dashed", color="red", weight=0]; 1893[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1893 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2265[label="",style="dashed", color="magenta", weight=3]; 1894 -> 523[label="",style="dashed", color="red", weight=0]; 1894[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1894 -> 2266[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2267[label="",style="dashed", color="magenta", weight=3]; 1895 -> 524[label="",style="dashed", color="red", weight=0]; 1895[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];1895 -> 2268[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2269[label="",style="dashed", color="magenta", weight=3]; 1896 -> 511[label="",style="dashed", color="red", weight=0]; 1896[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1896 -> 2270[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2271[label="",style="dashed", color="magenta", weight=3]; 1897 -> 512[label="",style="dashed", color="red", weight=0]; 1897[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1897 -> 2272[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2273[label="",style="dashed", color="magenta", weight=3]; 1898 -> 513[label="",style="dashed", color="red", weight=0]; 1898[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1898 -> 2274[label="",style="dashed", color="magenta", weight=3]; 1898 -> 2275[label="",style="dashed", color="magenta", weight=3]; 1899 -> 514[label="",style="dashed", color="red", weight=0]; 1899[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1899 -> 2276[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2277[label="",style="dashed", color="magenta", weight=3]; 1900 -> 515[label="",style="dashed", color="red", weight=0]; 1900[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1900 -> 2278[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2279[label="",style="dashed", color="magenta", weight=3]; 1901 -> 516[label="",style="dashed", color="red", weight=0]; 1901[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1901 -> 2280[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2281[label="",style="dashed", color="magenta", weight=3]; 1902 -> 517[label="",style="dashed", color="red", weight=0]; 1902[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1902 -> 2282[label="",style="dashed", color="magenta", weight=3]; 1902 -> 2283[label="",style="dashed", color="magenta", weight=3]; 1903 -> 518[label="",style="dashed", color="red", weight=0]; 1903[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1903 -> 2284[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2285[label="",style="dashed", color="magenta", weight=3]; 1904 -> 519[label="",style="dashed", color="red", weight=0]; 1904[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1904 -> 2286[label="",style="dashed", color="magenta", weight=3]; 1904 -> 2287[label="",style="dashed", color="magenta", weight=3]; 1905 -> 520[label="",style="dashed", color="red", weight=0]; 1905[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1905 -> 2288[label="",style="dashed", color="magenta", weight=3]; 1905 -> 2289[label="",style="dashed", color="magenta", weight=3]; 1906 -> 521[label="",style="dashed", color="red", weight=0]; 1906[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1906 -> 2290[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2291[label="",style="dashed", color="magenta", weight=3]; 1907 -> 522[label="",style="dashed", color="red", weight=0]; 1907[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1907 -> 2292[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2293[label="",style="dashed", color="magenta", weight=3]; 1908 -> 523[label="",style="dashed", color="red", weight=0]; 1908[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1908 -> 2294[label="",style="dashed", color="magenta", weight=3]; 1908 -> 2295[label="",style="dashed", color="magenta", weight=3]; 1909 -> 524[label="",style="dashed", color="red", weight=0]; 1909[label="xwv4000 == xwv30000",fontsize=16,color="magenta"];1909 -> 2296[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2297[label="",style="dashed", color="magenta", weight=3]; 1910[label="xwv4001",fontsize=16,color="green",shape="box"];1911[label="xwv30001",fontsize=16,color="green",shape="box"];1912[label="Left xwv430 <= xwv44",fontsize=16,color="burlywood",shape="box"];5405[label="xwv44/Left xwv440",fontsize=10,color="white",style="solid",shape="box"];1912 -> 5405[label="",style="solid", color="burlywood", weight=9]; 5405 -> 2298[label="",style="solid", color="burlywood", weight=3]; 5406[label="xwv44/Right xwv440",fontsize=10,color="white",style="solid",shape="box"];1912 -> 5406[label="",style="solid", color="burlywood", weight=9]; 5406 -> 2299[label="",style="solid", color="burlywood", weight=3]; 1913[label="Right xwv430 <= xwv44",fontsize=16,color="burlywood",shape="box"];5407[label="xwv44/Left xwv440",fontsize=10,color="white",style="solid",shape="box"];1913 -> 5407[label="",style="solid", color="burlywood", weight=9]; 5407 -> 2300[label="",style="solid", color="burlywood", weight=3]; 5408[label="xwv44/Right xwv440",fontsize=10,color="white",style="solid",shape="box"];1913 -> 5408[label="",style="solid", color="burlywood", weight=9]; 5408 -> 2301[label="",style="solid", color="burlywood", weight=3]; 1914 -> 2302[label="",style="dashed", color="red", weight=0]; 1914[label="compare xwv43 xwv44 /= GT",fontsize=16,color="magenta"];1914 -> 2303[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2302[label="",style="dashed", color="red", weight=0]; 1915[label="compare xwv43 xwv44 /= GT",fontsize=16,color="magenta"];1915 -> 2304[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2302[label="",style="dashed", color="red", weight=0]; 1916[label="compare xwv43 xwv44 /= GT",fontsize=16,color="magenta"];1916 -> 2305[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2302[label="",style="dashed", color="red", weight=0]; 1917[label="compare xwv43 xwv44 /= GT",fontsize=16,color="magenta"];1917 -> 2306[label="",style="dashed", color="magenta", weight=3]; 1918[label="(xwv430,xwv431,xwv432) <= xwv44",fontsize=16,color="burlywood",shape="box"];5409[label="xwv44/(xwv440,xwv441,xwv442)",fontsize=10,color="white",style="solid",shape="box"];1918 -> 5409[label="",style="solid", color="burlywood", weight=9]; 5409 -> 2315[label="",style="solid", color="burlywood", weight=3]; 1919[label="False <= xwv44",fontsize=16,color="burlywood",shape="box"];5410[label="xwv44/False",fontsize=10,color="white",style="solid",shape="box"];1919 -> 5410[label="",style="solid", color="burlywood", weight=9]; 5410 -> 2316[label="",style="solid", color="burlywood", weight=3]; 5411[label="xwv44/True",fontsize=10,color="white",style="solid",shape="box"];1919 -> 5411[label="",style="solid", color="burlywood", weight=9]; 5411 -> 2317[label="",style="solid", color="burlywood", weight=3]; 1920[label="True <= xwv44",fontsize=16,color="burlywood",shape="box"];5412[label="xwv44/False",fontsize=10,color="white",style="solid",shape="box"];1920 -> 5412[label="",style="solid", color="burlywood", weight=9]; 5412 -> 2318[label="",style="solid", color="burlywood", weight=3]; 5413[label="xwv44/True",fontsize=10,color="white",style="solid",shape="box"];1920 -> 5413[label="",style="solid", color="burlywood", weight=9]; 5413 -> 2319[label="",style="solid", color="burlywood", weight=3]; 1921[label="(xwv430,xwv431) <= xwv44",fontsize=16,color="burlywood",shape="box"];5414[label="xwv44/(xwv440,xwv441)",fontsize=10,color="white",style="solid",shape="box"];1921 -> 5414[label="",style="solid", color="burlywood", weight=9]; 5414 -> 2320[label="",style="solid", color="burlywood", weight=3]; 1922 -> 2302[label="",style="dashed", color="red", weight=0]; 1922[label="compare xwv43 xwv44 /= GT",fontsize=16,color="magenta"];1922 -> 2307[label="",style="dashed", color="magenta", weight=3]; 1923[label="Nothing <= xwv44",fontsize=16,color="burlywood",shape="box"];5415[label="xwv44/Nothing",fontsize=10,color="white",style="solid",shape="box"];1923 -> 5415[label="",style="solid", color="burlywood", weight=9]; 5415 -> 2321[label="",style="solid", color="burlywood", weight=3]; 5416[label="xwv44/Just xwv440",fontsize=10,color="white",style="solid",shape="box"];1923 -> 5416[label="",style="solid", color="burlywood", weight=9]; 5416 -> 2322[label="",style="solid", color="burlywood", weight=3]; 1924[label="Just xwv430 <= xwv44",fontsize=16,color="burlywood",shape="box"];5417[label="xwv44/Nothing",fontsize=10,color="white",style="solid",shape="box"];1924 -> 5417[label="",style="solid", color="burlywood", weight=9]; 5417 -> 2323[label="",style="solid", color="burlywood", weight=3]; 5418[label="xwv44/Just xwv440",fontsize=10,color="white",style="solid",shape="box"];1924 -> 5418[label="",style="solid", color="burlywood", weight=9]; 5418 -> 2324[label="",style="solid", color="burlywood", weight=3]; 1925 -> 2302[label="",style="dashed", color="red", weight=0]; 1925[label="compare xwv43 xwv44 /= GT",fontsize=16,color="magenta"];1925 -> 2308[label="",style="dashed", color="magenta", weight=3]; 1926[label="LT <= xwv44",fontsize=16,color="burlywood",shape="box"];5419[label="xwv44/LT",fontsize=10,color="white",style="solid",shape="box"];1926 -> 5419[label="",style="solid", color="burlywood", weight=9]; 5419 -> 2325[label="",style="solid", color="burlywood", weight=3]; 5420[label="xwv44/EQ",fontsize=10,color="white",style="solid",shape="box"];1926 -> 5420[label="",style="solid", color="burlywood", weight=9]; 5420 -> 2326[label="",style="solid", color="burlywood", weight=3]; 5421[label="xwv44/GT",fontsize=10,color="white",style="solid",shape="box"];1926 -> 5421[label="",style="solid", color="burlywood", weight=9]; 5421 -> 2327[label="",style="solid", color="burlywood", weight=3]; 1927[label="EQ <= xwv44",fontsize=16,color="burlywood",shape="box"];5422[label="xwv44/LT",fontsize=10,color="white",style="solid",shape="box"];1927 -> 5422[label="",style="solid", color="burlywood", weight=9]; 5422 -> 2328[label="",style="solid", color="burlywood", weight=3]; 5423[label="xwv44/EQ",fontsize=10,color="white",style="solid",shape="box"];1927 -> 5423[label="",style="solid", color="burlywood", weight=9]; 5423 -> 2329[label="",style="solid", color="burlywood", weight=3]; 5424[label="xwv44/GT",fontsize=10,color="white",style="solid",shape="box"];1927 -> 5424[label="",style="solid", color="burlywood", weight=9]; 5424 -> 2330[label="",style="solid", color="burlywood", weight=3]; 1928[label="GT <= xwv44",fontsize=16,color="burlywood",shape="box"];5425[label="xwv44/LT",fontsize=10,color="white",style="solid",shape="box"];1928 -> 5425[label="",style="solid", color="burlywood", weight=9]; 5425 -> 2331[label="",style="solid", color="burlywood", weight=3]; 5426[label="xwv44/EQ",fontsize=10,color="white",style="solid",shape="box"];1928 -> 5426[label="",style="solid", color="burlywood", weight=9]; 5426 -> 2332[label="",style="solid", color="burlywood", weight=3]; 5427[label="xwv44/GT",fontsize=10,color="white",style="solid",shape="box"];1928 -> 5427[label="",style="solid", color="burlywood", weight=9]; 5427 -> 2333[label="",style="solid", color="burlywood", weight=3]; 1929 -> 2302[label="",style="dashed", color="red", weight=0]; 1929[label="compare xwv43 xwv44 /= GT",fontsize=16,color="magenta"];1929 -> 2309[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2302[label="",style="dashed", color="red", weight=0]; 1930[label="compare xwv43 xwv44 /= GT",fontsize=16,color="magenta"];1930 -> 2310[label="",style="dashed", color="magenta", weight=3]; 1931[label="compare0 (Left xwv148) (Left xwv149) True",fontsize=16,color="black",shape="box"];1931 -> 2334[label="",style="solid", color="black", weight=3]; 1932[label="xwv50",fontsize=16,color="green",shape="box"];1933[label="xwv51",fontsize=16,color="green",shape="box"];1934[label="xwv50",fontsize=16,color="green",shape="box"];1935[label="xwv51",fontsize=16,color="green",shape="box"];1936[label="xwv50",fontsize=16,color="green",shape="box"];1937[label="xwv51",fontsize=16,color="green",shape="box"];1938[label="xwv50",fontsize=16,color="green",shape="box"];1939[label="xwv51",fontsize=16,color="green",shape="box"];1940[label="xwv50",fontsize=16,color="green",shape="box"];1941[label="xwv51",fontsize=16,color="green",shape="box"];1942[label="xwv50",fontsize=16,color="green",shape="box"];1943[label="xwv51",fontsize=16,color="green",shape="box"];1944[label="xwv50",fontsize=16,color="green",shape="box"];1945[label="xwv51",fontsize=16,color="green",shape="box"];1946[label="xwv50",fontsize=16,color="green",shape="box"];1947[label="xwv51",fontsize=16,color="green",shape="box"];1948[label="xwv50",fontsize=16,color="green",shape="box"];1949[label="xwv51",fontsize=16,color="green",shape="box"];1950[label="xwv50",fontsize=16,color="green",shape="box"];1951[label="xwv51",fontsize=16,color="green",shape="box"];1952[label="xwv50",fontsize=16,color="green",shape="box"];1953[label="xwv51",fontsize=16,color="green",shape="box"];1954[label="xwv50",fontsize=16,color="green",shape="box"];1955[label="xwv51",fontsize=16,color="green",shape="box"];1956[label="xwv50",fontsize=16,color="green",shape="box"];1957[label="xwv51",fontsize=16,color="green",shape="box"];1958[label="xwv50",fontsize=16,color="green",shape="box"];1959[label="xwv51",fontsize=16,color="green",shape="box"];1960[label="compare0 (Right xwv155) (Right xwv156) True",fontsize=16,color="black",shape="box"];1960 -> 2335[label="",style="solid", color="black", weight=3]; 1961 -> 521[label="",style="dashed", color="red", weight=0]; 1961[label="xwv115 == xwv118",fontsize=16,color="magenta"];1961 -> 2336[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2337[label="",style="dashed", color="magenta", weight=3]; 1962 -> 524[label="",style="dashed", color="red", weight=0]; 1962[label="xwv115 == xwv118",fontsize=16,color="magenta"];1962 -> 2338[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2339[label="",style="dashed", color="magenta", weight=3]; 1963 -> 514[label="",style="dashed", color="red", weight=0]; 1963[label="xwv115 == xwv118",fontsize=16,color="magenta"];1963 -> 2340[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2341[label="",style="dashed", color="magenta", weight=3]; 1964 -> 522[label="",style="dashed", color="red", weight=0]; 1964[label="xwv115 == xwv118",fontsize=16,color="magenta"];1964 -> 2342[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2343[label="",style="dashed", color="magenta", weight=3]; 1965 -> 511[label="",style="dashed", color="red", weight=0]; 1965[label="xwv115 == xwv118",fontsize=16,color="magenta"];1965 -> 2344[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2345[label="",style="dashed", color="magenta", weight=3]; 1966 -> 513[label="",style="dashed", color="red", weight=0]; 1966[label="xwv115 == xwv118",fontsize=16,color="magenta"];1966 -> 2346[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2347[label="",style="dashed", color="magenta", weight=3]; 1967 -> 512[label="",style="dashed", color="red", weight=0]; 1967[label="xwv115 == xwv118",fontsize=16,color="magenta"];1967 -> 2348[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2349[label="",style="dashed", color="magenta", weight=3]; 1968 -> 523[label="",style="dashed", color="red", weight=0]; 1968[label="xwv115 == xwv118",fontsize=16,color="magenta"];1968 -> 2350[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2351[label="",style="dashed", color="magenta", weight=3]; 1969 -> 519[label="",style="dashed", color="red", weight=0]; 1969[label="xwv115 == xwv118",fontsize=16,color="magenta"];1969 -> 2352[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2353[label="",style="dashed", color="magenta", weight=3]; 1970 -> 516[label="",style="dashed", color="red", weight=0]; 1970[label="xwv115 == xwv118",fontsize=16,color="magenta"];1970 -> 2354[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2355[label="",style="dashed", color="magenta", weight=3]; 1971 -> 520[label="",style="dashed", color="red", weight=0]; 1971[label="xwv115 == xwv118",fontsize=16,color="magenta"];1971 -> 2356[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2357[label="",style="dashed", color="magenta", weight=3]; 1972 -> 518[label="",style="dashed", color="red", weight=0]; 1972[label="xwv115 == xwv118",fontsize=16,color="magenta"];1972 -> 2358[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2359[label="",style="dashed", color="magenta", weight=3]; 1973 -> 517[label="",style="dashed", color="red", weight=0]; 1973[label="xwv115 == xwv118",fontsize=16,color="magenta"];1973 -> 2360[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2361[label="",style="dashed", color="magenta", weight=3]; 1974 -> 515[label="",style="dashed", color="red", weight=0]; 1974[label="xwv115 == xwv118",fontsize=16,color="magenta"];1974 -> 2362[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2367 -> 1219[label="",style="dashed", color="red", weight=0]; 2367[label="xwv116 == xwv119 && xwv117 <= xwv120",fontsize=16,color="magenta"];2367 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2368[label="xwv116 < xwv119",fontsize=16,color="blue",shape="box"];5428[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5428[label="",style="solid", color="blue", weight=9]; 5428 -> 2373[label="",style="solid", color="blue", weight=3]; 5429[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5429[label="",style="solid", color="blue", weight=9]; 5429 -> 2374[label="",style="solid", color="blue", weight=3]; 5430[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5430[label="",style="solid", color="blue", weight=9]; 5430 -> 2375[label="",style="solid", color="blue", weight=3]; 5431[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5431[label="",style="solid", color="blue", weight=9]; 5431 -> 2376[label="",style="solid", color="blue", weight=3]; 5432[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5432[label="",style="solid", color="blue", weight=9]; 5432 -> 2377[label="",style="solid", color="blue", weight=3]; 5433[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5433[label="",style="solid", color="blue", weight=9]; 5433 -> 2378[label="",style="solid", color="blue", weight=3]; 5434[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5434[label="",style="solid", color="blue", weight=9]; 5434 -> 2379[label="",style="solid", color="blue", weight=3]; 5435[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5435[label="",style="solid", color="blue", weight=9]; 5435 -> 2380[label="",style="solid", color="blue", weight=3]; 5436[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5436[label="",style="solid", color="blue", weight=9]; 5436 -> 2381[label="",style="solid", color="blue", weight=3]; 5437[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5437[label="",style="solid", color="blue", weight=9]; 5437 -> 2382[label="",style="solid", color="blue", weight=3]; 5438[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5438[label="",style="solid", color="blue", weight=9]; 5438 -> 2383[label="",style="solid", color="blue", weight=3]; 5439[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5439[label="",style="solid", color="blue", weight=9]; 5439 -> 2384[label="",style="solid", color="blue", weight=3]; 5440[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5440[label="",style="solid", color="blue", weight=9]; 5440 -> 2385[label="",style="solid", color="blue", weight=3]; 5441[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 5441[label="",style="solid", color="blue", weight=9]; 5441 -> 2386[label="",style="solid", color="blue", weight=3]; 2366[label="xwv230 || xwv231",fontsize=16,color="burlywood",shape="triangle"];5442[label="xwv230/False",fontsize=10,color="white",style="solid",shape="box"];2366 -> 5442[label="",style="solid", color="burlywood", weight=9]; 5442 -> 2387[label="",style="solid", color="burlywood", weight=3]; 5443[label="xwv230/True",fontsize=10,color="white",style="solid",shape="box"];2366 -> 5443[label="",style="solid", color="burlywood", weight=9]; 5443 -> 2388[label="",style="solid", color="burlywood", weight=3]; 1981 -> 518[label="",style="dashed", color="red", weight=0]; 1981[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1981 -> 2389[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2390[label="",style="dashed", color="magenta", weight=3]; 1982 -> 518[label="",style="dashed", color="red", weight=0]; 1982[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1982 -> 2391[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2392[label="",style="dashed", color="magenta", weight=3]; 1983 -> 518[label="",style="dashed", color="red", weight=0]; 1983[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1983 -> 2393[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2394[label="",style="dashed", color="magenta", weight=3]; 1984 -> 518[label="",style="dashed", color="red", weight=0]; 1984[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1984 -> 2395[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2396[label="",style="dashed", color="magenta", weight=3]; 1986 -> 518[label="",style="dashed", color="red", weight=0]; 1986[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1986 -> 2399[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2400[label="",style="dashed", color="magenta", weight=3]; 1987 -> 518[label="",style="dashed", color="red", weight=0]; 1987[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1987 -> 2401[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2402[label="",style="dashed", color="magenta", weight=3]; 1988 -> 518[label="",style="dashed", color="red", weight=0]; 1988[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1988 -> 2403[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2404[label="",style="dashed", color="magenta", weight=3]; 1989 -> 518[label="",style="dashed", color="red", weight=0]; 1989[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1989 -> 2405[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2406[label="",style="dashed", color="magenta", weight=3]; 1990 -> 518[label="",style="dashed", color="red", weight=0]; 1990[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1990 -> 2407[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2408[label="",style="dashed", color="magenta", weight=3]; 1991 -> 518[label="",style="dashed", color="red", weight=0]; 1991[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1991 -> 2409[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2410[label="",style="dashed", color="magenta", weight=3]; 1992 -> 518[label="",style="dashed", color="red", weight=0]; 1992[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1992 -> 2411[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2412[label="",style="dashed", color="magenta", weight=3]; 1993 -> 518[label="",style="dashed", color="red", weight=0]; 1993[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1993 -> 2413[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2414[label="",style="dashed", color="magenta", weight=3]; 1994 -> 518[label="",style="dashed", color="red", weight=0]; 1994[label="compare xwv115 xwv118 == LT",fontsize=16,color="magenta"];1994 -> 2415[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2416[label="",style="dashed", color="magenta", weight=3]; 1995[label="compare1 (xwv187,xwv188,xwv189) (xwv190,xwv191,xwv192) xwv194",fontsize=16,color="burlywood",shape="triangle"];5444[label="xwv194/False",fontsize=10,color="white",style="solid",shape="box"];1995 -> 5444[label="",style="solid", color="burlywood", weight=9]; 5444 -> 2417[label="",style="solid", color="burlywood", weight=3]; 5445[label="xwv194/True",fontsize=10,color="white",style="solid",shape="box"];1995 -> 5445[label="",style="solid", color="burlywood", weight=9]; 5445 -> 2418[label="",style="solid", color="burlywood", weight=3]; 1996 -> 1995[label="",style="dashed", color="red", weight=0]; 1996[label="compare1 (xwv187,xwv188,xwv189) (xwv190,xwv191,xwv192) True",fontsize=16,color="magenta"];1996 -> 2419[label="",style="dashed", color="magenta", weight=3]; 1997 -> 521[label="",style="dashed", color="red", weight=0]; 1997[label="xwv128 == xwv130",fontsize=16,color="magenta"];1997 -> 2420[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2421[label="",style="dashed", color="magenta", weight=3]; 1998 -> 524[label="",style="dashed", color="red", weight=0]; 1998[label="xwv128 == xwv130",fontsize=16,color="magenta"];1998 -> 2422[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2423[label="",style="dashed", color="magenta", weight=3]; 1999 -> 514[label="",style="dashed", color="red", weight=0]; 1999[label="xwv128 == xwv130",fontsize=16,color="magenta"];1999 -> 2424[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2000 -> 522[label="",style="dashed", color="red", weight=0]; 2000[label="xwv128 == xwv130",fontsize=16,color="magenta"];2000 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2001 -> 511[label="",style="dashed", color="red", weight=0]; 2001[label="xwv128 == xwv130",fontsize=16,color="magenta"];2001 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2002 -> 513[label="",style="dashed", color="red", weight=0]; 2002[label="xwv128 == xwv130",fontsize=16,color="magenta"];2002 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2003 -> 512[label="",style="dashed", color="red", weight=0]; 2003[label="xwv128 == xwv130",fontsize=16,color="magenta"];2003 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2004 -> 523[label="",style="dashed", color="red", weight=0]; 2004[label="xwv128 == xwv130",fontsize=16,color="magenta"];2004 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2005 -> 519[label="",style="dashed", color="red", weight=0]; 2005[label="xwv128 == xwv130",fontsize=16,color="magenta"];2005 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2006 -> 516[label="",style="dashed", color="red", weight=0]; 2006[label="xwv128 == xwv130",fontsize=16,color="magenta"];2006 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2007 -> 520[label="",style="dashed", color="red", weight=0]; 2007[label="xwv128 == xwv130",fontsize=16,color="magenta"];2007 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2008 -> 518[label="",style="dashed", color="red", weight=0]; 2008[label="xwv128 == xwv130",fontsize=16,color="magenta"];2008 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2009 -> 517[label="",style="dashed", color="red", weight=0]; 2009[label="xwv128 == xwv130",fontsize=16,color="magenta"];2009 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2010 -> 515[label="",style="dashed", color="red", weight=0]; 2010[label="xwv128 == xwv130",fontsize=16,color="magenta"];2010 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2011 -> 1561[label="",style="dashed", color="red", weight=0]; 2011[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2011 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2012 -> 1562[label="",style="dashed", color="red", weight=0]; 2012[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2012 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2013 -> 1563[label="",style="dashed", color="red", weight=0]; 2013[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2013 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2014 -> 1564[label="",style="dashed", color="red", weight=0]; 2014[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2014 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2015 -> 1565[label="",style="dashed", color="red", weight=0]; 2015[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2015 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2016 -> 1566[label="",style="dashed", color="red", weight=0]; 2016[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2016 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2017 -> 1567[label="",style="dashed", color="red", weight=0]; 2017[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2017 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2017 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2018 -> 1568[label="",style="dashed", color="red", weight=0]; 2018[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2018 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2019 -> 1569[label="",style="dashed", color="red", weight=0]; 2019[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2019 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2019 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2020 -> 1570[label="",style="dashed", color="red", weight=0]; 2020[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2020 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2021 -> 1571[label="",style="dashed", color="red", weight=0]; 2021[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2021 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2021 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2022 -> 1572[label="",style="dashed", color="red", weight=0]; 2022[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2022 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2022 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2023 -> 1573[label="",style="dashed", color="red", weight=0]; 2023[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2023 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2023 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2024 -> 1574[label="",style="dashed", color="red", weight=0]; 2024[label="xwv129 <= xwv131",fontsize=16,color="magenta"];2024 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2024 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2025[label="xwv128",fontsize=16,color="green",shape="box"];2026[label="xwv130",fontsize=16,color="green",shape="box"];2027[label="xwv128",fontsize=16,color="green",shape="box"];2028[label="xwv130",fontsize=16,color="green",shape="box"];2029[label="xwv128",fontsize=16,color="green",shape="box"];2030[label="xwv130",fontsize=16,color="green",shape="box"];2031[label="xwv128",fontsize=16,color="green",shape="box"];2032[label="xwv130",fontsize=16,color="green",shape="box"];2033[label="xwv128",fontsize=16,color="green",shape="box"];2034[label="xwv130",fontsize=16,color="green",shape="box"];2035[label="xwv128",fontsize=16,color="green",shape="box"];2036[label="xwv130",fontsize=16,color="green",shape="box"];2037[label="xwv128",fontsize=16,color="green",shape="box"];2038[label="xwv130",fontsize=16,color="green",shape="box"];2039[label="xwv128",fontsize=16,color="green",shape="box"];2040[label="xwv130",fontsize=16,color="green",shape="box"];2041[label="xwv128",fontsize=16,color="green",shape="box"];2042[label="xwv130",fontsize=16,color="green",shape="box"];2043[label="xwv128",fontsize=16,color="green",shape="box"];2044[label="xwv130",fontsize=16,color="green",shape="box"];2045[label="xwv128",fontsize=16,color="green",shape="box"];2046[label="xwv130",fontsize=16,color="green",shape="box"];2047[label="xwv128",fontsize=16,color="green",shape="box"];2048[label="xwv130",fontsize=16,color="green",shape="box"];2049[label="xwv128",fontsize=16,color="green",shape="box"];2050[label="xwv130",fontsize=16,color="green",shape="box"];2051[label="xwv128",fontsize=16,color="green",shape="box"];2052[label="xwv130",fontsize=16,color="green",shape="box"];2053[label="compare1 (xwv202,xwv203) (xwv204,xwv205) xwv207",fontsize=16,color="burlywood",shape="triangle"];5446[label="xwv207/False",fontsize=10,color="white",style="solid",shape="box"];2053 -> 5446[label="",style="solid", color="burlywood", weight=9]; 5446 -> 2476[label="",style="solid", color="burlywood", weight=3]; 5447[label="xwv207/True",fontsize=10,color="white",style="solid",shape="box"];2053 -> 5447[label="",style="solid", color="burlywood", weight=9]; 5447 -> 2477[label="",style="solid", color="burlywood", weight=3]; 2054 -> 2053[label="",style="dashed", color="red", weight=0]; 2054[label="compare1 (xwv202,xwv203) (xwv204,xwv205) True",fontsize=16,color="magenta"];2054 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2055[label="primMulNat (Succ xwv300000) (Succ xwv40100)",fontsize=16,color="black",shape="box"];2055 -> 2479[label="",style="solid", color="black", weight=3]; 2056[label="primMulNat (Succ xwv300000) Zero",fontsize=16,color="black",shape="box"];2056 -> 2480[label="",style="solid", color="black", weight=3]; 2057[label="primMulNat Zero (Succ xwv40100)",fontsize=16,color="black",shape="box"];2057 -> 2481[label="",style="solid", color="black", weight=3]; 2058[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2058 -> 2482[label="",style="solid", color="black", weight=3]; 2059[label="xwv83",fontsize=16,color="green",shape="box"];2060[label="xwv84",fontsize=16,color="green",shape="box"];2061[label="xwv83",fontsize=16,color="green",shape="box"];2062[label="xwv84",fontsize=16,color="green",shape="box"];2063[label="xwv83",fontsize=16,color="green",shape="box"];2064[label="xwv84",fontsize=16,color="green",shape="box"];2065[label="xwv83",fontsize=16,color="green",shape="box"];2066[label="xwv84",fontsize=16,color="green",shape="box"];2067[label="xwv83",fontsize=16,color="green",shape="box"];2068[label="xwv84",fontsize=16,color="green",shape="box"];2069[label="xwv83",fontsize=16,color="green",shape="box"];2070[label="xwv84",fontsize=16,color="green",shape="box"];2071[label="xwv83",fontsize=16,color="green",shape="box"];2072[label="xwv84",fontsize=16,color="green",shape="box"];2073[label="xwv83",fontsize=16,color="green",shape="box"];2074[label="xwv84",fontsize=16,color="green",shape="box"];2075[label="xwv83",fontsize=16,color="green",shape="box"];2076[label="xwv84",fontsize=16,color="green",shape="box"];2077[label="xwv83",fontsize=16,color="green",shape="box"];2078[label="xwv84",fontsize=16,color="green",shape="box"];2079[label="xwv83",fontsize=16,color="green",shape="box"];2080[label="xwv84",fontsize=16,color="green",shape="box"];2081[label="xwv83",fontsize=16,color="green",shape="box"];2082[label="xwv84",fontsize=16,color="green",shape="box"];2083[label="xwv83",fontsize=16,color="green",shape="box"];2084[label="xwv84",fontsize=16,color="green",shape="box"];2085[label="xwv83",fontsize=16,color="green",shape="box"];2086[label="xwv84",fontsize=16,color="green",shape="box"];2087[label="compare0 (Just xwv170) (Just xwv171) True",fontsize=16,color="black",shape="box"];2087 -> 2483[label="",style="solid", color="black", weight=3]; 2088[label="xwv101",fontsize=16,color="green",shape="box"];2089[label="xwv102",fontsize=16,color="green",shape="box"];4025[label="xwv3590",fontsize=16,color="green",shape="box"];4026[label="xwv3600",fontsize=16,color="green",shape="box"];2872[label="primPlusNat xwv3320 xwv2420",fontsize=16,color="burlywood",shape="triangle"];5448[label="xwv3320/Succ xwv33200",fontsize=10,color="white",style="solid",shape="box"];2872 -> 5448[label="",style="solid", color="burlywood", weight=9]; 5448 -> 3032[label="",style="solid", color="burlywood", weight=3]; 5449[label="xwv3320/Zero",fontsize=10,color="white",style="solid",shape="box"];2872 -> 5449[label="",style="solid", color="burlywood", weight=9]; 5449 -> 3033[label="",style="solid", color="burlywood", weight=3]; 4027[label="primMinusNat (Succ xwv35900) (Succ xwv36000)",fontsize=16,color="black",shape="box"];4027 -> 4052[label="",style="solid", color="black", weight=3]; 4028[label="primMinusNat (Succ xwv35900) Zero",fontsize=16,color="black",shape="box"];4028 -> 4053[label="",style="solid", color="black", weight=3]; 4029[label="primMinusNat Zero (Succ xwv36000)",fontsize=16,color="black",shape="box"];4029 -> 4054[label="",style="solid", color="black", weight=3]; 4030[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];4030 -> 4055[label="",style="solid", color="black", weight=3]; 4031[label="xwv3590",fontsize=16,color="green",shape="box"];4032[label="xwv3610",fontsize=16,color="green",shape="box"];4033 -> 4594[label="",style="dashed", color="red", weight=0]; 4033[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xwv340 xwv341 xwv355 xwv344",fontsize=16,color="magenta"];4033 -> 4600[label="",style="dashed", color="magenta", weight=3]; 4033 -> 4601[label="",style="dashed", color="magenta", weight=3]; 4033 -> 4602[label="",style="dashed", color="magenta", weight=3]; 4033 -> 4603[label="",style="dashed", color="magenta", weight=3]; 4033 -> 4604[label="",style="dashed", color="magenta", weight=3]; 4034[label="error []",fontsize=16,color="red",shape="box"];4035[label="FiniteMap.mkBalBranch6MkBalBranch12 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554)",fontsize=16,color="black",shape="box"];4035 -> 4057[label="",style="solid", color="black", weight=3]; 4036 -> 1496[label="",style="dashed", color="red", weight=0]; 4036[label="FiniteMap.sizeFM xwv3443",fontsize=16,color="magenta"];4036 -> 4058[label="",style="dashed", color="magenta", weight=3]; 4037 -> 389[label="",style="dashed", color="red", weight=0]; 4037[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];4037 -> 4059[label="",style="dashed", color="magenta", weight=3]; 4037 -> 4060[label="",style="dashed", color="magenta", weight=3]; 4038[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 False",fontsize=16,color="black",shape="box"];4038 -> 4061[label="",style="solid", color="black", weight=3]; 4039[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 True",fontsize=16,color="black",shape="box"];4039 -> 4062[label="",style="solid", color="black", weight=3]; 4703 -> 3942[label="",style="dashed", color="red", weight=0]; 4703[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xwv475 xwv473 xwv476)",fontsize=16,color="magenta"];4703 -> 4706[label="",style="dashed", color="magenta", weight=3]; 4703 -> 4707[label="",style="dashed", color="magenta", weight=3]; 4704[label="primPlusInt (Pos xwv4770) (FiniteMap.mkBranchRight_size xwv475 xwv473 xwv476)",fontsize=16,color="black",shape="box"];4704 -> 4708[label="",style="solid", color="black", weight=3]; 4705[label="primPlusInt (Neg xwv4770) (FiniteMap.mkBranchRight_size xwv475 xwv473 xwv476)",fontsize=16,color="black",shape="box"];4705 -> 4709[label="",style="solid", color="black", weight=3]; 2122[label="FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=16,color="green",shape="box"];2123[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];2124[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) otherwise",fontsize=16,color="black",shape="box"];2124 -> 2516[label="",style="solid", color="black", weight=3]; 2125 -> 3792[label="",style="dashed", color="red", weight=0]; 2125[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)) (FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="magenta"];2125 -> 3821[label="",style="dashed", color="magenta", weight=3]; 2125 -> 3822[label="",style="dashed", color="magenta", weight=3]; 2125 -> 3823[label="",style="dashed", color="magenta", weight=3]; 2125 -> 3824[label="",style="dashed", color="magenta", weight=3]; 2126 -> 1529[label="",style="dashed", color="red", weight=0]; 2126[label="primEqNat xwv40000 xwv300000",fontsize=16,color="magenta"];2126 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2127[label="False",fontsize=16,color="green",shape="box"];2128[label="False",fontsize=16,color="green",shape="box"];2129[label="True",fontsize=16,color="green",shape="box"];2130[label="False",fontsize=16,color="green",shape="box"];2131[label="True",fontsize=16,color="green",shape="box"];2132 -> 1529[label="",style="dashed", color="red", weight=0]; 2132[label="primEqNat xwv40000 xwv300000",fontsize=16,color="magenta"];2132 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2132 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2133[label="False",fontsize=16,color="green",shape="box"];2134[label="False",fontsize=16,color="green",shape="box"];2135[label="True",fontsize=16,color="green",shape="box"];2136[label="False",fontsize=16,color="green",shape="box"];2137[label="True",fontsize=16,color="green",shape="box"];2138[label="xwv4000",fontsize=16,color="green",shape="box"];2139[label="xwv30000",fontsize=16,color="green",shape="box"];2140[label="xwv4000",fontsize=16,color="green",shape="box"];2141[label="xwv30000",fontsize=16,color="green",shape="box"];2142[label="xwv4000",fontsize=16,color="green",shape="box"];2143[label="xwv30000",fontsize=16,color="green",shape="box"];2144[label="xwv4000",fontsize=16,color="green",shape="box"];2145[label="xwv30000",fontsize=16,color="green",shape="box"];2146[label="xwv4000",fontsize=16,color="green",shape="box"];2147[label="xwv30000",fontsize=16,color="green",shape="box"];2148[label="xwv4000",fontsize=16,color="green",shape="box"];2149[label="xwv30000",fontsize=16,color="green",shape="box"];2150[label="xwv4000",fontsize=16,color="green",shape="box"];2151[label="xwv30000",fontsize=16,color="green",shape="box"];2152[label="xwv4000",fontsize=16,color="green",shape="box"];2153[label="xwv30000",fontsize=16,color="green",shape="box"];2154[label="xwv4000",fontsize=16,color="green",shape="box"];2155[label="xwv30000",fontsize=16,color="green",shape="box"];2156[label="xwv4000",fontsize=16,color="green",shape="box"];2157[label="xwv30000",fontsize=16,color="green",shape="box"];2158[label="xwv4000",fontsize=16,color="green",shape="box"];2159[label="xwv30000",fontsize=16,color="green",shape="box"];2160[label="xwv4000",fontsize=16,color="green",shape="box"];2161[label="xwv30000",fontsize=16,color="green",shape="box"];2162[label="xwv4000",fontsize=16,color="green",shape="box"];2163[label="xwv30000",fontsize=16,color="green",shape="box"];2164[label="xwv4000",fontsize=16,color="green",shape="box"];2165[label="xwv30000",fontsize=16,color="green",shape="box"];2166 -> 511[label="",style="dashed", color="red", weight=0]; 2166[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2166 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2167 -> 512[label="",style="dashed", color="red", weight=0]; 2167[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2167 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2168 -> 513[label="",style="dashed", color="red", weight=0]; 2168[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2168 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2169 -> 514[label="",style="dashed", color="red", weight=0]; 2169[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2169 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2170 -> 515[label="",style="dashed", color="red", weight=0]; 2170[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2170 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2171 -> 516[label="",style="dashed", color="red", weight=0]; 2171[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2171 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2172 -> 517[label="",style="dashed", color="red", weight=0]; 2172[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2172 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2173 -> 518[label="",style="dashed", color="red", weight=0]; 2173[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2173 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2173 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2174 -> 519[label="",style="dashed", color="red", weight=0]; 2174[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2174 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2175 -> 520[label="",style="dashed", color="red", weight=0]; 2175[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2175 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2175 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2176 -> 521[label="",style="dashed", color="red", weight=0]; 2176[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2176 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2177 -> 522[label="",style="dashed", color="red", weight=0]; 2177[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2177 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2178 -> 523[label="",style="dashed", color="red", weight=0]; 2178[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2178 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2179 -> 524[label="",style="dashed", color="red", weight=0]; 2179[label="xwv4001 == xwv30001",fontsize=16,color="magenta"];2179 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2180 -> 511[label="",style="dashed", color="red", weight=0]; 2180[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2180 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2181 -> 512[label="",style="dashed", color="red", weight=0]; 2181[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2181 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2182 -> 513[label="",style="dashed", color="red", weight=0]; 2182[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2182 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2182 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2183 -> 514[label="",style="dashed", color="red", weight=0]; 2183[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2183 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2184 -> 515[label="",style="dashed", color="red", weight=0]; 2184[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2184 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2185 -> 516[label="",style="dashed", color="red", weight=0]; 2185[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2185 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2186 -> 517[label="",style="dashed", color="red", weight=0]; 2186[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2186 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2187 -> 518[label="",style="dashed", color="red", weight=0]; 2187[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2187 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2188 -> 519[label="",style="dashed", color="red", weight=0]; 2188[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2188 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2188 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2189 -> 520[label="",style="dashed", color="red", weight=0]; 2189[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2189 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2190 -> 521[label="",style="dashed", color="red", weight=0]; 2190[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2190 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2191 -> 522[label="",style="dashed", color="red", weight=0]; 2191[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2191 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2192 -> 523[label="",style="dashed", color="red", weight=0]; 2192[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2192 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2193 -> 524[label="",style="dashed", color="red", weight=0]; 2193[label="xwv4002 == xwv30002",fontsize=16,color="magenta"];2193 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2194[label="xwv30001",fontsize=16,color="green",shape="box"];2195[label="xwv4000",fontsize=16,color="green",shape="box"];2196[label="xwv30000",fontsize=16,color="green",shape="box"];2197[label="xwv4001",fontsize=16,color="green",shape="box"];2198[label="primEqNat (Succ xwv40000) (Succ xwv300000)",fontsize=16,color="black",shape="box"];2198 -> 2578[label="",style="solid", color="black", weight=3]; 2199[label="primEqNat (Succ xwv40000) Zero",fontsize=16,color="black",shape="box"];2199 -> 2579[label="",style="solid", color="black", weight=3]; 2200[label="primEqNat Zero (Succ xwv300000)",fontsize=16,color="black",shape="box"];2200 -> 2580[label="",style="solid", color="black", weight=3]; 2201[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2201 -> 2581[label="",style="solid", color="black", weight=3]; 2202[label="xwv4000",fontsize=16,color="green",shape="box"];2203[label="xwv30000",fontsize=16,color="green",shape="box"];2204[label="xwv4000",fontsize=16,color="green",shape="box"];2205[label="xwv30000",fontsize=16,color="green",shape="box"];2206[label="xwv4001",fontsize=16,color="green",shape="box"];2207[label="xwv30001",fontsize=16,color="green",shape="box"];2208[label="xwv4001",fontsize=16,color="green",shape="box"];2209[label="xwv30001",fontsize=16,color="green",shape="box"];2210[label="xwv30001",fontsize=16,color="green",shape="box"];2211[label="xwv4000",fontsize=16,color="green",shape="box"];2212[label="xwv30000",fontsize=16,color="green",shape="box"];2213[label="xwv4001",fontsize=16,color="green",shape="box"];2214[label="xwv4000",fontsize=16,color="green",shape="box"];2215[label="xwv30000",fontsize=16,color="green",shape="box"];2216[label="xwv4000",fontsize=16,color="green",shape="box"];2217[label="xwv30000",fontsize=16,color="green",shape="box"];2218[label="xwv4000",fontsize=16,color="green",shape="box"];2219[label="xwv30000",fontsize=16,color="green",shape="box"];2220[label="xwv4000",fontsize=16,color="green",shape="box"];2221[label="xwv30000",fontsize=16,color="green",shape="box"];2222[label="xwv4000",fontsize=16,color="green",shape="box"];2223[label="xwv30000",fontsize=16,color="green",shape="box"];2224[label="xwv4000",fontsize=16,color="green",shape="box"];2225[label="xwv30000",fontsize=16,color="green",shape="box"];2226[label="xwv4000",fontsize=16,color="green",shape="box"];2227[label="xwv30000",fontsize=16,color="green",shape="box"];2228[label="xwv4000",fontsize=16,color="green",shape="box"];2229[label="xwv30000",fontsize=16,color="green",shape="box"];2230[label="xwv4000",fontsize=16,color="green",shape="box"];2231[label="xwv30000",fontsize=16,color="green",shape="box"];2232[label="xwv4000",fontsize=16,color="green",shape="box"];2233[label="xwv30000",fontsize=16,color="green",shape="box"];2234[label="xwv4000",fontsize=16,color="green",shape="box"];2235[label="xwv30000",fontsize=16,color="green",shape="box"];2236[label="xwv4000",fontsize=16,color="green",shape="box"];2237[label="xwv30000",fontsize=16,color="green",shape="box"];2238[label="xwv4000",fontsize=16,color="green",shape="box"];2239[label="xwv30000",fontsize=16,color="green",shape="box"];2240[label="xwv4000",fontsize=16,color="green",shape="box"];2241[label="xwv30000",fontsize=16,color="green",shape="box"];2242[label="xwv4001",fontsize=16,color="green",shape="box"];2243[label="xwv30001",fontsize=16,color="green",shape="box"];2244[label="xwv4001",fontsize=16,color="green",shape="box"];2245[label="xwv30001",fontsize=16,color="green",shape="box"];2246[label="xwv4001",fontsize=16,color="green",shape="box"];2247[label="xwv30001",fontsize=16,color="green",shape="box"];2248[label="xwv4001",fontsize=16,color="green",shape="box"];2249[label="xwv30001",fontsize=16,color="green",shape="box"];2250[label="xwv4001",fontsize=16,color="green",shape="box"];2251[label="xwv30001",fontsize=16,color="green",shape="box"];2252[label="xwv4001",fontsize=16,color="green",shape="box"];2253[label="xwv30001",fontsize=16,color="green",shape="box"];2254[label="xwv4001",fontsize=16,color="green",shape="box"];2255[label="xwv30001",fontsize=16,color="green",shape="box"];2256[label="xwv4001",fontsize=16,color="green",shape="box"];2257[label="xwv30001",fontsize=16,color="green",shape="box"];2258[label="xwv4001",fontsize=16,color="green",shape="box"];2259[label="xwv30001",fontsize=16,color="green",shape="box"];2260[label="xwv4001",fontsize=16,color="green",shape="box"];2261[label="xwv30001",fontsize=16,color="green",shape="box"];2262[label="xwv4001",fontsize=16,color="green",shape="box"];2263[label="xwv30001",fontsize=16,color="green",shape="box"];2264[label="xwv4001",fontsize=16,color="green",shape="box"];2265[label="xwv30001",fontsize=16,color="green",shape="box"];2266[label="xwv4001",fontsize=16,color="green",shape="box"];2267[label="xwv30001",fontsize=16,color="green",shape="box"];2268[label="xwv4001",fontsize=16,color="green",shape="box"];2269[label="xwv30001",fontsize=16,color="green",shape="box"];2270[label="xwv4000",fontsize=16,color="green",shape="box"];2271[label="xwv30000",fontsize=16,color="green",shape="box"];2272[label="xwv4000",fontsize=16,color="green",shape="box"];2273[label="xwv30000",fontsize=16,color="green",shape="box"];2274[label="xwv4000",fontsize=16,color="green",shape="box"];2275[label="xwv30000",fontsize=16,color="green",shape="box"];2276[label="xwv4000",fontsize=16,color="green",shape="box"];2277[label="xwv30000",fontsize=16,color="green",shape="box"];2278[label="xwv4000",fontsize=16,color="green",shape="box"];2279[label="xwv30000",fontsize=16,color="green",shape="box"];2280[label="xwv4000",fontsize=16,color="green",shape="box"];2281[label="xwv30000",fontsize=16,color="green",shape="box"];2282[label="xwv4000",fontsize=16,color="green",shape="box"];2283[label="xwv30000",fontsize=16,color="green",shape="box"];2284[label="xwv4000",fontsize=16,color="green",shape="box"];2285[label="xwv30000",fontsize=16,color="green",shape="box"];2286[label="xwv4000",fontsize=16,color="green",shape="box"];2287[label="xwv30000",fontsize=16,color="green",shape="box"];2288[label="xwv4000",fontsize=16,color="green",shape="box"];2289[label="xwv30000",fontsize=16,color="green",shape="box"];2290[label="xwv4000",fontsize=16,color="green",shape="box"];2291[label="xwv30000",fontsize=16,color="green",shape="box"];2292[label="xwv4000",fontsize=16,color="green",shape="box"];2293[label="xwv30000",fontsize=16,color="green",shape="box"];2294[label="xwv4000",fontsize=16,color="green",shape="box"];2295[label="xwv30000",fontsize=16,color="green",shape="box"];2296[label="xwv4000",fontsize=16,color="green",shape="box"];2297[label="xwv30000",fontsize=16,color="green",shape="box"];2298[label="Left xwv430 <= Left xwv440",fontsize=16,color="black",shape="box"];2298 -> 2582[label="",style="solid", color="black", weight=3]; 2299[label="Left xwv430 <= Right xwv440",fontsize=16,color="black",shape="box"];2299 -> 2583[label="",style="solid", color="black", weight=3]; 2300[label="Right xwv430 <= Left xwv440",fontsize=16,color="black",shape="box"];2300 -> 2584[label="",style="solid", color="black", weight=3]; 2301[label="Right xwv430 <= Right xwv440",fontsize=16,color="black",shape="box"];2301 -> 2585[label="",style="solid", color="black", weight=3]; 2303 -> 149[label="",style="dashed", color="red", weight=0]; 2303[label="compare xwv43 xwv44",fontsize=16,color="magenta"];2303 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2302[label="xwv226 /= GT",fontsize=16,color="black",shape="triangle"];2302 -> 2588[label="",style="solid", color="black", weight=3]; 2304 -> 150[label="",style="dashed", color="red", weight=0]; 2304[label="compare xwv43 xwv44",fontsize=16,color="magenta"];2304 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2305 -> 151[label="",style="dashed", color="red", weight=0]; 2305[label="compare xwv43 xwv44",fontsize=16,color="magenta"];2305 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2306 -> 152[label="",style="dashed", color="red", weight=0]; 2306[label="compare xwv43 xwv44",fontsize=16,color="magenta"];2306 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2315[label="(xwv430,xwv431,xwv432) <= (xwv440,xwv441,xwv442)",fontsize=16,color="black",shape="box"];2315 -> 2595[label="",style="solid", color="black", weight=3]; 2316[label="False <= False",fontsize=16,color="black",shape="box"];2316 -> 2596[label="",style="solid", color="black", weight=3]; 2317[label="False <= True",fontsize=16,color="black",shape="box"];2317 -> 2597[label="",style="solid", color="black", weight=3]; 2318[label="True <= False",fontsize=16,color="black",shape="box"];2318 -> 2598[label="",style="solid", color="black", weight=3]; 2319[label="True <= True",fontsize=16,color="black",shape="box"];2319 -> 2599[label="",style="solid", color="black", weight=3]; 2320[label="(xwv430,xwv431) <= (xwv440,xwv441)",fontsize=16,color="black",shape="box"];2320 -> 2600[label="",style="solid", color="black", weight=3]; 2307 -> 156[label="",style="dashed", color="red", weight=0]; 2307[label="compare xwv43 xwv44",fontsize=16,color="magenta"];2307 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2321[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2321 -> 2603[label="",style="solid", color="black", weight=3]; 2322[label="Nothing <= Just xwv440",fontsize=16,color="black",shape="box"];2322 -> 2604[label="",style="solid", color="black", weight=3]; 2323[label="Just xwv430 <= Nothing",fontsize=16,color="black",shape="box"];2323 -> 2605[label="",style="solid", color="black", weight=3]; 2324[label="Just xwv430 <= Just xwv440",fontsize=16,color="black",shape="box"];2324 -> 2606[label="",style="solid", color="black", weight=3]; 2308 -> 158[label="",style="dashed", color="red", weight=0]; 2308[label="compare xwv43 xwv44",fontsize=16,color="magenta"];2308 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2325[label="LT <= LT",fontsize=16,color="black",shape="box"];2325 -> 2609[label="",style="solid", color="black", weight=3]; 2326[label="LT <= EQ",fontsize=16,color="black",shape="box"];2326 -> 2610[label="",style="solid", color="black", weight=3]; 2327[label="LT <= GT",fontsize=16,color="black",shape="box"];2327 -> 2611[label="",style="solid", color="black", weight=3]; 2328[label="EQ <= LT",fontsize=16,color="black",shape="box"];2328 -> 2612[label="",style="solid", color="black", weight=3]; 2329[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2329 -> 2613[label="",style="solid", color="black", weight=3]; 2330[label="EQ <= GT",fontsize=16,color="black",shape="box"];2330 -> 2614[label="",style="solid", color="black", weight=3]; 2331[label="GT <= LT",fontsize=16,color="black",shape="box"];2331 -> 2615[label="",style="solid", color="black", weight=3]; 2332[label="GT <= EQ",fontsize=16,color="black",shape="box"];2332 -> 2616[label="",style="solid", color="black", weight=3]; 2333[label="GT <= GT",fontsize=16,color="black",shape="box"];2333 -> 2617[label="",style="solid", color="black", weight=3]; 2309 -> 160[label="",style="dashed", color="red", weight=0]; 2309[label="compare xwv43 xwv44",fontsize=16,color="magenta"];2309 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2310 -> 161[label="",style="dashed", color="red", weight=0]; 2310[label="compare xwv43 xwv44",fontsize=16,color="magenta"];2310 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2334[label="GT",fontsize=16,color="green",shape="box"];2335[label="GT",fontsize=16,color="green",shape="box"];2336[label="xwv115",fontsize=16,color="green",shape="box"];2337[label="xwv118",fontsize=16,color="green",shape="box"];2338[label="xwv115",fontsize=16,color="green",shape="box"];2339[label="xwv118",fontsize=16,color="green",shape="box"];2340[label="xwv115",fontsize=16,color="green",shape="box"];2341[label="xwv118",fontsize=16,color="green",shape="box"];2342[label="xwv115",fontsize=16,color="green",shape="box"];2343[label="xwv118",fontsize=16,color="green",shape="box"];2344[label="xwv115",fontsize=16,color="green",shape="box"];2345[label="xwv118",fontsize=16,color="green",shape="box"];2346[label="xwv115",fontsize=16,color="green",shape="box"];2347[label="xwv118",fontsize=16,color="green",shape="box"];2348[label="xwv115",fontsize=16,color="green",shape="box"];2349[label="xwv118",fontsize=16,color="green",shape="box"];2350[label="xwv115",fontsize=16,color="green",shape="box"];2351[label="xwv118",fontsize=16,color="green",shape="box"];2352[label="xwv115",fontsize=16,color="green",shape="box"];2353[label="xwv118",fontsize=16,color="green",shape="box"];2354[label="xwv115",fontsize=16,color="green",shape="box"];2355[label="xwv118",fontsize=16,color="green",shape="box"];2356[label="xwv115",fontsize=16,color="green",shape="box"];2357[label="xwv118",fontsize=16,color="green",shape="box"];2358[label="xwv115",fontsize=16,color="green",shape="box"];2359[label="xwv118",fontsize=16,color="green",shape="box"];2360[label="xwv115",fontsize=16,color="green",shape="box"];2361[label="xwv118",fontsize=16,color="green",shape="box"];2362[label="xwv115",fontsize=16,color="green",shape="box"];2363[label="xwv118",fontsize=16,color="green",shape="box"];2371[label="xwv116 == xwv119",fontsize=16,color="blue",shape="box"];5450[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5450[label="",style="solid", color="blue", weight=9]; 5450 -> 2622[label="",style="solid", color="blue", weight=3]; 5451[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5451[label="",style="solid", color="blue", weight=9]; 5451 -> 2623[label="",style="solid", color="blue", weight=3]; 5452[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5452[label="",style="solid", color="blue", weight=9]; 5452 -> 2624[label="",style="solid", color="blue", weight=3]; 5453[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5453[label="",style="solid", color="blue", weight=9]; 5453 -> 2625[label="",style="solid", color="blue", weight=3]; 5454[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5454[label="",style="solid", color="blue", weight=9]; 5454 -> 2626[label="",style="solid", color="blue", weight=3]; 5455[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5455[label="",style="solid", color="blue", weight=9]; 5455 -> 2627[label="",style="solid", color="blue", weight=3]; 5456[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5456[label="",style="solid", color="blue", weight=9]; 5456 -> 2628[label="",style="solid", color="blue", weight=3]; 5457[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5457[label="",style="solid", color="blue", weight=9]; 5457 -> 2629[label="",style="solid", color="blue", weight=3]; 5458[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5458[label="",style="solid", color="blue", weight=9]; 5458 -> 2630[label="",style="solid", color="blue", weight=3]; 5459[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5459[label="",style="solid", color="blue", weight=9]; 5459 -> 2631[label="",style="solid", color="blue", weight=3]; 5460[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5460[label="",style="solid", color="blue", weight=9]; 5460 -> 2632[label="",style="solid", color="blue", weight=3]; 5461[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5461[label="",style="solid", color="blue", weight=9]; 5461 -> 2633[label="",style="solid", color="blue", weight=3]; 5462[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5462[label="",style="solid", color="blue", weight=9]; 5462 -> 2634[label="",style="solid", color="blue", weight=3]; 5463[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 5463[label="",style="solid", color="blue", weight=9]; 5463 -> 2635[label="",style="solid", color="blue", weight=3]; 2372[label="xwv117 <= xwv120",fontsize=16,color="blue",shape="box"];5464[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5464[label="",style="solid", color="blue", weight=9]; 5464 -> 2636[label="",style="solid", color="blue", weight=3]; 5465[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5465[label="",style="solid", color="blue", weight=9]; 5465 -> 2637[label="",style="solid", color="blue", weight=3]; 5466[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5466[label="",style="solid", color="blue", weight=9]; 5466 -> 2638[label="",style="solid", color="blue", weight=3]; 5467[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5467[label="",style="solid", color="blue", weight=9]; 5467 -> 2639[label="",style="solid", color="blue", weight=3]; 5468[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5468[label="",style="solid", color="blue", weight=9]; 5468 -> 2640[label="",style="solid", color="blue", weight=3]; 5469[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5469[label="",style="solid", color="blue", weight=9]; 5469 -> 2641[label="",style="solid", color="blue", weight=3]; 5470[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5470[label="",style="solid", color="blue", weight=9]; 5470 -> 2642[label="",style="solid", color="blue", weight=3]; 5471[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5471[label="",style="solid", color="blue", weight=9]; 5471 -> 2643[label="",style="solid", color="blue", weight=3]; 5472[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5472[label="",style="solid", color="blue", weight=9]; 5472 -> 2644[label="",style="solid", color="blue", weight=3]; 5473[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5473[label="",style="solid", color="blue", weight=9]; 5473 -> 2645[label="",style="solid", color="blue", weight=3]; 5474[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5474[label="",style="solid", color="blue", weight=9]; 5474 -> 2646[label="",style="solid", color="blue", weight=3]; 5475[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5475[label="",style="solid", color="blue", weight=9]; 5475 -> 2647[label="",style="solid", color="blue", weight=3]; 5476[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5476[label="",style="solid", color="blue", weight=9]; 5476 -> 2648[label="",style="solid", color="blue", weight=3]; 5477[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5477[label="",style="solid", color="blue", weight=9]; 5477 -> 2649[label="",style="solid", color="blue", weight=3]; 2373 -> 1614[label="",style="dashed", color="red", weight=0]; 2373[label="xwv116 < xwv119",fontsize=16,color="magenta"];2373 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2373 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2374 -> 1615[label="",style="dashed", color="red", weight=0]; 2374[label="xwv116 < xwv119",fontsize=16,color="magenta"];2374 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2374 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2375 -> 1616[label="",style="dashed", color="red", weight=0]; 2375[label="xwv116 < xwv119",fontsize=16,color="magenta"];2375 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2375 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2376 -> 1617[label="",style="dashed", color="red", weight=0]; 2376[label="xwv116 < xwv119",fontsize=16,color="magenta"];2376 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2376 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2377 -> 1618[label="",style="dashed", color="red", weight=0]; 2377[label="xwv116 < xwv119",fontsize=16,color="magenta"];2377 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2377 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2378 -> 1619[label="",style="dashed", color="red", weight=0]; 2378[label="xwv116 < xwv119",fontsize=16,color="magenta"];2378 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2378 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2379 -> 1620[label="",style="dashed", color="red", weight=0]; 2379[label="xwv116 < xwv119",fontsize=16,color="magenta"];2379 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2379 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2380 -> 1621[label="",style="dashed", color="red", weight=0]; 2380[label="xwv116 < xwv119",fontsize=16,color="magenta"];2380 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2380 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2381 -> 1622[label="",style="dashed", color="red", weight=0]; 2381[label="xwv116 < xwv119",fontsize=16,color="magenta"];2381 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2381 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2382 -> 1623[label="",style="dashed", color="red", weight=0]; 2382[label="xwv116 < xwv119",fontsize=16,color="magenta"];2382 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2383 -> 1624[label="",style="dashed", color="red", weight=0]; 2383[label="xwv116 < xwv119",fontsize=16,color="magenta"];2383 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2384 -> 1625[label="",style="dashed", color="red", weight=0]; 2384[label="xwv116 < xwv119",fontsize=16,color="magenta"];2384 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2384 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2385 -> 1626[label="",style="dashed", color="red", weight=0]; 2385[label="xwv116 < xwv119",fontsize=16,color="magenta"];2385 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2385 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2386 -> 1627[label="",style="dashed", color="red", weight=0]; 2386[label="xwv116 < xwv119",fontsize=16,color="magenta"];2386 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2386 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2387[label="False || xwv231",fontsize=16,color="black",shape="box"];2387 -> 2678[label="",style="solid", color="black", weight=3]; 2388[label="True || xwv231",fontsize=16,color="black",shape="box"];2388 -> 2679[label="",style="solid", color="black", weight=3]; 2389 -> 148[label="",style="dashed", color="red", weight=0]; 2389[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2389 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2390[label="LT",fontsize=16,color="green",shape="box"];2391 -> 149[label="",style="dashed", color="red", weight=0]; 2391[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2391 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2391 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2392[label="LT",fontsize=16,color="green",shape="box"];2393 -> 150[label="",style="dashed", color="red", weight=0]; 2393[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2393 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2393 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2394[label="LT",fontsize=16,color="green",shape="box"];2395 -> 151[label="",style="dashed", color="red", weight=0]; 2395[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2395 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2395 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2396[label="LT",fontsize=16,color="green",shape="box"];2399 -> 153[label="",style="dashed", color="red", weight=0]; 2399[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2399 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2399 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2400[label="LT",fontsize=16,color="green",shape="box"];2401 -> 154[label="",style="dashed", color="red", weight=0]; 2401[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2401 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2401 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2402[label="LT",fontsize=16,color="green",shape="box"];2403 -> 155[label="",style="dashed", color="red", weight=0]; 2403[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2403 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2403 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2404[label="LT",fontsize=16,color="green",shape="box"];2405 -> 156[label="",style="dashed", color="red", weight=0]; 2405[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2405 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2405 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2406[label="LT",fontsize=16,color="green",shape="box"];2407 -> 157[label="",style="dashed", color="red", weight=0]; 2407[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2407 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2407 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2408[label="LT",fontsize=16,color="green",shape="box"];2409 -> 158[label="",style="dashed", color="red", weight=0]; 2409[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2409 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2409 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2410[label="LT",fontsize=16,color="green",shape="box"];2411 -> 159[label="",style="dashed", color="red", weight=0]; 2411[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2411 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2411 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2412[label="LT",fontsize=16,color="green",shape="box"];2413 -> 160[label="",style="dashed", color="red", weight=0]; 2413[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2413 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2413 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2414[label="LT",fontsize=16,color="green",shape="box"];2415 -> 161[label="",style="dashed", color="red", weight=0]; 2415[label="compare xwv115 xwv118",fontsize=16,color="magenta"];2415 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2416[label="LT",fontsize=16,color="green",shape="box"];2417[label="compare1 (xwv187,xwv188,xwv189) (xwv190,xwv191,xwv192) False",fontsize=16,color="black",shape="box"];2417 -> 2708[label="",style="solid", color="black", weight=3]; 2418[label="compare1 (xwv187,xwv188,xwv189) (xwv190,xwv191,xwv192) True",fontsize=16,color="black",shape="box"];2418 -> 2709[label="",style="solid", color="black", weight=3]; 2419[label="True",fontsize=16,color="green",shape="box"];2420[label="xwv128",fontsize=16,color="green",shape="box"];2421[label="xwv130",fontsize=16,color="green",shape="box"];2422[label="xwv128",fontsize=16,color="green",shape="box"];2423[label="xwv130",fontsize=16,color="green",shape="box"];2424[label="xwv128",fontsize=16,color="green",shape="box"];2425[label="xwv130",fontsize=16,color="green",shape="box"];2426[label="xwv128",fontsize=16,color="green",shape="box"];2427[label="xwv130",fontsize=16,color="green",shape="box"];2428[label="xwv128",fontsize=16,color="green",shape="box"];2429[label="xwv130",fontsize=16,color="green",shape="box"];2430[label="xwv128",fontsize=16,color="green",shape="box"];2431[label="xwv130",fontsize=16,color="green",shape="box"];2432[label="xwv128",fontsize=16,color="green",shape="box"];2433[label="xwv130",fontsize=16,color="green",shape="box"];2434[label="xwv128",fontsize=16,color="green",shape="box"];2435[label="xwv130",fontsize=16,color="green",shape="box"];2436[label="xwv128",fontsize=16,color="green",shape="box"];2437[label="xwv130",fontsize=16,color="green",shape="box"];2438[label="xwv128",fontsize=16,color="green",shape="box"];2439[label="xwv130",fontsize=16,color="green",shape="box"];2440[label="xwv128",fontsize=16,color="green",shape="box"];2441[label="xwv130",fontsize=16,color="green",shape="box"];2442[label="xwv128",fontsize=16,color="green",shape="box"];2443[label="xwv130",fontsize=16,color="green",shape="box"];2444[label="xwv128",fontsize=16,color="green",shape="box"];2445[label="xwv130",fontsize=16,color="green",shape="box"];2446[label="xwv128",fontsize=16,color="green",shape="box"];2447[label="xwv130",fontsize=16,color="green",shape="box"];2448[label="xwv129",fontsize=16,color="green",shape="box"];2449[label="xwv131",fontsize=16,color="green",shape="box"];2450[label="xwv129",fontsize=16,color="green",shape="box"];2451[label="xwv131",fontsize=16,color="green",shape="box"];2452[label="xwv129",fontsize=16,color="green",shape="box"];2453[label="xwv131",fontsize=16,color="green",shape="box"];2454[label="xwv129",fontsize=16,color="green",shape="box"];2455[label="xwv131",fontsize=16,color="green",shape="box"];2456[label="xwv129",fontsize=16,color="green",shape="box"];2457[label="xwv131",fontsize=16,color="green",shape="box"];2458[label="xwv129",fontsize=16,color="green",shape="box"];2459[label="xwv131",fontsize=16,color="green",shape="box"];2460[label="xwv129",fontsize=16,color="green",shape="box"];2461[label="xwv131",fontsize=16,color="green",shape="box"];2462[label="xwv129",fontsize=16,color="green",shape="box"];2463[label="xwv131",fontsize=16,color="green",shape="box"];2464[label="xwv129",fontsize=16,color="green",shape="box"];2465[label="xwv131",fontsize=16,color="green",shape="box"];2466[label="xwv129",fontsize=16,color="green",shape="box"];2467[label="xwv131",fontsize=16,color="green",shape="box"];2468[label="xwv129",fontsize=16,color="green",shape="box"];2469[label="xwv131",fontsize=16,color="green",shape="box"];2470[label="xwv129",fontsize=16,color="green",shape="box"];2471[label="xwv131",fontsize=16,color="green",shape="box"];2472[label="xwv129",fontsize=16,color="green",shape="box"];2473[label="xwv131",fontsize=16,color="green",shape="box"];2474[label="xwv129",fontsize=16,color="green",shape="box"];2475[label="xwv131",fontsize=16,color="green",shape="box"];2476[label="compare1 (xwv202,xwv203) (xwv204,xwv205) False",fontsize=16,color="black",shape="box"];2476 -> 2710[label="",style="solid", color="black", weight=3]; 2477[label="compare1 (xwv202,xwv203) (xwv204,xwv205) True",fontsize=16,color="black",shape="box"];2477 -> 2711[label="",style="solid", color="black", weight=3]; 2478[label="True",fontsize=16,color="green",shape="box"];2479 -> 2712[label="",style="dashed", color="red", weight=0]; 2479[label="primPlusNat (primMulNat xwv300000 (Succ xwv40100)) (Succ xwv40100)",fontsize=16,color="magenta"];2479 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2480[label="Zero",fontsize=16,color="green",shape="box"];2481[label="Zero",fontsize=16,color="green",shape="box"];2482[label="Zero",fontsize=16,color="green",shape="box"];2483[label="GT",fontsize=16,color="green",shape="box"];3032[label="primPlusNat (Succ xwv33200) xwv2420",fontsize=16,color="burlywood",shape="box"];5478[label="xwv2420/Succ xwv24200",fontsize=10,color="white",style="solid",shape="box"];3032 -> 5478[label="",style="solid", color="burlywood", weight=9]; 5478 -> 3167[label="",style="solid", color="burlywood", weight=3]; 5479[label="xwv2420/Zero",fontsize=10,color="white",style="solid",shape="box"];3032 -> 5479[label="",style="solid", color="burlywood", weight=9]; 5479 -> 3168[label="",style="solid", color="burlywood", weight=3]; 3033[label="primPlusNat Zero xwv2420",fontsize=16,color="burlywood",shape="box"];5480[label="xwv2420/Succ xwv24200",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5480[label="",style="solid", color="burlywood", weight=9]; 5480 -> 3169[label="",style="solid", color="burlywood", weight=3]; 5481[label="xwv2420/Zero",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5481[label="",style="solid", color="burlywood", weight=9]; 5481 -> 3170[label="",style="solid", color="burlywood", weight=3]; 4052 -> 3979[label="",style="dashed", color="red", weight=0]; 4052[label="primMinusNat xwv35900 xwv36000",fontsize=16,color="magenta"];4052 -> 4080[label="",style="dashed", color="magenta", weight=3]; 4052 -> 4081[label="",style="dashed", color="magenta", weight=3]; 4053[label="Pos (Succ xwv35900)",fontsize=16,color="green",shape="box"];4054[label="Neg (Succ xwv36000)",fontsize=16,color="green",shape="box"];4055[label="Pos Zero",fontsize=16,color="green",shape="box"];4600[label="xwv340",fontsize=16,color="green",shape="box"];4601[label="xwv344",fontsize=16,color="green",shape="box"];4602[label="xwv355",fontsize=16,color="green",shape="box"];4603[label="Succ Zero",fontsize=16,color="green",shape="box"];4604[label="xwv341",fontsize=16,color="green",shape="box"];4057 -> 4082[label="",style="dashed", color="red", weight=0]; 4057[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) xwv344 xwv3550 xwv3551 xwv3552 xwv3553 xwv3554 (FiniteMap.sizeFM xwv3554 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3553)",fontsize=16,color="magenta"];4057 -> 4083[label="",style="dashed", color="magenta", weight=3]; 4058[label="xwv3443",fontsize=16,color="green",shape="box"];4059 -> 1496[label="",style="dashed", color="red", weight=0]; 4059[label="FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];4059 -> 4084[label="",style="dashed", color="magenta", weight=3]; 4060[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4061[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 otherwise",fontsize=16,color="black",shape="box"];4061 -> 4085[label="",style="solid", color="black", weight=3]; 4062[label="FiniteMap.mkBalBranch6Single_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];4062 -> 4086[label="",style="solid", color="black", weight=3]; 4706[label="FiniteMap.mkBranchLeft_size xwv475 xwv473 xwv476",fontsize=16,color="black",shape="box"];4706 -> 4710[label="",style="solid", color="black", weight=3]; 4707[label="Succ Zero",fontsize=16,color="green",shape="box"];4708 -> 3942[label="",style="dashed", color="red", weight=0]; 4708[label="primPlusInt (Pos xwv4770) (FiniteMap.sizeFM xwv476)",fontsize=16,color="magenta"];4708 -> 4711[label="",style="dashed", color="magenta", weight=3]; 4708 -> 4712[label="",style="dashed", color="magenta", weight=3]; 4709 -> 3944[label="",style="dashed", color="red", weight=0]; 4709[label="primPlusInt (Neg xwv4770) (FiniteMap.sizeFM xwv476)",fontsize=16,color="magenta"];4709 -> 4713[label="",style="dashed", color="magenta", weight=3]; 4709 -> 4714[label="",style="dashed", color="magenta", weight=3]; 2516[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) True",fontsize=16,color="black",shape="box"];2516 -> 2741[label="",style="solid", color="black", weight=3]; 3821[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="burlywood",shape="triangle"];5482[label="xwv343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3821 -> 5482[label="",style="solid", color="burlywood", weight=9]; 5482 -> 3841[label="",style="solid", color="burlywood", weight=3]; 5483[label="xwv343/FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434",fontsize=10,color="white",style="solid",shape="box"];3821 -> 5483[label="",style="solid", color="burlywood", weight=9]; 5483 -> 3842[label="",style="solid", color="burlywood", weight=3]; 3822[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];3823[label="FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3823 -> 3843[label="",style="solid", color="black", weight=3]; 3824[label="FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3824 -> 3844[label="",style="solid", color="black", weight=3]; 2518[label="xwv300000",fontsize=16,color="green",shape="box"];2519[label="xwv40000",fontsize=16,color="green",shape="box"];2520[label="xwv300000",fontsize=16,color="green",shape="box"];2521[label="xwv40000",fontsize=16,color="green",shape="box"];2522[label="xwv4001",fontsize=16,color="green",shape="box"];2523[label="xwv30001",fontsize=16,color="green",shape="box"];2524[label="xwv4001",fontsize=16,color="green",shape="box"];2525[label="xwv30001",fontsize=16,color="green",shape="box"];2526[label="xwv4001",fontsize=16,color="green",shape="box"];2527[label="xwv30001",fontsize=16,color="green",shape="box"];2528[label="xwv4001",fontsize=16,color="green",shape="box"];2529[label="xwv30001",fontsize=16,color="green",shape="box"];2530[label="xwv4001",fontsize=16,color="green",shape="box"];2531[label="xwv30001",fontsize=16,color="green",shape="box"];2532[label="xwv4001",fontsize=16,color="green",shape="box"];2533[label="xwv30001",fontsize=16,color="green",shape="box"];2534[label="xwv4001",fontsize=16,color="green",shape="box"];2535[label="xwv30001",fontsize=16,color="green",shape="box"];2536[label="xwv4001",fontsize=16,color="green",shape="box"];2537[label="xwv30001",fontsize=16,color="green",shape="box"];2538[label="xwv4001",fontsize=16,color="green",shape="box"];2539[label="xwv30001",fontsize=16,color="green",shape="box"];2540[label="xwv4001",fontsize=16,color="green",shape="box"];2541[label="xwv30001",fontsize=16,color="green",shape="box"];2542[label="xwv4001",fontsize=16,color="green",shape="box"];2543[label="xwv30001",fontsize=16,color="green",shape="box"];2544[label="xwv4001",fontsize=16,color="green",shape="box"];2545[label="xwv30001",fontsize=16,color="green",shape="box"];2546[label="xwv4001",fontsize=16,color="green",shape="box"];2547[label="xwv30001",fontsize=16,color="green",shape="box"];2548[label="xwv4001",fontsize=16,color="green",shape="box"];2549[label="xwv30001",fontsize=16,color="green",shape="box"];2550[label="xwv4002",fontsize=16,color="green",shape="box"];2551[label="xwv30002",fontsize=16,color="green",shape="box"];2552[label="xwv4002",fontsize=16,color="green",shape="box"];2553[label="xwv30002",fontsize=16,color="green",shape="box"];2554[label="xwv4002",fontsize=16,color="green",shape="box"];2555[label="xwv30002",fontsize=16,color="green",shape="box"];2556[label="xwv4002",fontsize=16,color="green",shape="box"];2557[label="xwv30002",fontsize=16,color="green",shape="box"];2558[label="xwv4002",fontsize=16,color="green",shape="box"];2559[label="xwv30002",fontsize=16,color="green",shape="box"];2560[label="xwv4002",fontsize=16,color="green",shape="box"];2561[label="xwv30002",fontsize=16,color="green",shape="box"];2562[label="xwv4002",fontsize=16,color="green",shape="box"];2563[label="xwv30002",fontsize=16,color="green",shape="box"];2564[label="xwv4002",fontsize=16,color="green",shape="box"];2565[label="xwv30002",fontsize=16,color="green",shape="box"];2566[label="xwv4002",fontsize=16,color="green",shape="box"];2567[label="xwv30002",fontsize=16,color="green",shape="box"];2568[label="xwv4002",fontsize=16,color="green",shape="box"];2569[label="xwv30002",fontsize=16,color="green",shape="box"];2570[label="xwv4002",fontsize=16,color="green",shape="box"];2571[label="xwv30002",fontsize=16,color="green",shape="box"];2572[label="xwv4002",fontsize=16,color="green",shape="box"];2573[label="xwv30002",fontsize=16,color="green",shape="box"];2574[label="xwv4002",fontsize=16,color="green",shape="box"];2575[label="xwv30002",fontsize=16,color="green",shape="box"];2576[label="xwv4002",fontsize=16,color="green",shape="box"];2577[label="xwv30002",fontsize=16,color="green",shape="box"];2578 -> 1529[label="",style="dashed", color="red", weight=0]; 2578[label="primEqNat xwv40000 xwv300000",fontsize=16,color="magenta"];2578 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2579[label="False",fontsize=16,color="green",shape="box"];2580[label="False",fontsize=16,color="green",shape="box"];2581[label="True",fontsize=16,color="green",shape="box"];2582[label="xwv430 <= xwv440",fontsize=16,color="blue",shape="box"];5484[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5484[label="",style="solid", color="blue", weight=9]; 5484 -> 2745[label="",style="solid", color="blue", weight=3]; 5485[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5485[label="",style="solid", color="blue", weight=9]; 5485 -> 2746[label="",style="solid", color="blue", weight=3]; 5486[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5486[label="",style="solid", color="blue", weight=9]; 5486 -> 2747[label="",style="solid", color="blue", weight=3]; 5487[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5487[label="",style="solid", color="blue", weight=9]; 5487 -> 2748[label="",style="solid", color="blue", weight=3]; 5488[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5488[label="",style="solid", color="blue", weight=9]; 5488 -> 2749[label="",style="solid", color="blue", weight=3]; 5489[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5489[label="",style="solid", color="blue", weight=9]; 5489 -> 2750[label="",style="solid", color="blue", weight=3]; 5490[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5490[label="",style="solid", color="blue", weight=9]; 5490 -> 2751[label="",style="solid", color="blue", weight=3]; 5491[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5491[label="",style="solid", color="blue", weight=9]; 5491 -> 2752[label="",style="solid", color="blue", weight=3]; 5492[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5492[label="",style="solid", color="blue", weight=9]; 5492 -> 2753[label="",style="solid", color="blue", weight=3]; 5493[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5493[label="",style="solid", color="blue", weight=9]; 5493 -> 2754[label="",style="solid", color="blue", weight=3]; 5494[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5494[label="",style="solid", color="blue", weight=9]; 5494 -> 2755[label="",style="solid", color="blue", weight=3]; 5495[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5495[label="",style="solid", color="blue", weight=9]; 5495 -> 2756[label="",style="solid", color="blue", weight=3]; 5496[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5496[label="",style="solid", color="blue", weight=9]; 5496 -> 2757[label="",style="solid", color="blue", weight=3]; 5497[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2582 -> 5497[label="",style="solid", color="blue", weight=9]; 5497 -> 2758[label="",style="solid", color="blue", weight=3]; 2583[label="True",fontsize=16,color="green",shape="box"];2584[label="False",fontsize=16,color="green",shape="box"];2585[label="xwv430 <= xwv440",fontsize=16,color="blue",shape="box"];5498[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5498[label="",style="solid", color="blue", weight=9]; 5498 -> 2759[label="",style="solid", color="blue", weight=3]; 5499[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5499[label="",style="solid", color="blue", weight=9]; 5499 -> 2760[label="",style="solid", color="blue", weight=3]; 5500[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5500[label="",style="solid", color="blue", weight=9]; 5500 -> 2761[label="",style="solid", color="blue", weight=3]; 5501[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5501[label="",style="solid", color="blue", weight=9]; 5501 -> 2762[label="",style="solid", color="blue", weight=3]; 5502[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5502[label="",style="solid", color="blue", weight=9]; 5502 -> 2763[label="",style="solid", color="blue", weight=3]; 5503[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5503[label="",style="solid", color="blue", weight=9]; 5503 -> 2764[label="",style="solid", color="blue", weight=3]; 5504[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5504[label="",style="solid", color="blue", weight=9]; 5504 -> 2765[label="",style="solid", color="blue", weight=3]; 5505[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5505[label="",style="solid", color="blue", weight=9]; 5505 -> 2766[label="",style="solid", color="blue", weight=3]; 5506[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5506[label="",style="solid", color="blue", weight=9]; 5506 -> 2767[label="",style="solid", color="blue", weight=3]; 5507[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5507[label="",style="solid", color="blue", weight=9]; 5507 -> 2768[label="",style="solid", color="blue", weight=3]; 5508[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5508[label="",style="solid", color="blue", weight=9]; 5508 -> 2769[label="",style="solid", color="blue", weight=3]; 5509[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5509[label="",style="solid", color="blue", weight=9]; 5509 -> 2770[label="",style="solid", color="blue", weight=3]; 5510[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5510[label="",style="solid", color="blue", weight=9]; 5510 -> 2771[label="",style="solid", color="blue", weight=3]; 5511[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5511[label="",style="solid", color="blue", weight=9]; 5511 -> 2772[label="",style="solid", color="blue", weight=3]; 2586[label="xwv44",fontsize=16,color="green",shape="box"];2587[label="xwv43",fontsize=16,color="green",shape="box"];2588 -> 2773[label="",style="dashed", color="red", weight=0]; 2588[label="not (xwv226 == GT)",fontsize=16,color="magenta"];2588 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2589[label="xwv44",fontsize=16,color="green",shape="box"];2590[label="xwv43",fontsize=16,color="green",shape="box"];2591[label="xwv44",fontsize=16,color="green",shape="box"];2592[label="xwv43",fontsize=16,color="green",shape="box"];2593[label="xwv44",fontsize=16,color="green",shape="box"];2594[label="xwv43",fontsize=16,color="green",shape="box"];2595 -> 2366[label="",style="dashed", color="red", weight=0]; 2595[label="xwv430 < xwv440 || xwv430 == xwv440 && (xwv431 < xwv441 || xwv431 == xwv441 && xwv432 <= xwv442)",fontsize=16,color="magenta"];2595 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2595 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2596[label="True",fontsize=16,color="green",shape="box"];2597[label="True",fontsize=16,color="green",shape="box"];2598[label="False",fontsize=16,color="green",shape="box"];2599[label="True",fontsize=16,color="green",shape="box"];2600 -> 2366[label="",style="dashed", color="red", weight=0]; 2600[label="xwv430 < xwv440 || xwv430 == xwv440 && xwv431 <= xwv441",fontsize=16,color="magenta"];2600 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2601[label="xwv44",fontsize=16,color="green",shape="box"];2602[label="xwv43",fontsize=16,color="green",shape="box"];2603[label="True",fontsize=16,color="green",shape="box"];2604[label="True",fontsize=16,color="green",shape="box"];2605[label="False",fontsize=16,color="green",shape="box"];2606[label="xwv430 <= xwv440",fontsize=16,color="blue",shape="box"];5512[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5512[label="",style="solid", color="blue", weight=9]; 5512 -> 2779[label="",style="solid", color="blue", weight=3]; 5513[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5513[label="",style="solid", color="blue", weight=9]; 5513 -> 2780[label="",style="solid", color="blue", weight=3]; 5514[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5514[label="",style="solid", color="blue", weight=9]; 5514 -> 2781[label="",style="solid", color="blue", weight=3]; 5515[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5515[label="",style="solid", color="blue", weight=9]; 5515 -> 2782[label="",style="solid", color="blue", weight=3]; 5516[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5516[label="",style="solid", color="blue", weight=9]; 5516 -> 2783[label="",style="solid", color="blue", weight=3]; 5517[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5517[label="",style="solid", color="blue", weight=9]; 5517 -> 2784[label="",style="solid", color="blue", weight=3]; 5518[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5518[label="",style="solid", color="blue", weight=9]; 5518 -> 2785[label="",style="solid", color="blue", weight=3]; 5519[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5519[label="",style="solid", color="blue", weight=9]; 5519 -> 2786[label="",style="solid", color="blue", weight=3]; 5520[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5520[label="",style="solid", color="blue", weight=9]; 5520 -> 2787[label="",style="solid", color="blue", weight=3]; 5521[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5521[label="",style="solid", color="blue", weight=9]; 5521 -> 2788[label="",style="solid", color="blue", weight=3]; 5522[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5522[label="",style="solid", color="blue", weight=9]; 5522 -> 2789[label="",style="solid", color="blue", weight=3]; 5523[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5523[label="",style="solid", color="blue", weight=9]; 5523 -> 2790[label="",style="solid", color="blue", weight=3]; 5524[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5524[label="",style="solid", color="blue", weight=9]; 5524 -> 2791[label="",style="solid", color="blue", weight=3]; 5525[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5525[label="",style="solid", color="blue", weight=9]; 5525 -> 2792[label="",style="solid", color="blue", weight=3]; 2607[label="xwv44",fontsize=16,color="green",shape="box"];2608[label="xwv43",fontsize=16,color="green",shape="box"];2609[label="True",fontsize=16,color="green",shape="box"];2610[label="True",fontsize=16,color="green",shape="box"];2611[label="True",fontsize=16,color="green",shape="box"];2612[label="False",fontsize=16,color="green",shape="box"];2613[label="True",fontsize=16,color="green",shape="box"];2614[label="True",fontsize=16,color="green",shape="box"];2615[label="False",fontsize=16,color="green",shape="box"];2616[label="False",fontsize=16,color="green",shape="box"];2617[label="True",fontsize=16,color="green",shape="box"];2618[label="xwv44",fontsize=16,color="green",shape="box"];2619[label="xwv43",fontsize=16,color="green",shape="box"];2620[label="xwv44",fontsize=16,color="green",shape="box"];2621[label="xwv43",fontsize=16,color="green",shape="box"];2622 -> 521[label="",style="dashed", color="red", weight=0]; 2622[label="xwv116 == xwv119",fontsize=16,color="magenta"];2622 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2623 -> 524[label="",style="dashed", color="red", weight=0]; 2623[label="xwv116 == xwv119",fontsize=16,color="magenta"];2623 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2624 -> 514[label="",style="dashed", color="red", weight=0]; 2624[label="xwv116 == xwv119",fontsize=16,color="magenta"];2624 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2625 -> 522[label="",style="dashed", color="red", weight=0]; 2625[label="xwv116 == xwv119",fontsize=16,color="magenta"];2625 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2626 -> 511[label="",style="dashed", color="red", weight=0]; 2626[label="xwv116 == xwv119",fontsize=16,color="magenta"];2626 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2627 -> 513[label="",style="dashed", color="red", weight=0]; 2627[label="xwv116 == xwv119",fontsize=16,color="magenta"];2627 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2628 -> 512[label="",style="dashed", color="red", weight=0]; 2628[label="xwv116 == xwv119",fontsize=16,color="magenta"];2628 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2629 -> 523[label="",style="dashed", color="red", weight=0]; 2629[label="xwv116 == xwv119",fontsize=16,color="magenta"];2629 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2630 -> 519[label="",style="dashed", color="red", weight=0]; 2630[label="xwv116 == xwv119",fontsize=16,color="magenta"];2630 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2631 -> 516[label="",style="dashed", color="red", weight=0]; 2631[label="xwv116 == xwv119",fontsize=16,color="magenta"];2631 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2632 -> 520[label="",style="dashed", color="red", weight=0]; 2632[label="xwv116 == xwv119",fontsize=16,color="magenta"];2632 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2633 -> 518[label="",style="dashed", color="red", weight=0]; 2633[label="xwv116 == xwv119",fontsize=16,color="magenta"];2633 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2634 -> 517[label="",style="dashed", color="red", weight=0]; 2634[label="xwv116 == xwv119",fontsize=16,color="magenta"];2634 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2635 -> 515[label="",style="dashed", color="red", weight=0]; 2635[label="xwv116 == xwv119",fontsize=16,color="magenta"];2635 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2636 -> 1561[label="",style="dashed", color="red", weight=0]; 2636[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2636 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2637 -> 1562[label="",style="dashed", color="red", weight=0]; 2637[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2637 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2638 -> 1563[label="",style="dashed", color="red", weight=0]; 2638[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2638 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2639 -> 1564[label="",style="dashed", color="red", weight=0]; 2639[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2639 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2640 -> 1565[label="",style="dashed", color="red", weight=0]; 2640[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2640 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2641 -> 1566[label="",style="dashed", color="red", weight=0]; 2641[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2641 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2642 -> 1567[label="",style="dashed", color="red", weight=0]; 2642[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2642 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2643 -> 1568[label="",style="dashed", color="red", weight=0]; 2643[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2643 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2643 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2644 -> 1569[label="",style="dashed", color="red", weight=0]; 2644[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2644 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2644 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2645 -> 1570[label="",style="dashed", color="red", weight=0]; 2645[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2645 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2645 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2646 -> 1571[label="",style="dashed", color="red", weight=0]; 2646[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2646 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2646 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2647 -> 1572[label="",style="dashed", color="red", weight=0]; 2647[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2647 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2647 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2648 -> 1573[label="",style="dashed", color="red", weight=0]; 2648[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2648 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2648 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2649 -> 1574[label="",style="dashed", color="red", weight=0]; 2649[label="xwv117 <= xwv120",fontsize=16,color="magenta"];2649 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2649 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2650[label="xwv116",fontsize=16,color="green",shape="box"];2651[label="xwv119",fontsize=16,color="green",shape="box"];2652[label="xwv116",fontsize=16,color="green",shape="box"];2653[label="xwv119",fontsize=16,color="green",shape="box"];2654[label="xwv116",fontsize=16,color="green",shape="box"];2655[label="xwv119",fontsize=16,color="green",shape="box"];2656[label="xwv116",fontsize=16,color="green",shape="box"];2657[label="xwv119",fontsize=16,color="green",shape="box"];2658[label="xwv116",fontsize=16,color="green",shape="box"];2659[label="xwv119",fontsize=16,color="green",shape="box"];2660[label="xwv116",fontsize=16,color="green",shape="box"];2661[label="xwv119",fontsize=16,color="green",shape="box"];2662[label="xwv116",fontsize=16,color="green",shape="box"];2663[label="xwv119",fontsize=16,color="green",shape="box"];2664[label="xwv116",fontsize=16,color="green",shape="box"];2665[label="xwv119",fontsize=16,color="green",shape="box"];2666[label="xwv116",fontsize=16,color="green",shape="box"];2667[label="xwv119",fontsize=16,color="green",shape="box"];2668[label="xwv116",fontsize=16,color="green",shape="box"];2669[label="xwv119",fontsize=16,color="green",shape="box"];2670[label="xwv116",fontsize=16,color="green",shape="box"];2671[label="xwv119",fontsize=16,color="green",shape="box"];2672[label="xwv116",fontsize=16,color="green",shape="box"];2673[label="xwv119",fontsize=16,color="green",shape="box"];2674[label="xwv116",fontsize=16,color="green",shape="box"];2675[label="xwv119",fontsize=16,color="green",shape="box"];2676[label="xwv116",fontsize=16,color="green",shape="box"];2677[label="xwv119",fontsize=16,color="green",shape="box"];2678[label="xwv231",fontsize=16,color="green",shape="box"];2679[label="True",fontsize=16,color="green",shape="box"];2680[label="xwv118",fontsize=16,color="green",shape="box"];2681[label="xwv115",fontsize=16,color="green",shape="box"];2682[label="xwv118",fontsize=16,color="green",shape="box"];2683[label="xwv115",fontsize=16,color="green",shape="box"];2684[label="xwv118",fontsize=16,color="green",shape="box"];2685[label="xwv115",fontsize=16,color="green",shape="box"];2686[label="xwv118",fontsize=16,color="green",shape="box"];2687[label="xwv115",fontsize=16,color="green",shape="box"];2690[label="xwv118",fontsize=16,color="green",shape="box"];2691[label="xwv115",fontsize=16,color="green",shape="box"];2692[label="xwv118",fontsize=16,color="green",shape="box"];2693[label="xwv115",fontsize=16,color="green",shape="box"];2694[label="xwv118",fontsize=16,color="green",shape="box"];2695[label="xwv115",fontsize=16,color="green",shape="box"];2696[label="xwv118",fontsize=16,color="green",shape="box"];2697[label="xwv115",fontsize=16,color="green",shape="box"];2698[label="xwv118",fontsize=16,color="green",shape="box"];2699[label="xwv115",fontsize=16,color="green",shape="box"];2700[label="xwv118",fontsize=16,color="green",shape="box"];2701[label="xwv115",fontsize=16,color="green",shape="box"];2702[label="xwv118",fontsize=16,color="green",shape="box"];2703[label="xwv115",fontsize=16,color="green",shape="box"];2704[label="xwv118",fontsize=16,color="green",shape="box"];2705[label="xwv115",fontsize=16,color="green",shape="box"];2706[label="xwv118",fontsize=16,color="green",shape="box"];2707[label="xwv115",fontsize=16,color="green",shape="box"];2708[label="compare0 (xwv187,xwv188,xwv189) (xwv190,xwv191,xwv192) otherwise",fontsize=16,color="black",shape="box"];2708 -> 2849[label="",style="solid", color="black", weight=3]; 2709[label="LT",fontsize=16,color="green",shape="box"];2710[label="compare0 (xwv202,xwv203) (xwv204,xwv205) otherwise",fontsize=16,color="black",shape="box"];2710 -> 2850[label="",style="solid", color="black", weight=3]; 2711[label="LT",fontsize=16,color="green",shape="box"];2713 -> 1406[label="",style="dashed", color="red", weight=0]; 2713[label="primMulNat xwv300000 (Succ xwv40100)",fontsize=16,color="magenta"];2713 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2712[label="primPlusNat xwv237 (Succ xwv40100)",fontsize=16,color="burlywood",shape="triangle"];5526[label="xwv237/Succ xwv2370",fontsize=10,color="white",style="solid",shape="box"];2712 -> 5526[label="",style="solid", color="burlywood", weight=9]; 5526 -> 2853[label="",style="solid", color="burlywood", weight=3]; 5527[label="xwv237/Zero",fontsize=10,color="white",style="solid",shape="box"];2712 -> 5527[label="",style="solid", color="burlywood", weight=9]; 5527 -> 2854[label="",style="solid", color="burlywood", weight=3]; 3167[label="primPlusNat (Succ xwv33200) (Succ xwv24200)",fontsize=16,color="black",shape="box"];3167 -> 3296[label="",style="solid", color="black", weight=3]; 3168[label="primPlusNat (Succ xwv33200) Zero",fontsize=16,color="black",shape="box"];3168 -> 3297[label="",style="solid", color="black", weight=3]; 3169[label="primPlusNat Zero (Succ xwv24200)",fontsize=16,color="black",shape="box"];3169 -> 3298[label="",style="solid", color="black", weight=3]; 3170[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3170 -> 3299[label="",style="solid", color="black", weight=3]; 4080[label="xwv35900",fontsize=16,color="green",shape="box"];4081[label="xwv36000",fontsize=16,color="green",shape="box"];4083 -> 1618[label="",style="dashed", color="red", weight=0]; 4083[label="FiniteMap.sizeFM xwv3554 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3553",fontsize=16,color="magenta"];4083 -> 4090[label="",style="dashed", color="magenta", weight=3]; 4083 -> 4091[label="",style="dashed", color="magenta", weight=3]; 4082[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) xwv344 xwv3550 xwv3551 xwv3552 xwv3553 xwv3554 xwv372",fontsize=16,color="burlywood",shape="triangle"];5528[label="xwv372/False",fontsize=10,color="white",style="solid",shape="box"];4082 -> 5528[label="",style="solid", color="burlywood", weight=9]; 5528 -> 4092[label="",style="solid", color="burlywood", weight=3]; 5529[label="xwv372/True",fontsize=10,color="white",style="solid",shape="box"];4082 -> 5529[label="",style="solid", color="burlywood", weight=9]; 5529 -> 4093[label="",style="solid", color="burlywood", weight=3]; 4084[label="xwv3444",fontsize=16,color="green",shape="box"];4085[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 True",fontsize=16,color="black",shape="box"];4085 -> 4102[label="",style="solid", color="black", weight=3]; 4086 -> 4594[label="",style="dashed", color="red", weight=0]; 4086[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xwv3440 xwv3441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv340 xwv341 xwv355 xwv3443) xwv3444",fontsize=16,color="magenta"];4086 -> 4605[label="",style="dashed", color="magenta", weight=3]; 4086 -> 4606[label="",style="dashed", color="magenta", weight=3]; 4086 -> 4607[label="",style="dashed", color="magenta", weight=3]; 4086 -> 4608[label="",style="dashed", color="magenta", weight=3]; 4086 -> 4609[label="",style="dashed", color="magenta", weight=3]; 4710[label="FiniteMap.sizeFM xwv475",fontsize=16,color="burlywood",shape="triangle"];5530[label="xwv475/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4710 -> 5530[label="",style="solid", color="burlywood", weight=9]; 5530 -> 4715[label="",style="solid", color="burlywood", weight=3]; 5531[label="xwv475/FiniteMap.Branch xwv4750 xwv4751 xwv4752 xwv4753 xwv4754",fontsize=10,color="white",style="solid",shape="box"];4710 -> 5531[label="",style="solid", color="burlywood", weight=9]; 5531 -> 4716[label="",style="solid", color="burlywood", weight=3]; 4711 -> 4710[label="",style="dashed", color="red", weight=0]; 4711[label="FiniteMap.sizeFM xwv476",fontsize=16,color="magenta"];4711 -> 4717[label="",style="dashed", color="magenta", weight=3]; 4712[label="xwv4770",fontsize=16,color="green",shape="box"];4713[label="xwv4770",fontsize=16,color="green",shape="box"];4714 -> 4710[label="",style="dashed", color="red", weight=0]; 4714[label="FiniteMap.sizeFM xwv476",fontsize=16,color="magenta"];4714 -> 4718[label="",style="dashed", color="magenta", weight=3]; 2741 -> 3792[label="",style="dashed", color="red", weight=0]; 2741[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)) (FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)) (FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="magenta"];2741 -> 3825[label="",style="dashed", color="magenta", weight=3]; 2741 -> 3826[label="",style="dashed", color="magenta", weight=3]; 2741 -> 3827[label="",style="dashed", color="magenta", weight=3]; 2741 -> 3828[label="",style="dashed", color="magenta", weight=3]; 3841[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 FiniteMap.EmptyFM xwv344)",fontsize=16,color="black",shape="box"];3841 -> 3850[label="",style="solid", color="black", weight=3]; 3842[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434) xwv344)",fontsize=16,color="black",shape="box"];3842 -> 3851[label="",style="solid", color="black", weight=3]; 3843[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="black",shape="box"];3843 -> 3852[label="",style="solid", color="black", weight=3]; 3844[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="black",shape="box"];3844 -> 3853[label="",style="solid", color="black", weight=3]; 2743[label="xwv300000",fontsize=16,color="green",shape="box"];2744[label="xwv40000",fontsize=16,color="green",shape="box"];2745 -> 1561[label="",style="dashed", color="red", weight=0]; 2745[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2745 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2746 -> 1562[label="",style="dashed", color="red", weight=0]; 2746[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2746 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2747 -> 1563[label="",style="dashed", color="red", weight=0]; 2747[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2747 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2748 -> 1564[label="",style="dashed", color="red", weight=0]; 2748[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2748 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2749 -> 1565[label="",style="dashed", color="red", weight=0]; 2749[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2749 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2750 -> 1566[label="",style="dashed", color="red", weight=0]; 2750[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2750 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2751 -> 1567[label="",style="dashed", color="red", weight=0]; 2751[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2751 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2752 -> 1568[label="",style="dashed", color="red", weight=0]; 2752[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2752 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2753 -> 1569[label="",style="dashed", color="red", weight=0]; 2753[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2753 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2754 -> 1570[label="",style="dashed", color="red", weight=0]; 2754[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2754 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2755 -> 1571[label="",style="dashed", color="red", weight=0]; 2755[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2755 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2756 -> 1572[label="",style="dashed", color="red", weight=0]; 2756[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2756 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2757 -> 1573[label="",style="dashed", color="red", weight=0]; 2757[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2757 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2758 -> 1574[label="",style="dashed", color="red", weight=0]; 2758[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2758 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2759 -> 1561[label="",style="dashed", color="red", weight=0]; 2759[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2759 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2760 -> 1562[label="",style="dashed", color="red", weight=0]; 2760[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2760 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2761 -> 1563[label="",style="dashed", color="red", weight=0]; 2761[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2761 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2761 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2762 -> 1564[label="",style="dashed", color="red", weight=0]; 2762[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2762 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2763 -> 1565[label="",style="dashed", color="red", weight=0]; 2763[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2763 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2764 -> 1566[label="",style="dashed", color="red", weight=0]; 2764[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2764 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2765 -> 1567[label="",style="dashed", color="red", weight=0]; 2765[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2765 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2766 -> 1568[label="",style="dashed", color="red", weight=0]; 2766[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2766 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2767 -> 1569[label="",style="dashed", color="red", weight=0]; 2767[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2767 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2767 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2768 -> 1570[label="",style="dashed", color="red", weight=0]; 2768[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2768 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2768 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2769 -> 1571[label="",style="dashed", color="red", weight=0]; 2769[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2769 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2769 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2770 -> 1572[label="",style="dashed", color="red", weight=0]; 2770[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2770 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2770 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2771 -> 1573[label="",style="dashed", color="red", weight=0]; 2771[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2771 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2771 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2772 -> 1574[label="",style="dashed", color="red", weight=0]; 2772[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2772 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2772 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2774 -> 518[label="",style="dashed", color="red", weight=0]; 2774[label="xwv226 == GT",fontsize=16,color="magenta"];2774 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2774 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2773[label="not xwv238",fontsize=16,color="burlywood",shape="triangle"];5532[label="xwv238/False",fontsize=10,color="white",style="solid",shape="box"];2773 -> 5532[label="",style="solid", color="burlywood", weight=9]; 5532 -> 2951[label="",style="solid", color="burlywood", weight=3]; 5533[label="xwv238/True",fontsize=10,color="white",style="solid",shape="box"];2773 -> 5533[label="",style="solid", color="burlywood", weight=9]; 5533 -> 2952[label="",style="solid", color="burlywood", weight=3]; 2775 -> 1219[label="",style="dashed", color="red", weight=0]; 2775[label="xwv430 == xwv440 && (xwv431 < xwv441 || xwv431 == xwv441 && xwv432 <= xwv442)",fontsize=16,color="magenta"];2775 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2776[label="xwv430 < xwv440",fontsize=16,color="blue",shape="box"];5534[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5534[label="",style="solid", color="blue", weight=9]; 5534 -> 2955[label="",style="solid", color="blue", weight=3]; 5535[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5535[label="",style="solid", color="blue", weight=9]; 5535 -> 2956[label="",style="solid", color="blue", weight=3]; 5536[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5536[label="",style="solid", color="blue", weight=9]; 5536 -> 2957[label="",style="solid", color="blue", weight=3]; 5537[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5537[label="",style="solid", color="blue", weight=9]; 5537 -> 2958[label="",style="solid", color="blue", weight=3]; 5538[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5538[label="",style="solid", color="blue", weight=9]; 5538 -> 2959[label="",style="solid", color="blue", weight=3]; 5539[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5539[label="",style="solid", color="blue", weight=9]; 5539 -> 2960[label="",style="solid", color="blue", weight=3]; 5540[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5540[label="",style="solid", color="blue", weight=9]; 5540 -> 2961[label="",style="solid", color="blue", weight=3]; 5541[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5541[label="",style="solid", color="blue", weight=9]; 5541 -> 2962[label="",style="solid", color="blue", weight=3]; 5542[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5542[label="",style="solid", color="blue", weight=9]; 5542 -> 2963[label="",style="solid", color="blue", weight=3]; 5543[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5543[label="",style="solid", color="blue", weight=9]; 5543 -> 2964[label="",style="solid", color="blue", weight=3]; 5544[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5544[label="",style="solid", color="blue", weight=9]; 5544 -> 2965[label="",style="solid", color="blue", weight=3]; 5545[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5545[label="",style="solid", color="blue", weight=9]; 5545 -> 2966[label="",style="solid", color="blue", weight=3]; 5546[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5546[label="",style="solid", color="blue", weight=9]; 5546 -> 2967[label="",style="solid", color="blue", weight=3]; 5547[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5547[label="",style="solid", color="blue", weight=9]; 5547 -> 2968[label="",style="solid", color="blue", weight=3]; 2777 -> 1219[label="",style="dashed", color="red", weight=0]; 2777[label="xwv430 == xwv440 && xwv431 <= xwv441",fontsize=16,color="magenta"];2777 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2778[label="xwv430 < xwv440",fontsize=16,color="blue",shape="box"];5548[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5548[label="",style="solid", color="blue", weight=9]; 5548 -> 2971[label="",style="solid", color="blue", weight=3]; 5549[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5549[label="",style="solid", color="blue", weight=9]; 5549 -> 2972[label="",style="solid", color="blue", weight=3]; 5550[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5550[label="",style="solid", color="blue", weight=9]; 5550 -> 2973[label="",style="solid", color="blue", weight=3]; 5551[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5551[label="",style="solid", color="blue", weight=9]; 5551 -> 2974[label="",style="solid", color="blue", weight=3]; 5552[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5552[label="",style="solid", color="blue", weight=9]; 5552 -> 2975[label="",style="solid", color="blue", weight=3]; 5553[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5553[label="",style="solid", color="blue", weight=9]; 5553 -> 2976[label="",style="solid", color="blue", weight=3]; 5554[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5554[label="",style="solid", color="blue", weight=9]; 5554 -> 2977[label="",style="solid", color="blue", weight=3]; 5555[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5555[label="",style="solid", color="blue", weight=9]; 5555 -> 2978[label="",style="solid", color="blue", weight=3]; 5556[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5556[label="",style="solid", color="blue", weight=9]; 5556 -> 2979[label="",style="solid", color="blue", weight=3]; 5557[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5557[label="",style="solid", color="blue", weight=9]; 5557 -> 2980[label="",style="solid", color="blue", weight=3]; 5558[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5558[label="",style="solid", color="blue", weight=9]; 5558 -> 2981[label="",style="solid", color="blue", weight=3]; 5559[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5559[label="",style="solid", color="blue", weight=9]; 5559 -> 2982[label="",style="solid", color="blue", weight=3]; 5560[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5560[label="",style="solid", color="blue", weight=9]; 5560 -> 2983[label="",style="solid", color="blue", weight=3]; 5561[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5561[label="",style="solid", color="blue", weight=9]; 5561 -> 2984[label="",style="solid", color="blue", weight=3]; 2779 -> 1561[label="",style="dashed", color="red", weight=0]; 2779[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2779 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2780 -> 1562[label="",style="dashed", color="red", weight=0]; 2780[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2780 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2781 -> 1563[label="",style="dashed", color="red", weight=0]; 2781[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2781 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2782 -> 1564[label="",style="dashed", color="red", weight=0]; 2782[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2782 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2783 -> 1565[label="",style="dashed", color="red", weight=0]; 2783[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2783 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2784 -> 1566[label="",style="dashed", color="red", weight=0]; 2784[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2784 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2785 -> 1567[label="",style="dashed", color="red", weight=0]; 2785[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2785 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2786 -> 1568[label="",style="dashed", color="red", weight=0]; 2786[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2786 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2786 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2787 -> 1569[label="",style="dashed", color="red", weight=0]; 2787[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2787 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2787 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2788 -> 1570[label="",style="dashed", color="red", weight=0]; 2788[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2788 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2788 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2789 -> 1571[label="",style="dashed", color="red", weight=0]; 2789[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2789 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2789 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2790 -> 1572[label="",style="dashed", color="red", weight=0]; 2790[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2790 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2790 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2791 -> 1573[label="",style="dashed", color="red", weight=0]; 2791[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2791 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2791 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2792 -> 1574[label="",style="dashed", color="red", weight=0]; 2792[label="xwv430 <= xwv440",fontsize=16,color="magenta"];2792 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2792 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2793[label="xwv116",fontsize=16,color="green",shape="box"];2794[label="xwv119",fontsize=16,color="green",shape="box"];2795[label="xwv116",fontsize=16,color="green",shape="box"];2796[label="xwv119",fontsize=16,color="green",shape="box"];2797[label="xwv116",fontsize=16,color="green",shape="box"];2798[label="xwv119",fontsize=16,color="green",shape="box"];2799[label="xwv116",fontsize=16,color="green",shape="box"];2800[label="xwv119",fontsize=16,color="green",shape="box"];2801[label="xwv116",fontsize=16,color="green",shape="box"];2802[label="xwv119",fontsize=16,color="green",shape="box"];2803[label="xwv116",fontsize=16,color="green",shape="box"];2804[label="xwv119",fontsize=16,color="green",shape="box"];2805[label="xwv116",fontsize=16,color="green",shape="box"];2806[label="xwv119",fontsize=16,color="green",shape="box"];2807[label="xwv116",fontsize=16,color="green",shape="box"];2808[label="xwv119",fontsize=16,color="green",shape="box"];2809[label="xwv116",fontsize=16,color="green",shape="box"];2810[label="xwv119",fontsize=16,color="green",shape="box"];2811[label="xwv116",fontsize=16,color="green",shape="box"];2812[label="xwv119",fontsize=16,color="green",shape="box"];2813[label="xwv116",fontsize=16,color="green",shape="box"];2814[label="xwv119",fontsize=16,color="green",shape="box"];2815[label="xwv116",fontsize=16,color="green",shape="box"];2816[label="xwv119",fontsize=16,color="green",shape="box"];2817[label="xwv116",fontsize=16,color="green",shape="box"];2818[label="xwv119",fontsize=16,color="green",shape="box"];2819[label="xwv116",fontsize=16,color="green",shape="box"];2820[label="xwv119",fontsize=16,color="green",shape="box"];2821[label="xwv117",fontsize=16,color="green",shape="box"];2822[label="xwv120",fontsize=16,color="green",shape="box"];2823[label="xwv117",fontsize=16,color="green",shape="box"];2824[label="xwv120",fontsize=16,color="green",shape="box"];2825[label="xwv117",fontsize=16,color="green",shape="box"];2826[label="xwv120",fontsize=16,color="green",shape="box"];2827[label="xwv117",fontsize=16,color="green",shape="box"];2828[label="xwv120",fontsize=16,color="green",shape="box"];2829[label="xwv117",fontsize=16,color="green",shape="box"];2830[label="xwv120",fontsize=16,color="green",shape="box"];2831[label="xwv117",fontsize=16,color="green",shape="box"];2832[label="xwv120",fontsize=16,color="green",shape="box"];2833[label="xwv117",fontsize=16,color="green",shape="box"];2834[label="xwv120",fontsize=16,color="green",shape="box"];2835[label="xwv117",fontsize=16,color="green",shape="box"];2836[label="xwv120",fontsize=16,color="green",shape="box"];2837[label="xwv117",fontsize=16,color="green",shape="box"];2838[label="xwv120",fontsize=16,color="green",shape="box"];2839[label="xwv117",fontsize=16,color="green",shape="box"];2840[label="xwv120",fontsize=16,color="green",shape="box"];2841[label="xwv117",fontsize=16,color="green",shape="box"];2842[label="xwv120",fontsize=16,color="green",shape="box"];2843[label="xwv117",fontsize=16,color="green",shape="box"];2844[label="xwv120",fontsize=16,color="green",shape="box"];2845[label="xwv117",fontsize=16,color="green",shape="box"];2846[label="xwv120",fontsize=16,color="green",shape="box"];2847[label="xwv117",fontsize=16,color="green",shape="box"];2848[label="xwv120",fontsize=16,color="green",shape="box"];2849[label="compare0 (xwv187,xwv188,xwv189) (xwv190,xwv191,xwv192) True",fontsize=16,color="black",shape="box"];2849 -> 3013[label="",style="solid", color="black", weight=3]; 2850[label="compare0 (xwv202,xwv203) (xwv204,xwv205) True",fontsize=16,color="black",shape="box"];2850 -> 3014[label="",style="solid", color="black", weight=3]; 2851[label="Succ xwv40100",fontsize=16,color="green",shape="box"];2852[label="xwv300000",fontsize=16,color="green",shape="box"];2853[label="primPlusNat (Succ xwv2370) (Succ xwv40100)",fontsize=16,color="black",shape="box"];2853 -> 3015[label="",style="solid", color="black", weight=3]; 2854[label="primPlusNat Zero (Succ xwv40100)",fontsize=16,color="black",shape="box"];2854 -> 3016[label="",style="solid", color="black", weight=3]; 3296[label="Succ (Succ (primPlusNat xwv33200 xwv24200))",fontsize=16,color="green",shape="box"];3296 -> 3380[label="",style="dashed", color="green", weight=3]; 3297[label="Succ xwv33200",fontsize=16,color="green",shape="box"];3298[label="Succ xwv24200",fontsize=16,color="green",shape="box"];3299[label="Zero",fontsize=16,color="green",shape="box"];4090 -> 1496[label="",style="dashed", color="red", weight=0]; 4090[label="FiniteMap.sizeFM xwv3554",fontsize=16,color="magenta"];4090 -> 4104[label="",style="dashed", color="magenta", weight=3]; 4091 -> 389[label="",style="dashed", color="red", weight=0]; 4091[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3553",fontsize=16,color="magenta"];4091 -> 4105[label="",style="dashed", color="magenta", weight=3]; 4091 -> 4106[label="",style="dashed", color="magenta", weight=3]; 4092[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) xwv344 xwv3550 xwv3551 xwv3552 xwv3553 xwv3554 False",fontsize=16,color="black",shape="box"];4092 -> 4107[label="",style="solid", color="black", weight=3]; 4093[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) xwv344 xwv3550 xwv3551 xwv3552 xwv3553 xwv3554 True",fontsize=16,color="black",shape="box"];4093 -> 4108[label="",style="solid", color="black", weight=3]; 4102[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="burlywood",shape="box"];5562[label="xwv3443/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4102 -> 5562[label="",style="solid", color="burlywood", weight=9]; 5562 -> 4201[label="",style="solid", color="burlywood", weight=3]; 5563[label="xwv3443/FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434",fontsize=10,color="white",style="solid",shape="box"];4102 -> 5563[label="",style="solid", color="burlywood", weight=9]; 5563 -> 4202[label="",style="solid", color="burlywood", weight=3]; 4605[label="xwv3440",fontsize=16,color="green",shape="box"];4606[label="xwv3444",fontsize=16,color="green",shape="box"];4607 -> 4594[label="",style="dashed", color="red", weight=0]; 4607[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv340 xwv341 xwv355 xwv3443",fontsize=16,color="magenta"];4607 -> 4651[label="",style="dashed", color="magenta", weight=3]; 4607 -> 4652[label="",style="dashed", color="magenta", weight=3]; 4607 -> 4653[label="",style="dashed", color="magenta", weight=3]; 4607 -> 4654[label="",style="dashed", color="magenta", weight=3]; 4607 -> 4655[label="",style="dashed", color="magenta", weight=3]; 4608[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4609[label="xwv3441",fontsize=16,color="green",shape="box"];4715[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4715 -> 4719[label="",style="solid", color="black", weight=3]; 4716[label="FiniteMap.sizeFM (FiniteMap.Branch xwv4750 xwv4751 xwv4752 xwv4753 xwv4754)",fontsize=16,color="black",shape="box"];4716 -> 4720[label="",style="solid", color="black", weight=3]; 4717[label="xwv476",fontsize=16,color="green",shape="box"];4718[label="xwv476",fontsize=16,color="green",shape="box"];3825[label="FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=16,color="green",shape="box"];3826[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="burlywood",shape="triangle"];5564[label="xwv334/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3826 -> 5564[label="",style="solid", color="burlywood", weight=9]; 5564 -> 3845[label="",style="solid", color="burlywood", weight=3]; 5565[label="xwv334/FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344",fontsize=10,color="white",style="solid",shape="box"];3826 -> 5565[label="",style="solid", color="burlywood", weight=9]; 5565 -> 3846[label="",style="solid", color="burlywood", weight=3]; 3827[label="FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3827 -> 3847[label="",style="solid", color="black", weight=3]; 3828[label="FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3828 -> 3848[label="",style="solid", color="black", weight=3]; 3850[label="xwv344",fontsize=16,color="green",shape="box"];3851 -> 3792[label="",style="dashed", color="red", weight=0]; 3851[label="FiniteMap.mkBalBranch xwv340 xwv341 (FiniteMap.deleteMin (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434)) xwv344",fontsize=16,color="magenta"];3851 -> 3864[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4110[label="",style="dashed", color="red", weight=0]; 3852[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.findMin (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="magenta"];3852 -> 4111[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4112[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4113[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4114[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4115[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4116[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4117[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4118[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4119[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4120[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4121[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4122[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4123[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4124[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4125[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4213[label="",style="dashed", color="red", weight=0]; 3853[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.findMin (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="magenta"];3853 -> 4214[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4215[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4216[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4217[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4218[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4219[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4220[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4221[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4222[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4223[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4224[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4225[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4226[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4227[label="",style="dashed", color="magenta", weight=3]; 3853 -> 4228[label="",style="dashed", color="magenta", weight=3]; 2893[label="xwv430",fontsize=16,color="green",shape="box"];2894[label="xwv440",fontsize=16,color="green",shape="box"];2895[label="xwv430",fontsize=16,color="green",shape="box"];2896[label="xwv440",fontsize=16,color="green",shape="box"];2897[label="xwv430",fontsize=16,color="green",shape="box"];2898[label="xwv440",fontsize=16,color="green",shape="box"];2899[label="xwv430",fontsize=16,color="green",shape="box"];2900[label="xwv440",fontsize=16,color="green",shape="box"];2901[label="xwv430",fontsize=16,color="green",shape="box"];2902[label="xwv440",fontsize=16,color="green",shape="box"];2903[label="xwv430",fontsize=16,color="green",shape="box"];2904[label="xwv440",fontsize=16,color="green",shape="box"];2905[label="xwv430",fontsize=16,color="green",shape="box"];2906[label="xwv440",fontsize=16,color="green",shape="box"];2907[label="xwv430",fontsize=16,color="green",shape="box"];2908[label="xwv440",fontsize=16,color="green",shape="box"];2909[label="xwv430",fontsize=16,color="green",shape="box"];2910[label="xwv440",fontsize=16,color="green",shape="box"];2911[label="xwv430",fontsize=16,color="green",shape="box"];2912[label="xwv440",fontsize=16,color="green",shape="box"];2913[label="xwv430",fontsize=16,color="green",shape="box"];2914[label="xwv440",fontsize=16,color="green",shape="box"];2915[label="xwv430",fontsize=16,color="green",shape="box"];2916[label="xwv440",fontsize=16,color="green",shape="box"];2917[label="xwv430",fontsize=16,color="green",shape="box"];2918[label="xwv440",fontsize=16,color="green",shape="box"];2919[label="xwv430",fontsize=16,color="green",shape="box"];2920[label="xwv440",fontsize=16,color="green",shape="box"];2921[label="xwv430",fontsize=16,color="green",shape="box"];2922[label="xwv440",fontsize=16,color="green",shape="box"];2923[label="xwv430",fontsize=16,color="green",shape="box"];2924[label="xwv440",fontsize=16,color="green",shape="box"];2925[label="xwv430",fontsize=16,color="green",shape="box"];2926[label="xwv440",fontsize=16,color="green",shape="box"];2927[label="xwv430",fontsize=16,color="green",shape="box"];2928[label="xwv440",fontsize=16,color="green",shape="box"];2929[label="xwv430",fontsize=16,color="green",shape="box"];2930[label="xwv440",fontsize=16,color="green",shape="box"];2931[label="xwv430",fontsize=16,color="green",shape="box"];2932[label="xwv440",fontsize=16,color="green",shape="box"];2933[label="xwv430",fontsize=16,color="green",shape="box"];2934[label="xwv440",fontsize=16,color="green",shape="box"];2935[label="xwv430",fontsize=16,color="green",shape="box"];2936[label="xwv440",fontsize=16,color="green",shape="box"];2937[label="xwv430",fontsize=16,color="green",shape="box"];2938[label="xwv440",fontsize=16,color="green",shape="box"];2939[label="xwv430",fontsize=16,color="green",shape="box"];2940[label="xwv440",fontsize=16,color="green",shape="box"];2941[label="xwv430",fontsize=16,color="green",shape="box"];2942[label="xwv440",fontsize=16,color="green",shape="box"];2943[label="xwv430",fontsize=16,color="green",shape="box"];2944[label="xwv440",fontsize=16,color="green",shape="box"];2945[label="xwv430",fontsize=16,color="green",shape="box"];2946[label="xwv440",fontsize=16,color="green",shape="box"];2947[label="xwv430",fontsize=16,color="green",shape="box"];2948[label="xwv440",fontsize=16,color="green",shape="box"];2949[label="xwv226",fontsize=16,color="green",shape="box"];2950[label="GT",fontsize=16,color="green",shape="box"];2951[label="not False",fontsize=16,color="black",shape="box"];2951 -> 3052[label="",style="solid", color="black", weight=3]; 2952[label="not True",fontsize=16,color="black",shape="box"];2952 -> 3053[label="",style="solid", color="black", weight=3]; 2953[label="xwv430 == xwv440",fontsize=16,color="blue",shape="box"];5566[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5566[label="",style="solid", color="blue", weight=9]; 5566 -> 3054[label="",style="solid", color="blue", weight=3]; 5567[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5567[label="",style="solid", color="blue", weight=9]; 5567 -> 3055[label="",style="solid", color="blue", weight=3]; 5568[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5568[label="",style="solid", color="blue", weight=9]; 5568 -> 3056[label="",style="solid", color="blue", weight=3]; 5569[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5569[label="",style="solid", color="blue", weight=9]; 5569 -> 3057[label="",style="solid", color="blue", weight=3]; 5570[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5570[label="",style="solid", color="blue", weight=9]; 5570 -> 3058[label="",style="solid", color="blue", weight=3]; 5571[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5571[label="",style="solid", color="blue", weight=9]; 5571 -> 3059[label="",style="solid", color="blue", weight=3]; 5572[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5572[label="",style="solid", color="blue", weight=9]; 5572 -> 3060[label="",style="solid", color="blue", weight=3]; 5573[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5573[label="",style="solid", color="blue", weight=9]; 5573 -> 3061[label="",style="solid", color="blue", weight=3]; 5574[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5574[label="",style="solid", color="blue", weight=9]; 5574 -> 3062[label="",style="solid", color="blue", weight=3]; 5575[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5575[label="",style="solid", color="blue", weight=9]; 5575 -> 3063[label="",style="solid", color="blue", weight=3]; 5576[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5576[label="",style="solid", color="blue", weight=9]; 5576 -> 3064[label="",style="solid", color="blue", weight=3]; 5577[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5577[label="",style="solid", color="blue", weight=9]; 5577 -> 3065[label="",style="solid", color="blue", weight=3]; 5578[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5578[label="",style="solid", color="blue", weight=9]; 5578 -> 3066[label="",style="solid", color="blue", weight=3]; 5579[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2953 -> 5579[label="",style="solid", color="blue", weight=9]; 5579 -> 3067[label="",style="solid", color="blue", weight=3]; 2954 -> 2366[label="",style="dashed", color="red", weight=0]; 2954[label="xwv431 < xwv441 || xwv431 == xwv441 && xwv432 <= xwv442",fontsize=16,color="magenta"];2954 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2954 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2955 -> 1614[label="",style="dashed", color="red", weight=0]; 2955[label="xwv430 < xwv440",fontsize=16,color="magenta"];2955 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2955 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2956 -> 1615[label="",style="dashed", color="red", weight=0]; 2956[label="xwv430 < xwv440",fontsize=16,color="magenta"];2956 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2956 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2957 -> 1616[label="",style="dashed", color="red", weight=0]; 2957[label="xwv430 < xwv440",fontsize=16,color="magenta"];2957 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2957 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2958 -> 1617[label="",style="dashed", color="red", weight=0]; 2958[label="xwv430 < xwv440",fontsize=16,color="magenta"];2958 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2958 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2959 -> 1618[label="",style="dashed", color="red", weight=0]; 2959[label="xwv430 < xwv440",fontsize=16,color="magenta"];2959 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2959 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2960 -> 1619[label="",style="dashed", color="red", weight=0]; 2960[label="xwv430 < xwv440",fontsize=16,color="magenta"];2960 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2960 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2961 -> 1620[label="",style="dashed", color="red", weight=0]; 2961[label="xwv430 < xwv440",fontsize=16,color="magenta"];2961 -> 3082[label="",style="dashed", color="magenta", weight=3]; 2961 -> 3083[label="",style="dashed", color="magenta", weight=3]; 2962 -> 1621[label="",style="dashed", color="red", weight=0]; 2962[label="xwv430 < xwv440",fontsize=16,color="magenta"];2962 -> 3084[label="",style="dashed", color="magenta", weight=3]; 2962 -> 3085[label="",style="dashed", color="magenta", weight=3]; 2963 -> 1622[label="",style="dashed", color="red", weight=0]; 2963[label="xwv430 < xwv440",fontsize=16,color="magenta"];2963 -> 3086[label="",style="dashed", color="magenta", weight=3]; 2963 -> 3087[label="",style="dashed", color="magenta", weight=3]; 2964 -> 1623[label="",style="dashed", color="red", weight=0]; 2964[label="xwv430 < xwv440",fontsize=16,color="magenta"];2964 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2964 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2965 -> 1624[label="",style="dashed", color="red", weight=0]; 2965[label="xwv430 < xwv440",fontsize=16,color="magenta"];2965 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2965 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2966 -> 1625[label="",style="dashed", color="red", weight=0]; 2966[label="xwv430 < xwv440",fontsize=16,color="magenta"];2966 -> 3092[label="",style="dashed", color="magenta", weight=3]; 2966 -> 3093[label="",style="dashed", color="magenta", weight=3]; 2967 -> 1626[label="",style="dashed", color="red", weight=0]; 2967[label="xwv430 < xwv440",fontsize=16,color="magenta"];2967 -> 3094[label="",style="dashed", color="magenta", weight=3]; 2967 -> 3095[label="",style="dashed", color="magenta", weight=3]; 2968 -> 1627[label="",style="dashed", color="red", weight=0]; 2968[label="xwv430 < xwv440",fontsize=16,color="magenta"];2968 -> 3096[label="",style="dashed", color="magenta", weight=3]; 2968 -> 3097[label="",style="dashed", color="magenta", weight=3]; 2969[label="xwv430 == xwv440",fontsize=16,color="blue",shape="box"];5580[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5580[label="",style="solid", color="blue", weight=9]; 5580 -> 3098[label="",style="solid", color="blue", weight=3]; 5581[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5581[label="",style="solid", color="blue", weight=9]; 5581 -> 3099[label="",style="solid", color="blue", weight=3]; 5582[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5582[label="",style="solid", color="blue", weight=9]; 5582 -> 3100[label="",style="solid", color="blue", weight=3]; 5583[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5583[label="",style="solid", color="blue", weight=9]; 5583 -> 3101[label="",style="solid", color="blue", weight=3]; 5584[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5584[label="",style="solid", color="blue", weight=9]; 5584 -> 3102[label="",style="solid", color="blue", weight=3]; 5585[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5585[label="",style="solid", color="blue", weight=9]; 5585 -> 3103[label="",style="solid", color="blue", weight=3]; 5586[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5586[label="",style="solid", color="blue", weight=9]; 5586 -> 3104[label="",style="solid", color="blue", weight=3]; 5587[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5587[label="",style="solid", color="blue", weight=9]; 5587 -> 3105[label="",style="solid", color="blue", weight=3]; 5588[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5588[label="",style="solid", color="blue", weight=9]; 5588 -> 3106[label="",style="solid", color="blue", weight=3]; 5589[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5589[label="",style="solid", color="blue", weight=9]; 5589 -> 3107[label="",style="solid", color="blue", weight=3]; 5590[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5590[label="",style="solid", color="blue", weight=9]; 5590 -> 3108[label="",style="solid", color="blue", weight=3]; 5591[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5591[label="",style="solid", color="blue", weight=9]; 5591 -> 3109[label="",style="solid", color="blue", weight=3]; 5592[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5592[label="",style="solid", color="blue", weight=9]; 5592 -> 3110[label="",style="solid", color="blue", weight=3]; 5593[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 5593[label="",style="solid", color="blue", weight=9]; 5593 -> 3111[label="",style="solid", color="blue", weight=3]; 2970[label="xwv431 <= xwv441",fontsize=16,color="blue",shape="box"];5594[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5594[label="",style="solid", color="blue", weight=9]; 5594 -> 3112[label="",style="solid", color="blue", weight=3]; 5595[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5595[label="",style="solid", color="blue", weight=9]; 5595 -> 3113[label="",style="solid", color="blue", weight=3]; 5596[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5596[label="",style="solid", color="blue", weight=9]; 5596 -> 3114[label="",style="solid", color="blue", weight=3]; 5597[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5597[label="",style="solid", color="blue", weight=9]; 5597 -> 3115[label="",style="solid", color="blue", weight=3]; 5598[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5598[label="",style="solid", color="blue", weight=9]; 5598 -> 3116[label="",style="solid", color="blue", weight=3]; 5599[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5599[label="",style="solid", color="blue", weight=9]; 5599 -> 3117[label="",style="solid", color="blue", weight=3]; 5600[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5600[label="",style="solid", color="blue", weight=9]; 5600 -> 3118[label="",style="solid", color="blue", weight=3]; 5601[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5601[label="",style="solid", color="blue", weight=9]; 5601 -> 3119[label="",style="solid", color="blue", weight=3]; 5602[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5602[label="",style="solid", color="blue", weight=9]; 5602 -> 3120[label="",style="solid", color="blue", weight=3]; 5603[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5603[label="",style="solid", color="blue", weight=9]; 5603 -> 3121[label="",style="solid", color="blue", weight=3]; 5604[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5604[label="",style="solid", color="blue", weight=9]; 5604 -> 3122[label="",style="solid", color="blue", weight=3]; 5605[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5605[label="",style="solid", color="blue", weight=9]; 5605 -> 3123[label="",style="solid", color="blue", weight=3]; 5606[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5606[label="",style="solid", color="blue", weight=9]; 5606 -> 3124[label="",style="solid", color="blue", weight=3]; 5607[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5607[label="",style="solid", color="blue", weight=9]; 5607 -> 3125[label="",style="solid", color="blue", weight=3]; 2971 -> 1614[label="",style="dashed", color="red", weight=0]; 2971[label="xwv430 < xwv440",fontsize=16,color="magenta"];2971 -> 3126[label="",style="dashed", color="magenta", weight=3]; 2971 -> 3127[label="",style="dashed", color="magenta", weight=3]; 2972 -> 1615[label="",style="dashed", color="red", weight=0]; 2972[label="xwv430 < xwv440",fontsize=16,color="magenta"];2972 -> 3128[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3129[label="",style="dashed", color="magenta", weight=3]; 2973 -> 1616[label="",style="dashed", color="red", weight=0]; 2973[label="xwv430 < xwv440",fontsize=16,color="magenta"];2973 -> 3130[label="",style="dashed", color="magenta", weight=3]; 2973 -> 3131[label="",style="dashed", color="magenta", weight=3]; 2974 -> 1617[label="",style="dashed", color="red", weight=0]; 2974[label="xwv430 < xwv440",fontsize=16,color="magenta"];2974 -> 3132[label="",style="dashed", color="magenta", weight=3]; 2974 -> 3133[label="",style="dashed", color="magenta", weight=3]; 2975 -> 1618[label="",style="dashed", color="red", weight=0]; 2975[label="xwv430 < xwv440",fontsize=16,color="magenta"];2975 -> 3134[label="",style="dashed", color="magenta", weight=3]; 2975 -> 3135[label="",style="dashed", color="magenta", weight=3]; 2976 -> 1619[label="",style="dashed", color="red", weight=0]; 2976[label="xwv430 < xwv440",fontsize=16,color="magenta"];2976 -> 3136[label="",style="dashed", color="magenta", weight=3]; 2976 -> 3137[label="",style="dashed", color="magenta", weight=3]; 2977 -> 1620[label="",style="dashed", color="red", weight=0]; 2977[label="xwv430 < xwv440",fontsize=16,color="magenta"];2977 -> 3138[label="",style="dashed", color="magenta", weight=3]; 2977 -> 3139[label="",style="dashed", color="magenta", weight=3]; 2978 -> 1621[label="",style="dashed", color="red", weight=0]; 2978[label="xwv430 < xwv440",fontsize=16,color="magenta"];2978 -> 3140[label="",style="dashed", color="magenta", weight=3]; 2978 -> 3141[label="",style="dashed", color="magenta", weight=3]; 2979 -> 1622[label="",style="dashed", color="red", weight=0]; 2979[label="xwv430 < xwv440",fontsize=16,color="magenta"];2979 -> 3142[label="",style="dashed", color="magenta", weight=3]; 2979 -> 3143[label="",style="dashed", color="magenta", weight=3]; 2980 -> 1623[label="",style="dashed", color="red", weight=0]; 2980[label="xwv430 < xwv440",fontsize=16,color="magenta"];2980 -> 3144[label="",style="dashed", color="magenta", weight=3]; 2980 -> 3145[label="",style="dashed", color="magenta", weight=3]; 2981 -> 1624[label="",style="dashed", color="red", weight=0]; 2981[label="xwv430 < xwv440",fontsize=16,color="magenta"];2981 -> 3146[label="",style="dashed", color="magenta", weight=3]; 2981 -> 3147[label="",style="dashed", color="magenta", weight=3]; 2982 -> 1625[label="",style="dashed", color="red", weight=0]; 2982[label="xwv430 < xwv440",fontsize=16,color="magenta"];2982 -> 3148[label="",style="dashed", color="magenta", weight=3]; 2982 -> 3149[label="",style="dashed", color="magenta", weight=3]; 2983 -> 1626[label="",style="dashed", color="red", weight=0]; 2983[label="xwv430 < xwv440",fontsize=16,color="magenta"];2983 -> 3150[label="",style="dashed", color="magenta", weight=3]; 2983 -> 3151[label="",style="dashed", color="magenta", weight=3]; 2984 -> 1627[label="",style="dashed", color="red", weight=0]; 2984[label="xwv430 < xwv440",fontsize=16,color="magenta"];2984 -> 3152[label="",style="dashed", color="magenta", weight=3]; 2984 -> 3153[label="",style="dashed", color="magenta", weight=3]; 2985[label="xwv430",fontsize=16,color="green",shape="box"];2986[label="xwv440",fontsize=16,color="green",shape="box"];2987[label="xwv430",fontsize=16,color="green",shape="box"];2988[label="xwv440",fontsize=16,color="green",shape="box"];2989[label="xwv430",fontsize=16,color="green",shape="box"];2990[label="xwv440",fontsize=16,color="green",shape="box"];2991[label="xwv430",fontsize=16,color="green",shape="box"];2992[label="xwv440",fontsize=16,color="green",shape="box"];2993[label="xwv430",fontsize=16,color="green",shape="box"];2994[label="xwv440",fontsize=16,color="green",shape="box"];2995[label="xwv430",fontsize=16,color="green",shape="box"];2996[label="xwv440",fontsize=16,color="green",shape="box"];2997[label="xwv430",fontsize=16,color="green",shape="box"];2998[label="xwv440",fontsize=16,color="green",shape="box"];2999[label="xwv430",fontsize=16,color="green",shape="box"];3000[label="xwv440",fontsize=16,color="green",shape="box"];3001[label="xwv430",fontsize=16,color="green",shape="box"];3002[label="xwv440",fontsize=16,color="green",shape="box"];3003[label="xwv430",fontsize=16,color="green",shape="box"];3004[label="xwv440",fontsize=16,color="green",shape="box"];3005[label="xwv430",fontsize=16,color="green",shape="box"];3006[label="xwv440",fontsize=16,color="green",shape="box"];3007[label="xwv430",fontsize=16,color="green",shape="box"];3008[label="xwv440",fontsize=16,color="green",shape="box"];3009[label="xwv430",fontsize=16,color="green",shape="box"];3010[label="xwv440",fontsize=16,color="green",shape="box"];3011[label="xwv430",fontsize=16,color="green",shape="box"];3012[label="xwv440",fontsize=16,color="green",shape="box"];3013[label="GT",fontsize=16,color="green",shape="box"];3014[label="GT",fontsize=16,color="green",shape="box"];3015[label="Succ (Succ (primPlusNat xwv2370 xwv40100))",fontsize=16,color="green",shape="box"];3015 -> 3154[label="",style="dashed", color="green", weight=3]; 3016[label="Succ xwv40100",fontsize=16,color="green",shape="box"];3380 -> 2872[label="",style="dashed", color="red", weight=0]; 3380[label="primPlusNat xwv33200 xwv24200",fontsize=16,color="magenta"];3380 -> 3466[label="",style="dashed", color="magenta", weight=3]; 3380 -> 3467[label="",style="dashed", color="magenta", weight=3]; 4104[label="xwv3554",fontsize=16,color="green",shape="box"];4105 -> 1496[label="",style="dashed", color="red", weight=0]; 4105[label="FiniteMap.sizeFM xwv3553",fontsize=16,color="magenta"];4105 -> 4207[label="",style="dashed", color="magenta", weight=3]; 4106[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4107[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) xwv344 xwv3550 xwv3551 xwv3552 xwv3553 xwv3554 otherwise",fontsize=16,color="black",shape="box"];4107 -> 4208[label="",style="solid", color="black", weight=3]; 4108[label="FiniteMap.mkBalBranch6Single_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) xwv344",fontsize=16,color="black",shape="box"];4108 -> 4209[label="",style="solid", color="black", weight=3]; 4201[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 FiniteMap.EmptyFM xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 FiniteMap.EmptyFM xwv3444)",fontsize=16,color="black",shape="box"];4201 -> 4304[label="",style="solid", color="black", weight=3]; 4202[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 (FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434) xwv3444) xwv355 xwv355 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 (FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434) xwv3444)",fontsize=16,color="black",shape="box"];4202 -> 4305[label="",style="solid", color="black", weight=3]; 4651[label="xwv340",fontsize=16,color="green",shape="box"];4652[label="xwv3443",fontsize=16,color="green",shape="box"];4653[label="xwv355",fontsize=16,color="green",shape="box"];4654[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4655[label="xwv341",fontsize=16,color="green",shape="box"];4719[label="Pos Zero",fontsize=16,color="green",shape="box"];4720[label="xwv4752",fontsize=16,color="green",shape="box"];3845[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];3845 -> 3854[label="",style="solid", color="black", weight=3]; 3846[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344))",fontsize=16,color="black",shape="box"];3846 -> 3855[label="",style="solid", color="black", weight=3]; 3847[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="black",shape="box"];3847 -> 3856[label="",style="solid", color="black", weight=3]; 3848[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="black",shape="box"];3848 -> 3857[label="",style="solid", color="black", weight=3]; 3864 -> 3821[label="",style="dashed", color="red", weight=0]; 3864[label="FiniteMap.deleteMin (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434)",fontsize=16,color="magenta"];3864 -> 3880[label="",style="dashed", color="magenta", weight=3]; 3864 -> 3881[label="",style="dashed", color="magenta", weight=3]; 3864 -> 3882[label="",style="dashed", color="magenta", weight=3]; 3864 -> 3883[label="",style="dashed", color="magenta", weight=3]; 3864 -> 3884[label="",style="dashed", color="magenta", weight=3]; 4111[label="xwv332",fontsize=16,color="green",shape="box"];4112[label="xwv344",fontsize=16,color="green",shape="box"];4113[label="xwv330",fontsize=16,color="green",shape="box"];4114[label="xwv333",fontsize=16,color="green",shape="box"];4115[label="xwv334",fontsize=16,color="green",shape="box"];4116[label="xwv341",fontsize=16,color="green",shape="box"];4117[label="xwv343",fontsize=16,color="green",shape="box"];4118[label="xwv340",fontsize=16,color="green",shape="box"];4119[label="xwv341",fontsize=16,color="green",shape="box"];4120[label="xwv342",fontsize=16,color="green",shape="box"];4121[label="xwv343",fontsize=16,color="green",shape="box"];4122[label="xwv342",fontsize=16,color="green",shape="box"];4123[label="xwv344",fontsize=16,color="green",shape="box"];4124[label="xwv331",fontsize=16,color="green",shape="box"];4125[label="xwv340",fontsize=16,color="green",shape="box"];4110[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv377 xwv378 xwv379 xwv380 xwv381) (FiniteMap.Branch xwv382 xwv383 xwv384 xwv385 xwv386) (FiniteMap.findMin (FiniteMap.Branch xwv387 xwv388 xwv389 xwv390 xwv391))",fontsize=16,color="burlywood",shape="triangle"];5608[label="xwv390/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4110 -> 5608[label="",style="solid", color="burlywood", weight=9]; 5608 -> 4210[label="",style="solid", color="burlywood", weight=3]; 5609[label="xwv390/FiniteMap.Branch xwv3900 xwv3901 xwv3902 xwv3903 xwv3904",fontsize=10,color="white",style="solid",shape="box"];4110 -> 5609[label="",style="solid", color="burlywood", weight=9]; 5609 -> 4211[label="",style="solid", color="burlywood", weight=3]; 4214[label="xwv342",fontsize=16,color="green",shape="box"];4215[label="xwv331",fontsize=16,color="green",shape="box"];4216[label="xwv340",fontsize=16,color="green",shape="box"];4217[label="xwv340",fontsize=16,color="green",shape="box"];4218[label="xwv332",fontsize=16,color="green",shape="box"];4219[label="xwv341",fontsize=16,color="green",shape="box"];4220[label="xwv341",fontsize=16,color="green",shape="box"];4221[label="xwv344",fontsize=16,color="green",shape="box"];4222[label="xwv342",fontsize=16,color="green",shape="box"];4223[label="xwv343",fontsize=16,color="green",shape="box"];4224[label="xwv333",fontsize=16,color="green",shape="box"];4225[label="xwv343",fontsize=16,color="green",shape="box"];4226[label="xwv330",fontsize=16,color="green",shape="box"];4227[label="xwv334",fontsize=16,color="green",shape="box"];4228[label="xwv344",fontsize=16,color="green",shape="box"];4213[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv393 xwv394 xwv395 xwv396 xwv397) (FiniteMap.Branch xwv398 xwv399 xwv400 xwv401 xwv402) (FiniteMap.findMin (FiniteMap.Branch xwv403 xwv404 xwv405 xwv406 xwv407))",fontsize=16,color="burlywood",shape="triangle"];5610[label="xwv406/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4213 -> 5610[label="",style="solid", color="burlywood", weight=9]; 5610 -> 4307[label="",style="solid", color="burlywood", weight=3]; 5611[label="xwv406/FiniteMap.Branch xwv4060 xwv4061 xwv4062 xwv4063 xwv4064",fontsize=10,color="white",style="solid",shape="box"];4213 -> 5611[label="",style="solid", color="burlywood", weight=9]; 5611 -> 4308[label="",style="solid", color="burlywood", weight=3]; 3052[label="True",fontsize=16,color="green",shape="box"];3053[label="False",fontsize=16,color="green",shape="box"];3054 -> 521[label="",style="dashed", color="red", weight=0]; 3054[label="xwv430 == xwv440",fontsize=16,color="magenta"];3054 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3054 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3055 -> 524[label="",style="dashed", color="red", weight=0]; 3055[label="xwv430 == xwv440",fontsize=16,color="magenta"];3055 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3055 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3056 -> 514[label="",style="dashed", color="red", weight=0]; 3056[label="xwv430 == xwv440",fontsize=16,color="magenta"];3056 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3056 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3057 -> 522[label="",style="dashed", color="red", weight=0]; 3057[label="xwv430 == xwv440",fontsize=16,color="magenta"];3057 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3057 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3058 -> 511[label="",style="dashed", color="red", weight=0]; 3058[label="xwv430 == xwv440",fontsize=16,color="magenta"];3058 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3058 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3059 -> 513[label="",style="dashed", color="red", weight=0]; 3059[label="xwv430 == xwv440",fontsize=16,color="magenta"];3059 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3059 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3060 -> 512[label="",style="dashed", color="red", weight=0]; 3060[label="xwv430 == xwv440",fontsize=16,color="magenta"];3060 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3061 -> 523[label="",style="dashed", color="red", weight=0]; 3061[label="xwv430 == xwv440",fontsize=16,color="magenta"];3061 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3061 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3062 -> 519[label="",style="dashed", color="red", weight=0]; 3062[label="xwv430 == xwv440",fontsize=16,color="magenta"];3062 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3062 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3063 -> 516[label="",style="dashed", color="red", weight=0]; 3063[label="xwv430 == xwv440",fontsize=16,color="magenta"];3063 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3063 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3064 -> 520[label="",style="dashed", color="red", weight=0]; 3064[label="xwv430 == xwv440",fontsize=16,color="magenta"];3064 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3064 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3065 -> 518[label="",style="dashed", color="red", weight=0]; 3065[label="xwv430 == xwv440",fontsize=16,color="magenta"];3065 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3065 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3066 -> 517[label="",style="dashed", color="red", weight=0]; 3066[label="xwv430 == xwv440",fontsize=16,color="magenta"];3066 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3066 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3067 -> 515[label="",style="dashed", color="red", weight=0]; 3067[label="xwv430 == xwv440",fontsize=16,color="magenta"];3067 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3067 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3068 -> 1219[label="",style="dashed", color="red", weight=0]; 3068[label="xwv431 == xwv441 && xwv432 <= xwv442",fontsize=16,color="magenta"];3068 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3068 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3069[label="xwv431 < xwv441",fontsize=16,color="blue",shape="box"];5612[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5612[label="",style="solid", color="blue", weight=9]; 5612 -> 3216[label="",style="solid", color="blue", weight=3]; 5613[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5613[label="",style="solid", color="blue", weight=9]; 5613 -> 3217[label="",style="solid", color="blue", weight=3]; 5614[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5614[label="",style="solid", color="blue", weight=9]; 5614 -> 3218[label="",style="solid", color="blue", weight=3]; 5615[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5615[label="",style="solid", color="blue", weight=9]; 5615 -> 3219[label="",style="solid", color="blue", weight=3]; 5616[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5616[label="",style="solid", color="blue", weight=9]; 5616 -> 3220[label="",style="solid", color="blue", weight=3]; 5617[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5617[label="",style="solid", color="blue", weight=9]; 5617 -> 3221[label="",style="solid", color="blue", weight=3]; 5618[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5618[label="",style="solid", color="blue", weight=9]; 5618 -> 3222[label="",style="solid", color="blue", weight=3]; 5619[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5619[label="",style="solid", color="blue", weight=9]; 5619 -> 3223[label="",style="solid", color="blue", weight=3]; 5620[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5620[label="",style="solid", color="blue", weight=9]; 5620 -> 3224[label="",style="solid", color="blue", weight=3]; 5621[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5621[label="",style="solid", color="blue", weight=9]; 5621 -> 3225[label="",style="solid", color="blue", weight=3]; 5622[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5622[label="",style="solid", color="blue", weight=9]; 5622 -> 3226[label="",style="solid", color="blue", weight=3]; 5623[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5623[label="",style="solid", color="blue", weight=9]; 5623 -> 3227[label="",style="solid", color="blue", weight=3]; 5624[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5624[label="",style="solid", color="blue", weight=9]; 5624 -> 3228[label="",style="solid", color="blue", weight=3]; 5625[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 5625[label="",style="solid", color="blue", weight=9]; 5625 -> 3229[label="",style="solid", color="blue", weight=3]; 3070[label="xwv430",fontsize=16,color="green",shape="box"];3071[label="xwv440",fontsize=16,color="green",shape="box"];3072[label="xwv430",fontsize=16,color="green",shape="box"];3073[label="xwv440",fontsize=16,color="green",shape="box"];3074[label="xwv430",fontsize=16,color="green",shape="box"];3075[label="xwv440",fontsize=16,color="green",shape="box"];3076[label="xwv430",fontsize=16,color="green",shape="box"];3077[label="xwv440",fontsize=16,color="green",shape="box"];3078[label="xwv430",fontsize=16,color="green",shape="box"];3079[label="xwv440",fontsize=16,color="green",shape="box"];3080[label="xwv430",fontsize=16,color="green",shape="box"];3081[label="xwv440",fontsize=16,color="green",shape="box"];3082[label="xwv430",fontsize=16,color="green",shape="box"];3083[label="xwv440",fontsize=16,color="green",shape="box"];3084[label="xwv430",fontsize=16,color="green",shape="box"];3085[label="xwv440",fontsize=16,color="green",shape="box"];3086[label="xwv430",fontsize=16,color="green",shape="box"];3087[label="xwv440",fontsize=16,color="green",shape="box"];3088[label="xwv430",fontsize=16,color="green",shape="box"];3089[label="xwv440",fontsize=16,color="green",shape="box"];3090[label="xwv430",fontsize=16,color="green",shape="box"];3091[label="xwv440",fontsize=16,color="green",shape="box"];3092[label="xwv430",fontsize=16,color="green",shape="box"];3093[label="xwv440",fontsize=16,color="green",shape="box"];3094[label="xwv430",fontsize=16,color="green",shape="box"];3095[label="xwv440",fontsize=16,color="green",shape="box"];3096[label="xwv430",fontsize=16,color="green",shape="box"];3097[label="xwv440",fontsize=16,color="green",shape="box"];3098 -> 521[label="",style="dashed", color="red", weight=0]; 3098[label="xwv430 == xwv440",fontsize=16,color="magenta"];3098 -> 3230[label="",style="dashed", color="magenta", weight=3]; 3098 -> 3231[label="",style="dashed", color="magenta", weight=3]; 3099 -> 524[label="",style="dashed", color="red", weight=0]; 3099[label="xwv430 == xwv440",fontsize=16,color="magenta"];3099 -> 3232[label="",style="dashed", color="magenta", weight=3]; 3099 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3100 -> 514[label="",style="dashed", color="red", weight=0]; 3100[label="xwv430 == xwv440",fontsize=16,color="magenta"];3100 -> 3234[label="",style="dashed", color="magenta", weight=3]; 3100 -> 3235[label="",style="dashed", color="magenta", weight=3]; 3101 -> 522[label="",style="dashed", color="red", weight=0]; 3101[label="xwv430 == xwv440",fontsize=16,color="magenta"];3101 -> 3236[label="",style="dashed", color="magenta", weight=3]; 3101 -> 3237[label="",style="dashed", color="magenta", weight=3]; 3102 -> 511[label="",style="dashed", color="red", weight=0]; 3102[label="xwv430 == xwv440",fontsize=16,color="magenta"];3102 -> 3238[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3239[label="",style="dashed", color="magenta", weight=3]; 3103 -> 513[label="",style="dashed", color="red", weight=0]; 3103[label="xwv430 == xwv440",fontsize=16,color="magenta"];3103 -> 3240[label="",style="dashed", color="magenta", weight=3]; 3103 -> 3241[label="",style="dashed", color="magenta", weight=3]; 3104 -> 512[label="",style="dashed", color="red", weight=0]; 3104[label="xwv430 == xwv440",fontsize=16,color="magenta"];3104 -> 3242[label="",style="dashed", color="magenta", weight=3]; 3104 -> 3243[label="",style="dashed", color="magenta", weight=3]; 3105 -> 523[label="",style="dashed", color="red", weight=0]; 3105[label="xwv430 == xwv440",fontsize=16,color="magenta"];3105 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3105 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3106 -> 519[label="",style="dashed", color="red", weight=0]; 3106[label="xwv430 == xwv440",fontsize=16,color="magenta"];3106 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3106 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3107 -> 516[label="",style="dashed", color="red", weight=0]; 3107[label="xwv430 == xwv440",fontsize=16,color="magenta"];3107 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3108 -> 520[label="",style="dashed", color="red", weight=0]; 3108[label="xwv430 == xwv440",fontsize=16,color="magenta"];3108 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3108 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3109 -> 518[label="",style="dashed", color="red", weight=0]; 3109[label="xwv430 == xwv440",fontsize=16,color="magenta"];3109 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3109 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3110 -> 517[label="",style="dashed", color="red", weight=0]; 3110[label="xwv430 == xwv440",fontsize=16,color="magenta"];3110 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3110 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3111 -> 515[label="",style="dashed", color="red", weight=0]; 3111[label="xwv430 == xwv440",fontsize=16,color="magenta"];3111 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3111 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3112 -> 1561[label="",style="dashed", color="red", weight=0]; 3112[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3112 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3112 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3113 -> 1562[label="",style="dashed", color="red", weight=0]; 3113[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3113 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3113 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3114 -> 1563[label="",style="dashed", color="red", weight=0]; 3114[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3114 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3114 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3115 -> 1564[label="",style="dashed", color="red", weight=0]; 3115[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3115 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3116 -> 1565[label="",style="dashed", color="red", weight=0]; 3116[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3116 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3116 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3117 -> 1566[label="",style="dashed", color="red", weight=0]; 3117[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3117 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3117 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3118 -> 1567[label="",style="dashed", color="red", weight=0]; 3118[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3118 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3118 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3119 -> 1568[label="",style="dashed", color="red", weight=0]; 3119[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3119 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3119 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3120 -> 1569[label="",style="dashed", color="red", weight=0]; 3120[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3120 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3120 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3121 -> 1570[label="",style="dashed", color="red", weight=0]; 3121[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3121 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3121 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3122 -> 1571[label="",style="dashed", color="red", weight=0]; 3122[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3122 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3122 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3123 -> 1572[label="",style="dashed", color="red", weight=0]; 3123[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3123 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3123 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3124 -> 1573[label="",style="dashed", color="red", weight=0]; 3124[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3124 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3124 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3125 -> 1574[label="",style="dashed", color="red", weight=0]; 3125[label="xwv431 <= xwv441",fontsize=16,color="magenta"];3125 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3125 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3126[label="xwv430",fontsize=16,color="green",shape="box"];3127[label="xwv440",fontsize=16,color="green",shape="box"];3128[label="xwv430",fontsize=16,color="green",shape="box"];3129[label="xwv440",fontsize=16,color="green",shape="box"];3130[label="xwv430",fontsize=16,color="green",shape="box"];3131[label="xwv440",fontsize=16,color="green",shape="box"];3132[label="xwv430",fontsize=16,color="green",shape="box"];3133[label="xwv440",fontsize=16,color="green",shape="box"];3134[label="xwv430",fontsize=16,color="green",shape="box"];3135[label="xwv440",fontsize=16,color="green",shape="box"];3136[label="xwv430",fontsize=16,color="green",shape="box"];3137[label="xwv440",fontsize=16,color="green",shape="box"];3138[label="xwv430",fontsize=16,color="green",shape="box"];3139[label="xwv440",fontsize=16,color="green",shape="box"];3140[label="xwv430",fontsize=16,color="green",shape="box"];3141[label="xwv440",fontsize=16,color="green",shape="box"];3142[label="xwv430",fontsize=16,color="green",shape="box"];3143[label="xwv440",fontsize=16,color="green",shape="box"];3144[label="xwv430",fontsize=16,color="green",shape="box"];3145[label="xwv440",fontsize=16,color="green",shape="box"];3146[label="xwv430",fontsize=16,color="green",shape="box"];3147[label="xwv440",fontsize=16,color="green",shape="box"];3148[label="xwv430",fontsize=16,color="green",shape="box"];3149[label="xwv440",fontsize=16,color="green",shape="box"];3150[label="xwv430",fontsize=16,color="green",shape="box"];3151[label="xwv440",fontsize=16,color="green",shape="box"];3152[label="xwv430",fontsize=16,color="green",shape="box"];3153[label="xwv440",fontsize=16,color="green",shape="box"];3154 -> 2872[label="",style="dashed", color="red", weight=0]; 3154[label="primPlusNat xwv2370 xwv40100",fontsize=16,color="magenta"];3154 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3154 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3466[label="xwv33200",fontsize=16,color="green",shape="box"];3467[label="xwv24200",fontsize=16,color="green",shape="box"];4207[label="xwv3553",fontsize=16,color="green",shape="box"];4208[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) xwv344 xwv3550 xwv3551 xwv3552 xwv3553 xwv3554 True",fontsize=16,color="black",shape="box"];4208 -> 4309[label="",style="solid", color="black", weight=3]; 4209 -> 4594[label="",style="dashed", color="red", weight=0]; 4209[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xwv3550 xwv3551 xwv3553 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv340 xwv341 xwv3554 xwv344)",fontsize=16,color="magenta"];4209 -> 4615[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4616[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4617[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4618[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4619[label="",style="dashed", color="magenta", weight=3]; 4304[label="error []",fontsize=16,color="red",shape="box"];4305 -> 4594[label="",style="dashed", color="red", weight=0]; 4305[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xwv34430 xwv34431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv340 xwv341 xwv355 xwv34433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv3440 xwv3441 xwv34434 xwv3444)",fontsize=16,color="magenta"];4305 -> 4620[label="",style="dashed", color="magenta", weight=3]; 4305 -> 4621[label="",style="dashed", color="magenta", weight=3]; 4305 -> 4622[label="",style="dashed", color="magenta", weight=3]; 4305 -> 4623[label="",style="dashed", color="magenta", weight=3]; 4305 -> 4624[label="",style="dashed", color="magenta", weight=3]; 3854[label="xwv333",fontsize=16,color="green",shape="box"];3855 -> 3792[label="",style="dashed", color="red", weight=0]; 3855[label="FiniteMap.mkBalBranch xwv330 xwv331 xwv333 (FiniteMap.deleteMax (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344))",fontsize=16,color="magenta"];3855 -> 3869[label="",style="dashed", color="magenta", weight=3]; 3855 -> 3870[label="",style="dashed", color="magenta", weight=3]; 3855 -> 3871[label="",style="dashed", color="magenta", weight=3]; 3855 -> 3872[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4392[label="",style="dashed", color="red", weight=0]; 3856[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.findMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334))",fontsize=16,color="magenta"];3856 -> 4393[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4394[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4395[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4396[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4397[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4398[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4399[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4400[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4401[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4402[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4403[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4404[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4405[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4406[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4407[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4497[label="",style="dashed", color="red", weight=0]; 3857[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.findMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334))",fontsize=16,color="magenta"];3857 -> 4498[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4499[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4500[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4501[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4502[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4503[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4504[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4505[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4506[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4507[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4508[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4509[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4510[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4511[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4512[label="",style="dashed", color="magenta", weight=3]; 3880[label="xwv3433",fontsize=16,color="green",shape="box"];3881[label="xwv3434",fontsize=16,color="green",shape="box"];3882[label="xwv3430",fontsize=16,color="green",shape="box"];3883[label="xwv3432",fontsize=16,color="green",shape="box"];3884[label="xwv3431",fontsize=16,color="green",shape="box"];4210[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv377 xwv378 xwv379 xwv380 xwv381) (FiniteMap.Branch xwv382 xwv383 xwv384 xwv385 xwv386) (FiniteMap.findMin (FiniteMap.Branch xwv387 xwv388 xwv389 FiniteMap.EmptyFM xwv391))",fontsize=16,color="black",shape="box"];4210 -> 4332[label="",style="solid", color="black", weight=3]; 4211[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv377 xwv378 xwv379 xwv380 xwv381) (FiniteMap.Branch xwv382 xwv383 xwv384 xwv385 xwv386) (FiniteMap.findMin (FiniteMap.Branch xwv387 xwv388 xwv389 (FiniteMap.Branch xwv3900 xwv3901 xwv3902 xwv3903 xwv3904) xwv391))",fontsize=16,color="black",shape="box"];4211 -> 4333[label="",style="solid", color="black", weight=3]; 4307[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv393 xwv394 xwv395 xwv396 xwv397) (FiniteMap.Branch xwv398 xwv399 xwv400 xwv401 xwv402) (FiniteMap.findMin (FiniteMap.Branch xwv403 xwv404 xwv405 FiniteMap.EmptyFM xwv407))",fontsize=16,color="black",shape="box"];4307 -> 4334[label="",style="solid", color="black", weight=3]; 4308[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv393 xwv394 xwv395 xwv396 xwv397) (FiniteMap.Branch xwv398 xwv399 xwv400 xwv401 xwv402) (FiniteMap.findMin (FiniteMap.Branch xwv403 xwv404 xwv405 (FiniteMap.Branch xwv4060 xwv4061 xwv4062 xwv4063 xwv4064) xwv407))",fontsize=16,color="black",shape="box"];4308 -> 4335[label="",style="solid", color="black", weight=3]; 3186[label="xwv430",fontsize=16,color="green",shape="box"];3187[label="xwv440",fontsize=16,color="green",shape="box"];3188[label="xwv430",fontsize=16,color="green",shape="box"];3189[label="xwv440",fontsize=16,color="green",shape="box"];3190[label="xwv430",fontsize=16,color="green",shape="box"];3191[label="xwv440",fontsize=16,color="green",shape="box"];3192[label="xwv430",fontsize=16,color="green",shape="box"];3193[label="xwv440",fontsize=16,color="green",shape="box"];3194[label="xwv430",fontsize=16,color="green",shape="box"];3195[label="xwv440",fontsize=16,color="green",shape="box"];3196[label="xwv430",fontsize=16,color="green",shape="box"];3197[label="xwv440",fontsize=16,color="green",shape="box"];3198[label="xwv430",fontsize=16,color="green",shape="box"];3199[label="xwv440",fontsize=16,color="green",shape="box"];3200[label="xwv430",fontsize=16,color="green",shape="box"];3201[label="xwv440",fontsize=16,color="green",shape="box"];3202[label="xwv430",fontsize=16,color="green",shape="box"];3203[label="xwv440",fontsize=16,color="green",shape="box"];3204[label="xwv430",fontsize=16,color="green",shape="box"];3205[label="xwv440",fontsize=16,color="green",shape="box"];3206[label="xwv430",fontsize=16,color="green",shape="box"];3207[label="xwv440",fontsize=16,color="green",shape="box"];3208[label="xwv430",fontsize=16,color="green",shape="box"];3209[label="xwv440",fontsize=16,color="green",shape="box"];3210[label="xwv430",fontsize=16,color="green",shape="box"];3211[label="xwv440",fontsize=16,color="green",shape="box"];3212[label="xwv430",fontsize=16,color="green",shape="box"];3213[label="xwv440",fontsize=16,color="green",shape="box"];3214[label="xwv431 == xwv441",fontsize=16,color="blue",shape="box"];5626[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5626[label="",style="solid", color="blue", weight=9]; 5626 -> 3318[label="",style="solid", color="blue", weight=3]; 5627[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5627[label="",style="solid", color="blue", weight=9]; 5627 -> 3319[label="",style="solid", color="blue", weight=3]; 5628[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5628[label="",style="solid", color="blue", weight=9]; 5628 -> 3320[label="",style="solid", color="blue", weight=3]; 5629[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5629[label="",style="solid", color="blue", weight=9]; 5629 -> 3321[label="",style="solid", color="blue", weight=3]; 5630[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5630[label="",style="solid", color="blue", weight=9]; 5630 -> 3322[label="",style="solid", color="blue", weight=3]; 5631[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5631[label="",style="solid", color="blue", weight=9]; 5631 -> 3323[label="",style="solid", color="blue", weight=3]; 5632[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5632[label="",style="solid", color="blue", weight=9]; 5632 -> 3324[label="",style="solid", color="blue", weight=3]; 5633[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5633[label="",style="solid", color="blue", weight=9]; 5633 -> 3325[label="",style="solid", color="blue", weight=3]; 5634[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5634[label="",style="solid", color="blue", weight=9]; 5634 -> 3326[label="",style="solid", color="blue", weight=3]; 5635[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5635[label="",style="solid", color="blue", weight=9]; 5635 -> 3327[label="",style="solid", color="blue", weight=3]; 5636[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5636[label="",style="solid", color="blue", weight=9]; 5636 -> 3328[label="",style="solid", color="blue", weight=3]; 5637[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5637[label="",style="solid", color="blue", weight=9]; 5637 -> 3329[label="",style="solid", color="blue", weight=3]; 5638[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5638[label="",style="solid", color="blue", weight=9]; 5638 -> 3330[label="",style="solid", color="blue", weight=3]; 5639[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3214 -> 5639[label="",style="solid", color="blue", weight=9]; 5639 -> 3331[label="",style="solid", color="blue", weight=3]; 3215[label="xwv432 <= xwv442",fontsize=16,color="blue",shape="box"];5640[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5640[label="",style="solid", color="blue", weight=9]; 5640 -> 3332[label="",style="solid", color="blue", weight=3]; 5641[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5641[label="",style="solid", color="blue", weight=9]; 5641 -> 3333[label="",style="solid", color="blue", weight=3]; 5642[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5642[label="",style="solid", color="blue", weight=9]; 5642 -> 3334[label="",style="solid", color="blue", weight=3]; 5643[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5643[label="",style="solid", color="blue", weight=9]; 5643 -> 3335[label="",style="solid", color="blue", weight=3]; 5644[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5644[label="",style="solid", color="blue", weight=9]; 5644 -> 3336[label="",style="solid", color="blue", weight=3]; 5645[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5645[label="",style="solid", color="blue", weight=9]; 5645 -> 3337[label="",style="solid", color="blue", weight=3]; 5646[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5646[label="",style="solid", color="blue", weight=9]; 5646 -> 3338[label="",style="solid", color="blue", weight=3]; 5647[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5647[label="",style="solid", color="blue", weight=9]; 5647 -> 3339[label="",style="solid", color="blue", weight=3]; 5648[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5648[label="",style="solid", color="blue", weight=9]; 5648 -> 3340[label="",style="solid", color="blue", weight=3]; 5649[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5649[label="",style="solid", color="blue", weight=9]; 5649 -> 3341[label="",style="solid", color="blue", weight=3]; 5650[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5650[label="",style="solid", color="blue", weight=9]; 5650 -> 3342[label="",style="solid", color="blue", weight=3]; 5651[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5651[label="",style="solid", color="blue", weight=9]; 5651 -> 3343[label="",style="solid", color="blue", weight=3]; 5652[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5652[label="",style="solid", color="blue", weight=9]; 5652 -> 3344[label="",style="solid", color="blue", weight=3]; 5653[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3215 -> 5653[label="",style="solid", color="blue", weight=9]; 5653 -> 3345[label="",style="solid", color="blue", weight=3]; 3216 -> 1614[label="",style="dashed", color="red", weight=0]; 3216[label="xwv431 < xwv441",fontsize=16,color="magenta"];3216 -> 3346[label="",style="dashed", color="magenta", weight=3]; 3216 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3217 -> 1615[label="",style="dashed", color="red", weight=0]; 3217[label="xwv431 < xwv441",fontsize=16,color="magenta"];3217 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3217 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3218 -> 1616[label="",style="dashed", color="red", weight=0]; 3218[label="xwv431 < xwv441",fontsize=16,color="magenta"];3218 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3218 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3219 -> 1617[label="",style="dashed", color="red", weight=0]; 3219[label="xwv431 < xwv441",fontsize=16,color="magenta"];3219 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3219 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3220 -> 1618[label="",style="dashed", color="red", weight=0]; 3220[label="xwv431 < xwv441",fontsize=16,color="magenta"];3220 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3220 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3221 -> 1619[label="",style="dashed", color="red", weight=0]; 3221[label="xwv431 < xwv441",fontsize=16,color="magenta"];3221 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3221 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3222 -> 1620[label="",style="dashed", color="red", weight=0]; 3222[label="xwv431 < xwv441",fontsize=16,color="magenta"];3222 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3222 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3223 -> 1621[label="",style="dashed", color="red", weight=0]; 3223[label="xwv431 < xwv441",fontsize=16,color="magenta"];3223 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3223 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3224 -> 1622[label="",style="dashed", color="red", weight=0]; 3224[label="xwv431 < xwv441",fontsize=16,color="magenta"];3224 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3224 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3225 -> 1623[label="",style="dashed", color="red", weight=0]; 3225[label="xwv431 < xwv441",fontsize=16,color="magenta"];3225 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3226 -> 1624[label="",style="dashed", color="red", weight=0]; 3226[label="xwv431 < xwv441",fontsize=16,color="magenta"];3226 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3226 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3227 -> 1625[label="",style="dashed", color="red", weight=0]; 3227[label="xwv431 < xwv441",fontsize=16,color="magenta"];3227 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3227 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3228 -> 1626[label="",style="dashed", color="red", weight=0]; 3228[label="xwv431 < xwv441",fontsize=16,color="magenta"];3228 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3228 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3229 -> 1627[label="",style="dashed", color="red", weight=0]; 3229[label="xwv431 < xwv441",fontsize=16,color="magenta"];3229 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3230[label="xwv430",fontsize=16,color="green",shape="box"];3231[label="xwv440",fontsize=16,color="green",shape="box"];3232[label="xwv430",fontsize=16,color="green",shape="box"];3233[label="xwv440",fontsize=16,color="green",shape="box"];3234[label="xwv430",fontsize=16,color="green",shape="box"];3235[label="xwv440",fontsize=16,color="green",shape="box"];3236[label="xwv430",fontsize=16,color="green",shape="box"];3237[label="xwv440",fontsize=16,color="green",shape="box"];3238[label="xwv430",fontsize=16,color="green",shape="box"];3239[label="xwv440",fontsize=16,color="green",shape="box"];3240[label="xwv430",fontsize=16,color="green",shape="box"];3241[label="xwv440",fontsize=16,color="green",shape="box"];3242[label="xwv430",fontsize=16,color="green",shape="box"];3243[label="xwv440",fontsize=16,color="green",shape="box"];3244[label="xwv430",fontsize=16,color="green",shape="box"];3245[label="xwv440",fontsize=16,color="green",shape="box"];3246[label="xwv430",fontsize=16,color="green",shape="box"];3247[label="xwv440",fontsize=16,color="green",shape="box"];3248[label="xwv430",fontsize=16,color="green",shape="box"];3249[label="xwv440",fontsize=16,color="green",shape="box"];3250[label="xwv430",fontsize=16,color="green",shape="box"];3251[label="xwv440",fontsize=16,color="green",shape="box"];3252[label="xwv430",fontsize=16,color="green",shape="box"];3253[label="xwv440",fontsize=16,color="green",shape="box"];3254[label="xwv430",fontsize=16,color="green",shape="box"];3255[label="xwv440",fontsize=16,color="green",shape="box"];3256[label="xwv430",fontsize=16,color="green",shape="box"];3257[label="xwv440",fontsize=16,color="green",shape="box"];3258[label="xwv431",fontsize=16,color="green",shape="box"];3259[label="xwv441",fontsize=16,color="green",shape="box"];3260[label="xwv431",fontsize=16,color="green",shape="box"];3261[label="xwv441",fontsize=16,color="green",shape="box"];3262[label="xwv431",fontsize=16,color="green",shape="box"];3263[label="xwv441",fontsize=16,color="green",shape="box"];3264[label="xwv431",fontsize=16,color="green",shape="box"];3265[label="xwv441",fontsize=16,color="green",shape="box"];3266[label="xwv431",fontsize=16,color="green",shape="box"];3267[label="xwv441",fontsize=16,color="green",shape="box"];3268[label="xwv431",fontsize=16,color="green",shape="box"];3269[label="xwv441",fontsize=16,color="green",shape="box"];3270[label="xwv431",fontsize=16,color="green",shape="box"];3271[label="xwv441",fontsize=16,color="green",shape="box"];3272[label="xwv431",fontsize=16,color="green",shape="box"];3273[label="xwv441",fontsize=16,color="green",shape="box"];3274[label="xwv431",fontsize=16,color="green",shape="box"];3275[label="xwv441",fontsize=16,color="green",shape="box"];3276[label="xwv431",fontsize=16,color="green",shape="box"];3277[label="xwv441",fontsize=16,color="green",shape="box"];3278[label="xwv431",fontsize=16,color="green",shape="box"];3279[label="xwv441",fontsize=16,color="green",shape="box"];3280[label="xwv431",fontsize=16,color="green",shape="box"];3281[label="xwv441",fontsize=16,color="green",shape="box"];3282[label="xwv431",fontsize=16,color="green",shape="box"];3283[label="xwv441",fontsize=16,color="green",shape="box"];3284[label="xwv431",fontsize=16,color="green",shape="box"];3285[label="xwv441",fontsize=16,color="green",shape="box"];3286[label="xwv2370",fontsize=16,color="green",shape="box"];3287[label="xwv40100",fontsize=16,color="green",shape="box"];4309[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 xwv3554) xwv344",fontsize=16,color="burlywood",shape="box"];5654[label="xwv3554/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4309 -> 5654[label="",style="solid", color="burlywood", weight=9]; 5654 -> 4336[label="",style="solid", color="burlywood", weight=3]; 5655[label="xwv3554/FiniteMap.Branch xwv35540 xwv35541 xwv35542 xwv35543 xwv35544",fontsize=10,color="white",style="solid",shape="box"];4309 -> 5655[label="",style="solid", color="burlywood", weight=9]; 5655 -> 4337[label="",style="solid", color="burlywood", weight=3]; 4615[label="xwv3550",fontsize=16,color="green",shape="box"];4616 -> 4594[label="",style="dashed", color="red", weight=0]; 4616[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv340 xwv341 xwv3554 xwv344",fontsize=16,color="magenta"];4616 -> 4656[label="",style="dashed", color="magenta", weight=3]; 4616 -> 4657[label="",style="dashed", color="magenta", weight=3]; 4616 -> 4658[label="",style="dashed", color="magenta", weight=3]; 4616 -> 4659[label="",style="dashed", color="magenta", weight=3]; 4616 -> 4660[label="",style="dashed", color="magenta", weight=3]; 4617[label="xwv3553",fontsize=16,color="green",shape="box"];4618[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4619[label="xwv3551",fontsize=16,color="green",shape="box"];4620[label="xwv34430",fontsize=16,color="green",shape="box"];4621 -> 4594[label="",style="dashed", color="red", weight=0]; 4621[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv3440 xwv3441 xwv34434 xwv3444",fontsize=16,color="magenta"];4621 -> 4661[label="",style="dashed", color="magenta", weight=3]; 4621 -> 4662[label="",style="dashed", color="magenta", weight=3]; 4621 -> 4663[label="",style="dashed", color="magenta", weight=3]; 4621 -> 4664[label="",style="dashed", color="magenta", weight=3]; 4621 -> 4665[label="",style="dashed", color="magenta", weight=3]; 4622 -> 4594[label="",style="dashed", color="red", weight=0]; 4622[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv340 xwv341 xwv355 xwv34433",fontsize=16,color="magenta"];4622 -> 4666[label="",style="dashed", color="magenta", weight=3]; 4622 -> 4667[label="",style="dashed", color="magenta", weight=3]; 4622 -> 4668[label="",style="dashed", color="magenta", weight=3]; 4622 -> 4669[label="",style="dashed", color="magenta", weight=3]; 4622 -> 4670[label="",style="dashed", color="magenta", weight=3]; 4623[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4624[label="xwv34431",fontsize=16,color="green",shape="box"];3869 -> 3826[label="",style="dashed", color="red", weight=0]; 3869[label="FiniteMap.deleteMax (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344)",fontsize=16,color="magenta"];3869 -> 3889[label="",style="dashed", color="magenta", weight=3]; 3869 -> 3890[label="",style="dashed", color="magenta", weight=3]; 3869 -> 3891[label="",style="dashed", color="magenta", weight=3]; 3869 -> 3892[label="",style="dashed", color="magenta", weight=3]; 3869 -> 3893[label="",style="dashed", color="magenta", weight=3]; 3870[label="xwv333",fontsize=16,color="green",shape="box"];3871[label="xwv330",fontsize=16,color="green",shape="box"];3872[label="xwv331",fontsize=16,color="green",shape="box"];4393[label="xwv344",fontsize=16,color="green",shape="box"];4394[label="xwv343",fontsize=16,color="green",shape="box"];4395[label="xwv333",fontsize=16,color="green",shape="box"];4396[label="xwv330",fontsize=16,color="green",shape="box"];4397[label="xwv330",fontsize=16,color="green",shape="box"];4398[label="xwv332",fontsize=16,color="green",shape="box"];4399[label="xwv333",fontsize=16,color="green",shape="box"];4400[label="xwv341",fontsize=16,color="green",shape="box"];4401[label="xwv342",fontsize=16,color="green",shape="box"];4402[label="xwv334",fontsize=16,color="green",shape="box"];4403[label="xwv331",fontsize=16,color="green",shape="box"];4404[label="xwv334",fontsize=16,color="green",shape="box"];4405[label="xwv332",fontsize=16,color="green",shape="box"];4406[label="xwv340",fontsize=16,color="green",shape="box"];4407[label="xwv331",fontsize=16,color="green",shape="box"];4392[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv440 xwv441 xwv442 xwv443 xwv444) (FiniteMap.Branch xwv445 xwv446 xwv447 xwv448 xwv449) (FiniteMap.findMax (FiniteMap.Branch xwv450 xwv451 xwv452 xwv453 xwv454))",fontsize=16,color="burlywood",shape="triangle"];5656[label="xwv454/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4392 -> 5656[label="",style="solid", color="burlywood", weight=9]; 5656 -> 4483[label="",style="solid", color="burlywood", weight=3]; 5657[label="xwv454/FiniteMap.Branch xwv4540 xwv4541 xwv4542 xwv4543 xwv4544",fontsize=10,color="white",style="solid",shape="box"];4392 -> 5657[label="",style="solid", color="burlywood", weight=9]; 5657 -> 4484[label="",style="solid", color="burlywood", weight=3]; 4498[label="xwv332",fontsize=16,color="green",shape="box"];4499[label="xwv341",fontsize=16,color="green",shape="box"];4500[label="xwv344",fontsize=16,color="green",shape="box"];4501[label="xwv330",fontsize=16,color="green",shape="box"];4502[label="xwv334",fontsize=16,color="green",shape="box"];4503[label="xwv332",fontsize=16,color="green",shape="box"];4504[label="xwv340",fontsize=16,color="green",shape="box"];4505[label="xwv331",fontsize=16,color="green",shape="box"];4506[label="xwv330",fontsize=16,color="green",shape="box"];4507[label="xwv333",fontsize=16,color="green",shape="box"];4508[label="xwv342",fontsize=16,color="green",shape="box"];4509[label="xwv333",fontsize=16,color="green",shape="box"];4510[label="xwv343",fontsize=16,color="green",shape="box"];4511[label="xwv334",fontsize=16,color="green",shape="box"];4512[label="xwv331",fontsize=16,color="green",shape="box"];4497[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv456 xwv457 xwv458 xwv459 xwv460) (FiniteMap.Branch xwv461 xwv462 xwv463 xwv464 xwv465) (FiniteMap.findMax (FiniteMap.Branch xwv466 xwv467 xwv468 xwv469 xwv470))",fontsize=16,color="burlywood",shape="triangle"];5658[label="xwv470/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4497 -> 5658[label="",style="solid", color="burlywood", weight=9]; 5658 -> 4588[label="",style="solid", color="burlywood", weight=3]; 5659[label="xwv470/FiniteMap.Branch xwv4700 xwv4701 xwv4702 xwv4703 xwv4704",fontsize=10,color="white",style="solid",shape="box"];4497 -> 5659[label="",style="solid", color="burlywood", weight=9]; 5659 -> 4589[label="",style="solid", color="burlywood", weight=3]; 4332[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv377 xwv378 xwv379 xwv380 xwv381) (FiniteMap.Branch xwv382 xwv383 xwv384 xwv385 xwv386) (xwv387,xwv388)",fontsize=16,color="black",shape="box"];4332 -> 4377[label="",style="solid", color="black", weight=3]; 4333 -> 4110[label="",style="dashed", color="red", weight=0]; 4333[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv377 xwv378 xwv379 xwv380 xwv381) (FiniteMap.Branch xwv382 xwv383 xwv384 xwv385 xwv386) (FiniteMap.findMin (FiniteMap.Branch xwv3900 xwv3901 xwv3902 xwv3903 xwv3904))",fontsize=16,color="magenta"];4333 -> 4378[label="",style="dashed", color="magenta", weight=3]; 4333 -> 4379[label="",style="dashed", color="magenta", weight=3]; 4333 -> 4380[label="",style="dashed", color="magenta", weight=3]; 4333 -> 4381[label="",style="dashed", color="magenta", weight=3]; 4333 -> 4382[label="",style="dashed", color="magenta", weight=3]; 4334[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv393 xwv394 xwv395 xwv396 xwv397) (FiniteMap.Branch xwv398 xwv399 xwv400 xwv401 xwv402) (xwv403,xwv404)",fontsize=16,color="black",shape="box"];4334 -> 4383[label="",style="solid", color="black", weight=3]; 4335 -> 4213[label="",style="dashed", color="red", weight=0]; 4335[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv393 xwv394 xwv395 xwv396 xwv397) (FiniteMap.Branch xwv398 xwv399 xwv400 xwv401 xwv402) (FiniteMap.findMin (FiniteMap.Branch xwv4060 xwv4061 xwv4062 xwv4063 xwv4064))",fontsize=16,color="magenta"];4335 -> 4384[label="",style="dashed", color="magenta", weight=3]; 4335 -> 4385[label="",style="dashed", color="magenta", weight=3]; 4335 -> 4386[label="",style="dashed", color="magenta", weight=3]; 4335 -> 4387[label="",style="dashed", color="magenta", weight=3]; 4335 -> 4388[label="",style="dashed", color="magenta", weight=3]; 3318 -> 521[label="",style="dashed", color="red", weight=0]; 3318[label="xwv431 == xwv441",fontsize=16,color="magenta"];3318 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3319 -> 524[label="",style="dashed", color="red", weight=0]; 3319[label="xwv431 == xwv441",fontsize=16,color="magenta"];3319 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3319 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3320 -> 514[label="",style="dashed", color="red", weight=0]; 3320[label="xwv431 == xwv441",fontsize=16,color="magenta"];3320 -> 3406[label="",style="dashed", color="magenta", weight=3]; 3320 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3321 -> 522[label="",style="dashed", color="red", weight=0]; 3321[label="xwv431 == xwv441",fontsize=16,color="magenta"];3321 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3321 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3322 -> 511[label="",style="dashed", color="red", weight=0]; 3322[label="xwv431 == xwv441",fontsize=16,color="magenta"];3322 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3322 -> 3411[label="",style="dashed", color="magenta", weight=3]; 3323 -> 513[label="",style="dashed", color="red", weight=0]; 3323[label="xwv431 == xwv441",fontsize=16,color="magenta"];3323 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3324 -> 512[label="",style="dashed", color="red", weight=0]; 3324[label="xwv431 == xwv441",fontsize=16,color="magenta"];3324 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3325 -> 523[label="",style="dashed", color="red", weight=0]; 3325[label="xwv431 == xwv441",fontsize=16,color="magenta"];3325 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3325 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3326 -> 519[label="",style="dashed", color="red", weight=0]; 3326[label="xwv431 == xwv441",fontsize=16,color="magenta"];3326 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3326 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3327 -> 516[label="",style="dashed", color="red", weight=0]; 3327[label="xwv431 == xwv441",fontsize=16,color="magenta"];3327 -> 3420[label="",style="dashed", color="magenta", weight=3]; 3327 -> 3421[label="",style="dashed", color="magenta", weight=3]; 3328 -> 520[label="",style="dashed", color="red", weight=0]; 3328[label="xwv431 == xwv441",fontsize=16,color="magenta"];3328 -> 3422[label="",style="dashed", color="magenta", weight=3]; 3328 -> 3423[label="",style="dashed", color="magenta", weight=3]; 3329 -> 518[label="",style="dashed", color="red", weight=0]; 3329[label="xwv431 == xwv441",fontsize=16,color="magenta"];3329 -> 3424[label="",style="dashed", color="magenta", weight=3]; 3329 -> 3425[label="",style="dashed", color="magenta", weight=3]; 3330 -> 517[label="",style="dashed", color="red", weight=0]; 3330[label="xwv431 == xwv441",fontsize=16,color="magenta"];3330 -> 3426[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3427[label="",style="dashed", color="magenta", weight=3]; 3331 -> 515[label="",style="dashed", color="red", weight=0]; 3331[label="xwv431 == xwv441",fontsize=16,color="magenta"];3331 -> 3428[label="",style="dashed", color="magenta", weight=3]; 3331 -> 3429[label="",style="dashed", color="magenta", weight=3]; 3332 -> 1561[label="",style="dashed", color="red", weight=0]; 3332[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3332 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3332 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3333 -> 1562[label="",style="dashed", color="red", weight=0]; 3333[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3333 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3333 -> 3433[label="",style="dashed", color="magenta", weight=3]; 3334 -> 1563[label="",style="dashed", color="red", weight=0]; 3334[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3334 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3334 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3335 -> 1564[label="",style="dashed", color="red", weight=0]; 3335[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3335 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3335 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3336 -> 1565[label="",style="dashed", color="red", weight=0]; 3336[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3336 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3336 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3337 -> 1566[label="",style="dashed", color="red", weight=0]; 3337[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3337 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3337 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3338 -> 1567[label="",style="dashed", color="red", weight=0]; 3338[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3338 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3338 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3339 -> 1568[label="",style="dashed", color="red", weight=0]; 3339[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3339 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3339 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3340 -> 1569[label="",style="dashed", color="red", weight=0]; 3340[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3340 -> 3446[label="",style="dashed", color="magenta", weight=3]; 3340 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3341 -> 1570[label="",style="dashed", color="red", weight=0]; 3341[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3341 -> 3448[label="",style="dashed", color="magenta", weight=3]; 3341 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3342 -> 1571[label="",style="dashed", color="red", weight=0]; 3342[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3342 -> 3450[label="",style="dashed", color="magenta", weight=3]; 3342 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3343 -> 1572[label="",style="dashed", color="red", weight=0]; 3343[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3343 -> 3452[label="",style="dashed", color="magenta", weight=3]; 3343 -> 3453[label="",style="dashed", color="magenta", weight=3]; 3344 -> 1573[label="",style="dashed", color="red", weight=0]; 3344[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3344 -> 3454[label="",style="dashed", color="magenta", weight=3]; 3344 -> 3455[label="",style="dashed", color="magenta", weight=3]; 3345 -> 1574[label="",style="dashed", color="red", weight=0]; 3345[label="xwv432 <= xwv442",fontsize=16,color="magenta"];3345 -> 3456[label="",style="dashed", color="magenta", weight=3]; 3345 -> 3457[label="",style="dashed", color="magenta", weight=3]; 3346[label="xwv431",fontsize=16,color="green",shape="box"];3347[label="xwv441",fontsize=16,color="green",shape="box"];3348[label="xwv431",fontsize=16,color="green",shape="box"];3349[label="xwv441",fontsize=16,color="green",shape="box"];3350[label="xwv431",fontsize=16,color="green",shape="box"];3351[label="xwv441",fontsize=16,color="green",shape="box"];3352[label="xwv431",fontsize=16,color="green",shape="box"];3353[label="xwv441",fontsize=16,color="green",shape="box"];3354[label="xwv431",fontsize=16,color="green",shape="box"];3355[label="xwv441",fontsize=16,color="green",shape="box"];3356[label="xwv431",fontsize=16,color="green",shape="box"];3357[label="xwv441",fontsize=16,color="green",shape="box"];3358[label="xwv431",fontsize=16,color="green",shape="box"];3359[label="xwv441",fontsize=16,color="green",shape="box"];3360[label="xwv431",fontsize=16,color="green",shape="box"];3361[label="xwv441",fontsize=16,color="green",shape="box"];3362[label="xwv431",fontsize=16,color="green",shape="box"];3363[label="xwv441",fontsize=16,color="green",shape="box"];3364[label="xwv431",fontsize=16,color="green",shape="box"];3365[label="xwv441",fontsize=16,color="green",shape="box"];3366[label="xwv431",fontsize=16,color="green",shape="box"];3367[label="xwv441",fontsize=16,color="green",shape="box"];3368[label="xwv431",fontsize=16,color="green",shape="box"];3369[label="xwv441",fontsize=16,color="green",shape="box"];3370[label="xwv431",fontsize=16,color="green",shape="box"];3371[label="xwv441",fontsize=16,color="green",shape="box"];3372[label="xwv431",fontsize=16,color="green",shape="box"];3373[label="xwv441",fontsize=16,color="green",shape="box"];4336[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 FiniteMap.EmptyFM) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 FiniteMap.EmptyFM) xwv344",fontsize=16,color="black",shape="box"];4336 -> 4389[label="",style="solid", color="black", weight=3]; 4337[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 (FiniteMap.Branch xwv35540 xwv35541 xwv35542 xwv35543 xwv35544)) (FiniteMap.Branch xwv3550 xwv3551 xwv3552 xwv3553 (FiniteMap.Branch xwv35540 xwv35541 xwv35542 xwv35543 xwv35544)) xwv344",fontsize=16,color="black",shape="box"];4337 -> 4390[label="",style="solid", color="black", weight=3]; 4656[label="xwv340",fontsize=16,color="green",shape="box"];4657[label="xwv344",fontsize=16,color="green",shape="box"];4658[label="xwv3554",fontsize=16,color="green",shape="box"];4659[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4660[label="xwv341",fontsize=16,color="green",shape="box"];4661[label="xwv3440",fontsize=16,color="green",shape="box"];4662[label="xwv3444",fontsize=16,color="green",shape="box"];4663[label="xwv34434",fontsize=16,color="green",shape="box"];4664[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4665[label="xwv3441",fontsize=16,color="green",shape="box"];4666[label="xwv340",fontsize=16,color="green",shape="box"];4667[label="xwv34433",fontsize=16,color="green",shape="box"];4668[label="xwv355",fontsize=16,color="green",shape="box"];4669[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4670[label="xwv341",fontsize=16,color="green",shape="box"];3889[label="xwv3344",fontsize=16,color="green",shape="box"];3890[label="xwv3340",fontsize=16,color="green",shape="box"];3891[label="xwv3342",fontsize=16,color="green",shape="box"];3892[label="xwv3343",fontsize=16,color="green",shape="box"];3893[label="xwv3341",fontsize=16,color="green",shape="box"];4483[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv440 xwv441 xwv442 xwv443 xwv444) (FiniteMap.Branch xwv445 xwv446 xwv447 xwv448 xwv449) (FiniteMap.findMax (FiniteMap.Branch xwv450 xwv451 xwv452 xwv453 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];4483 -> 4590[label="",style="solid", color="black", weight=3]; 4484[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv440 xwv441 xwv442 xwv443 xwv444) (FiniteMap.Branch xwv445 xwv446 xwv447 xwv448 xwv449) (FiniteMap.findMax (FiniteMap.Branch xwv450 xwv451 xwv452 xwv453 (FiniteMap.Branch xwv4540 xwv4541 xwv4542 xwv4543 xwv4544)))",fontsize=16,color="black",shape="box"];4484 -> 4591[label="",style="solid", color="black", weight=3]; 4588[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv456 xwv457 xwv458 xwv459 xwv460) (FiniteMap.Branch xwv461 xwv462 xwv463 xwv464 xwv465) (FiniteMap.findMax (FiniteMap.Branch xwv466 xwv467 xwv468 xwv469 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];4588 -> 4671[label="",style="solid", color="black", weight=3]; 4589[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv456 xwv457 xwv458 xwv459 xwv460) (FiniteMap.Branch xwv461 xwv462 xwv463 xwv464 xwv465) (FiniteMap.findMax (FiniteMap.Branch xwv466 xwv467 xwv468 xwv469 (FiniteMap.Branch xwv4700 xwv4701 xwv4702 xwv4703 xwv4704)))",fontsize=16,color="black",shape="box"];4589 -> 4672[label="",style="solid", color="black", weight=3]; 4377[label="xwv387",fontsize=16,color="green",shape="box"];4378[label="xwv3901",fontsize=16,color="green",shape="box"];4379[label="xwv3903",fontsize=16,color="green",shape="box"];4380[label="xwv3902",fontsize=16,color="green",shape="box"];4381[label="xwv3904",fontsize=16,color="green",shape="box"];4382[label="xwv3900",fontsize=16,color="green",shape="box"];4383[label="xwv404",fontsize=16,color="green",shape="box"];4384[label="xwv4062",fontsize=16,color="green",shape="box"];4385[label="xwv4060",fontsize=16,color="green",shape="box"];4386[label="xwv4061",fontsize=16,color="green",shape="box"];4387[label="xwv4063",fontsize=16,color="green",shape="box"];4388[label="xwv4064",fontsize=16,color="green",shape="box"];3402[label="xwv431",fontsize=16,color="green",shape="box"];3403[label="xwv441",fontsize=16,color="green",shape="box"];3404[label="xwv431",fontsize=16,color="green",shape="box"];3405[label="xwv441",fontsize=16,color="green",shape="box"];3406[label="xwv431",fontsize=16,color="green",shape="box"];3407[label="xwv441",fontsize=16,color="green",shape="box"];3408[label="xwv431",fontsize=16,color="green",shape="box"];3409[label="xwv441",fontsize=16,color="green",shape="box"];3410[label="xwv431",fontsize=16,color="green",shape="box"];3411[label="xwv441",fontsize=16,color="green",shape="box"];3412[label="xwv431",fontsize=16,color="green",shape="box"];3413[label="xwv441",fontsize=16,color="green",shape="box"];3414[label="xwv431",fontsize=16,color="green",shape="box"];3415[label="xwv441",fontsize=16,color="green",shape="box"];3416[label="xwv431",fontsize=16,color="green",shape="box"];3417[label="xwv441",fontsize=16,color="green",shape="box"];3418[label="xwv431",fontsize=16,color="green",shape="box"];3419[label="xwv441",fontsize=16,color="green",shape="box"];3420[label="xwv431",fontsize=16,color="green",shape="box"];3421[label="xwv441",fontsize=16,color="green",shape="box"];3422[label="xwv431",fontsize=16,color="green",shape="box"];3423[label="xwv441",fontsize=16,color="green",shape="box"];3424[label="xwv431",fontsize=16,color="green",shape="box"];3425[label="xwv441",fontsize=16,color="green",shape="box"];3426[label="xwv431",fontsize=16,color="green",shape="box"];3427[label="xwv441",fontsize=16,color="green",shape="box"];3428[label="xwv431",fontsize=16,color="green",shape="box"];3429[label="xwv441",fontsize=16,color="green",shape="box"];3430[label="xwv432",fontsize=16,color="green",shape="box"];3431[label="xwv442",fontsize=16,color="green",shape="box"];3432[label="xwv432",fontsize=16,color="green",shape="box"];3433[label="xwv442",fontsize=16,color="green",shape="box"];3434[label="xwv432",fontsize=16,color="green",shape="box"];3435[label="xwv442",fontsize=16,color="green",shape="box"];3436[label="xwv432",fontsize=16,color="green",shape="box"];3437[label="xwv442",fontsize=16,color="green",shape="box"];3438[label="xwv432",fontsize=16,color="green",shape="box"];3439[label="xwv442",fontsize=16,color="green",shape="box"];3440[label="xwv432",fontsize=16,color="green",shape="box"];3441[label="xwv442",fontsize=16,color="green",shape="box"];3442[label="xwv432",fontsize=16,color="green",shape="box"];3443[label="xwv442",fontsize=16,color="green",shape="box"];3444[label="xwv432",fontsize=16,color="green",shape="box"];3445[label="xwv442",fontsize=16,color="green",shape="box"];3446[label="xwv432",fontsize=16,color="green",shape="box"];3447[label="xwv442",fontsize=16,color="green",shape="box"];3448[label="xwv432",fontsize=16,color="green",shape="box"];3449[label="xwv442",fontsize=16,color="green",shape="box"];3450[label="xwv432",fontsize=16,color="green",shape="box"];3451[label="xwv442",fontsize=16,color="green",shape="box"];3452[label="xwv432",fontsize=16,color="green",shape="box"];3453[label="xwv442",fontsize=16,color="green",shape="box"];3454[label="xwv432",fontsize=16,color="green",shape="box"];3455[label="xwv442",fontsize=16,color="green",shape="box"];3456[label="xwv432",fontsize=16,color="green",shape="box"];3457[label="xwv442",fontsize=16,color="green",shape="box"];4389[label="error []",fontsize=16,color="red",shape="box"];4390 -> 4594[label="",style="dashed", color="red", weight=0]; 4390[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xwv35540 xwv35541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv3550 xwv3551 xwv3553 xwv35543) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv340 xwv341 xwv35544 xwv344)",fontsize=16,color="magenta"];4390 -> 4635[label="",style="dashed", color="magenta", weight=3]; 4390 -> 4636[label="",style="dashed", color="magenta", weight=3]; 4390 -> 4637[label="",style="dashed", color="magenta", weight=3]; 4390 -> 4638[label="",style="dashed", color="magenta", weight=3]; 4390 -> 4639[label="",style="dashed", color="magenta", weight=3]; 4590[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv440 xwv441 xwv442 xwv443 xwv444) (FiniteMap.Branch xwv445 xwv446 xwv447 xwv448 xwv449) (xwv450,xwv451)",fontsize=16,color="black",shape="box"];4590 -> 4673[label="",style="solid", color="black", weight=3]; 4591 -> 4392[label="",style="dashed", color="red", weight=0]; 4591[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv440 xwv441 xwv442 xwv443 xwv444) (FiniteMap.Branch xwv445 xwv446 xwv447 xwv448 xwv449) (FiniteMap.findMax (FiniteMap.Branch xwv4540 xwv4541 xwv4542 xwv4543 xwv4544))",fontsize=16,color="magenta"];4591 -> 4674[label="",style="dashed", color="magenta", weight=3]; 4591 -> 4675[label="",style="dashed", color="magenta", weight=3]; 4591 -> 4676[label="",style="dashed", color="magenta", weight=3]; 4591 -> 4677[label="",style="dashed", color="magenta", weight=3]; 4591 -> 4678[label="",style="dashed", color="magenta", weight=3]; 4671[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv456 xwv457 xwv458 xwv459 xwv460) (FiniteMap.Branch xwv461 xwv462 xwv463 xwv464 xwv465) (xwv466,xwv467)",fontsize=16,color="black",shape="box"];4671 -> 4690[label="",style="solid", color="black", weight=3]; 4672 -> 4497[label="",style="dashed", color="red", weight=0]; 4672[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv456 xwv457 xwv458 xwv459 xwv460) (FiniteMap.Branch xwv461 xwv462 xwv463 xwv464 xwv465) (FiniteMap.findMax (FiniteMap.Branch xwv4700 xwv4701 xwv4702 xwv4703 xwv4704))",fontsize=16,color="magenta"];4672 -> 4691[label="",style="dashed", color="magenta", weight=3]; 4672 -> 4692[label="",style="dashed", color="magenta", weight=3]; 4672 -> 4693[label="",style="dashed", color="magenta", weight=3]; 4672 -> 4694[label="",style="dashed", color="magenta", weight=3]; 4672 -> 4695[label="",style="dashed", color="magenta", weight=3]; 4635[label="xwv35540",fontsize=16,color="green",shape="box"];4636 -> 4594[label="",style="dashed", color="red", weight=0]; 4636[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv340 xwv341 xwv35544 xwv344",fontsize=16,color="magenta"];4636 -> 4679[label="",style="dashed", color="magenta", weight=3]; 4636 -> 4680[label="",style="dashed", color="magenta", weight=3]; 4636 -> 4681[label="",style="dashed", color="magenta", weight=3]; 4636 -> 4682[label="",style="dashed", color="magenta", weight=3]; 4636 -> 4683[label="",style="dashed", color="magenta", weight=3]; 4637 -> 4594[label="",style="dashed", color="red", weight=0]; 4637[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv3550 xwv3551 xwv3553 xwv35543",fontsize=16,color="magenta"];4637 -> 4684[label="",style="dashed", color="magenta", weight=3]; 4637 -> 4685[label="",style="dashed", color="magenta", weight=3]; 4637 -> 4686[label="",style="dashed", color="magenta", weight=3]; 4637 -> 4687[label="",style="dashed", color="magenta", weight=3]; 4637 -> 4688[label="",style="dashed", color="magenta", weight=3]; 4638[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4639[label="xwv35541",fontsize=16,color="green",shape="box"];4673[label="xwv450",fontsize=16,color="green",shape="box"];4674[label="xwv4543",fontsize=16,color="green",shape="box"];4675[label="xwv4540",fontsize=16,color="green",shape="box"];4676[label="xwv4544",fontsize=16,color="green",shape="box"];4677[label="xwv4542",fontsize=16,color="green",shape="box"];4678[label="xwv4541",fontsize=16,color="green",shape="box"];4690[label="xwv467",fontsize=16,color="green",shape="box"];4691[label="xwv4702",fontsize=16,color="green",shape="box"];4692[label="xwv4701",fontsize=16,color="green",shape="box"];4693[label="xwv4700",fontsize=16,color="green",shape="box"];4694[label="xwv4703",fontsize=16,color="green",shape="box"];4695[label="xwv4704",fontsize=16,color="green",shape="box"];4679[label="xwv340",fontsize=16,color="green",shape="box"];4680[label="xwv344",fontsize=16,color="green",shape="box"];4681[label="xwv35544",fontsize=16,color="green",shape="box"];4682[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4683[label="xwv341",fontsize=16,color="green",shape="box"];4684[label="xwv3550",fontsize=16,color="green",shape="box"];4685[label="xwv35543",fontsize=16,color="green",shape="box"];4686[label="xwv3553",fontsize=16,color="green",shape="box"];4687[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4688[label="xwv3551",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(xwv4000), Succ(xwv30000)) -> new_primCmpNat(xwv4000, xwv30000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(xwv4000), Succ(xwv30000)) -> new_primCmpNat(xwv4000, xwv30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, app(app(ty_@2, dc), dd), bd) -> new_esEs2(xwv4001, xwv30001, dc, dd) new_esEs1(Left(xwv4000), Left(xwv30000), app(app(ty_Either, gf), gg), gd) -> new_esEs1(xwv4000, xwv30000, gf, gg) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, bc, app(app(ty_@2, ed), ee)) -> new_esEs2(xwv4002, xwv30002, ed, ee) new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), app(app(ty_Either, bde), bdf)) -> new_esEs1(xwv4000, xwv30000, bde, bdf) new_esEs1(Left(xwv4000), Left(xwv30000), app(ty_[], hb), gd) -> new_esEs3(xwv4000, xwv30000, hb) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(xwv4002, xwv30002, df, dg, dh) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, bc, app(ty_[], ef)) -> new_esEs3(xwv4002, xwv30002, ef) new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), bbg, app(app(ty_@2, bcf), bcg)) -> new_esEs2(xwv4001, xwv30001, bcf, bcg) new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(xwv4000, xwv30000, bae, baf, bag) new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), app(ty_[], bea)) -> new_esEs3(xwv4000, xwv30000, bea) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, app(ty_[], de), bd) -> new_esEs3(xwv4001, xwv30001, de) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), app(ty_Maybe, be), bc, bd) -> new_esEs0(xwv4000, xwv30000, be) new_esEs0(Just(xwv4000), Just(xwv30000), app(ty_[], fh)) -> new_esEs3(xwv4000, xwv30000, fh) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), app(ty_[], cb), bc, bd) -> new_esEs3(xwv4000, xwv30000, cb) new_esEs0(Just(xwv4000), Just(xwv30000), app(app(ty_@2, ff), fg)) -> new_esEs2(xwv4000, xwv30000, ff, fg) new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), app(ty_Maybe, bba), bah) -> new_esEs0(xwv4000, xwv30000, bba) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, app(ty_Maybe, cg), bd) -> new_esEs0(xwv4001, xwv30001, cg) new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), app(app(ty_@2, bbd), bbe), bah) -> new_esEs2(xwv4000, xwv30000, bbd, bbe) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(xwv4001, xwv30001, cd, ce, cf) new_esEs1(Right(xwv4000), Right(xwv30000), hc, app(app(ty_@2, bab), bac)) -> new_esEs2(xwv4000, xwv30000, bab, bac) new_esEs1(Left(xwv4000), Left(xwv30000), app(app(app(ty_@3, ga), gb), gc), gd) -> new_esEs(xwv4000, xwv30000, ga, gb, gc) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, bc, app(ty_Maybe, ea)) -> new_esEs0(xwv4002, xwv30002, ea) new_esEs1(Right(xwv4000), Right(xwv30000), hc, app(ty_Maybe, hg)) -> new_esEs0(xwv4000, xwv30000, hg) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), app(app(ty_@2, bh), ca), bc, bd) -> new_esEs2(xwv4000, xwv30000, bh, ca) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, app(app(ty_Either, da), db), bd) -> new_esEs1(xwv4001, xwv30001, da, db) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, bc, app(app(ty_Either, eb), ec)) -> new_esEs1(xwv4002, xwv30002, eb, ec) new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(xwv4001, xwv30001, bbh, bca, bcb) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), app(app(ty_Either, bf), bg), bc, bd) -> new_esEs1(xwv4000, xwv30000, bf, bg) new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), beb) -> new_esEs3(xwv4001, xwv30001, beb) new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs(xwv4000, xwv30000, bda, bdb, bdc) new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), bbg, app(ty_Maybe, bcc)) -> new_esEs0(xwv4001, xwv30001, bcc) new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(xwv4000, xwv30000, h, ba, bb) new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), app(ty_Maybe, bdd)) -> new_esEs0(xwv4000, xwv30000, bdd) new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), app(app(ty_@2, bdg), bdh)) -> new_esEs2(xwv4000, xwv30000, bdg, bdh) new_esEs1(Left(xwv4000), Left(xwv30000), app(app(ty_@2, gh), ha), gd) -> new_esEs2(xwv4000, xwv30000, gh, ha) new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), bbg, app(ty_[], bch)) -> new_esEs3(xwv4001, xwv30001, bch) new_esEs0(Just(xwv4000), Just(xwv30000), app(app(ty_Either, fc), fd)) -> new_esEs1(xwv4000, xwv30000, fc, fd) new_esEs1(Right(xwv4000), Right(xwv30000), hc, app(ty_[], bad)) -> new_esEs3(xwv4000, xwv30000, bad) new_esEs1(Right(xwv4000), Right(xwv30000), hc, app(app(app(ty_@3, hd), he), hf)) -> new_esEs(xwv4000, xwv30000, hd, he, hf) new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), app(ty_[], bbf), bah) -> new_esEs3(xwv4000, xwv30000, bbf) new_esEs0(Just(xwv4000), Just(xwv30000), app(ty_Maybe, fb)) -> new_esEs0(xwv4000, xwv30000, fb) new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), app(app(ty_Either, bbb), bbc), bah) -> new_esEs1(xwv4000, xwv30000, bbb, bbc) new_esEs1(Left(xwv4000), Left(xwv30000), app(ty_Maybe, ge), gd) -> new_esEs0(xwv4000, xwv30000, ge) new_esEs1(Right(xwv4000), Right(xwv30000), hc, app(app(ty_Either, hh), baa)) -> new_esEs1(xwv4000, xwv30000, hh, baa) new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), bbg, app(app(ty_Either, bcd), bce)) -> new_esEs1(xwv4001, xwv30001, bcd, bce) new_esEs0(Just(xwv4000), Just(xwv30000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(xwv4000, xwv30000, eg, eh, fa) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs(xwv4000, xwv30000, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), app(app(ty_Either, bde), bdf)) -> new_esEs1(xwv4000, xwv30000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(xwv4000), Just(xwv30000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(xwv4000, xwv30000, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Just(xwv4000), Just(xwv30000), app(app(ty_Either, fc), fd)) -> new_esEs1(xwv4000, xwv30000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(xwv4000), Just(xwv30000), app(ty_[], fh)) -> new_esEs3(xwv4000, xwv30000, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), app(app(ty_@2, bdg), bdh)) -> new_esEs2(xwv4000, xwv30000, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), app(ty_Maybe, bdd)) -> new_esEs0(xwv4000, xwv30000, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(xwv4000), Just(xwv30000), app(app(ty_@2, ff), fg)) -> new_esEs2(xwv4000, xwv30000, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(xwv4000), Just(xwv30000), app(ty_Maybe, fb)) -> new_esEs0(xwv4000, xwv30000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(xwv4000, xwv30000, bae, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(xwv4001, xwv30001, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), app(app(ty_Either, bbb), bbc), bah) -> new_esEs1(xwv4000, xwv30000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), bbg, app(app(ty_Either, bcd), bce)) -> new_esEs1(xwv4001, xwv30001, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), bbg, app(ty_[], bch)) -> new_esEs3(xwv4001, xwv30001, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), app(ty_[], bbf), bah) -> new_esEs3(xwv4000, xwv30000, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), bbg, app(app(ty_@2, bcf), bcg)) -> new_esEs2(xwv4001, xwv30001, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), app(app(ty_@2, bbd), bbe), bah) -> new_esEs2(xwv4000, xwv30000, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), app(ty_Maybe, bba), bah) -> new_esEs0(xwv4000, xwv30000, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), bbg, app(ty_Maybe, bcc)) -> new_esEs0(xwv4001, xwv30001, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(xwv4000), Left(xwv30000), app(app(app(ty_@3, ga), gb), gc), gd) -> new_esEs(xwv4000, xwv30000, ga, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Right(xwv4000), Right(xwv30000), hc, app(app(app(ty_@3, hd), he), hf)) -> new_esEs(xwv4000, xwv30000, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(xwv4002, xwv30002, df, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(xwv4001, xwv30001, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(xwv4000, xwv30000, h, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Left(xwv4000), Left(xwv30000), app(app(ty_Either, gf), gg), gd) -> new_esEs1(xwv4000, xwv30000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(xwv4000), Right(xwv30000), hc, app(app(ty_Either, hh), baa)) -> new_esEs1(xwv4000, xwv30000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(xwv4000), Left(xwv30000), app(ty_[], hb), gd) -> new_esEs3(xwv4000, xwv30000, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Right(xwv4000), Right(xwv30000), hc, app(ty_[], bad)) -> new_esEs3(xwv4000, xwv30000, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Right(xwv4000), Right(xwv30000), hc, app(app(ty_@2, bab), bac)) -> new_esEs2(xwv4000, xwv30000, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(xwv4000), Left(xwv30000), app(app(ty_@2, gh), ha), gd) -> new_esEs2(xwv4000, xwv30000, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(xwv4000), Right(xwv30000), hc, app(ty_Maybe, hg)) -> new_esEs0(xwv4000, xwv30000, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(xwv4000), Left(xwv30000), app(ty_Maybe, ge), gd) -> new_esEs0(xwv4000, xwv30000, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, app(app(ty_Either, da), db), bd) -> new_esEs1(xwv4001, xwv30001, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, bc, app(app(ty_Either, eb), ec)) -> new_esEs1(xwv4002, xwv30002, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), app(app(ty_Either, bf), bg), bc, bd) -> new_esEs1(xwv4000, xwv30000, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), app(ty_[], bea)) -> new_esEs3(xwv4000, xwv30000, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(:(xwv4000, xwv4001), :(xwv30000, xwv30001), beb) -> new_esEs3(xwv4001, xwv30001, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, bc, app(ty_[], ef)) -> new_esEs3(xwv4002, xwv30002, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, app(ty_[], de), bd) -> new_esEs3(xwv4001, xwv30001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), app(ty_[], cb), bc, bd) -> new_esEs3(xwv4000, xwv30000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, app(app(ty_@2, dc), dd), bd) -> new_esEs2(xwv4001, xwv30001, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, bc, app(app(ty_@2, ed), ee)) -> new_esEs2(xwv4002, xwv30002, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), app(app(ty_@2, bh), ca), bc, bd) -> new_esEs2(xwv4000, xwv30000, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), app(ty_Maybe, be), bc, bd) -> new_esEs0(xwv4000, xwv30000, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, app(ty_Maybe, cg), bd) -> new_esEs0(xwv4001, xwv30001, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), cc, bc, app(ty_Maybe, ea)) -> new_esEs0(xwv4002, xwv30002, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xwv300000), Succ(xwv40100)) -> new_primMulNat(xwv300000, Succ(xwv40100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(xwv300000), Succ(xwv40100)) -> new_primMulNat(xwv300000, Succ(xwv40100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xwv35900), Succ(xwv36000)) -> new_primMinusNat(xwv35900, xwv36000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(xwv35900), Succ(xwv36000)) -> new_primMinusNat(xwv35900, xwv36000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xwv33200), Succ(xwv24200)) -> new_primPlusNat(xwv33200, xwv24200) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(xwv33200), Succ(xwv24200)) -> new_primPlusNat(xwv33200, xwv24200) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_key10(xwv440, xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv450, xwv451, xwv452, xwv453, Branch(xwv4540, xwv4541, xwv4542, xwv4543, xwv4544), h, ba) -> new_glueBal2Mid_key10(xwv440, xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv4540, xwv4541, xwv4542, xwv4543, xwv4544, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_glueBal2Mid_key10(xwv440, xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv450, xwv451, xwv452, xwv453, Branch(xwv4540, xwv4541, xwv4542, xwv4543, xwv4544), h, ba) -> new_glueBal2Mid_key10(xwv440, xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv4540, xwv4541, xwv4542, xwv4543, xwv4544, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 15 > 11, 15 > 12, 15 > 13, 15 > 14, 15 > 15, 16 >= 16, 17 >= 17 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare9(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) new_delFromFM(Branch([], xwv31, xwv32, xwv33, xwv34), :(xwv40, xwv41), bb, bc) -> new_delFromFM(xwv34, :(xwv40, xwv41), bb, bc) new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM(xwv19, :(xwv21, xwv22), h, ba) new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, EQ, h, ba) -> new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) new_delFromFM11(xwv31, xwv32, xwv33, xwv34, LT, bb, bc) -> new_delFromFM(xwv33, [], bb, bc) new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare9(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), [], bb, bc) -> new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) new_delFromFM(Branch([], xwv31, xwv32, xwv33, xwv34), [], bb, bc) -> new_delFromFM11(xwv31, xwv32, xwv33, xwv34, EQ, bb, bc) new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) -> new_delFromFM(xwv33, [], bb, bc) new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, GT, h, ba) -> new_delFromFM(xwv20, :(xwv21, xwv22), h, ba) new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), :(xwv40, xwv41), bb, bc) -> new_delFromFM2(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, xwv40, xwv41, new_primCompAux1(xwv40, xwv300, xwv41, xwv301, bb), bb, bc) The TRS R consists of the following rules: new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs23(xwv50, xwv51, app(ty_Ratio, fga)) -> new_ltEs13(xwv50, xwv51, fga) new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, fhf)) -> new_compare28(xwv32, xwv33, fhf) new_primCompAux1(xwv40, xwv300, xwv41, xwv301, bb) -> new_primCompAux00(xwv41, xwv301, new_compare0(xwv40, xwv300, bb), app(ty_[], bb)) new_esEs7(xwv401, xwv3001, ty_@0) -> new_esEs20(xwv401, xwv3001) new_pePe(True, xwv231) -> True new_esEs31(xwv431, xwv441, ty_Ordering) -> new_esEs17(xwv431, xwv441) new_ltEs23(xwv50, xwv51, ty_Float) -> new_ltEs18(xwv50, xwv51) new_compare8(True, False) -> GT new_ltEs23(xwv50, xwv51, ty_Integer) -> new_ltEs9(xwv50, xwv51) new_esEs18(True, True) -> True new_lt20(xwv128, xwv130, ty_Ordering) -> new_lt17(xwv128, xwv130) new_esEs7(xwv401, xwv3001, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs19(xwv401, xwv3001, cbc, cbd, cbe) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Char) -> new_ltEs17(xwv430, xwv440) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare26(xwv50, xwv51, True, feg, feh) -> EQ new_esEs33(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_ltEs19(xwv432, xwv442, app(app(ty_@2, bbh), bca)) -> new_ltEs12(xwv432, xwv442, bbh, bca) new_esEs32(xwv128, xwv130, ty_Int) -> new_esEs15(xwv128, xwv130) new_esEs37(xwv115, xwv118, app(ty_Maybe, ecc)) -> new_esEs22(xwv115, xwv118, ecc) new_esEs31(xwv431, xwv441, ty_Char) -> new_esEs23(xwv431, xwv441) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Integer, beh) -> new_esEs16(xwv4000, xwv30000) new_lt23(xwv115, xwv118, ty_@0) -> new_lt10(xwv115, xwv118) new_ltEs23(xwv50, xwv51, ty_Double) -> new_ltEs15(xwv50, xwv51) new_compare111(xwv148, xwv149, True, egg, egh) -> LT new_lt23(xwv115, xwv118, app(ty_Maybe, ecc)) -> new_lt15(xwv115, xwv118, ecc) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_Ratio, bda)) -> new_esEs12(xwv4000, xwv30000, bda) new_esEs5(xwv400, xwv3000, app(ty_Ratio, bff)) -> new_esEs12(xwv400, xwv3000, bff) new_esEs33(xwv4000, xwv30000, app(app(ty_@2, def), deg)) -> new_esEs26(xwv4000, xwv30000, def, deg) new_lt22(xwv116, xwv119, app(ty_Ratio, fag)) -> new_lt14(xwv116, xwv119, fag) new_compare19(@0, @0) -> EQ new_lt7(xwv431, xwv441, app(app(ty_@2, baf), bag)) -> new_lt13(xwv431, xwv441, baf, bag) new_lt22(xwv116, xwv119, ty_Float) -> new_lt19(xwv116, xwv119) new_lt22(xwv116, xwv119, ty_Integer) -> new_lt6(xwv116, xwv119) new_esEs28(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_ltEs20(xwv129, xwv131, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs11(xwv129, xwv131, cff, cfg, cfh) new_compare110(xwv202, xwv203, xwv204, xwv205, False, xwv207, ga, gb) -> new_compare12(xwv202, xwv203, xwv204, xwv205, xwv207, ga, gb) new_ltEs21(xwv431, xwv441, ty_Ordering) -> new_ltEs16(xwv431, xwv441) new_esEs30(xwv430, xwv440, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs19(xwv430, xwv440, ha, hb, hc) new_lt20(xwv128, xwv130, app(app(ty_@2, ceg), ceh)) -> new_lt13(xwv128, xwv130, ceg, ceh) new_esEs15(xwv400, xwv3000) -> new_primEqInt(xwv400, xwv3000) new_primEqNat0(Succ(xwv40000), Succ(xwv300000)) -> new_primEqNat0(xwv40000, xwv300000) new_esEs28(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Float, beh) -> new_esEs21(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, ty_Double) -> new_esEs24(xwv115, xwv118) new_esEs36(xwv430, xwv440, ty_Ordering) -> new_esEs17(xwv430, xwv440) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(ty_Maybe, ecb)) -> new_ltEs14(xwv430, xwv440, ecb) new_lt22(xwv116, xwv119, ty_Double) -> new_lt16(xwv116, xwv119) new_not(True) -> False new_esEs37(xwv115, xwv118, ty_Bool) -> new_esEs18(xwv115, xwv118) new_compare6(Double(xwv400, Pos(xwv4010)), Double(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs38(xwv116, xwv119, ty_@0) -> new_esEs20(xwv116, xwv119) new_esEs11(xwv400, xwv3000, app(ty_Ratio, fea)) -> new_esEs12(xwv400, xwv3000, fea) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Integer) -> new_ltEs9(xwv430, xwv440) new_ltEs14(Just(xwv430), Just(xwv440), ty_Int) -> new_ltEs10(xwv430, xwv440) new_esEs22(Nothing, Just(xwv30000), bcd) -> False new_esEs22(Just(xwv4000), Nothing, bcd) -> False new_esEs22(Nothing, Nothing, bcd) -> True new_esEs6(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs9(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_esEs38(xwv116, xwv119, app(app(ty_@2, fae), faf)) -> new_esEs26(xwv116, xwv119, fae, faf) new_esEs22(Just(xwv4000), Just(xwv30000), app(app(ty_@2, bdd), bde)) -> new_esEs26(xwv4000, xwv30000, bdd, bde) new_lt22(xwv116, xwv119, app(app(ty_Either, ehg), ehh)) -> new_lt9(xwv116, xwv119, ehg, ehh) new_esEs32(xwv128, xwv130, app(ty_Maybe, cfb)) -> new_esEs22(xwv128, xwv130, cfb) new_ltEs6(Left(xwv430), Left(xwv440), app(app(ty_Either, dhe), dhf), dhg) -> new_ltEs6(xwv430, xwv440, dhe, dhf) new_esEs37(xwv115, xwv118, ty_Int) -> new_esEs15(xwv115, xwv118) new_primEqNat0(Succ(xwv40000), Zero) -> False new_primEqNat0(Zero, Succ(xwv300000)) -> False new_esEs22(Just(xwv4000), Just(xwv30000), ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_esEs11(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, app(app(ty_Either, bg), bh)) -> new_ltEs6(xwv83, xwv84, bg, bh) new_esEs8(xwv402, xwv3002, ty_Ordering) -> new_esEs17(xwv402, xwv3002) new_ltEs21(xwv431, xwv441, app(app(ty_@2, egc), egd)) -> new_ltEs12(xwv431, xwv441, egc, egd) new_esEs25(Left(xwv4000), Left(xwv30000), ty_@0, beh) -> new_esEs20(xwv4000, xwv30000) new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare6(xwv32, xwv33) new_ltEs20(xwv129, xwv131, ty_Int) -> new_ltEs10(xwv129, xwv131) new_ltEs23(xwv50, xwv51, ty_Char) -> new_ltEs17(xwv50, xwv51) new_esEs8(xwv402, xwv3002, ty_Char) -> new_esEs23(xwv402, xwv3002) new_lt7(xwv431, xwv441, ty_Ordering) -> new_lt17(xwv431, xwv441) new_ltEs14(Just(xwv430), Just(xwv440), ty_Char) -> new_ltEs17(xwv430, xwv440) new_compare15(xwv155, xwv156, True, bgd, bge) -> LT new_compare210(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, True, eha, ehb, ehc) -> EQ new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> GT new_ltEs10(xwv43, xwv44) -> new_fsEs(new_compare7(xwv43, xwv44)) new_compare0(xwv40, xwv300, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_compare13(xwv40, xwv300, bhb, bhc, bhd) new_ltEs22(xwv117, xwv120, ty_@0) -> new_ltEs8(xwv117, xwv120) new_esEs28(xwv4000, xwv30000, app(app(app(ty_@3, dd), de), df)) -> new_esEs19(xwv4000, xwv30000, dd, de, df) new_ltEs14(Just(xwv430), Just(xwv440), app(app(app(ty_@3, eda), edb), edc)) -> new_ltEs11(xwv430, xwv440, eda, edb, edc) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(app(ty_@2, daf), dag)) -> new_esEs26(xwv4000, xwv30000, daf, dag) new_esEs35(xwv4002, xwv30002, app(app(ty_Either, dgh), dha)) -> new_esEs25(xwv4002, xwv30002, dgh, dha) new_esEs27(:(xwv4000, xwv4001), :(xwv30000, xwv30001), bfa) -> new_asAs(new_esEs39(xwv4000, xwv30000, bfa), new_esEs27(xwv4001, xwv30001, bfa)) new_esEs38(xwv116, xwv119, ty_Integer) -> new_esEs16(xwv116, xwv119) new_lt22(xwv116, xwv119, app(ty_[], faa)) -> new_lt5(xwv116, xwv119, faa) new_primPlusNat1(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv24200))) new_primCompAux00(xwv32, xwv33, GT, fgd) -> GT new_esEs6(xwv400, xwv3000, app(ty_[], cbb)) -> new_esEs27(xwv400, xwv3000, cbb) new_primCmpNat0(Zero, Succ(xwv30000)) -> LT new_esEs30(xwv430, xwv440, app(app(ty_Either, gf), gg)) -> new_esEs25(xwv430, xwv440, gf, gg) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_ltEs11(xwv430, xwv440, ebd, ebe, ebf) new_esEs33(xwv4000, xwv30000, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs19(xwv4000, xwv30000, ddg, ddh, dea) new_esEs10(xwv401, xwv3001, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs19(xwv401, xwv3001, dce, dcf, dcg) new_esEs39(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_esEs11(xwv400, xwv3000, app(app(ty_@2, fed), fee)) -> new_esEs26(xwv400, xwv3000, fed, fee) new_esEs5(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs32(xwv128, xwv130, ty_Bool) -> new_esEs18(xwv128, xwv130) new_ltEs19(xwv432, xwv442, app(ty_Maybe, bcc)) -> new_ltEs14(xwv432, xwv442, bcc) new_esEs39(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_compare29(EQ, GT) -> LT new_esEs9(xwv400, xwv3000, app(app(ty_Either, dbh), dca)) -> new_esEs25(xwv400, xwv3000, dbh, dca) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(app(ty_Either, dad), dae)) -> new_esEs25(xwv4000, xwv30000, dad, dae) new_esEs19(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), bed, bee, bef) -> new_asAs(new_esEs33(xwv4000, xwv30000, bed), new_asAs(new_esEs34(xwv4001, xwv30001, bee), new_esEs35(xwv4002, xwv30002, bef))) new_ltEs23(xwv50, xwv51, ty_Int) -> new_ltEs10(xwv50, xwv51) new_esEs29(xwv4001, xwv30001, ty_Char) -> new_esEs23(xwv4001, xwv30001) new_lt22(xwv116, xwv119, app(app(app(ty_@3, fab), fac), fad)) -> new_lt12(xwv116, xwv119, fab, fac, fad) new_lt7(xwv431, xwv441, app(ty_Maybe, bba)) -> new_lt15(xwv431, xwv441, bba) new_ltEs24(xwv43, xwv44, ty_Bool) -> new_ltEs4(xwv43, xwv44) new_esEs36(xwv430, xwv440, app(app(ty_@2, efa), efb)) -> new_esEs26(xwv430, xwv440, efa, efb) new_compare0(xwv40, xwv300, ty_Double) -> new_compare6(xwv40, xwv300) new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv40000, xwv300000) new_esEs4(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_lt23(xwv115, xwv118, app(app(ty_@2, ehd), ehe)) -> new_lt13(xwv115, xwv118, ehd, ehe) new_esEs32(xwv128, xwv130, app(ty_[], cec)) -> new_esEs27(xwv128, xwv130, cec) new_esEs28(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT new_ltEs20(xwv129, xwv131, ty_Char) -> new_ltEs17(xwv129, xwv131) new_esEs7(xwv401, xwv3001, ty_Integer) -> new_esEs16(xwv401, xwv3001) new_primMulInt(Pos(xwv30000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv30000, xwv4010)) new_esEs5(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_lt11(xwv115, xwv118) -> new_esEs17(new_compare7(xwv115, xwv118), LT) new_esEs33(xwv4000, xwv30000, app(ty_Ratio, dec)) -> new_esEs12(xwv4000, xwv30000, dec) new_esEs27([], [], bfa) -> True new_ltEs20(xwv129, xwv131, ty_Double) -> new_ltEs15(xwv129, xwv131) new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, bgf, bgg, bgh) -> LT new_lt9(xwv115, xwv118, dba, dbb) -> new_esEs17(new_compare14(xwv115, xwv118, dba, dbb), LT) new_esEs34(xwv4001, xwv30001, ty_Double) -> new_esEs24(xwv4001, xwv30001) new_esEs7(xwv401, xwv3001, app(app(ty_Either, cbh), cca)) -> new_esEs25(xwv401, xwv3001, cbh, cca) new_lt7(xwv431, xwv441, ty_@0) -> new_lt10(xwv431, xwv441) new_lt5(xwv115, xwv118, be) -> new_esEs17(new_compare9(xwv115, xwv118, be), LT) new_primMulNat0(Succ(xwv300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xwv40100)) -> Zero new_esEs7(xwv401, xwv3001, ty_Float) -> new_esEs21(xwv401, xwv3001) new_lt23(xwv115, xwv118, ty_Ordering) -> new_lt17(xwv115, xwv118) new_compare8(False, False) -> EQ new_lt20(xwv128, xwv130, ty_@0) -> new_lt10(xwv128, xwv130) new_esEs11(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs34(xwv4001, xwv30001, app(ty_[], dgb)) -> new_esEs27(xwv4001, xwv30001, dgb) new_esEs29(xwv4001, xwv30001, ty_Ordering) -> new_esEs17(xwv4001, xwv30001) new_compare110(xwv202, xwv203, xwv204, xwv205, True, xwv207, ga, gb) -> new_compare12(xwv202, xwv203, xwv204, xwv205, True, ga, gb) new_compare7(xwv40, xwv300) -> new_primCmpInt(xwv40, xwv300) new_esEs10(xwv401, xwv3001, app(app(ty_Either, ddb), ddc)) -> new_esEs25(xwv401, xwv3001, ddb, ddc) new_esEs8(xwv402, xwv3002, app(ty_Ratio, cda)) -> new_esEs12(xwv402, xwv3002, cda) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(ty_Ratio, dac)) -> new_esEs12(xwv4000, xwv30000, dac) new_esEs33(xwv4000, xwv30000, app(app(ty_Either, ded), dee)) -> new_esEs25(xwv4000, xwv30000, ded, dee) new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare19(xwv32, xwv33) new_lt19(xwv115, xwv118) -> new_esEs17(new_compare31(xwv115, xwv118), LT) new_esEs32(xwv128, xwv130, ty_Double) -> new_esEs24(xwv128, xwv130) new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) new_primPlusNat1(Zero, Succ(xwv24200)) -> Succ(xwv24200) new_ltEs14(Just(xwv430), Just(xwv440), ty_Integer) -> new_ltEs9(xwv430, xwv440) new_esEs30(xwv430, xwv440, ty_@0) -> new_esEs20(xwv430, xwv440) new_esEs8(xwv402, xwv3002, app(ty_[], cdf)) -> new_esEs27(xwv402, xwv3002, cdf) new_lt8(xwv430, xwv440, ty_Bool) -> new_lt4(xwv430, xwv440) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Int) -> new_ltEs10(xwv430, xwv440) new_esEs29(xwv4001, xwv30001, ty_Bool) -> new_esEs18(xwv4001, xwv30001) new_esEs6(xwv400, xwv3000, app(ty_Maybe, cad)) -> new_esEs22(xwv400, xwv3000, cad) new_esEs32(xwv128, xwv130, app(app(ty_Either, cea), ceb)) -> new_esEs25(xwv128, xwv130, cea, ceb) new_ltEs20(xwv129, xwv131, ty_Integer) -> new_ltEs9(xwv129, xwv131) new_ltEs5(xwv83, xwv84, app(ty_Maybe, da)) -> new_ltEs14(xwv83, xwv84, da) new_esEs30(xwv430, xwv440, ty_Integer) -> new_esEs16(xwv430, xwv440) new_esEs9(xwv400, xwv3000, app(ty_[], dcd)) -> new_esEs27(xwv400, xwv3000, dcd) new_esEs9(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, ty_@0) -> new_ltEs8(xwv83, xwv84) new_ltEs19(xwv432, xwv442, ty_Ordering) -> new_ltEs16(xwv432, xwv442) new_esEs31(xwv431, xwv441, app(ty_Ratio, bah)) -> new_esEs12(xwv431, xwv441, bah) new_lt21(xwv430, xwv440, app(app(app(ty_@3, eef), eeg), eeh)) -> new_lt12(xwv430, xwv440, eef, eeg, eeh) new_esEs35(xwv4002, xwv30002, app(app(ty_@2, dhb), dhc)) -> new_esEs26(xwv4002, xwv30002, dhb, dhc) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Double) -> new_ltEs15(xwv430, xwv440) new_lt21(xwv430, xwv440, ty_@0) -> new_lt10(xwv430, xwv440) new_ltEs6(Left(xwv430), Left(xwv440), ty_Float, dhg) -> new_ltEs18(xwv430, xwv440) new_esEs5(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs33(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs35(xwv4002, xwv30002, ty_Int) -> new_esEs15(xwv4002, xwv30002) new_esEs5(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_esEs29(xwv4001, xwv30001, app(ty_Maybe, fa)) -> new_esEs22(xwv4001, xwv30001, fa) new_esEs7(xwv401, xwv3001, app(ty_Ratio, cbg)) -> new_esEs12(xwv401, xwv3001, cbg) new_esEs6(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs10(xwv401, xwv3001, ty_Float) -> new_esEs21(xwv401, xwv3001) new_ltEs21(xwv431, xwv441, ty_Double) -> new_ltEs15(xwv431, xwv441) new_esEs10(xwv401, xwv3001, ty_Double) -> new_esEs24(xwv401, xwv3001) new_lt20(xwv128, xwv130, ty_Integer) -> new_lt6(xwv128, xwv130) new_lt22(xwv116, xwv119, ty_Bool) -> new_lt4(xwv116, xwv119) new_ltEs6(Left(xwv430), Left(xwv440), app(app(ty_@2, ead), eae), dhg) -> new_ltEs12(xwv430, xwv440, ead, eae) new_esEs10(xwv401, xwv3001, app(app(ty_@2, ddd), dde)) -> new_esEs26(xwv401, xwv3001, ddd, dde) new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, fge), fgf)) -> new_compare14(xwv32, xwv33, fge, fgf) new_esEs38(xwv116, xwv119, ty_Char) -> new_esEs23(xwv116, xwv119) new_esEs37(xwv115, xwv118, app(app(ty_Either, dba), dbb)) -> new_esEs25(xwv115, xwv118, dba, dbb) new_compare18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), ty_Int) -> new_compare7(new_sr(xwv400, xwv3001), new_sr(xwv3000, xwv401)) new_lt22(xwv116, xwv119, ty_Ordering) -> new_lt17(xwv116, xwv119) new_esEs4(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_compare26(xwv50, xwv51, False, feg, feh) -> new_compare15(xwv50, xwv51, new_ltEs23(xwv50, xwv51, feh), feg, feh) new_esEs10(xwv401, xwv3001, ty_Integer) -> new_esEs16(xwv401, xwv3001) new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare30(xwv32, xwv33) new_esEs11(xwv400, xwv3000, app(app(app(ty_@3, fde), fdf), fdg)) -> new_esEs19(xwv400, xwv3000, fde, fdf, fdg) new_ltEs21(xwv431, xwv441, ty_Float) -> new_ltEs18(xwv431, xwv441) new_esEs29(xwv4001, xwv30001, ty_Double) -> new_esEs24(xwv4001, xwv30001) new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare10(xwv32, xwv33) new_compare14(Left(xwv400), Right(xwv3000), beb, bec) -> LT new_esEs35(xwv4002, xwv30002, ty_Bool) -> new_esEs18(xwv4002, xwv30002) new_esEs22(Just(xwv4000), Just(xwv30000), app(app(ty_Either, bdb), bdc)) -> new_esEs25(xwv4000, xwv30000, bdb, bdc) new_esEs31(xwv431, xwv441, ty_Bool) -> new_esEs18(xwv431, xwv441) new_lt18(xwv115, xwv118) -> new_esEs17(new_compare30(xwv115, xwv118), LT) new_esEs38(xwv116, xwv119, ty_Ordering) -> new_esEs17(xwv116, xwv119) new_esEs33(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_esEs34(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_compare29(GT, EQ) -> GT new_esEs4(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs31(xwv431, xwv441, app(ty_[], bab)) -> new_esEs27(xwv431, xwv441, bab) new_compare0(xwv40, xwv300, app(ty_[], bha)) -> new_compare9(xwv40, xwv300, bha) new_esEs36(xwv430, xwv440, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs19(xwv430, xwv440, eef, eeg, eeh) new_compare0(xwv40, xwv300, app(app(ty_Either, beb), bec)) -> new_compare14(xwv40, xwv300, beb, bec) new_esEs36(xwv430, xwv440, ty_@0) -> new_esEs20(xwv430, xwv440) new_esEs29(xwv4001, xwv30001, app(ty_Ratio, fb)) -> new_esEs12(xwv4001, xwv30001, fb) new_esEs31(xwv431, xwv441, ty_Integer) -> new_esEs16(xwv431, xwv441) new_esEs39(xwv4000, xwv30000, app(ty_Maybe, fcf)) -> new_esEs22(xwv4000, xwv30000, fcf) new_esEs11(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_esEs28(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_compare0(xwv40, xwv300, app(app(ty_@2, bhe), bhf)) -> new_compare27(xwv40, xwv300, bhe, bhf) new_ltEs23(xwv50, xwv51, app(app(ty_@2, ffg), ffh)) -> new_ltEs12(xwv50, xwv51, ffg, ffh) new_lt7(xwv431, xwv441, ty_Integer) -> new_lt6(xwv431, xwv441) new_esEs18(False, False) -> True new_esEs25(Left(xwv4000), Left(xwv30000), app(app(ty_@2, chd), che), beh) -> new_esEs26(xwv4000, xwv30000, chd, che) new_esEs31(xwv431, xwv441, app(app(ty_@2, baf), bag)) -> new_esEs26(xwv431, xwv441, baf, bag) new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv4000), xwv3000) new_esEs30(xwv430, xwv440, app(ty_Ratio, hf)) -> new_esEs12(xwv430, xwv440, hf) new_esEs4(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_compare10(Integer(xwv400), Integer(xwv3000)) -> new_primCmpInt(xwv400, xwv3000) new_lt7(xwv431, xwv441, app(app(ty_Either, hh), baa)) -> new_lt9(xwv431, xwv441, hh, baa) new_esEs6(xwv400, xwv3000, app(app(ty_Either, caf), cag)) -> new_esEs25(xwv400, xwv3000, caf, cag) new_esEs4(xwv400, xwv3000, app(ty_Maybe, bcd)) -> new_esEs22(xwv400, xwv3000, bcd) new_lt8(xwv430, xwv440, ty_Integer) -> new_lt6(xwv430, xwv440) new_esEs34(xwv4001, xwv30001, ty_Char) -> new_esEs23(xwv4001, xwv30001) new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, fhc), fhd)) -> new_compare27(xwv32, xwv33, fhc, fhd) new_lt7(xwv431, xwv441, ty_Float) -> new_lt19(xwv431, xwv441) new_lt8(xwv430, xwv440, ty_Float) -> new_lt19(xwv430, xwv440) new_esEs14(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_esEs22(Just(xwv4000), Just(xwv30000), ty_@0) -> new_esEs20(xwv4000, xwv30000) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(ty_[], ebc)) -> new_ltEs7(xwv430, xwv440, ebc) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(ty_[], dah)) -> new_esEs27(xwv4000, xwv30000, dah) new_esEs5(xwv400, xwv3000, app(app(ty_Either, bfg), bfh)) -> new_esEs25(xwv400, xwv3000, bfg, bfh) new_lt20(xwv128, xwv130, app(app(ty_Either, cea), ceb)) -> new_lt9(xwv128, xwv130, cea, ceb) new_compare9([], [], bha) -> EQ new_ltEs24(xwv43, xwv44, app(ty_[], ecd)) -> new_ltEs7(xwv43, xwv44, ecd) new_esEs35(xwv4002, xwv30002, ty_Float) -> new_esEs21(xwv4002, xwv30002) new_esEs39(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, ty_@0) -> new_esEs20(xwv115, xwv118) new_compare31(Float(xwv400, Neg(xwv4010)), Float(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_esEs29(xwv4001, xwv30001, app(ty_[], fh)) -> new_esEs27(xwv4001, xwv30001, fh) new_esEs4(xwv400, xwv3000, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs19(xwv400, xwv3000, bed, bee, bef) new_esEs10(xwv401, xwv3001, ty_Int) -> new_esEs15(xwv401, xwv3001) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_ltEs14(Just(xwv430), Just(xwv440), ty_Double) -> new_ltEs15(xwv430, xwv440) new_esEs10(xwv401, xwv3001, app(ty_Maybe, dch)) -> new_esEs22(xwv401, xwv3001, dch) new_ltEs22(xwv117, xwv120, app(app(ty_@2, fbg), fbh)) -> new_ltEs12(xwv117, xwv120, fbg, fbh) new_esEs30(xwv430, xwv440, ty_Double) -> new_esEs24(xwv430, xwv440) new_esEs36(xwv430, xwv440, ty_Float) -> new_esEs21(xwv430, xwv440) new_ltEs4(True, False) -> False new_ltEs13(xwv43, xwv44, fgc) -> new_fsEs(new_compare18(xwv43, xwv44, fgc)) new_esEs5(xwv400, xwv3000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs19(xwv400, xwv3000, bfb, bfc, bfd) new_esEs32(xwv128, xwv130, ty_@0) -> new_esEs20(xwv128, xwv130) new_esEs37(xwv115, xwv118, ty_Ordering) -> new_esEs17(xwv115, xwv118) new_ltEs14(Just(xwv430), Nothing, ece) -> False new_ltEs14(Nothing, Nothing, ece) -> True new_lt8(xwv430, xwv440, ty_Char) -> new_lt18(xwv430, xwv440) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_Ratio, eaf), dhg) -> new_ltEs13(xwv430, xwv440, eaf) new_esEs28(xwv4000, xwv30000, app(ty_Ratio, dh)) -> new_esEs12(xwv4000, xwv30000, dh) new_lt21(xwv430, xwv440, app(ty_Maybe, efd)) -> new_lt15(xwv430, xwv440, efd) new_esEs33(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_lt21(xwv430, xwv440, ty_Bool) -> new_lt4(xwv430, xwv440) new_esEs10(xwv401, xwv3001, ty_Bool) -> new_esEs18(xwv401, xwv3001) new_ltEs4(False, False) -> True new_ltEs5(xwv83, xwv84, app(ty_[], ca)) -> new_ltEs7(xwv83, xwv84, ca) new_fsEs(xwv226) -> new_not(new_esEs17(xwv226, GT)) new_lt21(xwv430, xwv440, ty_Ordering) -> new_lt17(xwv430, xwv440) new_ltEs18(xwv43, xwv44) -> new_fsEs(new_compare31(xwv43, xwv44)) new_esEs39(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs31(xwv431, xwv441, ty_Int) -> new_esEs15(xwv431, xwv441) new_ltEs24(xwv43, xwv44, app(app(ty_@2, eea), eeb)) -> new_ltEs12(xwv43, xwv44, eea, eeb) new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, fgh), fha), fhb)) -> new_compare13(xwv32, xwv33, fgh, fha, fhb) new_esEs36(xwv430, xwv440, app(ty_Maybe, efd)) -> new_esEs22(xwv430, xwv440, efd) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Char) -> new_esEs23(xwv4000, xwv30000) new_compare28(Just(xwv400), Just(xwv3000), bhh) -> new_compare24(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, bhh), bhh) new_lt8(xwv430, xwv440, app(app(ty_Either, gf), gg)) -> new_lt9(xwv430, xwv440, gf, gg) new_esEs34(xwv4001, xwv30001, ty_Bool) -> new_esEs18(xwv4001, xwv30001) new_lt7(xwv431, xwv441, ty_Char) -> new_lt18(xwv431, xwv441) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(app(ty_@2, ebg), ebh)) -> new_ltEs12(xwv430, xwv440, ebg, ebh) new_ltEs14(Just(xwv430), Just(xwv440), ty_Bool) -> new_ltEs4(xwv430, xwv440) new_ltEs19(xwv432, xwv442, app(ty_[], bbd)) -> new_ltEs7(xwv432, xwv442, bbd) new_ltEs6(Right(xwv430), Left(xwv440), eah, dhg) -> False new_esEs11(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Float) -> new_esEs21(xwv4000, xwv30000) new_ltEs8(xwv43, xwv44) -> new_fsEs(new_compare19(xwv43, xwv44)) new_esEs35(xwv4002, xwv30002, app(app(app(ty_@3, dgc), dgd), dge)) -> new_esEs19(xwv4002, xwv30002, dgc, dgd, dge) new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs33(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, app(app(ty_Either, eec), eed)) -> new_esEs25(xwv430, xwv440, eec, eed) new_esEs16(Integer(xwv4000), Integer(xwv30000)) -> new_primEqInt(xwv4000, xwv30000) new_esEs10(xwv401, xwv3001, ty_@0) -> new_esEs20(xwv401, xwv3001) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_Ratio, edf)) -> new_ltEs13(xwv430, xwv440, edf) new_lt22(xwv116, xwv119, ty_Char) -> new_lt18(xwv116, xwv119) new_ltEs20(xwv129, xwv131, app(ty_[], cfe)) -> new_ltEs7(xwv129, xwv131, cfe) new_ltEs6(Left(xwv430), Left(xwv440), ty_Ordering, dhg) -> new_ltEs16(xwv430, xwv440) new_esEs37(xwv115, xwv118, ty_Float) -> new_esEs21(xwv115, xwv118) new_esEs11(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_esEs5(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs4(xwv400, xwv3000, app(app(ty_Either, beg), beh)) -> new_esEs25(xwv400, xwv3000, beg, beh) new_esEs28(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs34(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_compare31(Float(xwv400, Pos(xwv4010)), Float(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_compare31(Float(xwv400, Neg(xwv4010)), Float(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_primPlusNat0(Succ(xwv2370), xwv40100) -> Succ(Succ(new_primPlusNat1(xwv2370, xwv40100))) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_Maybe, cgh), beh) -> new_esEs22(xwv4000, xwv30000, cgh) new_lt20(xwv128, xwv130, app(ty_Maybe, cfb)) -> new_lt15(xwv128, xwv130, cfb) new_esEs28(xwv4000, xwv30000, app(app(ty_@2, ec), ed)) -> new_esEs26(xwv4000, xwv30000, ec, ed) new_esEs11(xwv400, xwv3000, app(ty_Maybe, fdh)) -> new_esEs22(xwv400, xwv3000, fdh) new_primPlusNat1(Zero, Zero) -> Zero new_esEs34(xwv4001, xwv30001, app(ty_Maybe, dfd)) -> new_esEs22(xwv4001, xwv30001, dfd) new_esEs37(xwv115, xwv118, ty_Char) -> new_esEs23(xwv115, xwv118) new_ltEs6(Left(xwv430), Left(xwv440), ty_@0, dhg) -> new_ltEs8(xwv430, xwv440) new_ltEs22(xwv117, xwv120, ty_Float) -> new_ltEs18(xwv117, xwv120) new_ltEs23(xwv50, xwv51, app(ty_[], ffc)) -> new_ltEs7(xwv50, xwv51, ffc) new_ltEs6(Left(xwv430), Left(xwv440), ty_Integer, dhg) -> new_ltEs9(xwv430, xwv440) new_compare14(Right(xwv400), Left(xwv3000), beb, bec) -> GT new_esEs22(Just(xwv4000), Just(xwv30000), app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs19(xwv4000, xwv30000, bce, bcf, bcg) new_esEs38(xwv116, xwv119, app(app(app(ty_@3, fab), fac), fad)) -> new_esEs19(xwv116, xwv119, fab, fac, fad) new_esEs24(Double(xwv4000, xwv4001), Double(xwv30000, xwv30001)) -> new_esEs15(new_sr(xwv4000, xwv30001), new_sr(xwv4001, xwv30000)) new_ltEs22(xwv117, xwv120, app(ty_[], fbc)) -> new_ltEs7(xwv117, xwv120, fbc) new_ltEs4(True, True) -> True new_esEs29(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_esEs35(xwv4002, xwv30002, ty_Ordering) -> new_esEs17(xwv4002, xwv30002) new_compare0(xwv40, xwv300, ty_Integer) -> new_compare10(xwv40, xwv300) new_primCmpNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primCmpNat0(xwv4000, xwv30000) new_lt4(xwv115, xwv118) -> new_esEs17(new_compare8(xwv115, xwv118), LT) new_esEs30(xwv430, xwv440, app(app(ty_@2, hd), he)) -> new_esEs26(xwv430, xwv440, hd, he) new_esEs35(xwv4002, xwv30002, ty_Char) -> new_esEs23(xwv4002, xwv30002) new_esEs11(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_compare8(False, True) -> LT new_ltEs21(xwv431, xwv441, app(ty_[], efg)) -> new_ltEs7(xwv431, xwv441, efg) new_esEs34(xwv4001, xwv30001, ty_Ordering) -> new_esEs17(xwv4001, xwv30001) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Float) -> new_ltEs18(xwv430, xwv440) new_esEs36(xwv430, xwv440, ty_Integer) -> new_esEs16(xwv430, xwv440) new_ltEs19(xwv432, xwv442, ty_Float) -> new_ltEs18(xwv432, xwv442) new_compare15(xwv155, xwv156, False, bgd, bge) -> GT new_lt20(xwv128, xwv130, ty_Char) -> new_lt18(xwv128, xwv130) new_esEs13(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_lt23(xwv115, xwv118, app(app(ty_Either, dba), dbb)) -> new_lt9(xwv115, xwv118, dba, dbb) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, ty_Char) -> new_esEs23(xwv430, xwv440) new_compare14(Right(xwv400), Right(xwv3000), beb, bec) -> new_compare26(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, bec), beb, bec) new_ltEs20(xwv129, xwv131, ty_Float) -> new_ltEs18(xwv129, xwv131) new_esEs35(xwv4002, xwv30002, ty_Integer) -> new_esEs16(xwv4002, xwv30002) new_lt21(xwv430, xwv440, ty_Char) -> new_lt18(xwv430, xwv440) new_compare14(Left(xwv400), Left(xwv3000), beb, bec) -> new_compare25(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, beb), beb, bec) new_esEs36(xwv430, xwv440, ty_Bool) -> new_esEs18(xwv430, xwv440) new_lt21(xwv430, xwv440, ty_Integer) -> new_lt6(xwv430, xwv440) new_esEs38(xwv116, xwv119, ty_Float) -> new_esEs21(xwv116, xwv119) new_ltEs6(Left(xwv430), Left(xwv440), ty_Char, dhg) -> new_ltEs17(xwv430, xwv440) new_ltEs6(Left(xwv430), Right(xwv440), eah, dhg) -> True new_esEs30(xwv430, xwv440, ty_Int) -> new_esEs15(xwv430, xwv440) new_lt16(xwv115, xwv118) -> new_esEs17(new_compare6(xwv115, xwv118), LT) new_esEs35(xwv4002, xwv30002, app(ty_Maybe, dgf)) -> new_esEs22(xwv4002, xwv30002, dgf) new_esEs38(xwv116, xwv119, app(app(ty_Either, ehg), ehh)) -> new_esEs25(xwv116, xwv119, ehg, ehh) new_compare18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), ty_Integer) -> new_compare10(new_sr0(xwv400, xwv3001), new_sr0(xwv3000, xwv401)) new_esEs37(xwv115, xwv118, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs19(xwv115, xwv118, bdg, bdh, bea) new_esEs35(xwv4002, xwv30002, ty_@0) -> new_esEs20(xwv4002, xwv30002) new_esEs29(xwv4001, xwv30001, app(app(ty_@2, ff), fg)) -> new_esEs26(xwv4001, xwv30001, ff, fg) new_compare28(Nothing, Just(xwv3000), bhh) -> LT new_esEs4(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Double) -> new_esEs24(xwv4000, xwv30000) new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> LT new_compare11(xwv170, xwv171, True, edh) -> LT new_esEs27(:(xwv4000, xwv4001), [], bfa) -> False new_esEs27([], :(xwv30000, xwv30001), bfa) -> False new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare8(xwv32, xwv33) new_lt15(xwv115, xwv118, ecc) -> new_esEs17(new_compare28(xwv115, xwv118, ecc), LT) new_esEs5(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_esEs34(xwv4001, xwv30001, ty_@0) -> new_esEs20(xwv4001, xwv30001) new_esEs38(xwv116, xwv119, app(ty_[], faa)) -> new_esEs27(xwv116, xwv119, faa) new_esEs6(xwv400, xwv3000, app(app(ty_@2, cah), cba)) -> new_esEs26(xwv400, xwv3000, cah, cba) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT new_esEs34(xwv4001, xwv30001, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs19(xwv4001, xwv30001, dfa, dfb, dfc) new_ltEs24(xwv43, xwv44, ty_Int) -> new_ltEs10(xwv43, xwv44) new_ltEs23(xwv50, xwv51, app(app(ty_Either, ffa), ffb)) -> new_ltEs6(xwv50, xwv51, ffa, ffb) new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv4000)) new_esEs6(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs23(xwv50, xwv51, ty_Bool) -> new_ltEs4(xwv50, xwv51) new_compare12(xwv202, xwv203, xwv204, xwv205, True, ga, gb) -> LT new_esEs32(xwv128, xwv130, app(ty_Ratio, cfa)) -> new_esEs12(xwv128, xwv130, cfa) new_esEs4(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs4(False, True) -> True new_ltEs15(xwv43, xwv44) -> new_fsEs(new_compare6(xwv43, xwv44)) new_lt7(xwv431, xwv441, ty_Bool) -> new_lt4(xwv431, xwv441) new_ltEs14(Nothing, Just(xwv440), ece) -> True new_lt20(xwv128, xwv130, ty_Bool) -> new_lt4(xwv128, xwv130) new_esEs39(xwv4000, xwv30000, app(app(ty_Either, fch), fda)) -> new_esEs25(xwv4000, xwv30000, fch, fda) new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False new_esEs10(xwv401, xwv3001, ty_Ordering) -> new_esEs17(xwv401, xwv3001) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Bool) -> new_ltEs4(xwv430, xwv440) new_esEs17(LT, LT) -> True new_ltEs17(xwv43, xwv44) -> new_fsEs(new_compare30(xwv43, xwv44)) new_lt23(xwv115, xwv118, ty_Int) -> new_lt11(xwv115, xwv118) new_esEs28(xwv4000, xwv30000, app(ty_[], ee)) -> new_esEs27(xwv4000, xwv30000, ee) new_compare0(xwv40, xwv300, app(ty_Ratio, bhg)) -> new_compare18(xwv40, xwv300, bhg) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Bool, beh) -> new_esEs18(xwv4000, xwv30000) new_esEs25(Left(xwv4000), Left(xwv30000), app(app(ty_Either, chb), chc), beh) -> new_esEs25(xwv4000, xwv30000, chb, chc) new_esEs11(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare7(xwv32, xwv33) new_ltEs5(xwv83, xwv84, ty_Float) -> new_ltEs18(xwv83, xwv84) new_esEs39(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_esEs38(xwv116, xwv119, ty_Bool) -> new_esEs18(xwv116, xwv119) new_ltEs5(xwv83, xwv84, ty_Double) -> new_ltEs15(xwv83, xwv84) new_esEs7(xwv401, xwv3001, app(ty_[], ccd)) -> new_esEs27(xwv401, xwv3001, ccd) new_lt21(xwv430, xwv440, app(app(ty_Either, eec), eed)) -> new_lt9(xwv430, xwv440, eec, eed) new_ltEs5(xwv83, xwv84, app(ty_Ratio, cg)) -> new_ltEs13(xwv83, xwv84, cg) new_primCmpNat0(Zero, Zero) -> EQ new_esEs20(@0, @0) -> True new_esEs37(xwv115, xwv118, ty_Integer) -> new_esEs16(xwv115, xwv118) new_esEs10(xwv401, xwv3001, ty_Char) -> new_esEs23(xwv401, xwv3001) new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, fhe)) -> new_compare18(xwv32, xwv33, fhe) new_ltEs16(GT, EQ) -> False new_esEs22(Just(xwv4000), Just(xwv30000), ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_compare0(xwv40, xwv300, ty_Int) -> new_compare7(xwv40, xwv300) new_lt23(xwv115, xwv118, ty_Double) -> new_lt16(xwv115, xwv118) new_compare29(EQ, EQ) -> EQ new_lt23(xwv115, xwv118, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt12(xwv115, xwv118, bdg, bdh, bea) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_Maybe, eag), dhg) -> new_ltEs14(xwv430, xwv440, eag) new_esEs39(xwv4000, xwv30000, app(app(app(ty_@3, fcc), fcd), fce)) -> new_esEs19(xwv4000, xwv30000, fcc, fcd, fce) new_esEs5(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_lt23(xwv115, xwv118, ty_Integer) -> new_lt6(xwv115, xwv118) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs29(xwv4001, xwv30001, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs19(xwv4001, xwv30001, ef, eg, eh) new_esEs37(xwv115, xwv118, app(app(ty_@2, ehd), ehe)) -> new_esEs26(xwv115, xwv118, ehd, ehe) new_compare28(Just(xwv400), Nothing, bhh) -> GT new_ltEs19(xwv432, xwv442, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs11(xwv432, xwv442, bbe, bbf, bbg) new_esEs26(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), db, dc) -> new_asAs(new_esEs28(xwv4000, xwv30000, db), new_esEs29(xwv4001, xwv30001, dc)) new_esEs9(xwv400, xwv3000, app(ty_Ratio, dbg)) -> new_esEs12(xwv400, xwv3000, dbg) new_lt21(xwv430, xwv440, app(ty_[], eee)) -> new_lt5(xwv430, xwv440, eee) new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare29(xwv32, xwv33) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_Maybe, bch)) -> new_esEs22(xwv4000, xwv30000, bch) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs33(xwv4000, xwv30000, app(ty_Maybe, deb)) -> new_esEs22(xwv4000, xwv30000, deb) new_esEs38(xwv116, xwv119, app(ty_Maybe, fah)) -> new_esEs22(xwv116, xwv119, fah) new_esEs33(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, ty_Double) -> new_esEs24(xwv430, xwv440) new_esEs6(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_ltEs24(xwv43, xwv44, ty_Double) -> new_ltEs15(xwv43, xwv44) new_esEs12(:%(xwv4000, xwv4001), :%(xwv30000, xwv30001), bd) -> new_asAs(new_esEs13(xwv4000, xwv30000, bd), new_esEs14(xwv4001, xwv30001, bd)) new_compare6(Double(xwv400, Neg(xwv4010)), Double(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_ltEs16(LT, LT) -> True new_esEs29(xwv4001, xwv30001, app(app(ty_Either, fc), fd)) -> new_esEs25(xwv4001, xwv30001, fc, fd) new_esEs32(xwv128, xwv130, app(app(ty_@2, ceg), ceh)) -> new_esEs26(xwv128, xwv130, ceg, ceh) new_esEs9(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs24(xwv43, xwv44, ty_Char) -> new_ltEs17(xwv43, xwv44) new_lt23(xwv115, xwv118, ty_Char) -> new_lt18(xwv115, xwv118) new_lt23(xwv115, xwv118, ty_Float) -> new_lt19(xwv115, xwv118) new_ltEs24(xwv43, xwv44, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs11(xwv43, xwv44, gc, gd, ge) new_esEs8(xwv402, xwv3002, ty_@0) -> new_esEs20(xwv402, xwv3002) new_esEs30(xwv430, xwv440, app(ty_[], gh)) -> new_esEs27(xwv430, xwv440, gh) new_compare29(GT, GT) -> EQ new_esEs32(xwv128, xwv130, ty_Ordering) -> new_esEs17(xwv128, xwv130) new_ltEs22(xwv117, xwv120, ty_Integer) -> new_ltEs9(xwv117, xwv120) new_lt6(xwv115, xwv118) -> new_esEs17(new_compare10(xwv115, xwv118), LT) new_esEs33(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_compare28(Nothing, Nothing, bhh) -> EQ new_compare9(:(xwv400, xwv401), [], bha) -> GT new_esEs34(xwv4001, xwv30001, app(app(ty_@2, dfh), dga)) -> new_esEs26(xwv4001, xwv30001, dfh, dga) new_compare16(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, xwv194, bgf, bgg, bgh) -> new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, bgf, bgg, bgh) new_esEs32(xwv128, xwv130, ty_Integer) -> new_esEs16(xwv128, xwv130) new_primCmpNat0(Succ(xwv4000), Zero) -> GT new_lt10(xwv115, xwv118) -> new_esEs17(new_compare19(xwv115, xwv118), LT) new_lt20(xwv128, xwv130, app(app(app(ty_@3, ced), cee), cef)) -> new_lt12(xwv128, xwv130, ced, cee, cef) new_pePe(False, xwv231) -> xwv231 new_ltEs5(xwv83, xwv84, ty_Char) -> new_ltEs17(xwv83, xwv84) new_lt13(xwv115, xwv118, ehd, ehe) -> new_esEs17(new_compare27(xwv115, xwv118, ehd, ehe), LT) new_esEs21(Float(xwv4000, xwv4001), Float(xwv30000, xwv30001)) -> new_esEs15(new_sr(xwv4000, xwv30001), new_sr(xwv4001, xwv30000)) new_ltEs19(xwv432, xwv442, ty_Int) -> new_ltEs10(xwv432, xwv442) new_ltEs22(xwv117, xwv120, app(ty_Ratio, fca)) -> new_ltEs13(xwv117, xwv120, fca) new_ltEs22(xwv117, xwv120, ty_Double) -> new_ltEs15(xwv117, xwv120) new_compare25(xwv43, xwv44, True, fhg, fhh) -> EQ new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, False, bgf, bgg, bgh) -> GT new_esEs28(xwv4000, xwv30000, app(ty_Maybe, dg)) -> new_esEs22(xwv4000, xwv30000, dg) new_esEs7(xwv401, xwv3001, ty_Bool) -> new_esEs18(xwv401, xwv3001) new_esEs30(xwv430, xwv440, ty_Char) -> new_esEs23(xwv430, xwv440) new_ltEs14(Just(xwv430), Just(xwv440), app(app(ty_Either, ecf), ecg)) -> new_ltEs6(xwv430, xwv440, ecf, ecg) new_lt22(xwv116, xwv119, app(ty_Maybe, fah)) -> new_lt15(xwv116, xwv119, fah) new_ltEs16(LT, GT) -> True new_ltEs6(Right(xwv430), Right(xwv440), eah, app(ty_Ratio, eca)) -> new_ltEs13(xwv430, xwv440, eca) new_lt23(xwv115, xwv118, ty_Bool) -> new_lt4(xwv115, xwv118) new_ltEs24(xwv43, xwv44, ty_Float) -> new_ltEs18(xwv43, xwv44) new_ltEs24(xwv43, xwv44, app(ty_Ratio, fgc)) -> new_ltEs13(xwv43, xwv44, fgc) new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_esEs30(xwv430, xwv440, ty_Ordering) -> new_esEs17(xwv430, xwv440) new_esEs5(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_lt21(xwv430, xwv440, ty_Float) -> new_lt19(xwv430, xwv440) new_esEs8(xwv402, xwv3002, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs19(xwv402, xwv3002, cce, ccf, ccg) new_esEs6(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False new_compare24(xwv83, xwv84, True, bf) -> EQ new_esEs31(xwv431, xwv441, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs19(xwv431, xwv441, bac, bad, bae) new_compare211(xwv128, xwv129, xwv130, xwv131, True, cdg, cdh) -> EQ new_ltEs16(GT, LT) -> False new_esEs31(xwv431, xwv441, ty_@0) -> new_esEs20(xwv431, xwv441) new_esEs39(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_esEs17(EQ, EQ) -> True new_lt22(xwv116, xwv119, ty_@0) -> new_lt10(xwv116, xwv119) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Double, beh) -> new_esEs24(xwv4000, xwv30000) new_esEs31(xwv431, xwv441, ty_Double) -> new_esEs24(xwv431, xwv441) new_esEs32(xwv128, xwv130, ty_Float) -> new_esEs21(xwv128, xwv130) new_compare29(LT, LT) -> EQ new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs28(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_esEs7(xwv401, xwv3001, app(ty_Maybe, cbf)) -> new_esEs22(xwv401, xwv3001, cbf) new_esEs6(xwv400, xwv3000, app(ty_Ratio, cae)) -> new_esEs12(xwv400, xwv3000, cae) new_esEs32(xwv128, xwv130, ty_Char) -> new_esEs23(xwv128, xwv130) new_esEs9(xwv400, xwv3000, app(app(ty_@2, dcb), dcc)) -> new_esEs26(xwv400, xwv3000, dcb, dcc) new_esEs31(xwv431, xwv441, app(app(ty_Either, hh), baa)) -> new_esEs25(xwv431, xwv441, hh, baa) new_lt8(xwv430, xwv440, app(ty_[], gh)) -> new_lt5(xwv430, xwv440, gh) new_compare13(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bhb, bhc, bhd) -> new_compare210(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, bhb), new_asAs(new_esEs7(xwv401, xwv3001, bhc), new_esEs8(xwv402, xwv3002, bhd))), bhb, bhc, bhd) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_@0) -> new_ltEs8(xwv430, xwv440) new_esEs11(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_compare31(Float(xwv400, Pos(xwv4010)), Float(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs10(xwv401, xwv3001, app(ty_Ratio, dda)) -> new_esEs12(xwv401, xwv3001, dda) new_esEs7(xwv401, xwv3001, ty_Double) -> new_esEs24(xwv401, xwv3001) new_compare8(True, True) -> EQ new_primPlusNat0(Zero, xwv40100) -> Succ(xwv40100) new_esEs11(xwv400, xwv3000, app(app(ty_Either, feb), fec)) -> new_esEs25(xwv400, xwv3000, feb, fec) new_ltEs21(xwv431, xwv441, ty_@0) -> new_ltEs8(xwv431, xwv441) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(ty_Maybe, dab)) -> new_esEs22(xwv4000, xwv30000, dab) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(app(ty_Either, eba), ebb)) -> new_ltEs6(xwv430, xwv440, eba, ebb) new_ltEs19(xwv432, xwv442, ty_Char) -> new_ltEs17(xwv432, xwv442) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs6(xwv400, xwv3000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs19(xwv400, xwv3000, caa, cab, cac) new_esEs34(xwv4001, xwv30001, app(app(ty_Either, dff), dfg)) -> new_esEs25(xwv4001, xwv30001, dff, dfg) new_esEs33(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs7(xwv401, xwv3001, ty_Char) -> new_esEs23(xwv401, xwv3001) new_esEs36(xwv430, xwv440, ty_Int) -> new_esEs15(xwv430, xwv440) new_ltEs20(xwv129, xwv131, app(ty_Maybe, cgd)) -> new_ltEs14(xwv129, xwv131, cgd) new_esEs31(xwv431, xwv441, app(ty_Maybe, bba)) -> new_esEs22(xwv431, xwv441, bba) new_ltEs16(EQ, GT) -> True new_ltEs20(xwv129, xwv131, app(app(ty_@2, cga), cgb)) -> new_ltEs12(xwv129, xwv131, cga, cgb) new_ltEs6(Left(xwv430), Left(xwv440), ty_Bool, dhg) -> new_ltEs4(xwv430, xwv440) new_ltEs21(xwv431, xwv441, ty_Int) -> new_ltEs10(xwv431, xwv441) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_Maybe, edg)) -> new_ltEs14(xwv430, xwv440, edg) new_esEs34(xwv4001, xwv30001, ty_Float) -> new_esEs21(xwv4001, xwv30001) new_ltEs16(EQ, EQ) -> True new_esEs28(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_esEs8(xwv402, xwv3002, ty_Float) -> new_esEs21(xwv402, xwv3002) new_lt7(xwv431, xwv441, app(app(app(ty_@3, bac), bad), bae)) -> new_lt12(xwv431, xwv441, bac, bad, bae) new_lt14(xwv115, xwv118, ehf) -> new_esEs17(new_compare18(xwv115, xwv118, ehf), LT) new_lt8(xwv430, xwv440, ty_Ordering) -> new_lt17(xwv430, xwv440) new_esEs30(xwv430, xwv440, app(ty_Maybe, hg)) -> new_esEs22(xwv430, xwv440, hg) new_esEs5(xwv400, xwv3000, app(ty_Maybe, bfe)) -> new_esEs22(xwv400, xwv3000, bfe) new_ltEs22(xwv117, xwv120, ty_Char) -> new_ltEs17(xwv117, xwv120) new_esEs11(xwv400, xwv3000, app(ty_[], fef)) -> new_esEs27(xwv400, xwv3000, fef) new_lt8(xwv430, xwv440, app(app(ty_@2, hd), he)) -> new_lt13(xwv430, xwv440, hd, he) new_lt8(xwv430, xwv440, app(ty_Maybe, hg)) -> new_lt15(xwv430, xwv440, hg) new_lt12(xwv115, xwv118, bdg, bdh, bea) -> new_esEs17(new_compare13(xwv115, xwv118, bdg, bdh, bea), LT) new_compare0(xwv40, xwv300, ty_Bool) -> new_compare8(xwv40, xwv300) new_esEs9(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs13(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs8(xwv402, xwv3002, ty_Double) -> new_esEs24(xwv402, xwv3002) new_ltEs14(Just(xwv430), Just(xwv440), app(app(ty_@2, edd), ede)) -> new_ltEs12(xwv430, xwv440, edd, ede) new_ltEs14(Just(xwv430), Just(xwv440), ty_Ordering) -> new_ltEs16(xwv430, xwv440) new_ltEs20(xwv129, xwv131, ty_Ordering) -> new_ltEs16(xwv129, xwv131) new_ltEs19(xwv432, xwv442, ty_Integer) -> new_ltEs9(xwv432, xwv442) new_primMulInt(Neg(xwv30000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv30000, xwv4010)) new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) new_esEs8(xwv402, xwv3002, app(app(ty_Either, cdb), cdc)) -> new_esEs25(xwv402, xwv3002, cdb, cdc) new_esEs25(Left(xwv4000), Right(xwv30000), beg, beh) -> False new_esEs25(Right(xwv4000), Left(xwv30000), beg, beh) -> False new_ltEs5(xwv83, xwv84, ty_Integer) -> new_ltEs9(xwv83, xwv84) new_esEs32(xwv128, xwv130, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs19(xwv128, xwv130, ced, cee, cef) new_ltEs22(xwv117, xwv120, ty_Int) -> new_ltEs10(xwv117, xwv120) new_ltEs19(xwv432, xwv442, ty_@0) -> new_ltEs8(xwv432, xwv442) new_esEs30(xwv430, xwv440, ty_Bool) -> new_esEs18(xwv430, xwv440) new_ltEs5(xwv83, xwv84, ty_Ordering) -> new_ltEs16(xwv83, xwv84) new_ltEs21(xwv431, xwv441, ty_Char) -> new_ltEs17(xwv431, xwv441) new_esEs29(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_esEs29(xwv4001, xwv30001, ty_@0) -> new_esEs20(xwv4001, xwv30001) new_lt20(xwv128, xwv130, ty_Float) -> new_lt19(xwv128, xwv130) new_esEs33(xwv4000, xwv30000, app(ty_[], deh)) -> new_esEs27(xwv4000, xwv30000, deh) new_ltEs5(xwv83, xwv84, app(app(ty_@2, ce), cf)) -> new_ltEs12(xwv83, xwv84, ce, cf) new_esEs6(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_esEs10(xwv401, xwv3001, app(ty_[], ddf)) -> new_esEs27(xwv401, xwv3001, ddf) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_ltEs14(Just(xwv430), Just(xwv440), ty_@0) -> new_ltEs8(xwv430, xwv440) new_esEs39(xwv4000, xwv30000, app(ty_Ratio, fcg)) -> new_esEs12(xwv4000, xwv30000, fcg) new_compare11(xwv170, xwv171, False, edh) -> GT new_primMulInt(Pos(xwv30000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv30000, xwv4010)) new_primMulInt(Neg(xwv30000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv30000, xwv4010)) new_compare6(Double(xwv400, Pos(xwv4010)), Double(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_compare6(Double(xwv400, Neg(xwv4010)), Double(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Ordering, beh) -> new_esEs17(xwv4000, xwv30000) new_lt8(xwv430, xwv440, ty_@0) -> new_lt10(xwv430, xwv440) new_ltEs20(xwv129, xwv131, ty_@0) -> new_ltEs8(xwv129, xwv131) new_ltEs23(xwv50, xwv51, ty_Ordering) -> new_ltEs16(xwv50, xwv51) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_lt17(xwv115, xwv118) -> new_esEs17(new_compare29(xwv115, xwv118), LT) new_lt21(xwv430, xwv440, ty_Int) -> new_lt11(xwv430, xwv440) new_ltEs22(xwv117, xwv120, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_ltEs11(xwv117, xwv120, fbd, fbe, fbf) new_sr0(Integer(xwv30000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv30000, xwv4010)) new_lt22(xwv116, xwv119, app(app(ty_@2, fae), faf)) -> new_lt13(xwv116, xwv119, fae, faf) new_compare0(xwv40, xwv300, ty_Float) -> new_compare31(xwv40, xwv300) new_esEs31(xwv431, xwv441, ty_Float) -> new_esEs21(xwv431, xwv441) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs19(xwv4000, xwv30000, chg, chh, daa) new_ltEs21(xwv431, xwv441, app(ty_Ratio, ege)) -> new_ltEs13(xwv431, xwv441, ege) new_esEs8(xwv402, xwv3002, ty_Bool) -> new_esEs18(xwv402, xwv3002) new_esEs39(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_lt20(xwv128, xwv130, ty_Double) -> new_lt16(xwv128, xwv130) new_ltEs11(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, ge) -> new_pePe(new_lt8(xwv430, xwv440, gc), new_asAs(new_esEs30(xwv430, xwv440, gc), new_pePe(new_lt7(xwv431, xwv441, gd), new_asAs(new_esEs31(xwv431, xwv441, gd), new_ltEs19(xwv432, xwv442, ge))))) new_esEs9(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_compare211(xwv128, xwv129, xwv130, xwv131, False, cdg, cdh) -> new_compare110(xwv128, xwv129, xwv130, xwv131, new_lt20(xwv128, xwv130, cdg), new_asAs(new_esEs32(xwv128, xwv130, cdg), new_ltEs20(xwv129, xwv131, cdh)), cdg, cdh) new_asAs(True, xwv164) -> xwv164 new_esEs7(xwv401, xwv3001, ty_Int) -> new_esEs15(xwv401, xwv3001) new_lt8(xwv430, xwv440, ty_Int) -> new_lt11(xwv430, xwv440) new_esEs4(xwv400, xwv3000, app(ty_[], bfa)) -> new_esEs27(xwv400, xwv3000, bfa) new_esEs39(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_ltEs21(xwv431, xwv441, ty_Integer) -> new_ltEs9(xwv431, xwv441) new_ltEs9(xwv43, xwv44) -> new_fsEs(new_compare10(xwv43, xwv44)) new_esEs9(xwv400, xwv3000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs19(xwv400, xwv3000, dbc, dbd, dbe) new_esEs14(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_ltEs6(Left(xwv430), Left(xwv440), ty_Int, dhg) -> new_ltEs10(xwv430, xwv440) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Char, beh) -> new_esEs23(xwv4000, xwv30000) new_ltEs19(xwv432, xwv442, ty_Double) -> new_ltEs15(xwv432, xwv442) new_compare111(xwv148, xwv149, False, egg, egh) -> GT new_compare29(LT, GT) -> LT new_esEs6(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_[], chf), beh) -> new_esEs27(xwv4000, xwv30000, chf) new_compare29(LT, EQ) -> LT new_ltEs21(xwv431, xwv441, ty_Bool) -> new_ltEs4(xwv431, xwv441) new_compare12(xwv202, xwv203, xwv204, xwv205, False, ga, gb) -> GT new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare31(xwv32, xwv33) new_esEs4(xwv400, xwv3000, app(app(ty_@2, db), dc)) -> new_esEs26(xwv400, xwv3000, db, dc) new_ltEs21(xwv431, xwv441, app(app(ty_Either, efe), eff)) -> new_ltEs6(xwv431, xwv441, efe, eff) new_sr(xwv3000, xwv401) -> new_primMulInt(xwv3000, xwv401) new_ltEs16(GT, GT) -> True new_lt7(xwv431, xwv441, ty_Double) -> new_lt16(xwv431, xwv441) new_lt23(xwv115, xwv118, app(ty_[], be)) -> new_lt5(xwv115, xwv118, be) new_ltEs12(@2(xwv430, xwv431), @2(xwv440, xwv441), eea, eeb) -> new_pePe(new_lt21(xwv430, xwv440, eea), new_asAs(new_esEs36(xwv430, xwv440, eea), new_ltEs21(xwv431, xwv441, eeb))) new_compare9(:(xwv400, xwv401), :(xwv3000, xwv3001), bha) -> new_primCompAux1(xwv400, xwv3000, xwv401, xwv3001, bha) new_primMulNat0(Zero, Zero) -> Zero new_esEs39(xwv4000, xwv30000, app(app(ty_@2, fdb), fdc)) -> new_esEs26(xwv4000, xwv30000, fdb, fdc) new_esEs35(xwv4002, xwv30002, app(ty_Ratio, dgg)) -> new_esEs12(xwv4002, xwv30002, dgg) new_compare0(xwv40, xwv300, ty_Char) -> new_compare30(xwv40, xwv300) new_ltEs5(xwv83, xwv84, app(app(app(ty_@3, cb), cc), cd)) -> new_ltEs11(xwv83, xwv84, cb, cc, cd) new_ltEs21(xwv431, xwv441, app(ty_Maybe, egf)) -> new_ltEs14(xwv431, xwv441, egf) new_esEs28(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_esEs9(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs19(xwv432, xwv442, app(ty_Ratio, bcb)) -> new_ltEs13(xwv432, xwv442, bcb) new_esEs35(xwv4002, xwv30002, app(ty_[], dhd)) -> new_esEs27(xwv4002, xwv30002, dhd) new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], fgg)) -> new_compare9(xwv32, xwv33, fgg) new_compare29(EQ, LT) -> GT new_esEs29(xwv4001, xwv30001, ty_Float) -> new_esEs21(xwv4001, xwv30001) new_lt7(xwv431, xwv441, app(ty_[], bab)) -> new_lt5(xwv431, xwv441, bab) new_ltEs22(xwv117, xwv120, app(ty_Maybe, fcb)) -> new_ltEs14(xwv117, xwv120, fcb) new_esEs35(xwv4002, xwv30002, ty_Double) -> new_esEs24(xwv4002, xwv30002) new_lt8(xwv430, xwv440, app(app(app(ty_@3, ha), hb), hc)) -> new_lt12(xwv430, xwv440, ha, hb, hc) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Ordering) -> new_ltEs16(xwv430, xwv440) new_esEs9(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs36(xwv430, xwv440, app(ty_[], eee)) -> new_esEs27(xwv430, xwv440, eee) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_[], ech)) -> new_ltEs7(xwv430, xwv440, ech) new_esEs8(xwv402, xwv3002, ty_Integer) -> new_esEs16(xwv402, xwv3002) new_esEs17(GT, GT) -> True new_esEs7(xwv401, xwv3001, ty_Ordering) -> new_esEs17(xwv401, xwv3001) new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False new_ltEs5(xwv83, xwv84, ty_Int) -> new_ltEs10(xwv83, xwv84) new_ltEs20(xwv129, xwv131, app(ty_Ratio, cgc)) -> new_ltEs13(xwv129, xwv131, cgc) new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv40000, xwv300000) new_ltEs20(xwv129, xwv131, app(app(ty_Either, cfc), cfd)) -> new_ltEs6(xwv129, xwv131, cfc, cfd) new_esEs8(xwv402, xwv3002, ty_Int) -> new_esEs15(xwv402, xwv3002) new_esEs23(Char(xwv4000), Char(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) new_esEs4(xwv400, xwv3000, app(ty_Ratio, bd)) -> new_esEs12(xwv400, xwv3000, bd) new_lt8(xwv430, xwv440, ty_Double) -> new_lt16(xwv430, xwv440) new_compare27(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bhe, bhf) -> new_compare211(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, bhe), new_esEs10(xwv401, xwv3001, bhf)), bhe, bhf) new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv30000)) -> False new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv30000)) -> False new_compare25(xwv43, xwv44, False, fhg, fhh) -> new_compare111(xwv43, xwv44, new_ltEs24(xwv43, xwv44, fhg), fhg, fhh) new_lt20(xwv128, xwv130, app(ty_Ratio, cfa)) -> new_lt14(xwv128, xwv130, cfa) new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) new_esEs8(xwv402, xwv3002, app(ty_Maybe, cch)) -> new_esEs22(xwv402, xwv3002, cch) new_esEs38(xwv116, xwv119, ty_Int) -> new_esEs15(xwv116, xwv119) new_esEs8(xwv402, xwv3002, app(app(ty_@2, cdd), cde)) -> new_esEs26(xwv402, xwv3002, cdd, cde) new_ltEs19(xwv432, xwv442, app(app(ty_Either, bbb), bbc)) -> new_ltEs6(xwv432, xwv442, bbb, bbc) new_esEs34(xwv4001, xwv30001, app(ty_Ratio, dfe)) -> new_esEs12(xwv4001, xwv30001, dfe) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs22(xwv117, xwv120, ty_Ordering) -> new_ltEs16(xwv117, xwv120) new_ltEs23(xwv50, xwv51, app(app(app(ty_@3, ffd), ffe), fff)) -> new_ltEs11(xwv50, xwv51, ffd, ffe, fff) new_lt22(xwv116, xwv119, ty_Int) -> new_lt11(xwv116, xwv119) new_primCompAux00(xwv32, xwv33, LT, fgd) -> LT new_esEs9(xwv400, xwv3000, app(ty_Maybe, dbf)) -> new_esEs22(xwv400, xwv3000, dbf) new_esEs30(xwv430, xwv440, ty_Float) -> new_esEs21(xwv430, xwv440) new_compare24(xwv83, xwv84, False, bf) -> new_compare11(xwv83, xwv84, new_ltEs5(xwv83, xwv84, bf), bf) new_lt21(xwv430, xwv440, app(app(ty_@2, efa), efb)) -> new_lt13(xwv430, xwv440, efa, efb) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_[], bdf)) -> new_esEs27(xwv4000, xwv30000, bdf) new_ltEs22(xwv117, xwv120, ty_Bool) -> new_ltEs4(xwv117, xwv120) new_esEs38(xwv116, xwv119, ty_Double) -> new_esEs24(xwv116, xwv119) new_ltEs22(xwv117, xwv120, app(app(ty_Either, fba), fbb)) -> new_ltEs6(xwv117, xwv120, fba, fbb) new_esEs7(xwv401, xwv3001, app(app(ty_@2, ccb), ccc)) -> new_esEs26(xwv401, xwv3001, ccb, ccc) new_not(False) -> True new_ltEs20(xwv129, xwv131, ty_Bool) -> new_ltEs4(xwv129, xwv131) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Int, beh) -> new_esEs15(xwv4000, xwv30000) new_esEs6(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_lt7(xwv431, xwv441, ty_Int) -> new_lt11(xwv431, xwv441) new_esEs25(Left(xwv4000), Left(xwv30000), app(app(app(ty_@3, cge), cgf), cgg), beh) -> new_esEs19(xwv4000, xwv30000, cge, cgf, cgg) new_esEs39(xwv4000, xwv30000, app(ty_[], fdd)) -> new_esEs27(xwv4000, xwv30000, fdd) new_ltEs24(xwv43, xwv44, ty_Integer) -> new_ltEs9(xwv43, xwv44) new_ltEs24(xwv43, xwv44, ty_Ordering) -> new_ltEs16(xwv43, xwv44) new_ltEs14(Just(xwv430), Just(xwv440), ty_Float) -> new_ltEs18(xwv430, xwv440) new_esEs28(xwv4000, xwv30000, app(app(ty_Either, ea), eb)) -> new_esEs25(xwv4000, xwv30000, ea, eb) new_ltEs23(xwv50, xwv51, ty_@0) -> new_ltEs8(xwv50, xwv51) new_esEs4(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs5(xwv400, xwv3000, app(ty_[], bgc)) -> new_esEs27(xwv400, xwv3000, bgc) new_compare210(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, eha, ehb, ehc) -> new_compare16(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, new_lt23(xwv115, xwv118, eha), new_asAs(new_esEs37(xwv115, xwv118, eha), new_pePe(new_lt22(xwv116, xwv119, ehb), new_asAs(new_esEs38(xwv116, xwv119, ehb), new_ltEs22(xwv117, xwv120, ehc)))), eha, ehb, ehc) new_ltEs23(xwv50, xwv51, app(ty_Maybe, fgb)) -> new_ltEs14(xwv50, xwv51, fgb) new_lt20(xwv128, xwv130, ty_Int) -> new_lt11(xwv128, xwv130) new_lt21(xwv430, xwv440, app(ty_Ratio, efc)) -> new_lt14(xwv430, xwv440, efc) new_ltEs24(xwv43, xwv44, app(app(ty_Either, eah), dhg)) -> new_ltEs6(xwv43, xwv44, eah, dhg) new_lt20(xwv128, xwv130, app(ty_[], cec)) -> new_lt5(xwv128, xwv130, cec) new_esEs38(xwv116, xwv119, app(ty_Ratio, fag)) -> new_esEs12(xwv116, xwv119, fag) new_ltEs7(xwv43, xwv44, ecd) -> new_fsEs(new_compare9(xwv43, xwv44, ecd)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs6(Left(xwv430), Left(xwv440), app(app(app(ty_@3, eaa), eab), eac), dhg) -> new_ltEs11(xwv430, xwv440, eaa, eab, eac) new_compare0(xwv40, xwv300, ty_@0) -> new_compare19(xwv40, xwv300) new_esEs4(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_[], dhh), dhg) -> new_ltEs7(xwv430, xwv440, dhh) new_esEs37(xwv115, xwv118, app(ty_[], be)) -> new_esEs27(xwv115, xwv118, be) new_ltEs19(xwv432, xwv442, ty_Bool) -> new_ltEs4(xwv432, xwv442) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_Ratio, cha), beh) -> new_esEs12(xwv4000, xwv30000, cha) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt7(xwv431, xwv441, app(ty_Ratio, bah)) -> new_lt14(xwv431, xwv441, bah) new_esEs9(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_primMulNat0(Succ(xwv300000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv300000, Succ(xwv40100)), xwv40100) new_ltEs6(Left(xwv430), Left(xwv440), ty_Double, dhg) -> new_ltEs15(xwv430, xwv440) new_ltEs24(xwv43, xwv44, ty_@0) -> new_ltEs8(xwv43, xwv44) new_compare30(Char(xwv400), Char(xwv3000)) -> new_primCmpNat0(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, ty_Bool) -> new_ltEs4(xwv83, xwv84) new_compare29(GT, LT) -> GT new_lt8(xwv430, xwv440, app(ty_Ratio, hf)) -> new_lt14(xwv430, xwv440, hf) new_compare9([], :(xwv3000, xwv3001), bha) -> LT new_compare16(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, False, xwv194, bgf, bgg, bgh) -> new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, xwv194, bgf, bgg, bgh) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs36(xwv430, xwv440, app(ty_Ratio, efc)) -> new_esEs12(xwv430, xwv440, efc) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, app(ty_Ratio, ehf)) -> new_esEs12(xwv115, xwv118, ehf) new_primEqNat0(Zero, Zero) -> True new_ltEs21(xwv431, xwv441, app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs11(xwv431, xwv441, efh, ega, egb) new_lt21(xwv430, xwv440, ty_Double) -> new_lt16(xwv430, xwv440) new_compare0(xwv40, xwv300, ty_Ordering) -> new_compare29(xwv40, xwv300) new_asAs(False, xwv164) -> False new_esEs5(xwv400, xwv3000, app(app(ty_@2, bga), bgb)) -> new_esEs26(xwv400, xwv3000, bga, bgb) new_lt23(xwv115, xwv118, app(ty_Ratio, ehf)) -> new_lt14(xwv115, xwv118, ehf) new_ltEs24(xwv43, xwv44, app(ty_Maybe, ece)) -> new_ltEs14(xwv43, xwv44, ece) new_compare0(xwv40, xwv300, app(ty_Maybe, bhh)) -> new_compare28(xwv40, xwv300, bhh) The set Q consists of the following terms: new_primEqNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Bool) new_esEs21(Float(x0, x1), Float(x2, x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_@0) new_primPlusNat1(Zero, Zero) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs18(True, True) new_lt8(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_esEs20(@0, @0) new_esEs39(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Char) new_lt7(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt16(x0, x1) new_esEs33(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_esEs27([], :(x0, x1), x2) new_esEs37(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare28(Just(x0), Just(x1), x2) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Int) new_lt7(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs39(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(GT, EQ) new_ltEs16(EQ, GT) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_@0) new_ltEs16(LT, LT) new_esEs33(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_fsEs(x0) new_esEs38(x0, x1, ty_Int) new_esEs15(x0, x1) new_lt8(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_esEs32(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_compare12(x0, x1, x2, x3, True, x4, x5) new_esEs9(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_compare14(Left(x0), Left(x1), x2, x3) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Bool) new_compare111(x0, x1, False, x2, x3) new_esEs6(x0, x1, ty_Char) new_esEs17(LT, GT) new_esEs17(GT, LT) new_lt21(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs25(Right(x0), Right(x1), x2, ty_@0) new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Char) new_esEs16(Integer(x0), Integer(x1)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Char) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_@0) new_compare26(x0, x1, True, x2, x3) new_esEs35(x0, x1, ty_Int) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs29(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, x2, x3, x4) new_ltEs4(True, True) new_ltEs21(x0, x1, ty_Bool) new_compare29(EQ, EQ) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare15(x0, x1, False, x2, x3) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(Just(x0), Just(x1), ty_Int) new_esEs34(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_compare17(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Float) new_compare8(False, False) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, x2) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, LT, x2) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Float) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Double, x2) new_compare0(x0, x1, ty_Char) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_compare10(Integer(x0), Integer(x1)) new_esEs22(Just(x0), Just(x1), ty_Bool) new_ltEs24(x0, x1, ty_Ordering) new_ltEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs32(x0, x1, ty_Float) new_compare19(@0, @0) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Int) new_lt7(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs23(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt22(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_lt9(x0, x1, x2, x3) new_esEs4(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_esEs31(x0, x1, ty_Char) new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt8(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_ltEs15(x0, x1) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_compare9(:(x0, x1), :(x2, x3), x4) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare9(:(x0, x1), [], x2) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Float) new_esEs25(Left(x0), Left(x1), ty_Char, x2) new_ltEs21(x0, x1, ty_Char) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Ordering) new_primPlusNat0(Succ(x0), x1) new_lt21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), ty_Int, x2) new_compare28(Nothing, Nothing, x0) new_ltEs7(x0, x1, x2) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs17(x0, x1) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Float) new_compare11(x0, x1, False, x2) new_esEs27([], [], x0) new_compare27(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs11(x0, x1, ty_Float) new_esEs22(Just(x0), Just(x1), ty_Float) new_esEs6(x0, x1, ty_Double) new_esEs22(Nothing, Just(x0), x1) new_esEs5(x0, x1, ty_@0) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Integer) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Succ(x0)) new_esEs11(x0, x1, ty_@0) new_compare25(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_ltEs14(Nothing, Nothing, x0) new_esEs18(False, False) new_ltEs4(True, False) new_ltEs4(False, True) new_esEs28(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs17(EQ, EQ) new_asAs(True, x0) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_compare14(Left(x0), Right(x1), x2, x3) new_compare14(Right(x0), Left(x1), x2, x3) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Double) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt23(x0, x1, ty_Double) new_primCmpNat0(Zero, Succ(x0)) new_compare29(LT, LT) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Double) new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs11(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Right(x0), Right(x1), x2, ty_Bool) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Int) new_compare8(True, True) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, ty_@0) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primMulNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs4(False, False) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Int) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs27(:(x0, x1), [], x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), ty_Float, x2) new_lt7(x0, x1, ty_Float) new_esEs25(Right(x0), Right(x1), x2, ty_Char) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Int) new_primEqNat0(Zero, Zero) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Bool) new_esEs22(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Ordering) new_not(False) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, ty_Int) new_esEs17(LT, LT) new_lt21(x0, x1, ty_@0) new_lt19(x0, x1) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Double) new_primMulNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Double) new_esEs32(x0, x1, ty_@0) new_esEs31(x0, x1, ty_@0) new_compare25(x0, x1, True, x2, x3) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Left(x0), Left(x1), ty_Bool, x2) new_compare17(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_lt7(x0, x1, ty_Bool) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Integer) new_compare26(x0, x1, False, x2, x3) new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Char) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, True, x2, x3) new_esEs8(x0, x1, ty_Float) new_lt10(x0, x1) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_compare0(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_esEs36(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs13(x0, x1, x2) new_sr(x0, x1) new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Char) new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Double) new_ltEs22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Integer) new_compare29(EQ, GT) new_compare29(GT, EQ) new_esEs39(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Nothing, Just(x0), x1) new_compare29(LT, GT) new_compare29(GT, LT) new_esEs6(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_compare7(x0, x1) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1, True, x2, x3) new_esEs39(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare8(True, False) new_compare8(False, True) new_compare11(x0, x1, True, x2) new_esEs28(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt18(x0, x1) new_compare9([], [], x0) new_lt23(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs8(x0, x1) new_lt15(x0, x1, x2) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Float) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_sr0(Integer(x0), Integer(x1)) new_compare28(Just(x0), Nothing, x1) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Int) new_ltEs14(Just(x0), Nothing, x1) new_esEs39(x0, x1, ty_Integer) new_asAs(False, x0) new_esEs8(x0, x1, ty_@0) new_pePe(True, x0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs16(GT, GT) new_esEs6(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare9([], :(x0, x1), x2) new_compare0(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Float) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs18(False, True) new_esEs18(True, False) new_ltEs24(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_@0) new_esEs22(Nothing, Nothing, x0) new_ltEs22(x0, x1, ty_Float) new_lt14(x0, x1, x2) new_esEs25(Left(x0), Right(x1), x2, x3) new_esEs25(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, ty_Int) new_esEs36(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, x2, x3) new_lt23(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Integer) new_compare12(x0, x1, x2, x3, False, x4, x5) new_esEs34(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare30(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primEqNat0(Succ(x0), Zero) new_esEs22(Just(x0), Just(x1), ty_Ordering) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCompAux00(x0, x1, EQ, ty_Char) new_ltEs22(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs5(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_esEs9(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_Ordering) new_esEs13(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_lt11(x0, x1) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs16(EQ, EQ) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(LT, EQ) new_compare29(EQ, LT) new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs22(Just(x0), Just(x1), ty_Integer) new_ltEs9(x0, x1) new_compare0(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_lt23(x0, x1, app(ty_[], x2)) new_compare14(Right(x0), Right(x1), x2, x3) new_pePe(False, x0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs22(Just(x0), Nothing, x1) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare29(GT, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Float) new_lt22(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs24(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Bool) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_ltEs5(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) new_lt22(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_esEs22(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, ty_Float) new_compare13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_compare211(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Int) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, x0) new_lt20(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(GT, GT) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Char) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs8(x0, x1, ty_Int) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_ltEs21(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Double(x0, x1), Double(x2, x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs8(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Float) new_lt8(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Integer) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_esEs9(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, ty_Int) new_primMulInt(Neg(x0), Neg(x1)) new_esEs4(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs28(x0, x1, ty_@0) new_primCompAux00(x0, x1, GT, x2) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs27(:(x0, x1), :(x2, x3), x4) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Double) new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs38(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Ordering) new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare211(x0, x1, x2, x3, True, x4, x5) new_ltEs22(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_@0) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Char) new_primCmpNat0(Zero, Zero) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. ---------------------------------------- (37) Complex Obligation (AND) ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) -> new_delFromFM(xwv33, [], bb, bc) new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), [], bb, bc) -> new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) The TRS R consists of the following rules: new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs23(xwv50, xwv51, app(ty_Ratio, fga)) -> new_ltEs13(xwv50, xwv51, fga) new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, fhf)) -> new_compare28(xwv32, xwv33, fhf) new_primCompAux1(xwv40, xwv300, xwv41, xwv301, bb) -> new_primCompAux00(xwv41, xwv301, new_compare0(xwv40, xwv300, bb), app(ty_[], bb)) new_esEs7(xwv401, xwv3001, ty_@0) -> new_esEs20(xwv401, xwv3001) new_pePe(True, xwv231) -> True new_esEs31(xwv431, xwv441, ty_Ordering) -> new_esEs17(xwv431, xwv441) new_ltEs23(xwv50, xwv51, ty_Float) -> new_ltEs18(xwv50, xwv51) new_compare8(True, False) -> GT new_ltEs23(xwv50, xwv51, ty_Integer) -> new_ltEs9(xwv50, xwv51) new_esEs18(True, True) -> True new_lt20(xwv128, xwv130, ty_Ordering) -> new_lt17(xwv128, xwv130) new_esEs7(xwv401, xwv3001, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs19(xwv401, xwv3001, cbc, cbd, cbe) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Char) -> new_ltEs17(xwv430, xwv440) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare26(xwv50, xwv51, True, feg, feh) -> EQ new_esEs33(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_ltEs19(xwv432, xwv442, app(app(ty_@2, bbh), bca)) -> new_ltEs12(xwv432, xwv442, bbh, bca) new_esEs32(xwv128, xwv130, ty_Int) -> new_esEs15(xwv128, xwv130) new_esEs37(xwv115, xwv118, app(ty_Maybe, ecc)) -> new_esEs22(xwv115, xwv118, ecc) new_esEs31(xwv431, xwv441, ty_Char) -> new_esEs23(xwv431, xwv441) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Integer, beh) -> new_esEs16(xwv4000, xwv30000) new_lt23(xwv115, xwv118, ty_@0) -> new_lt10(xwv115, xwv118) new_ltEs23(xwv50, xwv51, ty_Double) -> new_ltEs15(xwv50, xwv51) new_compare111(xwv148, xwv149, True, egg, egh) -> LT new_lt23(xwv115, xwv118, app(ty_Maybe, ecc)) -> new_lt15(xwv115, xwv118, ecc) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_Ratio, bda)) -> new_esEs12(xwv4000, xwv30000, bda) new_esEs5(xwv400, xwv3000, app(ty_Ratio, bff)) -> new_esEs12(xwv400, xwv3000, bff) new_esEs33(xwv4000, xwv30000, app(app(ty_@2, def), deg)) -> new_esEs26(xwv4000, xwv30000, def, deg) new_lt22(xwv116, xwv119, app(ty_Ratio, fag)) -> new_lt14(xwv116, xwv119, fag) new_compare19(@0, @0) -> EQ new_lt7(xwv431, xwv441, app(app(ty_@2, baf), bag)) -> new_lt13(xwv431, xwv441, baf, bag) new_lt22(xwv116, xwv119, ty_Float) -> new_lt19(xwv116, xwv119) new_lt22(xwv116, xwv119, ty_Integer) -> new_lt6(xwv116, xwv119) new_esEs28(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_ltEs20(xwv129, xwv131, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs11(xwv129, xwv131, cff, cfg, cfh) new_compare110(xwv202, xwv203, xwv204, xwv205, False, xwv207, ga, gb) -> new_compare12(xwv202, xwv203, xwv204, xwv205, xwv207, ga, gb) new_ltEs21(xwv431, xwv441, ty_Ordering) -> new_ltEs16(xwv431, xwv441) new_esEs30(xwv430, xwv440, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs19(xwv430, xwv440, ha, hb, hc) new_lt20(xwv128, xwv130, app(app(ty_@2, ceg), ceh)) -> new_lt13(xwv128, xwv130, ceg, ceh) new_esEs15(xwv400, xwv3000) -> new_primEqInt(xwv400, xwv3000) new_primEqNat0(Succ(xwv40000), Succ(xwv300000)) -> new_primEqNat0(xwv40000, xwv300000) new_esEs28(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Float, beh) -> new_esEs21(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, ty_Double) -> new_esEs24(xwv115, xwv118) new_esEs36(xwv430, xwv440, ty_Ordering) -> new_esEs17(xwv430, xwv440) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(ty_Maybe, ecb)) -> new_ltEs14(xwv430, xwv440, ecb) new_lt22(xwv116, xwv119, ty_Double) -> new_lt16(xwv116, xwv119) new_not(True) -> False new_esEs37(xwv115, xwv118, ty_Bool) -> new_esEs18(xwv115, xwv118) new_compare6(Double(xwv400, Pos(xwv4010)), Double(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs38(xwv116, xwv119, ty_@0) -> new_esEs20(xwv116, xwv119) new_esEs11(xwv400, xwv3000, app(ty_Ratio, fea)) -> new_esEs12(xwv400, xwv3000, fea) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Integer) -> new_ltEs9(xwv430, xwv440) new_ltEs14(Just(xwv430), Just(xwv440), ty_Int) -> new_ltEs10(xwv430, xwv440) new_esEs22(Nothing, Just(xwv30000), bcd) -> False new_esEs22(Just(xwv4000), Nothing, bcd) -> False new_esEs22(Nothing, Nothing, bcd) -> True new_esEs6(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs9(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_esEs38(xwv116, xwv119, app(app(ty_@2, fae), faf)) -> new_esEs26(xwv116, xwv119, fae, faf) new_esEs22(Just(xwv4000), Just(xwv30000), app(app(ty_@2, bdd), bde)) -> new_esEs26(xwv4000, xwv30000, bdd, bde) new_lt22(xwv116, xwv119, app(app(ty_Either, ehg), ehh)) -> new_lt9(xwv116, xwv119, ehg, ehh) new_esEs32(xwv128, xwv130, app(ty_Maybe, cfb)) -> new_esEs22(xwv128, xwv130, cfb) new_ltEs6(Left(xwv430), Left(xwv440), app(app(ty_Either, dhe), dhf), dhg) -> new_ltEs6(xwv430, xwv440, dhe, dhf) new_esEs37(xwv115, xwv118, ty_Int) -> new_esEs15(xwv115, xwv118) new_primEqNat0(Succ(xwv40000), Zero) -> False new_primEqNat0(Zero, Succ(xwv300000)) -> False new_esEs22(Just(xwv4000), Just(xwv30000), ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_esEs11(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, app(app(ty_Either, bg), bh)) -> new_ltEs6(xwv83, xwv84, bg, bh) new_esEs8(xwv402, xwv3002, ty_Ordering) -> new_esEs17(xwv402, xwv3002) new_ltEs21(xwv431, xwv441, app(app(ty_@2, egc), egd)) -> new_ltEs12(xwv431, xwv441, egc, egd) new_esEs25(Left(xwv4000), Left(xwv30000), ty_@0, beh) -> new_esEs20(xwv4000, xwv30000) new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare6(xwv32, xwv33) new_ltEs20(xwv129, xwv131, ty_Int) -> new_ltEs10(xwv129, xwv131) new_ltEs23(xwv50, xwv51, ty_Char) -> new_ltEs17(xwv50, xwv51) new_esEs8(xwv402, xwv3002, ty_Char) -> new_esEs23(xwv402, xwv3002) new_lt7(xwv431, xwv441, ty_Ordering) -> new_lt17(xwv431, xwv441) new_ltEs14(Just(xwv430), Just(xwv440), ty_Char) -> new_ltEs17(xwv430, xwv440) new_compare15(xwv155, xwv156, True, bgd, bge) -> LT new_compare210(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, True, eha, ehb, ehc) -> EQ new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> GT new_ltEs10(xwv43, xwv44) -> new_fsEs(new_compare7(xwv43, xwv44)) new_compare0(xwv40, xwv300, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_compare13(xwv40, xwv300, bhb, bhc, bhd) new_ltEs22(xwv117, xwv120, ty_@0) -> new_ltEs8(xwv117, xwv120) new_esEs28(xwv4000, xwv30000, app(app(app(ty_@3, dd), de), df)) -> new_esEs19(xwv4000, xwv30000, dd, de, df) new_ltEs14(Just(xwv430), Just(xwv440), app(app(app(ty_@3, eda), edb), edc)) -> new_ltEs11(xwv430, xwv440, eda, edb, edc) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(app(ty_@2, daf), dag)) -> new_esEs26(xwv4000, xwv30000, daf, dag) new_esEs35(xwv4002, xwv30002, app(app(ty_Either, dgh), dha)) -> new_esEs25(xwv4002, xwv30002, dgh, dha) new_esEs27(:(xwv4000, xwv4001), :(xwv30000, xwv30001), bfa) -> new_asAs(new_esEs39(xwv4000, xwv30000, bfa), new_esEs27(xwv4001, xwv30001, bfa)) new_esEs38(xwv116, xwv119, ty_Integer) -> new_esEs16(xwv116, xwv119) new_lt22(xwv116, xwv119, app(ty_[], faa)) -> new_lt5(xwv116, xwv119, faa) new_primPlusNat1(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv24200))) new_primCompAux00(xwv32, xwv33, GT, fgd) -> GT new_esEs6(xwv400, xwv3000, app(ty_[], cbb)) -> new_esEs27(xwv400, xwv3000, cbb) new_primCmpNat0(Zero, Succ(xwv30000)) -> LT new_esEs30(xwv430, xwv440, app(app(ty_Either, gf), gg)) -> new_esEs25(xwv430, xwv440, gf, gg) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_ltEs11(xwv430, xwv440, ebd, ebe, ebf) new_esEs33(xwv4000, xwv30000, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs19(xwv4000, xwv30000, ddg, ddh, dea) new_esEs10(xwv401, xwv3001, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs19(xwv401, xwv3001, dce, dcf, dcg) new_esEs39(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_esEs11(xwv400, xwv3000, app(app(ty_@2, fed), fee)) -> new_esEs26(xwv400, xwv3000, fed, fee) new_esEs5(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs32(xwv128, xwv130, ty_Bool) -> new_esEs18(xwv128, xwv130) new_ltEs19(xwv432, xwv442, app(ty_Maybe, bcc)) -> new_ltEs14(xwv432, xwv442, bcc) new_esEs39(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_compare29(EQ, GT) -> LT new_esEs9(xwv400, xwv3000, app(app(ty_Either, dbh), dca)) -> new_esEs25(xwv400, xwv3000, dbh, dca) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(app(ty_Either, dad), dae)) -> new_esEs25(xwv4000, xwv30000, dad, dae) new_esEs19(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), bed, bee, bef) -> new_asAs(new_esEs33(xwv4000, xwv30000, bed), new_asAs(new_esEs34(xwv4001, xwv30001, bee), new_esEs35(xwv4002, xwv30002, bef))) new_ltEs23(xwv50, xwv51, ty_Int) -> new_ltEs10(xwv50, xwv51) new_esEs29(xwv4001, xwv30001, ty_Char) -> new_esEs23(xwv4001, xwv30001) new_lt22(xwv116, xwv119, app(app(app(ty_@3, fab), fac), fad)) -> new_lt12(xwv116, xwv119, fab, fac, fad) new_lt7(xwv431, xwv441, app(ty_Maybe, bba)) -> new_lt15(xwv431, xwv441, bba) new_ltEs24(xwv43, xwv44, ty_Bool) -> new_ltEs4(xwv43, xwv44) new_esEs36(xwv430, xwv440, app(app(ty_@2, efa), efb)) -> new_esEs26(xwv430, xwv440, efa, efb) new_compare0(xwv40, xwv300, ty_Double) -> new_compare6(xwv40, xwv300) new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv40000, xwv300000) new_esEs4(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_lt23(xwv115, xwv118, app(app(ty_@2, ehd), ehe)) -> new_lt13(xwv115, xwv118, ehd, ehe) new_esEs32(xwv128, xwv130, app(ty_[], cec)) -> new_esEs27(xwv128, xwv130, cec) new_esEs28(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT new_ltEs20(xwv129, xwv131, ty_Char) -> new_ltEs17(xwv129, xwv131) new_esEs7(xwv401, xwv3001, ty_Integer) -> new_esEs16(xwv401, xwv3001) new_primMulInt(Pos(xwv30000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv30000, xwv4010)) new_esEs5(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_lt11(xwv115, xwv118) -> new_esEs17(new_compare7(xwv115, xwv118), LT) new_esEs33(xwv4000, xwv30000, app(ty_Ratio, dec)) -> new_esEs12(xwv4000, xwv30000, dec) new_esEs27([], [], bfa) -> True new_ltEs20(xwv129, xwv131, ty_Double) -> new_ltEs15(xwv129, xwv131) new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, bgf, bgg, bgh) -> LT new_lt9(xwv115, xwv118, dba, dbb) -> new_esEs17(new_compare14(xwv115, xwv118, dba, dbb), LT) new_esEs34(xwv4001, xwv30001, ty_Double) -> new_esEs24(xwv4001, xwv30001) new_esEs7(xwv401, xwv3001, app(app(ty_Either, cbh), cca)) -> new_esEs25(xwv401, xwv3001, cbh, cca) new_lt7(xwv431, xwv441, ty_@0) -> new_lt10(xwv431, xwv441) new_lt5(xwv115, xwv118, be) -> new_esEs17(new_compare9(xwv115, xwv118, be), LT) new_primMulNat0(Succ(xwv300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xwv40100)) -> Zero new_esEs7(xwv401, xwv3001, ty_Float) -> new_esEs21(xwv401, xwv3001) new_lt23(xwv115, xwv118, ty_Ordering) -> new_lt17(xwv115, xwv118) new_compare8(False, False) -> EQ new_lt20(xwv128, xwv130, ty_@0) -> new_lt10(xwv128, xwv130) new_esEs11(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs34(xwv4001, xwv30001, app(ty_[], dgb)) -> new_esEs27(xwv4001, xwv30001, dgb) new_esEs29(xwv4001, xwv30001, ty_Ordering) -> new_esEs17(xwv4001, xwv30001) new_compare110(xwv202, xwv203, xwv204, xwv205, True, xwv207, ga, gb) -> new_compare12(xwv202, xwv203, xwv204, xwv205, True, ga, gb) new_compare7(xwv40, xwv300) -> new_primCmpInt(xwv40, xwv300) new_esEs10(xwv401, xwv3001, app(app(ty_Either, ddb), ddc)) -> new_esEs25(xwv401, xwv3001, ddb, ddc) new_esEs8(xwv402, xwv3002, app(ty_Ratio, cda)) -> new_esEs12(xwv402, xwv3002, cda) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(ty_Ratio, dac)) -> new_esEs12(xwv4000, xwv30000, dac) new_esEs33(xwv4000, xwv30000, app(app(ty_Either, ded), dee)) -> new_esEs25(xwv4000, xwv30000, ded, dee) new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare19(xwv32, xwv33) new_lt19(xwv115, xwv118) -> new_esEs17(new_compare31(xwv115, xwv118), LT) new_esEs32(xwv128, xwv130, ty_Double) -> new_esEs24(xwv128, xwv130) new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) new_primPlusNat1(Zero, Succ(xwv24200)) -> Succ(xwv24200) new_ltEs14(Just(xwv430), Just(xwv440), ty_Integer) -> new_ltEs9(xwv430, xwv440) new_esEs30(xwv430, xwv440, ty_@0) -> new_esEs20(xwv430, xwv440) new_esEs8(xwv402, xwv3002, app(ty_[], cdf)) -> new_esEs27(xwv402, xwv3002, cdf) new_lt8(xwv430, xwv440, ty_Bool) -> new_lt4(xwv430, xwv440) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Int) -> new_ltEs10(xwv430, xwv440) new_esEs29(xwv4001, xwv30001, ty_Bool) -> new_esEs18(xwv4001, xwv30001) new_esEs6(xwv400, xwv3000, app(ty_Maybe, cad)) -> new_esEs22(xwv400, xwv3000, cad) new_esEs32(xwv128, xwv130, app(app(ty_Either, cea), ceb)) -> new_esEs25(xwv128, xwv130, cea, ceb) new_ltEs20(xwv129, xwv131, ty_Integer) -> new_ltEs9(xwv129, xwv131) new_ltEs5(xwv83, xwv84, app(ty_Maybe, da)) -> new_ltEs14(xwv83, xwv84, da) new_esEs30(xwv430, xwv440, ty_Integer) -> new_esEs16(xwv430, xwv440) new_esEs9(xwv400, xwv3000, app(ty_[], dcd)) -> new_esEs27(xwv400, xwv3000, dcd) new_esEs9(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, ty_@0) -> new_ltEs8(xwv83, xwv84) new_ltEs19(xwv432, xwv442, ty_Ordering) -> new_ltEs16(xwv432, xwv442) new_esEs31(xwv431, xwv441, app(ty_Ratio, bah)) -> new_esEs12(xwv431, xwv441, bah) new_lt21(xwv430, xwv440, app(app(app(ty_@3, eef), eeg), eeh)) -> new_lt12(xwv430, xwv440, eef, eeg, eeh) new_esEs35(xwv4002, xwv30002, app(app(ty_@2, dhb), dhc)) -> new_esEs26(xwv4002, xwv30002, dhb, dhc) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Double) -> new_ltEs15(xwv430, xwv440) new_lt21(xwv430, xwv440, ty_@0) -> new_lt10(xwv430, xwv440) new_ltEs6(Left(xwv430), Left(xwv440), ty_Float, dhg) -> new_ltEs18(xwv430, xwv440) new_esEs5(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs33(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs35(xwv4002, xwv30002, ty_Int) -> new_esEs15(xwv4002, xwv30002) new_esEs5(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_esEs29(xwv4001, xwv30001, app(ty_Maybe, fa)) -> new_esEs22(xwv4001, xwv30001, fa) new_esEs7(xwv401, xwv3001, app(ty_Ratio, cbg)) -> new_esEs12(xwv401, xwv3001, cbg) new_esEs6(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs10(xwv401, xwv3001, ty_Float) -> new_esEs21(xwv401, xwv3001) new_ltEs21(xwv431, xwv441, ty_Double) -> new_ltEs15(xwv431, xwv441) new_esEs10(xwv401, xwv3001, ty_Double) -> new_esEs24(xwv401, xwv3001) new_lt20(xwv128, xwv130, ty_Integer) -> new_lt6(xwv128, xwv130) new_lt22(xwv116, xwv119, ty_Bool) -> new_lt4(xwv116, xwv119) new_ltEs6(Left(xwv430), Left(xwv440), app(app(ty_@2, ead), eae), dhg) -> new_ltEs12(xwv430, xwv440, ead, eae) new_esEs10(xwv401, xwv3001, app(app(ty_@2, ddd), dde)) -> new_esEs26(xwv401, xwv3001, ddd, dde) new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, fge), fgf)) -> new_compare14(xwv32, xwv33, fge, fgf) new_esEs38(xwv116, xwv119, ty_Char) -> new_esEs23(xwv116, xwv119) new_esEs37(xwv115, xwv118, app(app(ty_Either, dba), dbb)) -> new_esEs25(xwv115, xwv118, dba, dbb) new_compare18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), ty_Int) -> new_compare7(new_sr(xwv400, xwv3001), new_sr(xwv3000, xwv401)) new_lt22(xwv116, xwv119, ty_Ordering) -> new_lt17(xwv116, xwv119) new_esEs4(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_compare26(xwv50, xwv51, False, feg, feh) -> new_compare15(xwv50, xwv51, new_ltEs23(xwv50, xwv51, feh), feg, feh) new_esEs10(xwv401, xwv3001, ty_Integer) -> new_esEs16(xwv401, xwv3001) new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare30(xwv32, xwv33) new_esEs11(xwv400, xwv3000, app(app(app(ty_@3, fde), fdf), fdg)) -> new_esEs19(xwv400, xwv3000, fde, fdf, fdg) new_ltEs21(xwv431, xwv441, ty_Float) -> new_ltEs18(xwv431, xwv441) new_esEs29(xwv4001, xwv30001, ty_Double) -> new_esEs24(xwv4001, xwv30001) new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare10(xwv32, xwv33) new_compare14(Left(xwv400), Right(xwv3000), beb, bec) -> LT new_esEs35(xwv4002, xwv30002, ty_Bool) -> new_esEs18(xwv4002, xwv30002) new_esEs22(Just(xwv4000), Just(xwv30000), app(app(ty_Either, bdb), bdc)) -> new_esEs25(xwv4000, xwv30000, bdb, bdc) new_esEs31(xwv431, xwv441, ty_Bool) -> new_esEs18(xwv431, xwv441) new_lt18(xwv115, xwv118) -> new_esEs17(new_compare30(xwv115, xwv118), LT) new_esEs38(xwv116, xwv119, ty_Ordering) -> new_esEs17(xwv116, xwv119) new_esEs33(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_esEs34(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_compare29(GT, EQ) -> GT new_esEs4(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs31(xwv431, xwv441, app(ty_[], bab)) -> new_esEs27(xwv431, xwv441, bab) new_compare0(xwv40, xwv300, app(ty_[], bha)) -> new_compare9(xwv40, xwv300, bha) new_esEs36(xwv430, xwv440, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs19(xwv430, xwv440, eef, eeg, eeh) new_compare0(xwv40, xwv300, app(app(ty_Either, beb), bec)) -> new_compare14(xwv40, xwv300, beb, bec) new_esEs36(xwv430, xwv440, ty_@0) -> new_esEs20(xwv430, xwv440) new_esEs29(xwv4001, xwv30001, app(ty_Ratio, fb)) -> new_esEs12(xwv4001, xwv30001, fb) new_esEs31(xwv431, xwv441, ty_Integer) -> new_esEs16(xwv431, xwv441) new_esEs39(xwv4000, xwv30000, app(ty_Maybe, fcf)) -> new_esEs22(xwv4000, xwv30000, fcf) new_esEs11(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_esEs28(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_compare0(xwv40, xwv300, app(app(ty_@2, bhe), bhf)) -> new_compare27(xwv40, xwv300, bhe, bhf) new_ltEs23(xwv50, xwv51, app(app(ty_@2, ffg), ffh)) -> new_ltEs12(xwv50, xwv51, ffg, ffh) new_lt7(xwv431, xwv441, ty_Integer) -> new_lt6(xwv431, xwv441) new_esEs18(False, False) -> True new_esEs25(Left(xwv4000), Left(xwv30000), app(app(ty_@2, chd), che), beh) -> new_esEs26(xwv4000, xwv30000, chd, che) new_esEs31(xwv431, xwv441, app(app(ty_@2, baf), bag)) -> new_esEs26(xwv431, xwv441, baf, bag) new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv4000), xwv3000) new_esEs30(xwv430, xwv440, app(ty_Ratio, hf)) -> new_esEs12(xwv430, xwv440, hf) new_esEs4(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_compare10(Integer(xwv400), Integer(xwv3000)) -> new_primCmpInt(xwv400, xwv3000) new_lt7(xwv431, xwv441, app(app(ty_Either, hh), baa)) -> new_lt9(xwv431, xwv441, hh, baa) new_esEs6(xwv400, xwv3000, app(app(ty_Either, caf), cag)) -> new_esEs25(xwv400, xwv3000, caf, cag) new_esEs4(xwv400, xwv3000, app(ty_Maybe, bcd)) -> new_esEs22(xwv400, xwv3000, bcd) new_lt8(xwv430, xwv440, ty_Integer) -> new_lt6(xwv430, xwv440) new_esEs34(xwv4001, xwv30001, ty_Char) -> new_esEs23(xwv4001, xwv30001) new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, fhc), fhd)) -> new_compare27(xwv32, xwv33, fhc, fhd) new_lt7(xwv431, xwv441, ty_Float) -> new_lt19(xwv431, xwv441) new_lt8(xwv430, xwv440, ty_Float) -> new_lt19(xwv430, xwv440) new_esEs14(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_esEs22(Just(xwv4000), Just(xwv30000), ty_@0) -> new_esEs20(xwv4000, xwv30000) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(ty_[], ebc)) -> new_ltEs7(xwv430, xwv440, ebc) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(ty_[], dah)) -> new_esEs27(xwv4000, xwv30000, dah) new_esEs5(xwv400, xwv3000, app(app(ty_Either, bfg), bfh)) -> new_esEs25(xwv400, xwv3000, bfg, bfh) new_lt20(xwv128, xwv130, app(app(ty_Either, cea), ceb)) -> new_lt9(xwv128, xwv130, cea, ceb) new_compare9([], [], bha) -> EQ new_ltEs24(xwv43, xwv44, app(ty_[], ecd)) -> new_ltEs7(xwv43, xwv44, ecd) new_esEs35(xwv4002, xwv30002, ty_Float) -> new_esEs21(xwv4002, xwv30002) new_esEs39(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, ty_@0) -> new_esEs20(xwv115, xwv118) new_compare31(Float(xwv400, Neg(xwv4010)), Float(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_esEs29(xwv4001, xwv30001, app(ty_[], fh)) -> new_esEs27(xwv4001, xwv30001, fh) new_esEs4(xwv400, xwv3000, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs19(xwv400, xwv3000, bed, bee, bef) new_esEs10(xwv401, xwv3001, ty_Int) -> new_esEs15(xwv401, xwv3001) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_ltEs14(Just(xwv430), Just(xwv440), ty_Double) -> new_ltEs15(xwv430, xwv440) new_esEs10(xwv401, xwv3001, app(ty_Maybe, dch)) -> new_esEs22(xwv401, xwv3001, dch) new_ltEs22(xwv117, xwv120, app(app(ty_@2, fbg), fbh)) -> new_ltEs12(xwv117, xwv120, fbg, fbh) new_esEs30(xwv430, xwv440, ty_Double) -> new_esEs24(xwv430, xwv440) new_esEs36(xwv430, xwv440, ty_Float) -> new_esEs21(xwv430, xwv440) new_ltEs4(True, False) -> False new_ltEs13(xwv43, xwv44, fgc) -> new_fsEs(new_compare18(xwv43, xwv44, fgc)) new_esEs5(xwv400, xwv3000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs19(xwv400, xwv3000, bfb, bfc, bfd) new_esEs32(xwv128, xwv130, ty_@0) -> new_esEs20(xwv128, xwv130) new_esEs37(xwv115, xwv118, ty_Ordering) -> new_esEs17(xwv115, xwv118) new_ltEs14(Just(xwv430), Nothing, ece) -> False new_ltEs14(Nothing, Nothing, ece) -> True new_lt8(xwv430, xwv440, ty_Char) -> new_lt18(xwv430, xwv440) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_Ratio, eaf), dhg) -> new_ltEs13(xwv430, xwv440, eaf) new_esEs28(xwv4000, xwv30000, app(ty_Ratio, dh)) -> new_esEs12(xwv4000, xwv30000, dh) new_lt21(xwv430, xwv440, app(ty_Maybe, efd)) -> new_lt15(xwv430, xwv440, efd) new_esEs33(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_lt21(xwv430, xwv440, ty_Bool) -> new_lt4(xwv430, xwv440) new_esEs10(xwv401, xwv3001, ty_Bool) -> new_esEs18(xwv401, xwv3001) new_ltEs4(False, False) -> True new_ltEs5(xwv83, xwv84, app(ty_[], ca)) -> new_ltEs7(xwv83, xwv84, ca) new_fsEs(xwv226) -> new_not(new_esEs17(xwv226, GT)) new_lt21(xwv430, xwv440, ty_Ordering) -> new_lt17(xwv430, xwv440) new_ltEs18(xwv43, xwv44) -> new_fsEs(new_compare31(xwv43, xwv44)) new_esEs39(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs31(xwv431, xwv441, ty_Int) -> new_esEs15(xwv431, xwv441) new_ltEs24(xwv43, xwv44, app(app(ty_@2, eea), eeb)) -> new_ltEs12(xwv43, xwv44, eea, eeb) new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, fgh), fha), fhb)) -> new_compare13(xwv32, xwv33, fgh, fha, fhb) new_esEs36(xwv430, xwv440, app(ty_Maybe, efd)) -> new_esEs22(xwv430, xwv440, efd) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Char) -> new_esEs23(xwv4000, xwv30000) new_compare28(Just(xwv400), Just(xwv3000), bhh) -> new_compare24(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, bhh), bhh) new_lt8(xwv430, xwv440, app(app(ty_Either, gf), gg)) -> new_lt9(xwv430, xwv440, gf, gg) new_esEs34(xwv4001, xwv30001, ty_Bool) -> new_esEs18(xwv4001, xwv30001) new_lt7(xwv431, xwv441, ty_Char) -> new_lt18(xwv431, xwv441) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(app(ty_@2, ebg), ebh)) -> new_ltEs12(xwv430, xwv440, ebg, ebh) new_ltEs14(Just(xwv430), Just(xwv440), ty_Bool) -> new_ltEs4(xwv430, xwv440) new_ltEs19(xwv432, xwv442, app(ty_[], bbd)) -> new_ltEs7(xwv432, xwv442, bbd) new_ltEs6(Right(xwv430), Left(xwv440), eah, dhg) -> False new_esEs11(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Float) -> new_esEs21(xwv4000, xwv30000) new_ltEs8(xwv43, xwv44) -> new_fsEs(new_compare19(xwv43, xwv44)) new_esEs35(xwv4002, xwv30002, app(app(app(ty_@3, dgc), dgd), dge)) -> new_esEs19(xwv4002, xwv30002, dgc, dgd, dge) new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs33(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, app(app(ty_Either, eec), eed)) -> new_esEs25(xwv430, xwv440, eec, eed) new_esEs16(Integer(xwv4000), Integer(xwv30000)) -> new_primEqInt(xwv4000, xwv30000) new_esEs10(xwv401, xwv3001, ty_@0) -> new_esEs20(xwv401, xwv3001) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_Ratio, edf)) -> new_ltEs13(xwv430, xwv440, edf) new_lt22(xwv116, xwv119, ty_Char) -> new_lt18(xwv116, xwv119) new_ltEs20(xwv129, xwv131, app(ty_[], cfe)) -> new_ltEs7(xwv129, xwv131, cfe) new_ltEs6(Left(xwv430), Left(xwv440), ty_Ordering, dhg) -> new_ltEs16(xwv430, xwv440) new_esEs37(xwv115, xwv118, ty_Float) -> new_esEs21(xwv115, xwv118) new_esEs11(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_esEs5(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs4(xwv400, xwv3000, app(app(ty_Either, beg), beh)) -> new_esEs25(xwv400, xwv3000, beg, beh) new_esEs28(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs34(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_compare31(Float(xwv400, Pos(xwv4010)), Float(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_compare31(Float(xwv400, Neg(xwv4010)), Float(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_primPlusNat0(Succ(xwv2370), xwv40100) -> Succ(Succ(new_primPlusNat1(xwv2370, xwv40100))) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_Maybe, cgh), beh) -> new_esEs22(xwv4000, xwv30000, cgh) new_lt20(xwv128, xwv130, app(ty_Maybe, cfb)) -> new_lt15(xwv128, xwv130, cfb) new_esEs28(xwv4000, xwv30000, app(app(ty_@2, ec), ed)) -> new_esEs26(xwv4000, xwv30000, ec, ed) new_esEs11(xwv400, xwv3000, app(ty_Maybe, fdh)) -> new_esEs22(xwv400, xwv3000, fdh) new_primPlusNat1(Zero, Zero) -> Zero new_esEs34(xwv4001, xwv30001, app(ty_Maybe, dfd)) -> new_esEs22(xwv4001, xwv30001, dfd) new_esEs37(xwv115, xwv118, ty_Char) -> new_esEs23(xwv115, xwv118) new_ltEs6(Left(xwv430), Left(xwv440), ty_@0, dhg) -> new_ltEs8(xwv430, xwv440) new_ltEs22(xwv117, xwv120, ty_Float) -> new_ltEs18(xwv117, xwv120) new_ltEs23(xwv50, xwv51, app(ty_[], ffc)) -> new_ltEs7(xwv50, xwv51, ffc) new_ltEs6(Left(xwv430), Left(xwv440), ty_Integer, dhg) -> new_ltEs9(xwv430, xwv440) new_compare14(Right(xwv400), Left(xwv3000), beb, bec) -> GT new_esEs22(Just(xwv4000), Just(xwv30000), app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs19(xwv4000, xwv30000, bce, bcf, bcg) new_esEs38(xwv116, xwv119, app(app(app(ty_@3, fab), fac), fad)) -> new_esEs19(xwv116, xwv119, fab, fac, fad) new_esEs24(Double(xwv4000, xwv4001), Double(xwv30000, xwv30001)) -> new_esEs15(new_sr(xwv4000, xwv30001), new_sr(xwv4001, xwv30000)) new_ltEs22(xwv117, xwv120, app(ty_[], fbc)) -> new_ltEs7(xwv117, xwv120, fbc) new_ltEs4(True, True) -> True new_esEs29(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_esEs35(xwv4002, xwv30002, ty_Ordering) -> new_esEs17(xwv4002, xwv30002) new_compare0(xwv40, xwv300, ty_Integer) -> new_compare10(xwv40, xwv300) new_primCmpNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primCmpNat0(xwv4000, xwv30000) new_lt4(xwv115, xwv118) -> new_esEs17(new_compare8(xwv115, xwv118), LT) new_esEs30(xwv430, xwv440, app(app(ty_@2, hd), he)) -> new_esEs26(xwv430, xwv440, hd, he) new_esEs35(xwv4002, xwv30002, ty_Char) -> new_esEs23(xwv4002, xwv30002) new_esEs11(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_compare8(False, True) -> LT new_ltEs21(xwv431, xwv441, app(ty_[], efg)) -> new_ltEs7(xwv431, xwv441, efg) new_esEs34(xwv4001, xwv30001, ty_Ordering) -> new_esEs17(xwv4001, xwv30001) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Float) -> new_ltEs18(xwv430, xwv440) new_esEs36(xwv430, xwv440, ty_Integer) -> new_esEs16(xwv430, xwv440) new_ltEs19(xwv432, xwv442, ty_Float) -> new_ltEs18(xwv432, xwv442) new_compare15(xwv155, xwv156, False, bgd, bge) -> GT new_lt20(xwv128, xwv130, ty_Char) -> new_lt18(xwv128, xwv130) new_esEs13(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_lt23(xwv115, xwv118, app(app(ty_Either, dba), dbb)) -> new_lt9(xwv115, xwv118, dba, dbb) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, ty_Char) -> new_esEs23(xwv430, xwv440) new_compare14(Right(xwv400), Right(xwv3000), beb, bec) -> new_compare26(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, bec), beb, bec) new_ltEs20(xwv129, xwv131, ty_Float) -> new_ltEs18(xwv129, xwv131) new_esEs35(xwv4002, xwv30002, ty_Integer) -> new_esEs16(xwv4002, xwv30002) new_lt21(xwv430, xwv440, ty_Char) -> new_lt18(xwv430, xwv440) new_compare14(Left(xwv400), Left(xwv3000), beb, bec) -> new_compare25(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, beb), beb, bec) new_esEs36(xwv430, xwv440, ty_Bool) -> new_esEs18(xwv430, xwv440) new_lt21(xwv430, xwv440, ty_Integer) -> new_lt6(xwv430, xwv440) new_esEs38(xwv116, xwv119, ty_Float) -> new_esEs21(xwv116, xwv119) new_ltEs6(Left(xwv430), Left(xwv440), ty_Char, dhg) -> new_ltEs17(xwv430, xwv440) new_ltEs6(Left(xwv430), Right(xwv440), eah, dhg) -> True new_esEs30(xwv430, xwv440, ty_Int) -> new_esEs15(xwv430, xwv440) new_lt16(xwv115, xwv118) -> new_esEs17(new_compare6(xwv115, xwv118), LT) new_esEs35(xwv4002, xwv30002, app(ty_Maybe, dgf)) -> new_esEs22(xwv4002, xwv30002, dgf) new_esEs38(xwv116, xwv119, app(app(ty_Either, ehg), ehh)) -> new_esEs25(xwv116, xwv119, ehg, ehh) new_compare18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), ty_Integer) -> new_compare10(new_sr0(xwv400, xwv3001), new_sr0(xwv3000, xwv401)) new_esEs37(xwv115, xwv118, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs19(xwv115, xwv118, bdg, bdh, bea) new_esEs35(xwv4002, xwv30002, ty_@0) -> new_esEs20(xwv4002, xwv30002) new_esEs29(xwv4001, xwv30001, app(app(ty_@2, ff), fg)) -> new_esEs26(xwv4001, xwv30001, ff, fg) new_compare28(Nothing, Just(xwv3000), bhh) -> LT new_esEs4(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Double) -> new_esEs24(xwv4000, xwv30000) new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> LT new_compare11(xwv170, xwv171, True, edh) -> LT new_esEs27(:(xwv4000, xwv4001), [], bfa) -> False new_esEs27([], :(xwv30000, xwv30001), bfa) -> False new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare8(xwv32, xwv33) new_lt15(xwv115, xwv118, ecc) -> new_esEs17(new_compare28(xwv115, xwv118, ecc), LT) new_esEs5(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_esEs34(xwv4001, xwv30001, ty_@0) -> new_esEs20(xwv4001, xwv30001) new_esEs38(xwv116, xwv119, app(ty_[], faa)) -> new_esEs27(xwv116, xwv119, faa) new_esEs6(xwv400, xwv3000, app(app(ty_@2, cah), cba)) -> new_esEs26(xwv400, xwv3000, cah, cba) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT new_esEs34(xwv4001, xwv30001, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs19(xwv4001, xwv30001, dfa, dfb, dfc) new_ltEs24(xwv43, xwv44, ty_Int) -> new_ltEs10(xwv43, xwv44) new_ltEs23(xwv50, xwv51, app(app(ty_Either, ffa), ffb)) -> new_ltEs6(xwv50, xwv51, ffa, ffb) new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv4000)) new_esEs6(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs23(xwv50, xwv51, ty_Bool) -> new_ltEs4(xwv50, xwv51) new_compare12(xwv202, xwv203, xwv204, xwv205, True, ga, gb) -> LT new_esEs32(xwv128, xwv130, app(ty_Ratio, cfa)) -> new_esEs12(xwv128, xwv130, cfa) new_esEs4(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs4(False, True) -> True new_ltEs15(xwv43, xwv44) -> new_fsEs(new_compare6(xwv43, xwv44)) new_lt7(xwv431, xwv441, ty_Bool) -> new_lt4(xwv431, xwv441) new_ltEs14(Nothing, Just(xwv440), ece) -> True new_lt20(xwv128, xwv130, ty_Bool) -> new_lt4(xwv128, xwv130) new_esEs39(xwv4000, xwv30000, app(app(ty_Either, fch), fda)) -> new_esEs25(xwv4000, xwv30000, fch, fda) new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False new_esEs10(xwv401, xwv3001, ty_Ordering) -> new_esEs17(xwv401, xwv3001) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Bool) -> new_ltEs4(xwv430, xwv440) new_esEs17(LT, LT) -> True new_ltEs17(xwv43, xwv44) -> new_fsEs(new_compare30(xwv43, xwv44)) new_lt23(xwv115, xwv118, ty_Int) -> new_lt11(xwv115, xwv118) new_esEs28(xwv4000, xwv30000, app(ty_[], ee)) -> new_esEs27(xwv4000, xwv30000, ee) new_compare0(xwv40, xwv300, app(ty_Ratio, bhg)) -> new_compare18(xwv40, xwv300, bhg) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Bool, beh) -> new_esEs18(xwv4000, xwv30000) new_esEs25(Left(xwv4000), Left(xwv30000), app(app(ty_Either, chb), chc), beh) -> new_esEs25(xwv4000, xwv30000, chb, chc) new_esEs11(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare7(xwv32, xwv33) new_ltEs5(xwv83, xwv84, ty_Float) -> new_ltEs18(xwv83, xwv84) new_esEs39(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_esEs38(xwv116, xwv119, ty_Bool) -> new_esEs18(xwv116, xwv119) new_ltEs5(xwv83, xwv84, ty_Double) -> new_ltEs15(xwv83, xwv84) new_esEs7(xwv401, xwv3001, app(ty_[], ccd)) -> new_esEs27(xwv401, xwv3001, ccd) new_lt21(xwv430, xwv440, app(app(ty_Either, eec), eed)) -> new_lt9(xwv430, xwv440, eec, eed) new_ltEs5(xwv83, xwv84, app(ty_Ratio, cg)) -> new_ltEs13(xwv83, xwv84, cg) new_primCmpNat0(Zero, Zero) -> EQ new_esEs20(@0, @0) -> True new_esEs37(xwv115, xwv118, ty_Integer) -> new_esEs16(xwv115, xwv118) new_esEs10(xwv401, xwv3001, ty_Char) -> new_esEs23(xwv401, xwv3001) new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, fhe)) -> new_compare18(xwv32, xwv33, fhe) new_ltEs16(GT, EQ) -> False new_esEs22(Just(xwv4000), Just(xwv30000), ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_compare0(xwv40, xwv300, ty_Int) -> new_compare7(xwv40, xwv300) new_lt23(xwv115, xwv118, ty_Double) -> new_lt16(xwv115, xwv118) new_compare29(EQ, EQ) -> EQ new_lt23(xwv115, xwv118, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt12(xwv115, xwv118, bdg, bdh, bea) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_Maybe, eag), dhg) -> new_ltEs14(xwv430, xwv440, eag) new_esEs39(xwv4000, xwv30000, app(app(app(ty_@3, fcc), fcd), fce)) -> new_esEs19(xwv4000, xwv30000, fcc, fcd, fce) new_esEs5(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_lt23(xwv115, xwv118, ty_Integer) -> new_lt6(xwv115, xwv118) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs29(xwv4001, xwv30001, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs19(xwv4001, xwv30001, ef, eg, eh) new_esEs37(xwv115, xwv118, app(app(ty_@2, ehd), ehe)) -> new_esEs26(xwv115, xwv118, ehd, ehe) new_compare28(Just(xwv400), Nothing, bhh) -> GT new_ltEs19(xwv432, xwv442, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs11(xwv432, xwv442, bbe, bbf, bbg) new_esEs26(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), db, dc) -> new_asAs(new_esEs28(xwv4000, xwv30000, db), new_esEs29(xwv4001, xwv30001, dc)) new_esEs9(xwv400, xwv3000, app(ty_Ratio, dbg)) -> new_esEs12(xwv400, xwv3000, dbg) new_lt21(xwv430, xwv440, app(ty_[], eee)) -> new_lt5(xwv430, xwv440, eee) new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare29(xwv32, xwv33) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_Maybe, bch)) -> new_esEs22(xwv4000, xwv30000, bch) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs33(xwv4000, xwv30000, app(ty_Maybe, deb)) -> new_esEs22(xwv4000, xwv30000, deb) new_esEs38(xwv116, xwv119, app(ty_Maybe, fah)) -> new_esEs22(xwv116, xwv119, fah) new_esEs33(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, ty_Double) -> new_esEs24(xwv430, xwv440) new_esEs6(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_ltEs24(xwv43, xwv44, ty_Double) -> new_ltEs15(xwv43, xwv44) new_esEs12(:%(xwv4000, xwv4001), :%(xwv30000, xwv30001), bd) -> new_asAs(new_esEs13(xwv4000, xwv30000, bd), new_esEs14(xwv4001, xwv30001, bd)) new_compare6(Double(xwv400, Neg(xwv4010)), Double(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_ltEs16(LT, LT) -> True new_esEs29(xwv4001, xwv30001, app(app(ty_Either, fc), fd)) -> new_esEs25(xwv4001, xwv30001, fc, fd) new_esEs32(xwv128, xwv130, app(app(ty_@2, ceg), ceh)) -> new_esEs26(xwv128, xwv130, ceg, ceh) new_esEs9(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs24(xwv43, xwv44, ty_Char) -> new_ltEs17(xwv43, xwv44) new_lt23(xwv115, xwv118, ty_Char) -> new_lt18(xwv115, xwv118) new_lt23(xwv115, xwv118, ty_Float) -> new_lt19(xwv115, xwv118) new_ltEs24(xwv43, xwv44, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs11(xwv43, xwv44, gc, gd, ge) new_esEs8(xwv402, xwv3002, ty_@0) -> new_esEs20(xwv402, xwv3002) new_esEs30(xwv430, xwv440, app(ty_[], gh)) -> new_esEs27(xwv430, xwv440, gh) new_compare29(GT, GT) -> EQ new_esEs32(xwv128, xwv130, ty_Ordering) -> new_esEs17(xwv128, xwv130) new_ltEs22(xwv117, xwv120, ty_Integer) -> new_ltEs9(xwv117, xwv120) new_lt6(xwv115, xwv118) -> new_esEs17(new_compare10(xwv115, xwv118), LT) new_esEs33(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_compare28(Nothing, Nothing, bhh) -> EQ new_compare9(:(xwv400, xwv401), [], bha) -> GT new_esEs34(xwv4001, xwv30001, app(app(ty_@2, dfh), dga)) -> new_esEs26(xwv4001, xwv30001, dfh, dga) new_compare16(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, xwv194, bgf, bgg, bgh) -> new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, bgf, bgg, bgh) new_esEs32(xwv128, xwv130, ty_Integer) -> new_esEs16(xwv128, xwv130) new_primCmpNat0(Succ(xwv4000), Zero) -> GT new_lt10(xwv115, xwv118) -> new_esEs17(new_compare19(xwv115, xwv118), LT) new_lt20(xwv128, xwv130, app(app(app(ty_@3, ced), cee), cef)) -> new_lt12(xwv128, xwv130, ced, cee, cef) new_pePe(False, xwv231) -> xwv231 new_ltEs5(xwv83, xwv84, ty_Char) -> new_ltEs17(xwv83, xwv84) new_lt13(xwv115, xwv118, ehd, ehe) -> new_esEs17(new_compare27(xwv115, xwv118, ehd, ehe), LT) new_esEs21(Float(xwv4000, xwv4001), Float(xwv30000, xwv30001)) -> new_esEs15(new_sr(xwv4000, xwv30001), new_sr(xwv4001, xwv30000)) new_ltEs19(xwv432, xwv442, ty_Int) -> new_ltEs10(xwv432, xwv442) new_ltEs22(xwv117, xwv120, app(ty_Ratio, fca)) -> new_ltEs13(xwv117, xwv120, fca) new_ltEs22(xwv117, xwv120, ty_Double) -> new_ltEs15(xwv117, xwv120) new_compare25(xwv43, xwv44, True, fhg, fhh) -> EQ new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, False, bgf, bgg, bgh) -> GT new_esEs28(xwv4000, xwv30000, app(ty_Maybe, dg)) -> new_esEs22(xwv4000, xwv30000, dg) new_esEs7(xwv401, xwv3001, ty_Bool) -> new_esEs18(xwv401, xwv3001) new_esEs30(xwv430, xwv440, ty_Char) -> new_esEs23(xwv430, xwv440) new_ltEs14(Just(xwv430), Just(xwv440), app(app(ty_Either, ecf), ecg)) -> new_ltEs6(xwv430, xwv440, ecf, ecg) new_lt22(xwv116, xwv119, app(ty_Maybe, fah)) -> new_lt15(xwv116, xwv119, fah) new_ltEs16(LT, GT) -> True new_ltEs6(Right(xwv430), Right(xwv440), eah, app(ty_Ratio, eca)) -> new_ltEs13(xwv430, xwv440, eca) new_lt23(xwv115, xwv118, ty_Bool) -> new_lt4(xwv115, xwv118) new_ltEs24(xwv43, xwv44, ty_Float) -> new_ltEs18(xwv43, xwv44) new_ltEs24(xwv43, xwv44, app(ty_Ratio, fgc)) -> new_ltEs13(xwv43, xwv44, fgc) new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_esEs30(xwv430, xwv440, ty_Ordering) -> new_esEs17(xwv430, xwv440) new_esEs5(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_lt21(xwv430, xwv440, ty_Float) -> new_lt19(xwv430, xwv440) new_esEs8(xwv402, xwv3002, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs19(xwv402, xwv3002, cce, ccf, ccg) new_esEs6(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False new_compare24(xwv83, xwv84, True, bf) -> EQ new_esEs31(xwv431, xwv441, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs19(xwv431, xwv441, bac, bad, bae) new_compare211(xwv128, xwv129, xwv130, xwv131, True, cdg, cdh) -> EQ new_ltEs16(GT, LT) -> False new_esEs31(xwv431, xwv441, ty_@0) -> new_esEs20(xwv431, xwv441) new_esEs39(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_esEs17(EQ, EQ) -> True new_lt22(xwv116, xwv119, ty_@0) -> new_lt10(xwv116, xwv119) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Double, beh) -> new_esEs24(xwv4000, xwv30000) new_esEs31(xwv431, xwv441, ty_Double) -> new_esEs24(xwv431, xwv441) new_esEs32(xwv128, xwv130, ty_Float) -> new_esEs21(xwv128, xwv130) new_compare29(LT, LT) -> EQ new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs28(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_esEs7(xwv401, xwv3001, app(ty_Maybe, cbf)) -> new_esEs22(xwv401, xwv3001, cbf) new_esEs6(xwv400, xwv3000, app(ty_Ratio, cae)) -> new_esEs12(xwv400, xwv3000, cae) new_esEs32(xwv128, xwv130, ty_Char) -> new_esEs23(xwv128, xwv130) new_esEs9(xwv400, xwv3000, app(app(ty_@2, dcb), dcc)) -> new_esEs26(xwv400, xwv3000, dcb, dcc) new_esEs31(xwv431, xwv441, app(app(ty_Either, hh), baa)) -> new_esEs25(xwv431, xwv441, hh, baa) new_lt8(xwv430, xwv440, app(ty_[], gh)) -> new_lt5(xwv430, xwv440, gh) new_compare13(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bhb, bhc, bhd) -> new_compare210(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, bhb), new_asAs(new_esEs7(xwv401, xwv3001, bhc), new_esEs8(xwv402, xwv3002, bhd))), bhb, bhc, bhd) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_@0) -> new_ltEs8(xwv430, xwv440) new_esEs11(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_compare31(Float(xwv400, Pos(xwv4010)), Float(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs10(xwv401, xwv3001, app(ty_Ratio, dda)) -> new_esEs12(xwv401, xwv3001, dda) new_esEs7(xwv401, xwv3001, ty_Double) -> new_esEs24(xwv401, xwv3001) new_compare8(True, True) -> EQ new_primPlusNat0(Zero, xwv40100) -> Succ(xwv40100) new_esEs11(xwv400, xwv3000, app(app(ty_Either, feb), fec)) -> new_esEs25(xwv400, xwv3000, feb, fec) new_ltEs21(xwv431, xwv441, ty_@0) -> new_ltEs8(xwv431, xwv441) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(ty_Maybe, dab)) -> new_esEs22(xwv4000, xwv30000, dab) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(app(ty_Either, eba), ebb)) -> new_ltEs6(xwv430, xwv440, eba, ebb) new_ltEs19(xwv432, xwv442, ty_Char) -> new_ltEs17(xwv432, xwv442) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs6(xwv400, xwv3000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs19(xwv400, xwv3000, caa, cab, cac) new_esEs34(xwv4001, xwv30001, app(app(ty_Either, dff), dfg)) -> new_esEs25(xwv4001, xwv30001, dff, dfg) new_esEs33(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs7(xwv401, xwv3001, ty_Char) -> new_esEs23(xwv401, xwv3001) new_esEs36(xwv430, xwv440, ty_Int) -> new_esEs15(xwv430, xwv440) new_ltEs20(xwv129, xwv131, app(ty_Maybe, cgd)) -> new_ltEs14(xwv129, xwv131, cgd) new_esEs31(xwv431, xwv441, app(ty_Maybe, bba)) -> new_esEs22(xwv431, xwv441, bba) new_ltEs16(EQ, GT) -> True new_ltEs20(xwv129, xwv131, app(app(ty_@2, cga), cgb)) -> new_ltEs12(xwv129, xwv131, cga, cgb) new_ltEs6(Left(xwv430), Left(xwv440), ty_Bool, dhg) -> new_ltEs4(xwv430, xwv440) new_ltEs21(xwv431, xwv441, ty_Int) -> new_ltEs10(xwv431, xwv441) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_Maybe, edg)) -> new_ltEs14(xwv430, xwv440, edg) new_esEs34(xwv4001, xwv30001, ty_Float) -> new_esEs21(xwv4001, xwv30001) new_ltEs16(EQ, EQ) -> True new_esEs28(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_esEs8(xwv402, xwv3002, ty_Float) -> new_esEs21(xwv402, xwv3002) new_lt7(xwv431, xwv441, app(app(app(ty_@3, bac), bad), bae)) -> new_lt12(xwv431, xwv441, bac, bad, bae) new_lt14(xwv115, xwv118, ehf) -> new_esEs17(new_compare18(xwv115, xwv118, ehf), LT) new_lt8(xwv430, xwv440, ty_Ordering) -> new_lt17(xwv430, xwv440) new_esEs30(xwv430, xwv440, app(ty_Maybe, hg)) -> new_esEs22(xwv430, xwv440, hg) new_esEs5(xwv400, xwv3000, app(ty_Maybe, bfe)) -> new_esEs22(xwv400, xwv3000, bfe) new_ltEs22(xwv117, xwv120, ty_Char) -> new_ltEs17(xwv117, xwv120) new_esEs11(xwv400, xwv3000, app(ty_[], fef)) -> new_esEs27(xwv400, xwv3000, fef) new_lt8(xwv430, xwv440, app(app(ty_@2, hd), he)) -> new_lt13(xwv430, xwv440, hd, he) new_lt8(xwv430, xwv440, app(ty_Maybe, hg)) -> new_lt15(xwv430, xwv440, hg) new_lt12(xwv115, xwv118, bdg, bdh, bea) -> new_esEs17(new_compare13(xwv115, xwv118, bdg, bdh, bea), LT) new_compare0(xwv40, xwv300, ty_Bool) -> new_compare8(xwv40, xwv300) new_esEs9(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs13(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs8(xwv402, xwv3002, ty_Double) -> new_esEs24(xwv402, xwv3002) new_ltEs14(Just(xwv430), Just(xwv440), app(app(ty_@2, edd), ede)) -> new_ltEs12(xwv430, xwv440, edd, ede) new_ltEs14(Just(xwv430), Just(xwv440), ty_Ordering) -> new_ltEs16(xwv430, xwv440) new_ltEs20(xwv129, xwv131, ty_Ordering) -> new_ltEs16(xwv129, xwv131) new_ltEs19(xwv432, xwv442, ty_Integer) -> new_ltEs9(xwv432, xwv442) new_primMulInt(Neg(xwv30000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv30000, xwv4010)) new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) new_esEs8(xwv402, xwv3002, app(app(ty_Either, cdb), cdc)) -> new_esEs25(xwv402, xwv3002, cdb, cdc) new_esEs25(Left(xwv4000), Right(xwv30000), beg, beh) -> False new_esEs25(Right(xwv4000), Left(xwv30000), beg, beh) -> False new_ltEs5(xwv83, xwv84, ty_Integer) -> new_ltEs9(xwv83, xwv84) new_esEs32(xwv128, xwv130, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs19(xwv128, xwv130, ced, cee, cef) new_ltEs22(xwv117, xwv120, ty_Int) -> new_ltEs10(xwv117, xwv120) new_ltEs19(xwv432, xwv442, ty_@0) -> new_ltEs8(xwv432, xwv442) new_esEs30(xwv430, xwv440, ty_Bool) -> new_esEs18(xwv430, xwv440) new_ltEs5(xwv83, xwv84, ty_Ordering) -> new_ltEs16(xwv83, xwv84) new_ltEs21(xwv431, xwv441, ty_Char) -> new_ltEs17(xwv431, xwv441) new_esEs29(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_esEs29(xwv4001, xwv30001, ty_@0) -> new_esEs20(xwv4001, xwv30001) new_lt20(xwv128, xwv130, ty_Float) -> new_lt19(xwv128, xwv130) new_esEs33(xwv4000, xwv30000, app(ty_[], deh)) -> new_esEs27(xwv4000, xwv30000, deh) new_ltEs5(xwv83, xwv84, app(app(ty_@2, ce), cf)) -> new_ltEs12(xwv83, xwv84, ce, cf) new_esEs6(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_esEs10(xwv401, xwv3001, app(ty_[], ddf)) -> new_esEs27(xwv401, xwv3001, ddf) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_ltEs14(Just(xwv430), Just(xwv440), ty_@0) -> new_ltEs8(xwv430, xwv440) new_esEs39(xwv4000, xwv30000, app(ty_Ratio, fcg)) -> new_esEs12(xwv4000, xwv30000, fcg) new_compare11(xwv170, xwv171, False, edh) -> GT new_primMulInt(Pos(xwv30000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv30000, xwv4010)) new_primMulInt(Neg(xwv30000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv30000, xwv4010)) new_compare6(Double(xwv400, Pos(xwv4010)), Double(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_compare6(Double(xwv400, Neg(xwv4010)), Double(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Ordering, beh) -> new_esEs17(xwv4000, xwv30000) new_lt8(xwv430, xwv440, ty_@0) -> new_lt10(xwv430, xwv440) new_ltEs20(xwv129, xwv131, ty_@0) -> new_ltEs8(xwv129, xwv131) new_ltEs23(xwv50, xwv51, ty_Ordering) -> new_ltEs16(xwv50, xwv51) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_lt17(xwv115, xwv118) -> new_esEs17(new_compare29(xwv115, xwv118), LT) new_lt21(xwv430, xwv440, ty_Int) -> new_lt11(xwv430, xwv440) new_ltEs22(xwv117, xwv120, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_ltEs11(xwv117, xwv120, fbd, fbe, fbf) new_sr0(Integer(xwv30000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv30000, xwv4010)) new_lt22(xwv116, xwv119, app(app(ty_@2, fae), faf)) -> new_lt13(xwv116, xwv119, fae, faf) new_compare0(xwv40, xwv300, ty_Float) -> new_compare31(xwv40, xwv300) new_esEs31(xwv431, xwv441, ty_Float) -> new_esEs21(xwv431, xwv441) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs19(xwv4000, xwv30000, chg, chh, daa) new_ltEs21(xwv431, xwv441, app(ty_Ratio, ege)) -> new_ltEs13(xwv431, xwv441, ege) new_esEs8(xwv402, xwv3002, ty_Bool) -> new_esEs18(xwv402, xwv3002) new_esEs39(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_lt20(xwv128, xwv130, ty_Double) -> new_lt16(xwv128, xwv130) new_ltEs11(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, ge) -> new_pePe(new_lt8(xwv430, xwv440, gc), new_asAs(new_esEs30(xwv430, xwv440, gc), new_pePe(new_lt7(xwv431, xwv441, gd), new_asAs(new_esEs31(xwv431, xwv441, gd), new_ltEs19(xwv432, xwv442, ge))))) new_esEs9(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_compare211(xwv128, xwv129, xwv130, xwv131, False, cdg, cdh) -> new_compare110(xwv128, xwv129, xwv130, xwv131, new_lt20(xwv128, xwv130, cdg), new_asAs(new_esEs32(xwv128, xwv130, cdg), new_ltEs20(xwv129, xwv131, cdh)), cdg, cdh) new_asAs(True, xwv164) -> xwv164 new_esEs7(xwv401, xwv3001, ty_Int) -> new_esEs15(xwv401, xwv3001) new_lt8(xwv430, xwv440, ty_Int) -> new_lt11(xwv430, xwv440) new_esEs4(xwv400, xwv3000, app(ty_[], bfa)) -> new_esEs27(xwv400, xwv3000, bfa) new_esEs39(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_ltEs21(xwv431, xwv441, ty_Integer) -> new_ltEs9(xwv431, xwv441) new_ltEs9(xwv43, xwv44) -> new_fsEs(new_compare10(xwv43, xwv44)) new_esEs9(xwv400, xwv3000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs19(xwv400, xwv3000, dbc, dbd, dbe) new_esEs14(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_ltEs6(Left(xwv430), Left(xwv440), ty_Int, dhg) -> new_ltEs10(xwv430, xwv440) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Char, beh) -> new_esEs23(xwv4000, xwv30000) new_ltEs19(xwv432, xwv442, ty_Double) -> new_ltEs15(xwv432, xwv442) new_compare111(xwv148, xwv149, False, egg, egh) -> GT new_compare29(LT, GT) -> LT new_esEs6(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_[], chf), beh) -> new_esEs27(xwv4000, xwv30000, chf) new_compare29(LT, EQ) -> LT new_ltEs21(xwv431, xwv441, ty_Bool) -> new_ltEs4(xwv431, xwv441) new_compare12(xwv202, xwv203, xwv204, xwv205, False, ga, gb) -> GT new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare31(xwv32, xwv33) new_esEs4(xwv400, xwv3000, app(app(ty_@2, db), dc)) -> new_esEs26(xwv400, xwv3000, db, dc) new_ltEs21(xwv431, xwv441, app(app(ty_Either, efe), eff)) -> new_ltEs6(xwv431, xwv441, efe, eff) new_sr(xwv3000, xwv401) -> new_primMulInt(xwv3000, xwv401) new_ltEs16(GT, GT) -> True new_lt7(xwv431, xwv441, ty_Double) -> new_lt16(xwv431, xwv441) new_lt23(xwv115, xwv118, app(ty_[], be)) -> new_lt5(xwv115, xwv118, be) new_ltEs12(@2(xwv430, xwv431), @2(xwv440, xwv441), eea, eeb) -> new_pePe(new_lt21(xwv430, xwv440, eea), new_asAs(new_esEs36(xwv430, xwv440, eea), new_ltEs21(xwv431, xwv441, eeb))) new_compare9(:(xwv400, xwv401), :(xwv3000, xwv3001), bha) -> new_primCompAux1(xwv400, xwv3000, xwv401, xwv3001, bha) new_primMulNat0(Zero, Zero) -> Zero new_esEs39(xwv4000, xwv30000, app(app(ty_@2, fdb), fdc)) -> new_esEs26(xwv4000, xwv30000, fdb, fdc) new_esEs35(xwv4002, xwv30002, app(ty_Ratio, dgg)) -> new_esEs12(xwv4002, xwv30002, dgg) new_compare0(xwv40, xwv300, ty_Char) -> new_compare30(xwv40, xwv300) new_ltEs5(xwv83, xwv84, app(app(app(ty_@3, cb), cc), cd)) -> new_ltEs11(xwv83, xwv84, cb, cc, cd) new_ltEs21(xwv431, xwv441, app(ty_Maybe, egf)) -> new_ltEs14(xwv431, xwv441, egf) new_esEs28(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_esEs9(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs19(xwv432, xwv442, app(ty_Ratio, bcb)) -> new_ltEs13(xwv432, xwv442, bcb) new_esEs35(xwv4002, xwv30002, app(ty_[], dhd)) -> new_esEs27(xwv4002, xwv30002, dhd) new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], fgg)) -> new_compare9(xwv32, xwv33, fgg) new_compare29(EQ, LT) -> GT new_esEs29(xwv4001, xwv30001, ty_Float) -> new_esEs21(xwv4001, xwv30001) new_lt7(xwv431, xwv441, app(ty_[], bab)) -> new_lt5(xwv431, xwv441, bab) new_ltEs22(xwv117, xwv120, app(ty_Maybe, fcb)) -> new_ltEs14(xwv117, xwv120, fcb) new_esEs35(xwv4002, xwv30002, ty_Double) -> new_esEs24(xwv4002, xwv30002) new_lt8(xwv430, xwv440, app(app(app(ty_@3, ha), hb), hc)) -> new_lt12(xwv430, xwv440, ha, hb, hc) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Ordering) -> new_ltEs16(xwv430, xwv440) new_esEs9(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs36(xwv430, xwv440, app(ty_[], eee)) -> new_esEs27(xwv430, xwv440, eee) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_[], ech)) -> new_ltEs7(xwv430, xwv440, ech) new_esEs8(xwv402, xwv3002, ty_Integer) -> new_esEs16(xwv402, xwv3002) new_esEs17(GT, GT) -> True new_esEs7(xwv401, xwv3001, ty_Ordering) -> new_esEs17(xwv401, xwv3001) new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False new_ltEs5(xwv83, xwv84, ty_Int) -> new_ltEs10(xwv83, xwv84) new_ltEs20(xwv129, xwv131, app(ty_Ratio, cgc)) -> new_ltEs13(xwv129, xwv131, cgc) new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv40000, xwv300000) new_ltEs20(xwv129, xwv131, app(app(ty_Either, cfc), cfd)) -> new_ltEs6(xwv129, xwv131, cfc, cfd) new_esEs8(xwv402, xwv3002, ty_Int) -> new_esEs15(xwv402, xwv3002) new_esEs23(Char(xwv4000), Char(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) new_esEs4(xwv400, xwv3000, app(ty_Ratio, bd)) -> new_esEs12(xwv400, xwv3000, bd) new_lt8(xwv430, xwv440, ty_Double) -> new_lt16(xwv430, xwv440) new_compare27(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bhe, bhf) -> new_compare211(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, bhe), new_esEs10(xwv401, xwv3001, bhf)), bhe, bhf) new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv30000)) -> False new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv30000)) -> False new_compare25(xwv43, xwv44, False, fhg, fhh) -> new_compare111(xwv43, xwv44, new_ltEs24(xwv43, xwv44, fhg), fhg, fhh) new_lt20(xwv128, xwv130, app(ty_Ratio, cfa)) -> new_lt14(xwv128, xwv130, cfa) new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) new_esEs8(xwv402, xwv3002, app(ty_Maybe, cch)) -> new_esEs22(xwv402, xwv3002, cch) new_esEs38(xwv116, xwv119, ty_Int) -> new_esEs15(xwv116, xwv119) new_esEs8(xwv402, xwv3002, app(app(ty_@2, cdd), cde)) -> new_esEs26(xwv402, xwv3002, cdd, cde) new_ltEs19(xwv432, xwv442, app(app(ty_Either, bbb), bbc)) -> new_ltEs6(xwv432, xwv442, bbb, bbc) new_esEs34(xwv4001, xwv30001, app(ty_Ratio, dfe)) -> new_esEs12(xwv4001, xwv30001, dfe) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs22(xwv117, xwv120, ty_Ordering) -> new_ltEs16(xwv117, xwv120) new_ltEs23(xwv50, xwv51, app(app(app(ty_@3, ffd), ffe), fff)) -> new_ltEs11(xwv50, xwv51, ffd, ffe, fff) new_lt22(xwv116, xwv119, ty_Int) -> new_lt11(xwv116, xwv119) new_primCompAux00(xwv32, xwv33, LT, fgd) -> LT new_esEs9(xwv400, xwv3000, app(ty_Maybe, dbf)) -> new_esEs22(xwv400, xwv3000, dbf) new_esEs30(xwv430, xwv440, ty_Float) -> new_esEs21(xwv430, xwv440) new_compare24(xwv83, xwv84, False, bf) -> new_compare11(xwv83, xwv84, new_ltEs5(xwv83, xwv84, bf), bf) new_lt21(xwv430, xwv440, app(app(ty_@2, efa), efb)) -> new_lt13(xwv430, xwv440, efa, efb) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_[], bdf)) -> new_esEs27(xwv4000, xwv30000, bdf) new_ltEs22(xwv117, xwv120, ty_Bool) -> new_ltEs4(xwv117, xwv120) new_esEs38(xwv116, xwv119, ty_Double) -> new_esEs24(xwv116, xwv119) new_ltEs22(xwv117, xwv120, app(app(ty_Either, fba), fbb)) -> new_ltEs6(xwv117, xwv120, fba, fbb) new_esEs7(xwv401, xwv3001, app(app(ty_@2, ccb), ccc)) -> new_esEs26(xwv401, xwv3001, ccb, ccc) new_not(False) -> True new_ltEs20(xwv129, xwv131, ty_Bool) -> new_ltEs4(xwv129, xwv131) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Int, beh) -> new_esEs15(xwv4000, xwv30000) new_esEs6(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_lt7(xwv431, xwv441, ty_Int) -> new_lt11(xwv431, xwv441) new_esEs25(Left(xwv4000), Left(xwv30000), app(app(app(ty_@3, cge), cgf), cgg), beh) -> new_esEs19(xwv4000, xwv30000, cge, cgf, cgg) new_esEs39(xwv4000, xwv30000, app(ty_[], fdd)) -> new_esEs27(xwv4000, xwv30000, fdd) new_ltEs24(xwv43, xwv44, ty_Integer) -> new_ltEs9(xwv43, xwv44) new_ltEs24(xwv43, xwv44, ty_Ordering) -> new_ltEs16(xwv43, xwv44) new_ltEs14(Just(xwv430), Just(xwv440), ty_Float) -> new_ltEs18(xwv430, xwv440) new_esEs28(xwv4000, xwv30000, app(app(ty_Either, ea), eb)) -> new_esEs25(xwv4000, xwv30000, ea, eb) new_ltEs23(xwv50, xwv51, ty_@0) -> new_ltEs8(xwv50, xwv51) new_esEs4(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs5(xwv400, xwv3000, app(ty_[], bgc)) -> new_esEs27(xwv400, xwv3000, bgc) new_compare210(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, eha, ehb, ehc) -> new_compare16(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, new_lt23(xwv115, xwv118, eha), new_asAs(new_esEs37(xwv115, xwv118, eha), new_pePe(new_lt22(xwv116, xwv119, ehb), new_asAs(new_esEs38(xwv116, xwv119, ehb), new_ltEs22(xwv117, xwv120, ehc)))), eha, ehb, ehc) new_ltEs23(xwv50, xwv51, app(ty_Maybe, fgb)) -> new_ltEs14(xwv50, xwv51, fgb) new_lt20(xwv128, xwv130, ty_Int) -> new_lt11(xwv128, xwv130) new_lt21(xwv430, xwv440, app(ty_Ratio, efc)) -> new_lt14(xwv430, xwv440, efc) new_ltEs24(xwv43, xwv44, app(app(ty_Either, eah), dhg)) -> new_ltEs6(xwv43, xwv44, eah, dhg) new_lt20(xwv128, xwv130, app(ty_[], cec)) -> new_lt5(xwv128, xwv130, cec) new_esEs38(xwv116, xwv119, app(ty_Ratio, fag)) -> new_esEs12(xwv116, xwv119, fag) new_ltEs7(xwv43, xwv44, ecd) -> new_fsEs(new_compare9(xwv43, xwv44, ecd)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs6(Left(xwv430), Left(xwv440), app(app(app(ty_@3, eaa), eab), eac), dhg) -> new_ltEs11(xwv430, xwv440, eaa, eab, eac) new_compare0(xwv40, xwv300, ty_@0) -> new_compare19(xwv40, xwv300) new_esEs4(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_[], dhh), dhg) -> new_ltEs7(xwv430, xwv440, dhh) new_esEs37(xwv115, xwv118, app(ty_[], be)) -> new_esEs27(xwv115, xwv118, be) new_ltEs19(xwv432, xwv442, ty_Bool) -> new_ltEs4(xwv432, xwv442) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_Ratio, cha), beh) -> new_esEs12(xwv4000, xwv30000, cha) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt7(xwv431, xwv441, app(ty_Ratio, bah)) -> new_lt14(xwv431, xwv441, bah) new_esEs9(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_primMulNat0(Succ(xwv300000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv300000, Succ(xwv40100)), xwv40100) new_ltEs6(Left(xwv430), Left(xwv440), ty_Double, dhg) -> new_ltEs15(xwv430, xwv440) new_ltEs24(xwv43, xwv44, ty_@0) -> new_ltEs8(xwv43, xwv44) new_compare30(Char(xwv400), Char(xwv3000)) -> new_primCmpNat0(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, ty_Bool) -> new_ltEs4(xwv83, xwv84) new_compare29(GT, LT) -> GT new_lt8(xwv430, xwv440, app(ty_Ratio, hf)) -> new_lt14(xwv430, xwv440, hf) new_compare9([], :(xwv3000, xwv3001), bha) -> LT new_compare16(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, False, xwv194, bgf, bgg, bgh) -> new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, xwv194, bgf, bgg, bgh) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs36(xwv430, xwv440, app(ty_Ratio, efc)) -> new_esEs12(xwv430, xwv440, efc) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, app(ty_Ratio, ehf)) -> new_esEs12(xwv115, xwv118, ehf) new_primEqNat0(Zero, Zero) -> True new_ltEs21(xwv431, xwv441, app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs11(xwv431, xwv441, efh, ega, egb) new_lt21(xwv430, xwv440, ty_Double) -> new_lt16(xwv430, xwv440) new_compare0(xwv40, xwv300, ty_Ordering) -> new_compare29(xwv40, xwv300) new_asAs(False, xwv164) -> False new_esEs5(xwv400, xwv3000, app(app(ty_@2, bga), bgb)) -> new_esEs26(xwv400, xwv3000, bga, bgb) new_lt23(xwv115, xwv118, app(ty_Ratio, ehf)) -> new_lt14(xwv115, xwv118, ehf) new_ltEs24(xwv43, xwv44, app(ty_Maybe, ece)) -> new_ltEs14(xwv43, xwv44, ece) new_compare0(xwv40, xwv300, app(ty_Maybe, bhh)) -> new_compare28(xwv40, xwv300, bhh) The set Q consists of the following terms: new_primEqNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Bool) new_esEs21(Float(x0, x1), Float(x2, x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_@0) new_primPlusNat1(Zero, Zero) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs18(True, True) new_lt8(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_esEs20(@0, @0) new_esEs39(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Char) new_lt7(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt16(x0, x1) new_esEs33(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_esEs27([], :(x0, x1), x2) new_esEs37(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare28(Just(x0), Just(x1), x2) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Int) new_lt7(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs39(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(GT, EQ) new_ltEs16(EQ, GT) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_@0) new_ltEs16(LT, LT) new_esEs33(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_fsEs(x0) new_esEs38(x0, x1, ty_Int) new_esEs15(x0, x1) new_lt8(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_esEs32(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_compare12(x0, x1, x2, x3, True, x4, x5) new_esEs9(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_compare14(Left(x0), Left(x1), x2, x3) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Bool) new_compare111(x0, x1, False, x2, x3) new_esEs6(x0, x1, ty_Char) new_esEs17(LT, GT) new_esEs17(GT, LT) new_lt21(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs25(Right(x0), Right(x1), x2, ty_@0) new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Char) new_esEs16(Integer(x0), Integer(x1)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Char) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_@0) new_compare26(x0, x1, True, x2, x3) new_esEs35(x0, x1, ty_Int) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs29(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, x2, x3, x4) new_ltEs4(True, True) new_ltEs21(x0, x1, ty_Bool) new_compare29(EQ, EQ) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare15(x0, x1, False, x2, x3) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(Just(x0), Just(x1), ty_Int) new_esEs34(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_compare17(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Float) new_compare8(False, False) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, x2) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, LT, x2) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Float) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Double, x2) new_compare0(x0, x1, ty_Char) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_compare10(Integer(x0), Integer(x1)) new_esEs22(Just(x0), Just(x1), ty_Bool) new_ltEs24(x0, x1, ty_Ordering) new_ltEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs32(x0, x1, ty_Float) new_compare19(@0, @0) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Int) new_lt7(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs23(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt22(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_lt9(x0, x1, x2, x3) new_esEs4(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_esEs31(x0, x1, ty_Char) new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt8(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_ltEs15(x0, x1) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_compare9(:(x0, x1), :(x2, x3), x4) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare9(:(x0, x1), [], x2) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Float) new_esEs25(Left(x0), Left(x1), ty_Char, x2) new_ltEs21(x0, x1, ty_Char) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Ordering) new_primPlusNat0(Succ(x0), x1) new_lt21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), ty_Int, x2) new_compare28(Nothing, Nothing, x0) new_ltEs7(x0, x1, x2) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs17(x0, x1) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Float) new_compare11(x0, x1, False, x2) new_esEs27([], [], x0) new_compare27(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs11(x0, x1, ty_Float) new_esEs22(Just(x0), Just(x1), ty_Float) new_esEs6(x0, x1, ty_Double) new_esEs22(Nothing, Just(x0), x1) new_esEs5(x0, x1, ty_@0) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Integer) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Succ(x0)) new_esEs11(x0, x1, ty_@0) new_compare25(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_ltEs14(Nothing, Nothing, x0) new_esEs18(False, False) new_ltEs4(True, False) new_ltEs4(False, True) new_esEs28(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs17(EQ, EQ) new_asAs(True, x0) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_compare14(Left(x0), Right(x1), x2, x3) new_compare14(Right(x0), Left(x1), x2, x3) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Double) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt23(x0, x1, ty_Double) new_primCmpNat0(Zero, Succ(x0)) new_compare29(LT, LT) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Double) new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs11(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Right(x0), Right(x1), x2, ty_Bool) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Int) new_compare8(True, True) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, ty_@0) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primMulNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs4(False, False) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Int) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs27(:(x0, x1), [], x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), ty_Float, x2) new_lt7(x0, x1, ty_Float) new_esEs25(Right(x0), Right(x1), x2, ty_Char) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Int) new_primEqNat0(Zero, Zero) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Bool) new_esEs22(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Ordering) new_not(False) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, ty_Int) new_esEs17(LT, LT) new_lt21(x0, x1, ty_@0) new_lt19(x0, x1) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Double) new_primMulNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Double) new_esEs32(x0, x1, ty_@0) new_esEs31(x0, x1, ty_@0) new_compare25(x0, x1, True, x2, x3) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Left(x0), Left(x1), ty_Bool, x2) new_compare17(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_lt7(x0, x1, ty_Bool) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Integer) new_compare26(x0, x1, False, x2, x3) new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Char) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, True, x2, x3) new_esEs8(x0, x1, ty_Float) new_lt10(x0, x1) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_compare0(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_esEs36(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs13(x0, x1, x2) new_sr(x0, x1) new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Char) new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Double) new_ltEs22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Integer) new_compare29(EQ, GT) new_compare29(GT, EQ) new_esEs39(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Nothing, Just(x0), x1) new_compare29(LT, GT) new_compare29(GT, LT) new_esEs6(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_compare7(x0, x1) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1, True, x2, x3) new_esEs39(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare8(True, False) new_compare8(False, True) new_compare11(x0, x1, True, x2) new_esEs28(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt18(x0, x1) new_compare9([], [], x0) new_lt23(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs8(x0, x1) new_lt15(x0, x1, x2) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Float) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_sr0(Integer(x0), Integer(x1)) new_compare28(Just(x0), Nothing, x1) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Int) new_ltEs14(Just(x0), Nothing, x1) new_esEs39(x0, x1, ty_Integer) new_asAs(False, x0) new_esEs8(x0, x1, ty_@0) new_pePe(True, x0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs16(GT, GT) new_esEs6(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare9([], :(x0, x1), x2) new_compare0(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Float) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs18(False, True) new_esEs18(True, False) new_ltEs24(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_@0) new_esEs22(Nothing, Nothing, x0) new_ltEs22(x0, x1, ty_Float) new_lt14(x0, x1, x2) new_esEs25(Left(x0), Right(x1), x2, x3) new_esEs25(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, ty_Int) new_esEs36(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, x2, x3) new_lt23(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Integer) new_compare12(x0, x1, x2, x3, False, x4, x5) new_esEs34(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare30(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primEqNat0(Succ(x0), Zero) new_esEs22(Just(x0), Just(x1), ty_Ordering) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCompAux00(x0, x1, EQ, ty_Char) new_ltEs22(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs5(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_esEs9(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_Ordering) new_esEs13(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_lt11(x0, x1) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs16(EQ, EQ) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(LT, EQ) new_compare29(EQ, LT) new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs22(Just(x0), Just(x1), ty_Integer) new_ltEs9(x0, x1) new_compare0(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_lt23(x0, x1, app(ty_[], x2)) new_compare14(Right(x0), Right(x1), x2, x3) new_pePe(False, x0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs22(Just(x0), Nothing, x1) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare29(GT, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Float) new_lt22(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs24(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Bool) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_ltEs5(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) new_lt22(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_esEs22(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, ty_Float) new_compare13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_compare211(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Int) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, x0) new_lt20(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(GT, GT) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Char) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs8(x0, x1, ty_Int) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_ltEs21(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Double(x0, x1), Double(x2, x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs8(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Float) new_lt8(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Integer) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_esEs9(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, ty_Int) new_primMulInt(Neg(x0), Neg(x1)) new_esEs4(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs28(x0, x1, ty_@0) new_primCompAux00(x0, x1, GT, x2) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs27(:(x0, x1), :(x2, x3), x4) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Double) new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs38(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Ordering) new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare211(x0, x1, x2, x3, True, x4, x5) new_ltEs22(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_@0) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Char) new_primCmpNat0(Zero, Zero) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), [], bb, bc) -> new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 3 >= 8, 4 >= 9 *new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) -> new_delFromFM(xwv33, [], bb, bc) The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM(xwv19, :(xwv21, xwv22), h, ba) new_delFromFM(Branch([], xwv31, xwv32, xwv33, xwv34), :(xwv40, xwv41), bb, bc) -> new_delFromFM(xwv34, :(xwv40, xwv41), bb, bc) new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), :(xwv40, xwv41), bb, bc) -> new_delFromFM2(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, xwv40, xwv41, new_primCompAux1(xwv40, xwv300, xwv41, xwv301, bb), bb, bc) new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare9(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, EQ, h, ba) -> new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare9(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, GT, h, ba) -> new_delFromFM(xwv20, :(xwv21, xwv22), h, ba) The TRS R consists of the following rules: new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs23(xwv50, xwv51, app(ty_Ratio, fga)) -> new_ltEs13(xwv50, xwv51, fga) new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, fhf)) -> new_compare28(xwv32, xwv33, fhf) new_primCompAux1(xwv40, xwv300, xwv41, xwv301, bb) -> new_primCompAux00(xwv41, xwv301, new_compare0(xwv40, xwv300, bb), app(ty_[], bb)) new_esEs7(xwv401, xwv3001, ty_@0) -> new_esEs20(xwv401, xwv3001) new_pePe(True, xwv231) -> True new_esEs31(xwv431, xwv441, ty_Ordering) -> new_esEs17(xwv431, xwv441) new_ltEs23(xwv50, xwv51, ty_Float) -> new_ltEs18(xwv50, xwv51) new_compare8(True, False) -> GT new_ltEs23(xwv50, xwv51, ty_Integer) -> new_ltEs9(xwv50, xwv51) new_esEs18(True, True) -> True new_lt20(xwv128, xwv130, ty_Ordering) -> new_lt17(xwv128, xwv130) new_esEs7(xwv401, xwv3001, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs19(xwv401, xwv3001, cbc, cbd, cbe) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Char) -> new_ltEs17(xwv430, xwv440) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare26(xwv50, xwv51, True, feg, feh) -> EQ new_esEs33(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_ltEs19(xwv432, xwv442, app(app(ty_@2, bbh), bca)) -> new_ltEs12(xwv432, xwv442, bbh, bca) new_esEs32(xwv128, xwv130, ty_Int) -> new_esEs15(xwv128, xwv130) new_esEs37(xwv115, xwv118, app(ty_Maybe, ecc)) -> new_esEs22(xwv115, xwv118, ecc) new_esEs31(xwv431, xwv441, ty_Char) -> new_esEs23(xwv431, xwv441) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Integer, beh) -> new_esEs16(xwv4000, xwv30000) new_lt23(xwv115, xwv118, ty_@0) -> new_lt10(xwv115, xwv118) new_ltEs23(xwv50, xwv51, ty_Double) -> new_ltEs15(xwv50, xwv51) new_compare111(xwv148, xwv149, True, egg, egh) -> LT new_lt23(xwv115, xwv118, app(ty_Maybe, ecc)) -> new_lt15(xwv115, xwv118, ecc) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_Ratio, bda)) -> new_esEs12(xwv4000, xwv30000, bda) new_esEs5(xwv400, xwv3000, app(ty_Ratio, bff)) -> new_esEs12(xwv400, xwv3000, bff) new_esEs33(xwv4000, xwv30000, app(app(ty_@2, def), deg)) -> new_esEs26(xwv4000, xwv30000, def, deg) new_lt22(xwv116, xwv119, app(ty_Ratio, fag)) -> new_lt14(xwv116, xwv119, fag) new_compare19(@0, @0) -> EQ new_lt7(xwv431, xwv441, app(app(ty_@2, baf), bag)) -> new_lt13(xwv431, xwv441, baf, bag) new_lt22(xwv116, xwv119, ty_Float) -> new_lt19(xwv116, xwv119) new_lt22(xwv116, xwv119, ty_Integer) -> new_lt6(xwv116, xwv119) new_esEs28(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_ltEs20(xwv129, xwv131, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs11(xwv129, xwv131, cff, cfg, cfh) new_compare110(xwv202, xwv203, xwv204, xwv205, False, xwv207, ga, gb) -> new_compare12(xwv202, xwv203, xwv204, xwv205, xwv207, ga, gb) new_ltEs21(xwv431, xwv441, ty_Ordering) -> new_ltEs16(xwv431, xwv441) new_esEs30(xwv430, xwv440, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs19(xwv430, xwv440, ha, hb, hc) new_lt20(xwv128, xwv130, app(app(ty_@2, ceg), ceh)) -> new_lt13(xwv128, xwv130, ceg, ceh) new_esEs15(xwv400, xwv3000) -> new_primEqInt(xwv400, xwv3000) new_primEqNat0(Succ(xwv40000), Succ(xwv300000)) -> new_primEqNat0(xwv40000, xwv300000) new_esEs28(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Float, beh) -> new_esEs21(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, ty_Double) -> new_esEs24(xwv115, xwv118) new_esEs36(xwv430, xwv440, ty_Ordering) -> new_esEs17(xwv430, xwv440) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(ty_Maybe, ecb)) -> new_ltEs14(xwv430, xwv440, ecb) new_lt22(xwv116, xwv119, ty_Double) -> new_lt16(xwv116, xwv119) new_not(True) -> False new_esEs37(xwv115, xwv118, ty_Bool) -> new_esEs18(xwv115, xwv118) new_compare6(Double(xwv400, Pos(xwv4010)), Double(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs38(xwv116, xwv119, ty_@0) -> new_esEs20(xwv116, xwv119) new_esEs11(xwv400, xwv3000, app(ty_Ratio, fea)) -> new_esEs12(xwv400, xwv3000, fea) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Integer) -> new_ltEs9(xwv430, xwv440) new_ltEs14(Just(xwv430), Just(xwv440), ty_Int) -> new_ltEs10(xwv430, xwv440) new_esEs22(Nothing, Just(xwv30000), bcd) -> False new_esEs22(Just(xwv4000), Nothing, bcd) -> False new_esEs22(Nothing, Nothing, bcd) -> True new_esEs6(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs9(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_esEs38(xwv116, xwv119, app(app(ty_@2, fae), faf)) -> new_esEs26(xwv116, xwv119, fae, faf) new_esEs22(Just(xwv4000), Just(xwv30000), app(app(ty_@2, bdd), bde)) -> new_esEs26(xwv4000, xwv30000, bdd, bde) new_lt22(xwv116, xwv119, app(app(ty_Either, ehg), ehh)) -> new_lt9(xwv116, xwv119, ehg, ehh) new_esEs32(xwv128, xwv130, app(ty_Maybe, cfb)) -> new_esEs22(xwv128, xwv130, cfb) new_ltEs6(Left(xwv430), Left(xwv440), app(app(ty_Either, dhe), dhf), dhg) -> new_ltEs6(xwv430, xwv440, dhe, dhf) new_esEs37(xwv115, xwv118, ty_Int) -> new_esEs15(xwv115, xwv118) new_primEqNat0(Succ(xwv40000), Zero) -> False new_primEqNat0(Zero, Succ(xwv300000)) -> False new_esEs22(Just(xwv4000), Just(xwv30000), ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_esEs11(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, app(app(ty_Either, bg), bh)) -> new_ltEs6(xwv83, xwv84, bg, bh) new_esEs8(xwv402, xwv3002, ty_Ordering) -> new_esEs17(xwv402, xwv3002) new_ltEs21(xwv431, xwv441, app(app(ty_@2, egc), egd)) -> new_ltEs12(xwv431, xwv441, egc, egd) new_esEs25(Left(xwv4000), Left(xwv30000), ty_@0, beh) -> new_esEs20(xwv4000, xwv30000) new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare6(xwv32, xwv33) new_ltEs20(xwv129, xwv131, ty_Int) -> new_ltEs10(xwv129, xwv131) new_ltEs23(xwv50, xwv51, ty_Char) -> new_ltEs17(xwv50, xwv51) new_esEs8(xwv402, xwv3002, ty_Char) -> new_esEs23(xwv402, xwv3002) new_lt7(xwv431, xwv441, ty_Ordering) -> new_lt17(xwv431, xwv441) new_ltEs14(Just(xwv430), Just(xwv440), ty_Char) -> new_ltEs17(xwv430, xwv440) new_compare15(xwv155, xwv156, True, bgd, bge) -> LT new_compare210(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, True, eha, ehb, ehc) -> EQ new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> GT new_ltEs10(xwv43, xwv44) -> new_fsEs(new_compare7(xwv43, xwv44)) new_compare0(xwv40, xwv300, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_compare13(xwv40, xwv300, bhb, bhc, bhd) new_ltEs22(xwv117, xwv120, ty_@0) -> new_ltEs8(xwv117, xwv120) new_esEs28(xwv4000, xwv30000, app(app(app(ty_@3, dd), de), df)) -> new_esEs19(xwv4000, xwv30000, dd, de, df) new_ltEs14(Just(xwv430), Just(xwv440), app(app(app(ty_@3, eda), edb), edc)) -> new_ltEs11(xwv430, xwv440, eda, edb, edc) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(app(ty_@2, daf), dag)) -> new_esEs26(xwv4000, xwv30000, daf, dag) new_esEs35(xwv4002, xwv30002, app(app(ty_Either, dgh), dha)) -> new_esEs25(xwv4002, xwv30002, dgh, dha) new_esEs27(:(xwv4000, xwv4001), :(xwv30000, xwv30001), bfa) -> new_asAs(new_esEs39(xwv4000, xwv30000, bfa), new_esEs27(xwv4001, xwv30001, bfa)) new_esEs38(xwv116, xwv119, ty_Integer) -> new_esEs16(xwv116, xwv119) new_lt22(xwv116, xwv119, app(ty_[], faa)) -> new_lt5(xwv116, xwv119, faa) new_primPlusNat1(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv24200))) new_primCompAux00(xwv32, xwv33, GT, fgd) -> GT new_esEs6(xwv400, xwv3000, app(ty_[], cbb)) -> new_esEs27(xwv400, xwv3000, cbb) new_primCmpNat0(Zero, Succ(xwv30000)) -> LT new_esEs30(xwv430, xwv440, app(app(ty_Either, gf), gg)) -> new_esEs25(xwv430, xwv440, gf, gg) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_ltEs11(xwv430, xwv440, ebd, ebe, ebf) new_esEs33(xwv4000, xwv30000, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs19(xwv4000, xwv30000, ddg, ddh, dea) new_esEs10(xwv401, xwv3001, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs19(xwv401, xwv3001, dce, dcf, dcg) new_esEs39(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_esEs11(xwv400, xwv3000, app(app(ty_@2, fed), fee)) -> new_esEs26(xwv400, xwv3000, fed, fee) new_esEs5(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs32(xwv128, xwv130, ty_Bool) -> new_esEs18(xwv128, xwv130) new_ltEs19(xwv432, xwv442, app(ty_Maybe, bcc)) -> new_ltEs14(xwv432, xwv442, bcc) new_esEs39(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_compare29(EQ, GT) -> LT new_esEs9(xwv400, xwv3000, app(app(ty_Either, dbh), dca)) -> new_esEs25(xwv400, xwv3000, dbh, dca) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(app(ty_Either, dad), dae)) -> new_esEs25(xwv4000, xwv30000, dad, dae) new_esEs19(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), bed, bee, bef) -> new_asAs(new_esEs33(xwv4000, xwv30000, bed), new_asAs(new_esEs34(xwv4001, xwv30001, bee), new_esEs35(xwv4002, xwv30002, bef))) new_ltEs23(xwv50, xwv51, ty_Int) -> new_ltEs10(xwv50, xwv51) new_esEs29(xwv4001, xwv30001, ty_Char) -> new_esEs23(xwv4001, xwv30001) new_lt22(xwv116, xwv119, app(app(app(ty_@3, fab), fac), fad)) -> new_lt12(xwv116, xwv119, fab, fac, fad) new_lt7(xwv431, xwv441, app(ty_Maybe, bba)) -> new_lt15(xwv431, xwv441, bba) new_ltEs24(xwv43, xwv44, ty_Bool) -> new_ltEs4(xwv43, xwv44) new_esEs36(xwv430, xwv440, app(app(ty_@2, efa), efb)) -> new_esEs26(xwv430, xwv440, efa, efb) new_compare0(xwv40, xwv300, ty_Double) -> new_compare6(xwv40, xwv300) new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv40000, xwv300000) new_esEs4(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_lt23(xwv115, xwv118, app(app(ty_@2, ehd), ehe)) -> new_lt13(xwv115, xwv118, ehd, ehe) new_esEs32(xwv128, xwv130, app(ty_[], cec)) -> new_esEs27(xwv128, xwv130, cec) new_esEs28(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT new_ltEs20(xwv129, xwv131, ty_Char) -> new_ltEs17(xwv129, xwv131) new_esEs7(xwv401, xwv3001, ty_Integer) -> new_esEs16(xwv401, xwv3001) new_primMulInt(Pos(xwv30000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv30000, xwv4010)) new_esEs5(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_lt11(xwv115, xwv118) -> new_esEs17(new_compare7(xwv115, xwv118), LT) new_esEs33(xwv4000, xwv30000, app(ty_Ratio, dec)) -> new_esEs12(xwv4000, xwv30000, dec) new_esEs27([], [], bfa) -> True new_ltEs20(xwv129, xwv131, ty_Double) -> new_ltEs15(xwv129, xwv131) new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, bgf, bgg, bgh) -> LT new_lt9(xwv115, xwv118, dba, dbb) -> new_esEs17(new_compare14(xwv115, xwv118, dba, dbb), LT) new_esEs34(xwv4001, xwv30001, ty_Double) -> new_esEs24(xwv4001, xwv30001) new_esEs7(xwv401, xwv3001, app(app(ty_Either, cbh), cca)) -> new_esEs25(xwv401, xwv3001, cbh, cca) new_lt7(xwv431, xwv441, ty_@0) -> new_lt10(xwv431, xwv441) new_lt5(xwv115, xwv118, be) -> new_esEs17(new_compare9(xwv115, xwv118, be), LT) new_primMulNat0(Succ(xwv300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xwv40100)) -> Zero new_esEs7(xwv401, xwv3001, ty_Float) -> new_esEs21(xwv401, xwv3001) new_lt23(xwv115, xwv118, ty_Ordering) -> new_lt17(xwv115, xwv118) new_compare8(False, False) -> EQ new_lt20(xwv128, xwv130, ty_@0) -> new_lt10(xwv128, xwv130) new_esEs11(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs34(xwv4001, xwv30001, app(ty_[], dgb)) -> new_esEs27(xwv4001, xwv30001, dgb) new_esEs29(xwv4001, xwv30001, ty_Ordering) -> new_esEs17(xwv4001, xwv30001) new_compare110(xwv202, xwv203, xwv204, xwv205, True, xwv207, ga, gb) -> new_compare12(xwv202, xwv203, xwv204, xwv205, True, ga, gb) new_compare7(xwv40, xwv300) -> new_primCmpInt(xwv40, xwv300) new_esEs10(xwv401, xwv3001, app(app(ty_Either, ddb), ddc)) -> new_esEs25(xwv401, xwv3001, ddb, ddc) new_esEs8(xwv402, xwv3002, app(ty_Ratio, cda)) -> new_esEs12(xwv402, xwv3002, cda) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(ty_Ratio, dac)) -> new_esEs12(xwv4000, xwv30000, dac) new_esEs33(xwv4000, xwv30000, app(app(ty_Either, ded), dee)) -> new_esEs25(xwv4000, xwv30000, ded, dee) new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare19(xwv32, xwv33) new_lt19(xwv115, xwv118) -> new_esEs17(new_compare31(xwv115, xwv118), LT) new_esEs32(xwv128, xwv130, ty_Double) -> new_esEs24(xwv128, xwv130) new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) new_primPlusNat1(Zero, Succ(xwv24200)) -> Succ(xwv24200) new_ltEs14(Just(xwv430), Just(xwv440), ty_Integer) -> new_ltEs9(xwv430, xwv440) new_esEs30(xwv430, xwv440, ty_@0) -> new_esEs20(xwv430, xwv440) new_esEs8(xwv402, xwv3002, app(ty_[], cdf)) -> new_esEs27(xwv402, xwv3002, cdf) new_lt8(xwv430, xwv440, ty_Bool) -> new_lt4(xwv430, xwv440) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Int) -> new_ltEs10(xwv430, xwv440) new_esEs29(xwv4001, xwv30001, ty_Bool) -> new_esEs18(xwv4001, xwv30001) new_esEs6(xwv400, xwv3000, app(ty_Maybe, cad)) -> new_esEs22(xwv400, xwv3000, cad) new_esEs32(xwv128, xwv130, app(app(ty_Either, cea), ceb)) -> new_esEs25(xwv128, xwv130, cea, ceb) new_ltEs20(xwv129, xwv131, ty_Integer) -> new_ltEs9(xwv129, xwv131) new_ltEs5(xwv83, xwv84, app(ty_Maybe, da)) -> new_ltEs14(xwv83, xwv84, da) new_esEs30(xwv430, xwv440, ty_Integer) -> new_esEs16(xwv430, xwv440) new_esEs9(xwv400, xwv3000, app(ty_[], dcd)) -> new_esEs27(xwv400, xwv3000, dcd) new_esEs9(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, ty_@0) -> new_ltEs8(xwv83, xwv84) new_ltEs19(xwv432, xwv442, ty_Ordering) -> new_ltEs16(xwv432, xwv442) new_esEs31(xwv431, xwv441, app(ty_Ratio, bah)) -> new_esEs12(xwv431, xwv441, bah) new_lt21(xwv430, xwv440, app(app(app(ty_@3, eef), eeg), eeh)) -> new_lt12(xwv430, xwv440, eef, eeg, eeh) new_esEs35(xwv4002, xwv30002, app(app(ty_@2, dhb), dhc)) -> new_esEs26(xwv4002, xwv30002, dhb, dhc) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Double) -> new_ltEs15(xwv430, xwv440) new_lt21(xwv430, xwv440, ty_@0) -> new_lt10(xwv430, xwv440) new_ltEs6(Left(xwv430), Left(xwv440), ty_Float, dhg) -> new_ltEs18(xwv430, xwv440) new_esEs5(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs33(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs35(xwv4002, xwv30002, ty_Int) -> new_esEs15(xwv4002, xwv30002) new_esEs5(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_esEs29(xwv4001, xwv30001, app(ty_Maybe, fa)) -> new_esEs22(xwv4001, xwv30001, fa) new_esEs7(xwv401, xwv3001, app(ty_Ratio, cbg)) -> new_esEs12(xwv401, xwv3001, cbg) new_esEs6(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs10(xwv401, xwv3001, ty_Float) -> new_esEs21(xwv401, xwv3001) new_ltEs21(xwv431, xwv441, ty_Double) -> new_ltEs15(xwv431, xwv441) new_esEs10(xwv401, xwv3001, ty_Double) -> new_esEs24(xwv401, xwv3001) new_lt20(xwv128, xwv130, ty_Integer) -> new_lt6(xwv128, xwv130) new_lt22(xwv116, xwv119, ty_Bool) -> new_lt4(xwv116, xwv119) new_ltEs6(Left(xwv430), Left(xwv440), app(app(ty_@2, ead), eae), dhg) -> new_ltEs12(xwv430, xwv440, ead, eae) new_esEs10(xwv401, xwv3001, app(app(ty_@2, ddd), dde)) -> new_esEs26(xwv401, xwv3001, ddd, dde) new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, fge), fgf)) -> new_compare14(xwv32, xwv33, fge, fgf) new_esEs38(xwv116, xwv119, ty_Char) -> new_esEs23(xwv116, xwv119) new_esEs37(xwv115, xwv118, app(app(ty_Either, dba), dbb)) -> new_esEs25(xwv115, xwv118, dba, dbb) new_compare18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), ty_Int) -> new_compare7(new_sr(xwv400, xwv3001), new_sr(xwv3000, xwv401)) new_lt22(xwv116, xwv119, ty_Ordering) -> new_lt17(xwv116, xwv119) new_esEs4(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_compare26(xwv50, xwv51, False, feg, feh) -> new_compare15(xwv50, xwv51, new_ltEs23(xwv50, xwv51, feh), feg, feh) new_esEs10(xwv401, xwv3001, ty_Integer) -> new_esEs16(xwv401, xwv3001) new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare30(xwv32, xwv33) new_esEs11(xwv400, xwv3000, app(app(app(ty_@3, fde), fdf), fdg)) -> new_esEs19(xwv400, xwv3000, fde, fdf, fdg) new_ltEs21(xwv431, xwv441, ty_Float) -> new_ltEs18(xwv431, xwv441) new_esEs29(xwv4001, xwv30001, ty_Double) -> new_esEs24(xwv4001, xwv30001) new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare10(xwv32, xwv33) new_compare14(Left(xwv400), Right(xwv3000), beb, bec) -> LT new_esEs35(xwv4002, xwv30002, ty_Bool) -> new_esEs18(xwv4002, xwv30002) new_esEs22(Just(xwv4000), Just(xwv30000), app(app(ty_Either, bdb), bdc)) -> new_esEs25(xwv4000, xwv30000, bdb, bdc) new_esEs31(xwv431, xwv441, ty_Bool) -> new_esEs18(xwv431, xwv441) new_lt18(xwv115, xwv118) -> new_esEs17(new_compare30(xwv115, xwv118), LT) new_esEs38(xwv116, xwv119, ty_Ordering) -> new_esEs17(xwv116, xwv119) new_esEs33(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_esEs34(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_compare29(GT, EQ) -> GT new_esEs4(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs31(xwv431, xwv441, app(ty_[], bab)) -> new_esEs27(xwv431, xwv441, bab) new_compare0(xwv40, xwv300, app(ty_[], bha)) -> new_compare9(xwv40, xwv300, bha) new_esEs36(xwv430, xwv440, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs19(xwv430, xwv440, eef, eeg, eeh) new_compare0(xwv40, xwv300, app(app(ty_Either, beb), bec)) -> new_compare14(xwv40, xwv300, beb, bec) new_esEs36(xwv430, xwv440, ty_@0) -> new_esEs20(xwv430, xwv440) new_esEs29(xwv4001, xwv30001, app(ty_Ratio, fb)) -> new_esEs12(xwv4001, xwv30001, fb) new_esEs31(xwv431, xwv441, ty_Integer) -> new_esEs16(xwv431, xwv441) new_esEs39(xwv4000, xwv30000, app(ty_Maybe, fcf)) -> new_esEs22(xwv4000, xwv30000, fcf) new_esEs11(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_esEs28(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_compare0(xwv40, xwv300, app(app(ty_@2, bhe), bhf)) -> new_compare27(xwv40, xwv300, bhe, bhf) new_ltEs23(xwv50, xwv51, app(app(ty_@2, ffg), ffh)) -> new_ltEs12(xwv50, xwv51, ffg, ffh) new_lt7(xwv431, xwv441, ty_Integer) -> new_lt6(xwv431, xwv441) new_esEs18(False, False) -> True new_esEs25(Left(xwv4000), Left(xwv30000), app(app(ty_@2, chd), che), beh) -> new_esEs26(xwv4000, xwv30000, chd, che) new_esEs31(xwv431, xwv441, app(app(ty_@2, baf), bag)) -> new_esEs26(xwv431, xwv441, baf, bag) new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv4000), xwv3000) new_esEs30(xwv430, xwv440, app(ty_Ratio, hf)) -> new_esEs12(xwv430, xwv440, hf) new_esEs4(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_compare10(Integer(xwv400), Integer(xwv3000)) -> new_primCmpInt(xwv400, xwv3000) new_lt7(xwv431, xwv441, app(app(ty_Either, hh), baa)) -> new_lt9(xwv431, xwv441, hh, baa) new_esEs6(xwv400, xwv3000, app(app(ty_Either, caf), cag)) -> new_esEs25(xwv400, xwv3000, caf, cag) new_esEs4(xwv400, xwv3000, app(ty_Maybe, bcd)) -> new_esEs22(xwv400, xwv3000, bcd) new_lt8(xwv430, xwv440, ty_Integer) -> new_lt6(xwv430, xwv440) new_esEs34(xwv4001, xwv30001, ty_Char) -> new_esEs23(xwv4001, xwv30001) new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, fhc), fhd)) -> new_compare27(xwv32, xwv33, fhc, fhd) new_lt7(xwv431, xwv441, ty_Float) -> new_lt19(xwv431, xwv441) new_lt8(xwv430, xwv440, ty_Float) -> new_lt19(xwv430, xwv440) new_esEs14(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_esEs22(Just(xwv4000), Just(xwv30000), ty_@0) -> new_esEs20(xwv4000, xwv30000) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(ty_[], ebc)) -> new_ltEs7(xwv430, xwv440, ebc) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(ty_[], dah)) -> new_esEs27(xwv4000, xwv30000, dah) new_esEs5(xwv400, xwv3000, app(app(ty_Either, bfg), bfh)) -> new_esEs25(xwv400, xwv3000, bfg, bfh) new_lt20(xwv128, xwv130, app(app(ty_Either, cea), ceb)) -> new_lt9(xwv128, xwv130, cea, ceb) new_compare9([], [], bha) -> EQ new_ltEs24(xwv43, xwv44, app(ty_[], ecd)) -> new_ltEs7(xwv43, xwv44, ecd) new_esEs35(xwv4002, xwv30002, ty_Float) -> new_esEs21(xwv4002, xwv30002) new_esEs39(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, ty_@0) -> new_esEs20(xwv115, xwv118) new_compare31(Float(xwv400, Neg(xwv4010)), Float(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_esEs29(xwv4001, xwv30001, app(ty_[], fh)) -> new_esEs27(xwv4001, xwv30001, fh) new_esEs4(xwv400, xwv3000, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs19(xwv400, xwv3000, bed, bee, bef) new_esEs10(xwv401, xwv3001, ty_Int) -> new_esEs15(xwv401, xwv3001) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_ltEs14(Just(xwv430), Just(xwv440), ty_Double) -> new_ltEs15(xwv430, xwv440) new_esEs10(xwv401, xwv3001, app(ty_Maybe, dch)) -> new_esEs22(xwv401, xwv3001, dch) new_ltEs22(xwv117, xwv120, app(app(ty_@2, fbg), fbh)) -> new_ltEs12(xwv117, xwv120, fbg, fbh) new_esEs30(xwv430, xwv440, ty_Double) -> new_esEs24(xwv430, xwv440) new_esEs36(xwv430, xwv440, ty_Float) -> new_esEs21(xwv430, xwv440) new_ltEs4(True, False) -> False new_ltEs13(xwv43, xwv44, fgc) -> new_fsEs(new_compare18(xwv43, xwv44, fgc)) new_esEs5(xwv400, xwv3000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs19(xwv400, xwv3000, bfb, bfc, bfd) new_esEs32(xwv128, xwv130, ty_@0) -> new_esEs20(xwv128, xwv130) new_esEs37(xwv115, xwv118, ty_Ordering) -> new_esEs17(xwv115, xwv118) new_ltEs14(Just(xwv430), Nothing, ece) -> False new_ltEs14(Nothing, Nothing, ece) -> True new_lt8(xwv430, xwv440, ty_Char) -> new_lt18(xwv430, xwv440) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_Ratio, eaf), dhg) -> new_ltEs13(xwv430, xwv440, eaf) new_esEs28(xwv4000, xwv30000, app(ty_Ratio, dh)) -> new_esEs12(xwv4000, xwv30000, dh) new_lt21(xwv430, xwv440, app(ty_Maybe, efd)) -> new_lt15(xwv430, xwv440, efd) new_esEs33(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_lt21(xwv430, xwv440, ty_Bool) -> new_lt4(xwv430, xwv440) new_esEs10(xwv401, xwv3001, ty_Bool) -> new_esEs18(xwv401, xwv3001) new_ltEs4(False, False) -> True new_ltEs5(xwv83, xwv84, app(ty_[], ca)) -> new_ltEs7(xwv83, xwv84, ca) new_fsEs(xwv226) -> new_not(new_esEs17(xwv226, GT)) new_lt21(xwv430, xwv440, ty_Ordering) -> new_lt17(xwv430, xwv440) new_ltEs18(xwv43, xwv44) -> new_fsEs(new_compare31(xwv43, xwv44)) new_esEs39(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs31(xwv431, xwv441, ty_Int) -> new_esEs15(xwv431, xwv441) new_ltEs24(xwv43, xwv44, app(app(ty_@2, eea), eeb)) -> new_ltEs12(xwv43, xwv44, eea, eeb) new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, fgh), fha), fhb)) -> new_compare13(xwv32, xwv33, fgh, fha, fhb) new_esEs36(xwv430, xwv440, app(ty_Maybe, efd)) -> new_esEs22(xwv430, xwv440, efd) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Char) -> new_esEs23(xwv4000, xwv30000) new_compare28(Just(xwv400), Just(xwv3000), bhh) -> new_compare24(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, bhh), bhh) new_lt8(xwv430, xwv440, app(app(ty_Either, gf), gg)) -> new_lt9(xwv430, xwv440, gf, gg) new_esEs34(xwv4001, xwv30001, ty_Bool) -> new_esEs18(xwv4001, xwv30001) new_lt7(xwv431, xwv441, ty_Char) -> new_lt18(xwv431, xwv441) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(app(ty_@2, ebg), ebh)) -> new_ltEs12(xwv430, xwv440, ebg, ebh) new_ltEs14(Just(xwv430), Just(xwv440), ty_Bool) -> new_ltEs4(xwv430, xwv440) new_ltEs19(xwv432, xwv442, app(ty_[], bbd)) -> new_ltEs7(xwv432, xwv442, bbd) new_ltEs6(Right(xwv430), Left(xwv440), eah, dhg) -> False new_esEs11(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Float) -> new_esEs21(xwv4000, xwv30000) new_ltEs8(xwv43, xwv44) -> new_fsEs(new_compare19(xwv43, xwv44)) new_esEs35(xwv4002, xwv30002, app(app(app(ty_@3, dgc), dgd), dge)) -> new_esEs19(xwv4002, xwv30002, dgc, dgd, dge) new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs33(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, app(app(ty_Either, eec), eed)) -> new_esEs25(xwv430, xwv440, eec, eed) new_esEs16(Integer(xwv4000), Integer(xwv30000)) -> new_primEqInt(xwv4000, xwv30000) new_esEs10(xwv401, xwv3001, ty_@0) -> new_esEs20(xwv401, xwv3001) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_Ratio, edf)) -> new_ltEs13(xwv430, xwv440, edf) new_lt22(xwv116, xwv119, ty_Char) -> new_lt18(xwv116, xwv119) new_ltEs20(xwv129, xwv131, app(ty_[], cfe)) -> new_ltEs7(xwv129, xwv131, cfe) new_ltEs6(Left(xwv430), Left(xwv440), ty_Ordering, dhg) -> new_ltEs16(xwv430, xwv440) new_esEs37(xwv115, xwv118, ty_Float) -> new_esEs21(xwv115, xwv118) new_esEs11(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_esEs5(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs4(xwv400, xwv3000, app(app(ty_Either, beg), beh)) -> new_esEs25(xwv400, xwv3000, beg, beh) new_esEs28(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs34(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_compare31(Float(xwv400, Pos(xwv4010)), Float(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_compare31(Float(xwv400, Neg(xwv4010)), Float(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_primPlusNat0(Succ(xwv2370), xwv40100) -> Succ(Succ(new_primPlusNat1(xwv2370, xwv40100))) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_Maybe, cgh), beh) -> new_esEs22(xwv4000, xwv30000, cgh) new_lt20(xwv128, xwv130, app(ty_Maybe, cfb)) -> new_lt15(xwv128, xwv130, cfb) new_esEs28(xwv4000, xwv30000, app(app(ty_@2, ec), ed)) -> new_esEs26(xwv4000, xwv30000, ec, ed) new_esEs11(xwv400, xwv3000, app(ty_Maybe, fdh)) -> new_esEs22(xwv400, xwv3000, fdh) new_primPlusNat1(Zero, Zero) -> Zero new_esEs34(xwv4001, xwv30001, app(ty_Maybe, dfd)) -> new_esEs22(xwv4001, xwv30001, dfd) new_esEs37(xwv115, xwv118, ty_Char) -> new_esEs23(xwv115, xwv118) new_ltEs6(Left(xwv430), Left(xwv440), ty_@0, dhg) -> new_ltEs8(xwv430, xwv440) new_ltEs22(xwv117, xwv120, ty_Float) -> new_ltEs18(xwv117, xwv120) new_ltEs23(xwv50, xwv51, app(ty_[], ffc)) -> new_ltEs7(xwv50, xwv51, ffc) new_ltEs6(Left(xwv430), Left(xwv440), ty_Integer, dhg) -> new_ltEs9(xwv430, xwv440) new_compare14(Right(xwv400), Left(xwv3000), beb, bec) -> GT new_esEs22(Just(xwv4000), Just(xwv30000), app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs19(xwv4000, xwv30000, bce, bcf, bcg) new_esEs38(xwv116, xwv119, app(app(app(ty_@3, fab), fac), fad)) -> new_esEs19(xwv116, xwv119, fab, fac, fad) new_esEs24(Double(xwv4000, xwv4001), Double(xwv30000, xwv30001)) -> new_esEs15(new_sr(xwv4000, xwv30001), new_sr(xwv4001, xwv30000)) new_ltEs22(xwv117, xwv120, app(ty_[], fbc)) -> new_ltEs7(xwv117, xwv120, fbc) new_ltEs4(True, True) -> True new_esEs29(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_esEs35(xwv4002, xwv30002, ty_Ordering) -> new_esEs17(xwv4002, xwv30002) new_compare0(xwv40, xwv300, ty_Integer) -> new_compare10(xwv40, xwv300) new_primCmpNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primCmpNat0(xwv4000, xwv30000) new_lt4(xwv115, xwv118) -> new_esEs17(new_compare8(xwv115, xwv118), LT) new_esEs30(xwv430, xwv440, app(app(ty_@2, hd), he)) -> new_esEs26(xwv430, xwv440, hd, he) new_esEs35(xwv4002, xwv30002, ty_Char) -> new_esEs23(xwv4002, xwv30002) new_esEs11(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_compare8(False, True) -> LT new_ltEs21(xwv431, xwv441, app(ty_[], efg)) -> new_ltEs7(xwv431, xwv441, efg) new_esEs34(xwv4001, xwv30001, ty_Ordering) -> new_esEs17(xwv4001, xwv30001) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Float) -> new_ltEs18(xwv430, xwv440) new_esEs36(xwv430, xwv440, ty_Integer) -> new_esEs16(xwv430, xwv440) new_ltEs19(xwv432, xwv442, ty_Float) -> new_ltEs18(xwv432, xwv442) new_compare15(xwv155, xwv156, False, bgd, bge) -> GT new_lt20(xwv128, xwv130, ty_Char) -> new_lt18(xwv128, xwv130) new_esEs13(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_lt23(xwv115, xwv118, app(app(ty_Either, dba), dbb)) -> new_lt9(xwv115, xwv118, dba, dbb) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, ty_Char) -> new_esEs23(xwv430, xwv440) new_compare14(Right(xwv400), Right(xwv3000), beb, bec) -> new_compare26(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, bec), beb, bec) new_ltEs20(xwv129, xwv131, ty_Float) -> new_ltEs18(xwv129, xwv131) new_esEs35(xwv4002, xwv30002, ty_Integer) -> new_esEs16(xwv4002, xwv30002) new_lt21(xwv430, xwv440, ty_Char) -> new_lt18(xwv430, xwv440) new_compare14(Left(xwv400), Left(xwv3000), beb, bec) -> new_compare25(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, beb), beb, bec) new_esEs36(xwv430, xwv440, ty_Bool) -> new_esEs18(xwv430, xwv440) new_lt21(xwv430, xwv440, ty_Integer) -> new_lt6(xwv430, xwv440) new_esEs38(xwv116, xwv119, ty_Float) -> new_esEs21(xwv116, xwv119) new_ltEs6(Left(xwv430), Left(xwv440), ty_Char, dhg) -> new_ltEs17(xwv430, xwv440) new_ltEs6(Left(xwv430), Right(xwv440), eah, dhg) -> True new_esEs30(xwv430, xwv440, ty_Int) -> new_esEs15(xwv430, xwv440) new_lt16(xwv115, xwv118) -> new_esEs17(new_compare6(xwv115, xwv118), LT) new_esEs35(xwv4002, xwv30002, app(ty_Maybe, dgf)) -> new_esEs22(xwv4002, xwv30002, dgf) new_esEs38(xwv116, xwv119, app(app(ty_Either, ehg), ehh)) -> new_esEs25(xwv116, xwv119, ehg, ehh) new_compare18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), ty_Integer) -> new_compare10(new_sr0(xwv400, xwv3001), new_sr0(xwv3000, xwv401)) new_esEs37(xwv115, xwv118, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs19(xwv115, xwv118, bdg, bdh, bea) new_esEs35(xwv4002, xwv30002, ty_@0) -> new_esEs20(xwv4002, xwv30002) new_esEs29(xwv4001, xwv30001, app(app(ty_@2, ff), fg)) -> new_esEs26(xwv4001, xwv30001, ff, fg) new_compare28(Nothing, Just(xwv3000), bhh) -> LT new_esEs4(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Double) -> new_esEs24(xwv4000, xwv30000) new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> LT new_compare11(xwv170, xwv171, True, edh) -> LT new_esEs27(:(xwv4000, xwv4001), [], bfa) -> False new_esEs27([], :(xwv30000, xwv30001), bfa) -> False new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare8(xwv32, xwv33) new_lt15(xwv115, xwv118, ecc) -> new_esEs17(new_compare28(xwv115, xwv118, ecc), LT) new_esEs5(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_esEs34(xwv4001, xwv30001, ty_@0) -> new_esEs20(xwv4001, xwv30001) new_esEs38(xwv116, xwv119, app(ty_[], faa)) -> new_esEs27(xwv116, xwv119, faa) new_esEs6(xwv400, xwv3000, app(app(ty_@2, cah), cba)) -> new_esEs26(xwv400, xwv3000, cah, cba) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT new_esEs34(xwv4001, xwv30001, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs19(xwv4001, xwv30001, dfa, dfb, dfc) new_ltEs24(xwv43, xwv44, ty_Int) -> new_ltEs10(xwv43, xwv44) new_ltEs23(xwv50, xwv51, app(app(ty_Either, ffa), ffb)) -> new_ltEs6(xwv50, xwv51, ffa, ffb) new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv4000)) new_esEs6(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs23(xwv50, xwv51, ty_Bool) -> new_ltEs4(xwv50, xwv51) new_compare12(xwv202, xwv203, xwv204, xwv205, True, ga, gb) -> LT new_esEs32(xwv128, xwv130, app(ty_Ratio, cfa)) -> new_esEs12(xwv128, xwv130, cfa) new_esEs4(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs4(False, True) -> True new_ltEs15(xwv43, xwv44) -> new_fsEs(new_compare6(xwv43, xwv44)) new_lt7(xwv431, xwv441, ty_Bool) -> new_lt4(xwv431, xwv441) new_ltEs14(Nothing, Just(xwv440), ece) -> True new_lt20(xwv128, xwv130, ty_Bool) -> new_lt4(xwv128, xwv130) new_esEs39(xwv4000, xwv30000, app(app(ty_Either, fch), fda)) -> new_esEs25(xwv4000, xwv30000, fch, fda) new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False new_esEs10(xwv401, xwv3001, ty_Ordering) -> new_esEs17(xwv401, xwv3001) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Bool) -> new_ltEs4(xwv430, xwv440) new_esEs17(LT, LT) -> True new_ltEs17(xwv43, xwv44) -> new_fsEs(new_compare30(xwv43, xwv44)) new_lt23(xwv115, xwv118, ty_Int) -> new_lt11(xwv115, xwv118) new_esEs28(xwv4000, xwv30000, app(ty_[], ee)) -> new_esEs27(xwv4000, xwv30000, ee) new_compare0(xwv40, xwv300, app(ty_Ratio, bhg)) -> new_compare18(xwv40, xwv300, bhg) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Bool, beh) -> new_esEs18(xwv4000, xwv30000) new_esEs25(Left(xwv4000), Left(xwv30000), app(app(ty_Either, chb), chc), beh) -> new_esEs25(xwv4000, xwv30000, chb, chc) new_esEs11(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare7(xwv32, xwv33) new_ltEs5(xwv83, xwv84, ty_Float) -> new_ltEs18(xwv83, xwv84) new_esEs39(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_esEs38(xwv116, xwv119, ty_Bool) -> new_esEs18(xwv116, xwv119) new_ltEs5(xwv83, xwv84, ty_Double) -> new_ltEs15(xwv83, xwv84) new_esEs7(xwv401, xwv3001, app(ty_[], ccd)) -> new_esEs27(xwv401, xwv3001, ccd) new_lt21(xwv430, xwv440, app(app(ty_Either, eec), eed)) -> new_lt9(xwv430, xwv440, eec, eed) new_ltEs5(xwv83, xwv84, app(ty_Ratio, cg)) -> new_ltEs13(xwv83, xwv84, cg) new_primCmpNat0(Zero, Zero) -> EQ new_esEs20(@0, @0) -> True new_esEs37(xwv115, xwv118, ty_Integer) -> new_esEs16(xwv115, xwv118) new_esEs10(xwv401, xwv3001, ty_Char) -> new_esEs23(xwv401, xwv3001) new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, fhe)) -> new_compare18(xwv32, xwv33, fhe) new_ltEs16(GT, EQ) -> False new_esEs22(Just(xwv4000), Just(xwv30000), ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_compare0(xwv40, xwv300, ty_Int) -> new_compare7(xwv40, xwv300) new_lt23(xwv115, xwv118, ty_Double) -> new_lt16(xwv115, xwv118) new_compare29(EQ, EQ) -> EQ new_lt23(xwv115, xwv118, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt12(xwv115, xwv118, bdg, bdh, bea) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_Maybe, eag), dhg) -> new_ltEs14(xwv430, xwv440, eag) new_esEs39(xwv4000, xwv30000, app(app(app(ty_@3, fcc), fcd), fce)) -> new_esEs19(xwv4000, xwv30000, fcc, fcd, fce) new_esEs5(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_lt23(xwv115, xwv118, ty_Integer) -> new_lt6(xwv115, xwv118) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs29(xwv4001, xwv30001, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs19(xwv4001, xwv30001, ef, eg, eh) new_esEs37(xwv115, xwv118, app(app(ty_@2, ehd), ehe)) -> new_esEs26(xwv115, xwv118, ehd, ehe) new_compare28(Just(xwv400), Nothing, bhh) -> GT new_ltEs19(xwv432, xwv442, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs11(xwv432, xwv442, bbe, bbf, bbg) new_esEs26(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), db, dc) -> new_asAs(new_esEs28(xwv4000, xwv30000, db), new_esEs29(xwv4001, xwv30001, dc)) new_esEs9(xwv400, xwv3000, app(ty_Ratio, dbg)) -> new_esEs12(xwv400, xwv3000, dbg) new_lt21(xwv430, xwv440, app(ty_[], eee)) -> new_lt5(xwv430, xwv440, eee) new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare29(xwv32, xwv33) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_Maybe, bch)) -> new_esEs22(xwv4000, xwv30000, bch) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs33(xwv4000, xwv30000, app(ty_Maybe, deb)) -> new_esEs22(xwv4000, xwv30000, deb) new_esEs38(xwv116, xwv119, app(ty_Maybe, fah)) -> new_esEs22(xwv116, xwv119, fah) new_esEs33(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, ty_Double) -> new_esEs24(xwv430, xwv440) new_esEs6(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_ltEs24(xwv43, xwv44, ty_Double) -> new_ltEs15(xwv43, xwv44) new_esEs12(:%(xwv4000, xwv4001), :%(xwv30000, xwv30001), bd) -> new_asAs(new_esEs13(xwv4000, xwv30000, bd), new_esEs14(xwv4001, xwv30001, bd)) new_compare6(Double(xwv400, Neg(xwv4010)), Double(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_ltEs16(LT, LT) -> True new_esEs29(xwv4001, xwv30001, app(app(ty_Either, fc), fd)) -> new_esEs25(xwv4001, xwv30001, fc, fd) new_esEs32(xwv128, xwv130, app(app(ty_@2, ceg), ceh)) -> new_esEs26(xwv128, xwv130, ceg, ceh) new_esEs9(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs24(xwv43, xwv44, ty_Char) -> new_ltEs17(xwv43, xwv44) new_lt23(xwv115, xwv118, ty_Char) -> new_lt18(xwv115, xwv118) new_lt23(xwv115, xwv118, ty_Float) -> new_lt19(xwv115, xwv118) new_ltEs24(xwv43, xwv44, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs11(xwv43, xwv44, gc, gd, ge) new_esEs8(xwv402, xwv3002, ty_@0) -> new_esEs20(xwv402, xwv3002) new_esEs30(xwv430, xwv440, app(ty_[], gh)) -> new_esEs27(xwv430, xwv440, gh) new_compare29(GT, GT) -> EQ new_esEs32(xwv128, xwv130, ty_Ordering) -> new_esEs17(xwv128, xwv130) new_ltEs22(xwv117, xwv120, ty_Integer) -> new_ltEs9(xwv117, xwv120) new_lt6(xwv115, xwv118) -> new_esEs17(new_compare10(xwv115, xwv118), LT) new_esEs33(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_compare28(Nothing, Nothing, bhh) -> EQ new_compare9(:(xwv400, xwv401), [], bha) -> GT new_esEs34(xwv4001, xwv30001, app(app(ty_@2, dfh), dga)) -> new_esEs26(xwv4001, xwv30001, dfh, dga) new_compare16(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, xwv194, bgf, bgg, bgh) -> new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, bgf, bgg, bgh) new_esEs32(xwv128, xwv130, ty_Integer) -> new_esEs16(xwv128, xwv130) new_primCmpNat0(Succ(xwv4000), Zero) -> GT new_lt10(xwv115, xwv118) -> new_esEs17(new_compare19(xwv115, xwv118), LT) new_lt20(xwv128, xwv130, app(app(app(ty_@3, ced), cee), cef)) -> new_lt12(xwv128, xwv130, ced, cee, cef) new_pePe(False, xwv231) -> xwv231 new_ltEs5(xwv83, xwv84, ty_Char) -> new_ltEs17(xwv83, xwv84) new_lt13(xwv115, xwv118, ehd, ehe) -> new_esEs17(new_compare27(xwv115, xwv118, ehd, ehe), LT) new_esEs21(Float(xwv4000, xwv4001), Float(xwv30000, xwv30001)) -> new_esEs15(new_sr(xwv4000, xwv30001), new_sr(xwv4001, xwv30000)) new_ltEs19(xwv432, xwv442, ty_Int) -> new_ltEs10(xwv432, xwv442) new_ltEs22(xwv117, xwv120, app(ty_Ratio, fca)) -> new_ltEs13(xwv117, xwv120, fca) new_ltEs22(xwv117, xwv120, ty_Double) -> new_ltEs15(xwv117, xwv120) new_compare25(xwv43, xwv44, True, fhg, fhh) -> EQ new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, False, bgf, bgg, bgh) -> GT new_esEs28(xwv4000, xwv30000, app(ty_Maybe, dg)) -> new_esEs22(xwv4000, xwv30000, dg) new_esEs7(xwv401, xwv3001, ty_Bool) -> new_esEs18(xwv401, xwv3001) new_esEs30(xwv430, xwv440, ty_Char) -> new_esEs23(xwv430, xwv440) new_ltEs14(Just(xwv430), Just(xwv440), app(app(ty_Either, ecf), ecg)) -> new_ltEs6(xwv430, xwv440, ecf, ecg) new_lt22(xwv116, xwv119, app(ty_Maybe, fah)) -> new_lt15(xwv116, xwv119, fah) new_ltEs16(LT, GT) -> True new_ltEs6(Right(xwv430), Right(xwv440), eah, app(ty_Ratio, eca)) -> new_ltEs13(xwv430, xwv440, eca) new_lt23(xwv115, xwv118, ty_Bool) -> new_lt4(xwv115, xwv118) new_ltEs24(xwv43, xwv44, ty_Float) -> new_ltEs18(xwv43, xwv44) new_ltEs24(xwv43, xwv44, app(ty_Ratio, fgc)) -> new_ltEs13(xwv43, xwv44, fgc) new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_esEs30(xwv430, xwv440, ty_Ordering) -> new_esEs17(xwv430, xwv440) new_esEs5(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_lt21(xwv430, xwv440, ty_Float) -> new_lt19(xwv430, xwv440) new_esEs8(xwv402, xwv3002, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs19(xwv402, xwv3002, cce, ccf, ccg) new_esEs6(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False new_compare24(xwv83, xwv84, True, bf) -> EQ new_esEs31(xwv431, xwv441, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs19(xwv431, xwv441, bac, bad, bae) new_compare211(xwv128, xwv129, xwv130, xwv131, True, cdg, cdh) -> EQ new_ltEs16(GT, LT) -> False new_esEs31(xwv431, xwv441, ty_@0) -> new_esEs20(xwv431, xwv441) new_esEs39(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_esEs17(EQ, EQ) -> True new_lt22(xwv116, xwv119, ty_@0) -> new_lt10(xwv116, xwv119) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Double, beh) -> new_esEs24(xwv4000, xwv30000) new_esEs31(xwv431, xwv441, ty_Double) -> new_esEs24(xwv431, xwv441) new_esEs32(xwv128, xwv130, ty_Float) -> new_esEs21(xwv128, xwv130) new_compare29(LT, LT) -> EQ new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs28(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_esEs7(xwv401, xwv3001, app(ty_Maybe, cbf)) -> new_esEs22(xwv401, xwv3001, cbf) new_esEs6(xwv400, xwv3000, app(ty_Ratio, cae)) -> new_esEs12(xwv400, xwv3000, cae) new_esEs32(xwv128, xwv130, ty_Char) -> new_esEs23(xwv128, xwv130) new_esEs9(xwv400, xwv3000, app(app(ty_@2, dcb), dcc)) -> new_esEs26(xwv400, xwv3000, dcb, dcc) new_esEs31(xwv431, xwv441, app(app(ty_Either, hh), baa)) -> new_esEs25(xwv431, xwv441, hh, baa) new_lt8(xwv430, xwv440, app(ty_[], gh)) -> new_lt5(xwv430, xwv440, gh) new_compare13(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bhb, bhc, bhd) -> new_compare210(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, bhb), new_asAs(new_esEs7(xwv401, xwv3001, bhc), new_esEs8(xwv402, xwv3002, bhd))), bhb, bhc, bhd) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_@0) -> new_ltEs8(xwv430, xwv440) new_esEs11(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_compare31(Float(xwv400, Pos(xwv4010)), Float(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs10(xwv401, xwv3001, app(ty_Ratio, dda)) -> new_esEs12(xwv401, xwv3001, dda) new_esEs7(xwv401, xwv3001, ty_Double) -> new_esEs24(xwv401, xwv3001) new_compare8(True, True) -> EQ new_primPlusNat0(Zero, xwv40100) -> Succ(xwv40100) new_esEs11(xwv400, xwv3000, app(app(ty_Either, feb), fec)) -> new_esEs25(xwv400, xwv3000, feb, fec) new_ltEs21(xwv431, xwv441, ty_@0) -> new_ltEs8(xwv431, xwv441) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(ty_Maybe, dab)) -> new_esEs22(xwv4000, xwv30000, dab) new_ltEs6(Right(xwv430), Right(xwv440), eah, app(app(ty_Either, eba), ebb)) -> new_ltEs6(xwv430, xwv440, eba, ebb) new_ltEs19(xwv432, xwv442, ty_Char) -> new_ltEs17(xwv432, xwv442) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs6(xwv400, xwv3000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs19(xwv400, xwv3000, caa, cab, cac) new_esEs34(xwv4001, xwv30001, app(app(ty_Either, dff), dfg)) -> new_esEs25(xwv4001, xwv30001, dff, dfg) new_esEs33(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs7(xwv401, xwv3001, ty_Char) -> new_esEs23(xwv401, xwv3001) new_esEs36(xwv430, xwv440, ty_Int) -> new_esEs15(xwv430, xwv440) new_ltEs20(xwv129, xwv131, app(ty_Maybe, cgd)) -> new_ltEs14(xwv129, xwv131, cgd) new_esEs31(xwv431, xwv441, app(ty_Maybe, bba)) -> new_esEs22(xwv431, xwv441, bba) new_ltEs16(EQ, GT) -> True new_ltEs20(xwv129, xwv131, app(app(ty_@2, cga), cgb)) -> new_ltEs12(xwv129, xwv131, cga, cgb) new_ltEs6(Left(xwv430), Left(xwv440), ty_Bool, dhg) -> new_ltEs4(xwv430, xwv440) new_ltEs21(xwv431, xwv441, ty_Int) -> new_ltEs10(xwv431, xwv441) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_Maybe, edg)) -> new_ltEs14(xwv430, xwv440, edg) new_esEs34(xwv4001, xwv30001, ty_Float) -> new_esEs21(xwv4001, xwv30001) new_ltEs16(EQ, EQ) -> True new_esEs28(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_esEs8(xwv402, xwv3002, ty_Float) -> new_esEs21(xwv402, xwv3002) new_lt7(xwv431, xwv441, app(app(app(ty_@3, bac), bad), bae)) -> new_lt12(xwv431, xwv441, bac, bad, bae) new_lt14(xwv115, xwv118, ehf) -> new_esEs17(new_compare18(xwv115, xwv118, ehf), LT) new_lt8(xwv430, xwv440, ty_Ordering) -> new_lt17(xwv430, xwv440) new_esEs30(xwv430, xwv440, app(ty_Maybe, hg)) -> new_esEs22(xwv430, xwv440, hg) new_esEs5(xwv400, xwv3000, app(ty_Maybe, bfe)) -> new_esEs22(xwv400, xwv3000, bfe) new_ltEs22(xwv117, xwv120, ty_Char) -> new_ltEs17(xwv117, xwv120) new_esEs11(xwv400, xwv3000, app(ty_[], fef)) -> new_esEs27(xwv400, xwv3000, fef) new_lt8(xwv430, xwv440, app(app(ty_@2, hd), he)) -> new_lt13(xwv430, xwv440, hd, he) new_lt8(xwv430, xwv440, app(ty_Maybe, hg)) -> new_lt15(xwv430, xwv440, hg) new_lt12(xwv115, xwv118, bdg, bdh, bea) -> new_esEs17(new_compare13(xwv115, xwv118, bdg, bdh, bea), LT) new_compare0(xwv40, xwv300, ty_Bool) -> new_compare8(xwv40, xwv300) new_esEs9(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs13(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs8(xwv402, xwv3002, ty_Double) -> new_esEs24(xwv402, xwv3002) new_ltEs14(Just(xwv430), Just(xwv440), app(app(ty_@2, edd), ede)) -> new_ltEs12(xwv430, xwv440, edd, ede) new_ltEs14(Just(xwv430), Just(xwv440), ty_Ordering) -> new_ltEs16(xwv430, xwv440) new_ltEs20(xwv129, xwv131, ty_Ordering) -> new_ltEs16(xwv129, xwv131) new_ltEs19(xwv432, xwv442, ty_Integer) -> new_ltEs9(xwv432, xwv442) new_primMulInt(Neg(xwv30000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv30000, xwv4010)) new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) new_esEs8(xwv402, xwv3002, app(app(ty_Either, cdb), cdc)) -> new_esEs25(xwv402, xwv3002, cdb, cdc) new_esEs25(Left(xwv4000), Right(xwv30000), beg, beh) -> False new_esEs25(Right(xwv4000), Left(xwv30000), beg, beh) -> False new_ltEs5(xwv83, xwv84, ty_Integer) -> new_ltEs9(xwv83, xwv84) new_esEs32(xwv128, xwv130, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs19(xwv128, xwv130, ced, cee, cef) new_ltEs22(xwv117, xwv120, ty_Int) -> new_ltEs10(xwv117, xwv120) new_ltEs19(xwv432, xwv442, ty_@0) -> new_ltEs8(xwv432, xwv442) new_esEs30(xwv430, xwv440, ty_Bool) -> new_esEs18(xwv430, xwv440) new_ltEs5(xwv83, xwv84, ty_Ordering) -> new_ltEs16(xwv83, xwv84) new_ltEs21(xwv431, xwv441, ty_Char) -> new_ltEs17(xwv431, xwv441) new_esEs29(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_esEs29(xwv4001, xwv30001, ty_@0) -> new_esEs20(xwv4001, xwv30001) new_lt20(xwv128, xwv130, ty_Float) -> new_lt19(xwv128, xwv130) new_esEs33(xwv4000, xwv30000, app(ty_[], deh)) -> new_esEs27(xwv4000, xwv30000, deh) new_ltEs5(xwv83, xwv84, app(app(ty_@2, ce), cf)) -> new_ltEs12(xwv83, xwv84, ce, cf) new_esEs6(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_esEs10(xwv401, xwv3001, app(ty_[], ddf)) -> new_esEs27(xwv401, xwv3001, ddf) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_ltEs14(Just(xwv430), Just(xwv440), ty_@0) -> new_ltEs8(xwv430, xwv440) new_esEs39(xwv4000, xwv30000, app(ty_Ratio, fcg)) -> new_esEs12(xwv4000, xwv30000, fcg) new_compare11(xwv170, xwv171, False, edh) -> GT new_primMulInt(Pos(xwv30000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv30000, xwv4010)) new_primMulInt(Neg(xwv30000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv30000, xwv4010)) new_compare6(Double(xwv400, Pos(xwv4010)), Double(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_compare6(Double(xwv400, Neg(xwv4010)), Double(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Ordering, beh) -> new_esEs17(xwv4000, xwv30000) new_lt8(xwv430, xwv440, ty_@0) -> new_lt10(xwv430, xwv440) new_ltEs20(xwv129, xwv131, ty_@0) -> new_ltEs8(xwv129, xwv131) new_ltEs23(xwv50, xwv51, ty_Ordering) -> new_ltEs16(xwv50, xwv51) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_lt17(xwv115, xwv118) -> new_esEs17(new_compare29(xwv115, xwv118), LT) new_lt21(xwv430, xwv440, ty_Int) -> new_lt11(xwv430, xwv440) new_ltEs22(xwv117, xwv120, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_ltEs11(xwv117, xwv120, fbd, fbe, fbf) new_sr0(Integer(xwv30000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv30000, xwv4010)) new_lt22(xwv116, xwv119, app(app(ty_@2, fae), faf)) -> new_lt13(xwv116, xwv119, fae, faf) new_compare0(xwv40, xwv300, ty_Float) -> new_compare31(xwv40, xwv300) new_esEs31(xwv431, xwv441, ty_Float) -> new_esEs21(xwv431, xwv441) new_esEs25(Right(xwv4000), Right(xwv30000), beg, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs19(xwv4000, xwv30000, chg, chh, daa) new_ltEs21(xwv431, xwv441, app(ty_Ratio, ege)) -> new_ltEs13(xwv431, xwv441, ege) new_esEs8(xwv402, xwv3002, ty_Bool) -> new_esEs18(xwv402, xwv3002) new_esEs39(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_lt20(xwv128, xwv130, ty_Double) -> new_lt16(xwv128, xwv130) new_ltEs11(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, ge) -> new_pePe(new_lt8(xwv430, xwv440, gc), new_asAs(new_esEs30(xwv430, xwv440, gc), new_pePe(new_lt7(xwv431, xwv441, gd), new_asAs(new_esEs31(xwv431, xwv441, gd), new_ltEs19(xwv432, xwv442, ge))))) new_esEs9(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_compare211(xwv128, xwv129, xwv130, xwv131, False, cdg, cdh) -> new_compare110(xwv128, xwv129, xwv130, xwv131, new_lt20(xwv128, xwv130, cdg), new_asAs(new_esEs32(xwv128, xwv130, cdg), new_ltEs20(xwv129, xwv131, cdh)), cdg, cdh) new_asAs(True, xwv164) -> xwv164 new_esEs7(xwv401, xwv3001, ty_Int) -> new_esEs15(xwv401, xwv3001) new_lt8(xwv430, xwv440, ty_Int) -> new_lt11(xwv430, xwv440) new_esEs4(xwv400, xwv3000, app(ty_[], bfa)) -> new_esEs27(xwv400, xwv3000, bfa) new_esEs39(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_ltEs21(xwv431, xwv441, ty_Integer) -> new_ltEs9(xwv431, xwv441) new_ltEs9(xwv43, xwv44) -> new_fsEs(new_compare10(xwv43, xwv44)) new_esEs9(xwv400, xwv3000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs19(xwv400, xwv3000, dbc, dbd, dbe) new_esEs14(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_ltEs6(Left(xwv430), Left(xwv440), ty_Int, dhg) -> new_ltEs10(xwv430, xwv440) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Char, beh) -> new_esEs23(xwv4000, xwv30000) new_ltEs19(xwv432, xwv442, ty_Double) -> new_ltEs15(xwv432, xwv442) new_compare111(xwv148, xwv149, False, egg, egh) -> GT new_compare29(LT, GT) -> LT new_esEs6(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_[], chf), beh) -> new_esEs27(xwv4000, xwv30000, chf) new_compare29(LT, EQ) -> LT new_ltEs21(xwv431, xwv441, ty_Bool) -> new_ltEs4(xwv431, xwv441) new_compare12(xwv202, xwv203, xwv204, xwv205, False, ga, gb) -> GT new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare31(xwv32, xwv33) new_esEs4(xwv400, xwv3000, app(app(ty_@2, db), dc)) -> new_esEs26(xwv400, xwv3000, db, dc) new_ltEs21(xwv431, xwv441, app(app(ty_Either, efe), eff)) -> new_ltEs6(xwv431, xwv441, efe, eff) new_sr(xwv3000, xwv401) -> new_primMulInt(xwv3000, xwv401) new_ltEs16(GT, GT) -> True new_lt7(xwv431, xwv441, ty_Double) -> new_lt16(xwv431, xwv441) new_lt23(xwv115, xwv118, app(ty_[], be)) -> new_lt5(xwv115, xwv118, be) new_ltEs12(@2(xwv430, xwv431), @2(xwv440, xwv441), eea, eeb) -> new_pePe(new_lt21(xwv430, xwv440, eea), new_asAs(new_esEs36(xwv430, xwv440, eea), new_ltEs21(xwv431, xwv441, eeb))) new_compare9(:(xwv400, xwv401), :(xwv3000, xwv3001), bha) -> new_primCompAux1(xwv400, xwv3000, xwv401, xwv3001, bha) new_primMulNat0(Zero, Zero) -> Zero new_esEs39(xwv4000, xwv30000, app(app(ty_@2, fdb), fdc)) -> new_esEs26(xwv4000, xwv30000, fdb, fdc) new_esEs35(xwv4002, xwv30002, app(ty_Ratio, dgg)) -> new_esEs12(xwv4002, xwv30002, dgg) new_compare0(xwv40, xwv300, ty_Char) -> new_compare30(xwv40, xwv300) new_ltEs5(xwv83, xwv84, app(app(app(ty_@3, cb), cc), cd)) -> new_ltEs11(xwv83, xwv84, cb, cc, cd) new_ltEs21(xwv431, xwv441, app(ty_Maybe, egf)) -> new_ltEs14(xwv431, xwv441, egf) new_esEs28(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_esEs9(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs19(xwv432, xwv442, app(ty_Ratio, bcb)) -> new_ltEs13(xwv432, xwv442, bcb) new_esEs35(xwv4002, xwv30002, app(ty_[], dhd)) -> new_esEs27(xwv4002, xwv30002, dhd) new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], fgg)) -> new_compare9(xwv32, xwv33, fgg) new_compare29(EQ, LT) -> GT new_esEs29(xwv4001, xwv30001, ty_Float) -> new_esEs21(xwv4001, xwv30001) new_lt7(xwv431, xwv441, app(ty_[], bab)) -> new_lt5(xwv431, xwv441, bab) new_ltEs22(xwv117, xwv120, app(ty_Maybe, fcb)) -> new_ltEs14(xwv117, xwv120, fcb) new_esEs35(xwv4002, xwv30002, ty_Double) -> new_esEs24(xwv4002, xwv30002) new_lt8(xwv430, xwv440, app(app(app(ty_@3, ha), hb), hc)) -> new_lt12(xwv430, xwv440, ha, hb, hc) new_ltEs6(Right(xwv430), Right(xwv440), eah, ty_Ordering) -> new_ltEs16(xwv430, xwv440) new_esEs9(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs36(xwv430, xwv440, app(ty_[], eee)) -> new_esEs27(xwv430, xwv440, eee) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_[], ech)) -> new_ltEs7(xwv430, xwv440, ech) new_esEs8(xwv402, xwv3002, ty_Integer) -> new_esEs16(xwv402, xwv3002) new_esEs17(GT, GT) -> True new_esEs7(xwv401, xwv3001, ty_Ordering) -> new_esEs17(xwv401, xwv3001) new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False new_ltEs5(xwv83, xwv84, ty_Int) -> new_ltEs10(xwv83, xwv84) new_ltEs20(xwv129, xwv131, app(ty_Ratio, cgc)) -> new_ltEs13(xwv129, xwv131, cgc) new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv40000, xwv300000) new_ltEs20(xwv129, xwv131, app(app(ty_Either, cfc), cfd)) -> new_ltEs6(xwv129, xwv131, cfc, cfd) new_esEs8(xwv402, xwv3002, ty_Int) -> new_esEs15(xwv402, xwv3002) new_esEs23(Char(xwv4000), Char(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) new_esEs4(xwv400, xwv3000, app(ty_Ratio, bd)) -> new_esEs12(xwv400, xwv3000, bd) new_lt8(xwv430, xwv440, ty_Double) -> new_lt16(xwv430, xwv440) new_compare27(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bhe, bhf) -> new_compare211(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, bhe), new_esEs10(xwv401, xwv3001, bhf)), bhe, bhf) new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv30000)) -> False new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv30000)) -> False new_compare25(xwv43, xwv44, False, fhg, fhh) -> new_compare111(xwv43, xwv44, new_ltEs24(xwv43, xwv44, fhg), fhg, fhh) new_lt20(xwv128, xwv130, app(ty_Ratio, cfa)) -> new_lt14(xwv128, xwv130, cfa) new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) new_esEs8(xwv402, xwv3002, app(ty_Maybe, cch)) -> new_esEs22(xwv402, xwv3002, cch) new_esEs38(xwv116, xwv119, ty_Int) -> new_esEs15(xwv116, xwv119) new_esEs8(xwv402, xwv3002, app(app(ty_@2, cdd), cde)) -> new_esEs26(xwv402, xwv3002, cdd, cde) new_ltEs19(xwv432, xwv442, app(app(ty_Either, bbb), bbc)) -> new_ltEs6(xwv432, xwv442, bbb, bbc) new_esEs34(xwv4001, xwv30001, app(ty_Ratio, dfe)) -> new_esEs12(xwv4001, xwv30001, dfe) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs22(xwv117, xwv120, ty_Ordering) -> new_ltEs16(xwv117, xwv120) new_ltEs23(xwv50, xwv51, app(app(app(ty_@3, ffd), ffe), fff)) -> new_ltEs11(xwv50, xwv51, ffd, ffe, fff) new_lt22(xwv116, xwv119, ty_Int) -> new_lt11(xwv116, xwv119) new_primCompAux00(xwv32, xwv33, LT, fgd) -> LT new_esEs9(xwv400, xwv3000, app(ty_Maybe, dbf)) -> new_esEs22(xwv400, xwv3000, dbf) new_esEs30(xwv430, xwv440, ty_Float) -> new_esEs21(xwv430, xwv440) new_compare24(xwv83, xwv84, False, bf) -> new_compare11(xwv83, xwv84, new_ltEs5(xwv83, xwv84, bf), bf) new_lt21(xwv430, xwv440, app(app(ty_@2, efa), efb)) -> new_lt13(xwv430, xwv440, efa, efb) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_[], bdf)) -> new_esEs27(xwv4000, xwv30000, bdf) new_ltEs22(xwv117, xwv120, ty_Bool) -> new_ltEs4(xwv117, xwv120) new_esEs38(xwv116, xwv119, ty_Double) -> new_esEs24(xwv116, xwv119) new_ltEs22(xwv117, xwv120, app(app(ty_Either, fba), fbb)) -> new_ltEs6(xwv117, xwv120, fba, fbb) new_esEs7(xwv401, xwv3001, app(app(ty_@2, ccb), ccc)) -> new_esEs26(xwv401, xwv3001, ccb, ccc) new_not(False) -> True new_ltEs20(xwv129, xwv131, ty_Bool) -> new_ltEs4(xwv129, xwv131) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Int, beh) -> new_esEs15(xwv4000, xwv30000) new_esEs6(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_lt7(xwv431, xwv441, ty_Int) -> new_lt11(xwv431, xwv441) new_esEs25(Left(xwv4000), Left(xwv30000), app(app(app(ty_@3, cge), cgf), cgg), beh) -> new_esEs19(xwv4000, xwv30000, cge, cgf, cgg) new_esEs39(xwv4000, xwv30000, app(ty_[], fdd)) -> new_esEs27(xwv4000, xwv30000, fdd) new_ltEs24(xwv43, xwv44, ty_Integer) -> new_ltEs9(xwv43, xwv44) new_ltEs24(xwv43, xwv44, ty_Ordering) -> new_ltEs16(xwv43, xwv44) new_ltEs14(Just(xwv430), Just(xwv440), ty_Float) -> new_ltEs18(xwv430, xwv440) new_esEs28(xwv4000, xwv30000, app(app(ty_Either, ea), eb)) -> new_esEs25(xwv4000, xwv30000, ea, eb) new_ltEs23(xwv50, xwv51, ty_@0) -> new_ltEs8(xwv50, xwv51) new_esEs4(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs5(xwv400, xwv3000, app(ty_[], bgc)) -> new_esEs27(xwv400, xwv3000, bgc) new_compare210(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, eha, ehb, ehc) -> new_compare16(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, new_lt23(xwv115, xwv118, eha), new_asAs(new_esEs37(xwv115, xwv118, eha), new_pePe(new_lt22(xwv116, xwv119, ehb), new_asAs(new_esEs38(xwv116, xwv119, ehb), new_ltEs22(xwv117, xwv120, ehc)))), eha, ehb, ehc) new_ltEs23(xwv50, xwv51, app(ty_Maybe, fgb)) -> new_ltEs14(xwv50, xwv51, fgb) new_lt20(xwv128, xwv130, ty_Int) -> new_lt11(xwv128, xwv130) new_lt21(xwv430, xwv440, app(ty_Ratio, efc)) -> new_lt14(xwv430, xwv440, efc) new_ltEs24(xwv43, xwv44, app(app(ty_Either, eah), dhg)) -> new_ltEs6(xwv43, xwv44, eah, dhg) new_lt20(xwv128, xwv130, app(ty_[], cec)) -> new_lt5(xwv128, xwv130, cec) new_esEs38(xwv116, xwv119, app(ty_Ratio, fag)) -> new_esEs12(xwv116, xwv119, fag) new_ltEs7(xwv43, xwv44, ecd) -> new_fsEs(new_compare9(xwv43, xwv44, ecd)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs6(Left(xwv430), Left(xwv440), app(app(app(ty_@3, eaa), eab), eac), dhg) -> new_ltEs11(xwv430, xwv440, eaa, eab, eac) new_compare0(xwv40, xwv300, ty_@0) -> new_compare19(xwv40, xwv300) new_esEs4(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_[], dhh), dhg) -> new_ltEs7(xwv430, xwv440, dhh) new_esEs37(xwv115, xwv118, app(ty_[], be)) -> new_esEs27(xwv115, xwv118, be) new_ltEs19(xwv432, xwv442, ty_Bool) -> new_ltEs4(xwv432, xwv442) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_Ratio, cha), beh) -> new_esEs12(xwv4000, xwv30000, cha) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt7(xwv431, xwv441, app(ty_Ratio, bah)) -> new_lt14(xwv431, xwv441, bah) new_esEs9(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_primMulNat0(Succ(xwv300000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv300000, Succ(xwv40100)), xwv40100) new_ltEs6(Left(xwv430), Left(xwv440), ty_Double, dhg) -> new_ltEs15(xwv430, xwv440) new_ltEs24(xwv43, xwv44, ty_@0) -> new_ltEs8(xwv43, xwv44) new_compare30(Char(xwv400), Char(xwv3000)) -> new_primCmpNat0(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, ty_Bool) -> new_ltEs4(xwv83, xwv84) new_compare29(GT, LT) -> GT new_lt8(xwv430, xwv440, app(ty_Ratio, hf)) -> new_lt14(xwv430, xwv440, hf) new_compare9([], :(xwv3000, xwv3001), bha) -> LT new_compare16(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, False, xwv194, bgf, bgg, bgh) -> new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, xwv194, bgf, bgg, bgh) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs36(xwv430, xwv440, app(ty_Ratio, efc)) -> new_esEs12(xwv430, xwv440, efc) new_esEs25(Right(xwv4000), Right(xwv30000), beg, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, app(ty_Ratio, ehf)) -> new_esEs12(xwv115, xwv118, ehf) new_primEqNat0(Zero, Zero) -> True new_ltEs21(xwv431, xwv441, app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs11(xwv431, xwv441, efh, ega, egb) new_lt21(xwv430, xwv440, ty_Double) -> new_lt16(xwv430, xwv440) new_compare0(xwv40, xwv300, ty_Ordering) -> new_compare29(xwv40, xwv300) new_asAs(False, xwv164) -> False new_esEs5(xwv400, xwv3000, app(app(ty_@2, bga), bgb)) -> new_esEs26(xwv400, xwv3000, bga, bgb) new_lt23(xwv115, xwv118, app(ty_Ratio, ehf)) -> new_lt14(xwv115, xwv118, ehf) new_ltEs24(xwv43, xwv44, app(ty_Maybe, ece)) -> new_ltEs14(xwv43, xwv44, ece) new_compare0(xwv40, xwv300, app(ty_Maybe, bhh)) -> new_compare28(xwv40, xwv300, bhh) The set Q consists of the following terms: new_primEqNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Bool) new_esEs21(Float(x0, x1), Float(x2, x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_@0) new_primPlusNat1(Zero, Zero) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs18(True, True) new_lt8(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_esEs20(@0, @0) new_esEs39(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Char) new_lt7(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt16(x0, x1) new_esEs33(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_esEs27([], :(x0, x1), x2) new_esEs37(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare28(Just(x0), Just(x1), x2) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Int) new_lt7(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs39(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(GT, EQ) new_ltEs16(EQ, GT) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_@0) new_ltEs16(LT, LT) new_esEs33(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_fsEs(x0) new_esEs38(x0, x1, ty_Int) new_esEs15(x0, x1) new_lt8(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_esEs32(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_compare12(x0, x1, x2, x3, True, x4, x5) new_esEs9(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_compare14(Left(x0), Left(x1), x2, x3) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Bool) new_compare111(x0, x1, False, x2, x3) new_esEs6(x0, x1, ty_Char) new_esEs17(LT, GT) new_esEs17(GT, LT) new_lt21(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs25(Right(x0), Right(x1), x2, ty_@0) new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Char) new_esEs16(Integer(x0), Integer(x1)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Char) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_@0) new_compare26(x0, x1, True, x2, x3) new_esEs35(x0, x1, ty_Int) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs29(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, x2, x3, x4) new_ltEs4(True, True) new_ltEs21(x0, x1, ty_Bool) new_compare29(EQ, EQ) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare15(x0, x1, False, x2, x3) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(Just(x0), Just(x1), ty_Int) new_esEs34(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_compare17(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Float) new_compare8(False, False) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, x2) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, LT, x2) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Float) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Double, x2) new_compare0(x0, x1, ty_Char) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_compare10(Integer(x0), Integer(x1)) new_esEs22(Just(x0), Just(x1), ty_Bool) new_ltEs24(x0, x1, ty_Ordering) new_ltEs14(Nothing, Just(x0), x1) new_esEs10(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs32(x0, x1, ty_Float) new_compare19(@0, @0) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Int) new_lt7(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs23(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt22(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_lt9(x0, x1, x2, x3) new_esEs4(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_esEs31(x0, x1, ty_Char) new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_lt8(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_ltEs15(x0, x1) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_compare9(:(x0, x1), :(x2, x3), x4) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare9(:(x0, x1), [], x2) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Float) new_esEs25(Left(x0), Left(x1), ty_Char, x2) new_ltEs21(x0, x1, ty_Char) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Ordering) new_primPlusNat0(Succ(x0), x1) new_lt21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), ty_Int, x2) new_compare28(Nothing, Nothing, x0) new_ltEs7(x0, x1, x2) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs17(x0, x1) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Float) new_compare11(x0, x1, False, x2) new_esEs27([], [], x0) new_compare27(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_esEs11(x0, x1, ty_Float) new_esEs22(Just(x0), Just(x1), ty_Float) new_esEs6(x0, x1, ty_Double) new_esEs22(Nothing, Just(x0), x1) new_esEs5(x0, x1, ty_@0) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Integer) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Succ(x0)) new_esEs11(x0, x1, ty_@0) new_compare25(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_ltEs14(Nothing, Nothing, x0) new_esEs18(False, False) new_ltEs4(True, False) new_ltEs4(False, True) new_esEs28(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs17(EQ, EQ) new_asAs(True, x0) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_compare14(Left(x0), Right(x1), x2, x3) new_compare14(Right(x0), Left(x1), x2, x3) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Double) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt23(x0, x1, ty_Double) new_primCmpNat0(Zero, Succ(x0)) new_compare29(LT, LT) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Double) new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs11(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Right(x0), Right(x1), x2, ty_Bool) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Int) new_compare8(True, True) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, ty_@0) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primMulNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs4(False, False) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Int) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs27(:(x0, x1), [], x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), ty_Float, x2) new_lt7(x0, x1, ty_Float) new_esEs25(Right(x0), Right(x1), x2, ty_Char) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Int) new_primEqNat0(Zero, Zero) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Bool) new_esEs22(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Ordering) new_not(False) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, ty_Int) new_esEs17(LT, LT) new_lt21(x0, x1, ty_@0) new_lt19(x0, x1) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Double) new_primMulNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Double) new_esEs32(x0, x1, ty_@0) new_esEs31(x0, x1, ty_@0) new_compare25(x0, x1, True, x2, x3) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Left(x0), Left(x1), ty_Bool, x2) new_compare17(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_lt7(x0, x1, ty_Bool) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Integer) new_compare26(x0, x1, False, x2, x3) new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Char) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, True, x2, x3) new_esEs8(x0, x1, ty_Float) new_lt10(x0, x1) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_@0) new_compare0(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Zero) new_esEs36(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs13(x0, x1, x2) new_sr(x0, x1) new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Char) new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Double) new_ltEs22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Integer) new_compare29(EQ, GT) new_compare29(GT, EQ) new_esEs39(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Nothing, Just(x0), x1) new_compare29(LT, GT) new_compare29(GT, LT) new_esEs6(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_compare7(x0, x1) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1, True, x2, x3) new_esEs39(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare8(True, False) new_compare8(False, True) new_compare11(x0, x1, True, x2) new_esEs28(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt18(x0, x1) new_compare9([], [], x0) new_lt23(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_lt22(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs8(x0, x1) new_lt15(x0, x1, x2) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Just(x0), Just(x1), ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Float) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_sr0(Integer(x0), Integer(x1)) new_compare28(Just(x0), Nothing, x1) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Int) new_ltEs14(Just(x0), Nothing, x1) new_esEs39(x0, x1, ty_Integer) new_asAs(False, x0) new_esEs8(x0, x1, ty_@0) new_pePe(True, x0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs16(GT, GT) new_esEs6(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare9([], :(x0, x1), x2) new_compare0(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Float) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs18(False, True) new_esEs18(True, False) new_ltEs24(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_@0) new_esEs22(Nothing, Nothing, x0) new_ltEs22(x0, x1, ty_Float) new_lt14(x0, x1, x2) new_esEs25(Left(x0), Right(x1), x2, x3) new_esEs25(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, ty_Int) new_esEs36(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, x2, x3) new_lt23(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Integer) new_compare12(x0, x1, x2, x3, False, x4, x5) new_esEs34(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare30(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primEqNat0(Succ(x0), Zero) new_esEs22(Just(x0), Just(x1), ty_Ordering) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCompAux00(x0, x1, EQ, ty_Char) new_ltEs22(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs5(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_esEs9(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_Ordering) new_esEs13(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_lt11(x0, x1) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs16(EQ, EQ) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(LT, EQ) new_compare29(EQ, LT) new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs22(Just(x0), Just(x1), ty_Integer) new_ltEs9(x0, x1) new_compare0(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_lt23(x0, x1, app(ty_[], x2)) new_compare14(Right(x0), Right(x1), x2, x3) new_pePe(False, x0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs22(Just(x0), Nothing, x1) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare29(GT, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Float) new_lt22(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs24(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Bool) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_ltEs5(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) new_lt22(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_esEs22(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, ty_Float) new_compare13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_compare211(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Int) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, x0) new_lt20(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(GT, GT) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Char) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs8(x0, x1, ty_Int) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_ltEs21(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Double(x0, x1), Double(x2, x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs8(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Float) new_lt8(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Integer) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_esEs9(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, ty_Int) new_primMulInt(Neg(x0), Neg(x1)) new_esEs4(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs28(x0, x1, ty_@0) new_primCompAux00(x0, x1, GT, x2) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs27(:(x0, x1), :(x2, x3), x4) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Double) new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs38(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Ordering) new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare211(x0, x1, x2, x3, True, x4, x5) new_ltEs22(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_@0) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Char) new_primCmpNat0(Zero, Zero) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_delFromFM(Branch([], xwv31, xwv32, xwv33, xwv34), :(xwv40, xwv41), bb, bc) -> new_delFromFM(xwv34, :(xwv40, xwv41), bb, bc) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), :(xwv40, xwv41), bb, bc) -> new_delFromFM2(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, xwv40, xwv41, new_primCompAux1(xwv40, xwv300, xwv41, xwv301, bb), bb, bc) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 10, 4 >= 11 *new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, EQ, h, ba) -> new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 9, 11 >= 10 *new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare9(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11 *new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare9(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 10, 10 >= 11 *new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, GT, h, ba) -> new_delFromFM(xwv20, :(xwv21, xwv22), h, ba) The graph contains the following edges 6 >= 1, 10 >= 3, 11 >= 4 *new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM(xwv19, :(xwv21, xwv22), h, ba) The graph contains the following edges 5 >= 1, 10 >= 3, 11 >= 4 ---------------------------------------- (43) YES ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_deleteMin(xwv340, xwv341, xwv342, Branch(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434), xwv344, h, ba) -> new_deleteMin(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_deleteMin(xwv340, xwv341, xwv342, Branch(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434), xwv344, h, ba) -> new_deleteMin(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434, h, ba) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7 ---------------------------------------- (46) YES ---------------------------------------- (47) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_elt20(xwv393, xwv394, xwv395, xwv396, xwv397, xwv398, xwv399, xwv400, xwv401, xwv402, xwv403, xwv404, xwv405, Branch(xwv4060, xwv4061, xwv4062, xwv4063, xwv4064), xwv407, h, ba) -> new_glueBal2Mid_elt20(xwv393, xwv394, xwv395, xwv396, xwv397, xwv398, xwv399, xwv400, xwv401, xwv402, xwv4060, xwv4061, xwv4062, xwv4063, xwv4064, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (48) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_glueBal2Mid_elt20(xwv393, xwv394, xwv395, xwv396, xwv397, xwv398, xwv399, xwv400, xwv401, xwv402, xwv403, xwv404, xwv405, Branch(xwv4060, xwv4061, xwv4062, xwv4063, xwv4064), xwv407, h, ba) -> new_glueBal2Mid_elt20(xwv393, xwv394, xwv395, xwv396, xwv397, xwv398, xwv399, xwv400, xwv401, xwv402, xwv4060, xwv4061, xwv4062, xwv4063, xwv4064, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 14 > 11, 14 > 12, 14 > 13, 14 > 14, 14 > 15, 16 >= 16, 17 >= 17 ---------------------------------------- (49) YES ---------------------------------------- (50) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_key20(xwv377, xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv387, xwv388, xwv389, Branch(xwv3900, xwv3901, xwv3902, xwv3903, xwv3904), xwv391, h, ba) -> new_glueBal2Mid_key20(xwv377, xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv3900, xwv3901, xwv3902, xwv3903, xwv3904, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (51) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_glueBal2Mid_key20(xwv377, xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv387, xwv388, xwv389, Branch(xwv3900, xwv3901, xwv3902, xwv3903, xwv3904), xwv391, h, ba) -> new_glueBal2Mid_key20(xwv377, xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv3900, xwv3901, xwv3902, xwv3903, xwv3904, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 14 > 11, 14 > 12, 14 > 13, 14 > 14, 14 > 15, 16 >= 16, 17 >= 17 ---------------------------------------- (52) YES ---------------------------------------- (53) Obligation: Q DP problem: The TRS P consists of the following rules: new_deleteMax(xwv330, xwv331, xwv332, xwv333, Branch(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344), h, ba) -> new_deleteMax(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (54) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_deleteMax(xwv330, xwv331, xwv332, xwv333, Branch(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344), h, ba) -> new_deleteMax(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344, h, ba) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7 ---------------------------------------- (55) YES ---------------------------------------- (56) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_elt10(xwv456, xwv457, xwv458, xwv459, xwv460, xwv461, xwv462, xwv463, xwv464, xwv465, xwv466, xwv467, xwv468, xwv469, Branch(xwv4700, xwv4701, xwv4702, xwv4703, xwv4704), h, ba) -> new_glueBal2Mid_elt10(xwv456, xwv457, xwv458, xwv459, xwv460, xwv461, xwv462, xwv463, xwv464, xwv465, xwv4700, xwv4701, xwv4702, xwv4703, xwv4704, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (57) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_glueBal2Mid_elt10(xwv456, xwv457, xwv458, xwv459, xwv460, xwv461, xwv462, xwv463, xwv464, xwv465, xwv466, xwv467, xwv468, xwv469, Branch(xwv4700, xwv4701, xwv4702, xwv4703, xwv4704), h, ba) -> new_glueBal2Mid_elt10(xwv456, xwv457, xwv458, xwv459, xwv460, xwv461, xwv462, xwv463, xwv464, xwv465, xwv4700, xwv4701, xwv4702, xwv4703, xwv4704, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 15 > 11, 15 > 12, 15 > 13, 15 > 14, 15 > 15, 16 >= 16, 17 >= 17 ---------------------------------------- (58) YES ---------------------------------------- (59) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs(Right(xwv430), Right(xwv440), cb, app(ty_Maybe, dd)) -> new_ltEs3(xwv430, xwv440, dd) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(app(app(ty_@3, gh), ha), hb)), gb) -> new_ltEs1(xwv432, xwv442, gh, ha, hb) new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(ty_[], cbg)) -> new_ltEs0(xwv129, xwv131, cbg) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(app(ty_@2, bhd), bhe)) -> new_ltEs2(xwv117, xwv120, bhd, bhe) new_compare1(Right(xwv400), Right(xwv3000), dh, ea) -> new_compare20(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, ea), dh, ea) new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(app(ty_@2, bfc), bfd)), gb) -> new_ltEs2(xwv430, xwv440, bfc, bfd) new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(app(ty_@2, bg), bh)), bb), gb) -> new_ltEs2(xwv430, xwv440, bg, bh) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(app(ty_@2, bae), baf)), hh), gb) -> new_lt2(xwv431, xwv441, bae, baf) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(app(ty_Either, bah), bba), gd, hh) -> new_lt(xwv430, xwv440, bah, bba) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(app(app(ty_@3, bdg), bdh), bea), bde) -> new_lt1(xwv430, xwv440, bdg, bdh, bea) new_ltEs3(Just(xwv430), Just(xwv440), app(ty_[], beg)) -> new_ltEs0(xwv430, xwv440, beg) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(ty_Maybe, cbc), bge, caa) -> new_compare5(xwv115, xwv118, cbc) new_compare1(Left(xwv400), Left(xwv3000), dh, ea) -> new_compare2(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, dh), dh, ea) new_ltEs(Left(xwv430), Left(xwv440), app(app(ty_@2, bg), bh), bb) -> new_ltEs2(xwv430, xwv440, bg, bh) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs1(xwv431, xwv441, bce, bcf, bcg) new_ltEs3(Just(xwv430), Just(xwv440), app(app(ty_@2, bfc), bfd)) -> new_ltEs2(xwv430, xwv440, bfc, bfd) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(app(app(ty_@3, bab), bac), bad), hh) -> new_lt1(xwv431, xwv441, bab, bac, bad) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(app(ty_@2, bae), baf), hh) -> new_lt2(xwv431, xwv441, bae, baf) new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(ty_Maybe, ca)), bb), gb) -> new_ltEs3(xwv430, xwv440, ca) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(app(ty_@2, cba), cbb), bge, caa) -> new_compare4(xwv115, xwv118, cba, cbb) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(app(ty_@2, bch), bda)), gb) -> new_ltEs2(xwv431, xwv441, bch, bda) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(ty_[], gg)) -> new_ltEs0(xwv432, xwv442, gg) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(app(ty_@2, beb), bec)), bde), gb) -> new_lt2(xwv430, xwv440, beb, bec) new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(app(ty_Either, ccf), ccg), cch) -> new_lt(xwv128, xwv130, ccf, ccg) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(app(ty_Either, bcb), bcc)), gb) -> new_ltEs(xwv431, xwv441, bcb, bcc) new_primCompAux(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), xwv41, xwv301, app(app(app(ty_@3, eb), ec), ed)) -> new_compare21(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, eb), new_asAs(new_esEs7(xwv401, xwv3001, ec), new_esEs8(xwv402, xwv3002, ed))), eb, ec, ed) new_ltEs(Left(xwv430), Left(xwv440), app(ty_Maybe, ca), bb) -> new_ltEs3(xwv430, xwv440, ca) new_ltEs3(Just(xwv430), Just(xwv440), app(app(ty_Either, bee), bef)) -> new_ltEs(xwv430, xwv440, bee, bef) new_compare23(xwv83, xwv84, False, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs1(xwv83, xwv84, cec, ced, cee) new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), gb) -> new_ltEs(xwv430, xwv440, cc, cd) new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(ty_Maybe, dd)), gb) -> new_ltEs3(xwv430, xwv440, dd) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(app(ty_Either, bgf), bgg)) -> new_ltEs(xwv117, xwv120, bgf, bgg) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(ty_Maybe, bbh)), gd), hh), gb) -> new_lt3(xwv430, xwv440, bbh) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(app(ty_Either, hf), hg)), hh), gb) -> new_lt(xwv431, xwv441, hf, hg) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(ty_[], gg)), gb) -> new_ltEs0(xwv432, xwv442, gg) new_primCompAux0(xwv32, xwv33, EQ, app(app(app(ty_@3, fc), fd), ff)) -> new_compare3(xwv32, xwv33, fc, fd, ff) new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(ty_[], ce)), gb) -> new_ltEs0(xwv430, xwv440, ce) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs1(xwv117, xwv120, bha, bhb, bhc) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(ty_Maybe, bbh), gd, hh) -> new_lt3(xwv430, xwv440, bbh) new_ltEs(Left(xwv430), Left(xwv440), app(app(ty_Either, h), ba), bb) -> new_ltEs(xwv430, xwv440, h, ba) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(ty_[], baa), hh) -> new_lt0(xwv431, xwv441, baa) new_lt3(xwv115, xwv118, cbc) -> new_compare5(xwv115, xwv118, cbc) new_compare23(xwv83, xwv84, False, app(ty_Maybe, ceh)) -> new_ltEs3(xwv83, xwv84, ceh) new_ltEs(Right(xwv430), Right(xwv440), cb, app(app(ty_@2, db), dc)) -> new_ltEs2(xwv430, xwv440, db, dc) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(app(app(ty_@3, bce), bcf), bcg)), gb) -> new_ltEs1(xwv431, xwv441, bce, bcf, bcg) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(ty_[], bbb), gd, hh) -> new_lt0(xwv430, xwv440, bbb) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(ty_Maybe, bag)), hh), gb) -> new_lt3(xwv431, xwv441, bag) new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(app(ty_@2, cde), cdf), cch) -> new_lt2(xwv128, xwv130, cde, cdf) new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(app(ty_Either, bee), bef)), gb) -> new_ltEs(xwv430, xwv440, bee, bef) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(ty_[], bfh), bge, caa) -> new_compare(xwv115, xwv118, bfh) new_primCompAux0(xwv32, xwv33, EQ, app(ty_[], fb)) -> new_compare(xwv32, xwv33, fb) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(ty_Maybe, bdb)) -> new_ltEs3(xwv431, xwv441, bdb) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(app(ty_Either, bdc), bdd)), bde), gb) -> new_lt(xwv430, xwv440, bdc, bdd) new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs1(xwv129, xwv131, cbh, cca, ccb) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(app(ty_@2, caf), cag), caa) -> new_lt2(xwv116, xwv119, caf, cag) new_ltEs0(xwv43, xwv44, de) -> new_compare(xwv43, xwv44, de) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(ty_Maybe, bed), bde) -> new_lt3(xwv430, xwv440, bed) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(app(app(ty_@3, bbc), bbd), bbe), gd, hh) -> new_lt1(xwv430, xwv440, bbc, bbd, bbe) new_lt0(xwv115, xwv118, bfh) -> new_compare(xwv115, xwv118, bfh) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(app(ty_Either, bcb), bcc)) -> new_ltEs(xwv431, xwv441, bcb, bcc) new_compare2(xwv43, xwv44, False, app(ty_[], de), gb) -> new_compare(xwv43, xwv44, de) new_primCompAux(Left(xwv400), Left(xwv3000), xwv41, xwv301, app(app(ty_Either, dh), ea)) -> new_compare2(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, dh), dh, ea) new_primCompAux0(xwv32, xwv33, EQ, app(app(ty_@2, fg), fh)) -> new_compare4(xwv32, xwv33, fg, fh) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(ty_[], cab), caa) -> new_lt0(xwv116, xwv119, cab) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(ty_Maybe, he)), gb) -> new_ltEs3(xwv432, xwv442, he) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(app(ty_Either, bdc), bdd), bde) -> new_lt(xwv430, xwv440, bdc, bdd) new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(ty_[], cda), cch) -> new_lt0(xwv128, xwv130, cda) new_primCompAux(xwv40, xwv300, xwv41, xwv301, dg) -> new_primCompAux0(xwv41, xwv301, new_compare0(xwv40, xwv300, dg), app(ty_[], dg)) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(ty_[], bgh)) -> new_ltEs0(xwv117, xwv120, bgh) new_lt2(xwv115, xwv118, cba, cbb) -> new_compare4(xwv115, xwv118, cba, cbb) new_primCompAux0(xwv32, xwv33, EQ, app(ty_Maybe, ga)) -> new_compare5(xwv32, xwv33, ga) new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), gb) -> new_ltEs(xwv430, xwv440, h, ba) new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(ty_Maybe, cce)) -> new_ltEs3(xwv129, xwv131, cce) new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(app(app(ty_@3, beh), bfa), bfb)), gb) -> new_ltEs1(xwv430, xwv440, beh, bfa, bfb) new_ltEs(Left(xwv430), Left(xwv440), app(ty_[], bc), bb) -> new_ltEs0(xwv430, xwv440, bc) new_ltEs(Left(xwv430), Left(xwv440), app(app(app(ty_@3, bd), be), bf), bb) -> new_ltEs1(xwv430, xwv440, bd, be, bf) new_compare5(Just(xwv400), Just(xwv3000), eg) -> new_compare23(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, eg), eg) new_ltEs(Right(xwv430), Right(xwv440), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(xwv430, xwv440, cc, cd) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(app(ty_Either, ge), gf)), gb) -> new_ltEs(xwv432, xwv442, ge, gf) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(app(ty_Either, bah), bba)), gd), hh), gb) -> new_lt(xwv430, xwv440, bah, bba) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(ty_[], bcd)), gb) -> new_ltEs0(xwv431, xwv441, bcd) new_ltEs3(Just(xwv430), Just(xwv440), app(ty_Maybe, bfe)) -> new_ltEs3(xwv430, xwv440, bfe) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(app(app(ty_@3, bab), bac), bad)), hh), gb) -> new_lt1(xwv431, xwv441, bab, bac, bad) new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(app(app(ty_@3, cf), cg), da)), gb) -> new_ltEs1(xwv430, xwv440, cf, cg, da) new_primCompAux(Right(xwv400), Right(xwv3000), xwv41, xwv301, app(app(ty_Either, dh), ea)) -> new_compare20(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, ea), dh, ea) new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(app(app(ty_@3, bd), be), bf)), bb), gb) -> new_ltEs1(xwv430, xwv440, bd, be, bf) new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(app(ty_Either, cbe), cbf)) -> new_ltEs(xwv129, xwv131, cbe, cbf) new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(app(app(ty_@3, cdb), cdc), cdd), cch) -> new_lt1(xwv128, xwv130, cdb, cdc, cdd) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(ty_Maybe, bdb)), gb) -> new_ltEs3(xwv431, xwv441, bdb) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(ty_[], bdf), bde) -> new_lt0(xwv430, xwv440, bdf) new_compare23(xwv83, xwv84, False, app(app(ty_Either, cdh), cea)) -> new_ltEs(xwv83, xwv84, cdh, cea) new_primCompAux(@2(xwv400, xwv401), @2(xwv3000, xwv3001), xwv41, xwv301, app(app(ty_@2, ee), ef)) -> new_compare22(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, ee), new_esEs10(xwv401, xwv3001, ef)), ee, ef) new_lt1(xwv115, xwv118, bga, bgb, bgc) -> new_compare3(xwv115, xwv118, bga, bgb, bgc) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(ty_[], bdf)), bde), gb) -> new_lt0(xwv430, xwv440, bdf) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(ty_[], baa)), hh), gb) -> new_lt0(xwv431, xwv441, baa) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(ty_Maybe, cah), caa) -> new_lt3(xwv116, xwv119, cah) new_ltEs(Right(xwv430), Right(xwv440), cb, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs1(xwv430, xwv440, cf, cg, da) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(ty_Maybe, bhf)) -> new_ltEs3(xwv117, xwv120, bhf) new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(app(ty_@2, db), dc)), gb) -> new_ltEs2(xwv430, xwv440, db, dc) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(app(ty_@2, beb), bec), bde) -> new_lt2(xwv430, xwv440, beb, bec) new_compare20(xwv50, xwv51, False, cfa, app(app(ty_@2, cfh), cga)) -> new_ltEs2(xwv50, xwv51, cfh, cga) new_ltEs(Right(xwv430), Right(xwv440), cb, app(ty_[], ce)) -> new_ltEs0(xwv430, xwv440, ce) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(app(ty_Either, bhg), bhh), caa) -> new_lt(xwv116, xwv119, bhg, bhh) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(app(ty_@2, bch), bda)) -> new_ltEs2(xwv431, xwv441, bch, bda) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(app(ty_Either, bff), bfg), bge, caa) -> new_compare1(xwv115, xwv118, bff, bfg) new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(ty_Maybe, cdg), cch) -> new_lt3(xwv128, xwv130, cdg) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(app(app(ty_@3, bdg), bdh), bea)), bde), gb) -> new_lt1(xwv430, xwv440, bdg, bdh, bea) new_compare3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), eb, ec, ed) -> new_compare21(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, eb), new_asAs(new_esEs7(xwv401, xwv3001, ec), new_esEs8(xwv402, xwv3002, ed))), eb, ec, ed) new_compare23(xwv83, xwv84, False, app(ty_[], ceb)) -> new_ltEs0(xwv83, xwv84, ceb) new_ltEs3(Just(xwv430), Just(xwv440), app(app(app(ty_@3, beh), bfa), bfb)) -> new_ltEs1(xwv430, xwv440, beh, bfa, bfb) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(ty_[], bcd)) -> new_ltEs0(xwv431, xwv441, bcd) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(ty_[], bbb)), gd), hh), gb) -> new_lt0(xwv430, xwv440, bbb) new_compare20(xwv50, xwv51, False, cfa, app(app(ty_Either, cfb), cfc)) -> new_ltEs(xwv50, xwv51, cfb, cfc) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(app(ty_Either, ge), gf)) -> new_ltEs(xwv432, xwv442, ge, gf) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(ty_Maybe, bag), hh) -> new_lt3(xwv431, xwv441, bag) new_primCompAux(:(xwv400, xwv401), :(xwv3000, xwv3001), xwv41, xwv301, app(ty_[], df)) -> new_primCompAux(xwv400, xwv3000, xwv401, xwv3001, df) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(app(app(ty_@3, bbc), bbd), bbe)), gd), hh), gb) -> new_lt1(xwv430, xwv440, bbc, bbd, bbe) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(app(ty_@2, bbf), bbg), gd, hh) -> new_lt2(xwv430, xwv440, bbf, bbg) new_compare20(xwv50, xwv51, False, cfa, app(ty_[], cfd)) -> new_ltEs0(xwv50, xwv51, cfd) new_compare23(xwv83, xwv84, False, app(app(ty_@2, cef), ceg)) -> new_ltEs2(xwv83, xwv84, cef, ceg) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(app(ty_Either, hf), hg), hh) -> new_lt(xwv431, xwv441, hf, hg) new_compare4(@2(xwv400, xwv401), @2(xwv3000, xwv3001), ee, ef) -> new_compare22(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, ee), new_esEs10(xwv401, xwv3001, ef)), ee, ef) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(xwv432, xwv442, gh, ha, hb) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(ty_Maybe, he)) -> new_ltEs3(xwv432, xwv442, he) new_lt(xwv115, xwv118, bff, bfg) -> new_compare1(xwv115, xwv118, bff, bfg) new_compare20(xwv50, xwv51, False, cfa, app(ty_Maybe, cgb)) -> new_ltEs3(xwv50, xwv51, cgb) new_primCompAux(Just(xwv400), Just(xwv3000), xwv41, xwv301, app(ty_Maybe, eg)) -> new_compare23(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, eg), eg) new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(ty_Maybe, bfe)), gb) -> new_ltEs3(xwv430, xwv440, bfe) new_compare(:(xwv400, xwv401), :(xwv3000, xwv3001), df) -> new_primCompAux(xwv400, xwv3000, xwv401, xwv3001, df) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(app(ty_@2, hc), hd)) -> new_ltEs2(xwv432, xwv442, hc, hd) new_primCompAux0(xwv32, xwv33, EQ, app(app(ty_Either, eh), fa)) -> new_compare1(xwv32, xwv33, eh, fa) new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(ty_[], bc)), bb), gb) -> new_ltEs0(xwv430, xwv440, bc) new_compare20(xwv50, xwv51, False, cfa, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs1(xwv50, xwv51, cfe, cff, cfg) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(ty_Maybe, bed)), bde), gb) -> new_lt3(xwv430, xwv440, bed) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(app(ty_@2, hc), hd)), gb) -> new_ltEs2(xwv432, xwv442, hc, hd) new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(ty_[], beg)), gb) -> new_ltEs0(xwv430, xwv440, beg) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(app(app(ty_@3, cac), cad), cae), caa) -> new_lt1(xwv116, xwv119, cac, cad, cae) new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(app(ty_@2, ccc), ccd)) -> new_ltEs2(xwv129, xwv131, ccc, ccd) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(app(ty_@2, bbf), bbg)), gd), hh), gb) -> new_lt2(xwv430, xwv440, bbf, bbg) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(app(app(ty_@3, bga), bgb), bgc), bge, caa) -> new_compare3(xwv115, xwv118, bga, bgb, bgc) The TRS R consists of the following rules: new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs23(xwv50, xwv51, app(ty_Ratio, fha)) -> new_ltEs13(xwv50, xwv51, fha) new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, ga)) -> new_compare28(xwv32, xwv33, ga) new_primCompAux1(xwv40, xwv300, xwv41, xwv301, dg) -> new_primCompAux00(xwv41, xwv301, new_compare0(xwv40, xwv300, dg), app(ty_[], dg)) new_esEs7(xwv401, xwv3001, ty_@0) -> new_esEs20(xwv401, xwv3001) new_pePe(True, xwv231) -> True new_esEs31(xwv431, xwv441, ty_Ordering) -> new_esEs17(xwv431, xwv441) new_ltEs23(xwv50, xwv51, ty_Float) -> new_ltEs18(xwv50, xwv51) new_compare8(True, False) -> GT new_ltEs23(xwv50, xwv51, ty_Integer) -> new_ltEs9(xwv50, xwv51) new_esEs18(True, True) -> True new_lt20(xwv128, xwv130, ty_Ordering) -> new_lt17(xwv128, xwv130) new_esEs7(xwv401, xwv3001, app(app(app(ty_@3, ebh), eca), ecb)) -> new_esEs19(xwv401, xwv3001, ebh, eca, ecb) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Char) -> new_ltEs17(xwv430, xwv440) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare26(xwv50, xwv51, True, cfa, fgh) -> EQ new_esEs33(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_ltEs19(xwv432, xwv442, app(app(ty_@2, hc), hd)) -> new_ltEs12(xwv432, xwv442, hc, hd) new_esEs32(xwv128, xwv130, ty_Int) -> new_esEs15(xwv128, xwv130) new_esEs37(xwv115, xwv118, app(ty_Maybe, cbc)) -> new_esEs22(xwv115, xwv118, cbc) new_esEs31(xwv431, xwv441, ty_Char) -> new_esEs23(xwv431, xwv441) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Integer, dgd) -> new_esEs16(xwv4000, xwv30000) new_lt23(xwv115, xwv118, ty_@0) -> new_lt10(xwv115, xwv118) new_ltEs23(xwv50, xwv51, ty_Double) -> new_ltEs15(xwv50, xwv51) new_compare111(xwv148, xwv149, True, ffa, ffb) -> LT new_lt23(xwv115, xwv118, app(ty_Maybe, cbc)) -> new_lt15(xwv115, xwv118, cbc) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_Ratio, ddh)) -> new_esEs12(xwv4000, xwv30000, ddh) new_esEs5(xwv400, xwv3000, app(ty_Ratio, dhb)) -> new_esEs12(xwv400, xwv3000, dhb) new_esEs33(xwv4000, xwv30000, app(app(ty_@2, fbc), fbd)) -> new_esEs26(xwv4000, xwv30000, fbc, fbd) new_lt22(xwv116, xwv119, app(ty_Ratio, ffd)) -> new_lt14(xwv116, xwv119, ffd) new_compare19(@0, @0) -> EQ new_lt7(xwv431, xwv441, app(app(ty_@2, bae), baf)) -> new_lt13(xwv431, xwv441, bae, baf) new_lt22(xwv116, xwv119, ty_Float) -> new_lt19(xwv116, xwv119) new_lt22(xwv116, xwv119, ty_Integer) -> new_lt6(xwv116, xwv119) new_esEs28(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_ltEs20(xwv129, xwv131, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs11(xwv129, xwv131, cbh, cca, ccb) new_compare110(xwv202, xwv203, xwv204, xwv205, False, xwv207, dcf, dcg) -> new_compare12(xwv202, xwv203, xwv204, xwv205, xwv207, dcf, dcg) new_ltEs21(xwv431, xwv441, ty_Ordering) -> new_ltEs16(xwv431, xwv441) new_esEs30(xwv430, xwv440, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs19(xwv430, xwv440, bbc, bbd, bbe) new_lt20(xwv128, xwv130, app(app(ty_@2, cde), cdf)) -> new_lt13(xwv128, xwv130, cde, cdf) new_esEs15(xwv400, xwv3000) -> new_primEqInt(xwv400, xwv3000) new_primEqNat0(Succ(xwv40000), Succ(xwv300000)) -> new_primEqNat0(xwv40000, xwv300000) new_esEs28(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Float, dgd) -> new_esEs21(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, ty_Double) -> new_esEs24(xwv115, xwv118) new_esEs36(xwv430, xwv440, ty_Ordering) -> new_esEs17(xwv430, xwv440) new_ltEs6(Right(xwv430), Right(xwv440), cb, app(ty_Maybe, dd)) -> new_ltEs14(xwv430, xwv440, dd) new_lt22(xwv116, xwv119, ty_Double) -> new_lt16(xwv116, xwv119) new_not(True) -> False new_esEs37(xwv115, xwv118, ty_Bool) -> new_esEs18(xwv115, xwv118) new_compare6(Double(xwv400, Pos(xwv4010)), Double(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs38(xwv116, xwv119, ty_@0) -> new_esEs20(xwv116, xwv119) new_esEs11(xwv400, xwv3000, app(ty_Ratio, eba)) -> new_esEs12(xwv400, xwv3000, eba) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Integer) -> new_ltEs9(xwv430, xwv440) new_ltEs14(Just(xwv430), Just(xwv440), ty_Int) -> new_ltEs10(xwv430, xwv440) new_esEs22(Nothing, Just(xwv30000), ddc) -> False new_esEs22(Just(xwv4000), Nothing, ddc) -> False new_esEs22(Nothing, Nothing, ddc) -> True new_esEs6(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs9(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_esEs38(xwv116, xwv119, app(app(ty_@2, caf), cag)) -> new_esEs26(xwv116, xwv119, caf, cag) new_esEs22(Just(xwv4000), Just(xwv30000), app(app(ty_@2, dec), ded)) -> new_esEs26(xwv4000, xwv30000, dec, ded) new_lt22(xwv116, xwv119, app(app(ty_Either, bhg), bhh)) -> new_lt9(xwv116, xwv119, bhg, bhh) new_esEs32(xwv128, xwv130, app(ty_Maybe, cdg)) -> new_esEs22(xwv128, xwv130, cdg) new_ltEs6(Left(xwv430), Left(xwv440), app(app(ty_Either, h), ba), bb) -> new_ltEs6(xwv430, xwv440, h, ba) new_esEs37(xwv115, xwv118, ty_Int) -> new_esEs15(xwv115, xwv118) new_primEqNat0(Succ(xwv40000), Zero) -> False new_primEqNat0(Zero, Succ(xwv300000)) -> False new_esEs22(Just(xwv4000), Just(xwv30000), ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_esEs11(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, app(app(ty_Either, cdh), cea)) -> new_ltEs6(xwv83, xwv84, cdh, cea) new_esEs8(xwv402, xwv3002, ty_Ordering) -> new_esEs17(xwv402, xwv3002) new_ltEs21(xwv431, xwv441, app(app(ty_@2, bch), bda)) -> new_ltEs12(xwv431, xwv441, bch, bda) new_esEs25(Left(xwv4000), Left(xwv30000), ty_@0, dgd) -> new_esEs20(xwv4000, xwv30000) new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare6(xwv32, xwv33) new_ltEs20(xwv129, xwv131, ty_Int) -> new_ltEs10(xwv129, xwv131) new_ltEs23(xwv50, xwv51, ty_Char) -> new_ltEs17(xwv50, xwv51) new_esEs8(xwv402, xwv3002, ty_Char) -> new_esEs23(xwv402, xwv3002) new_lt7(xwv431, xwv441, ty_Ordering) -> new_lt17(xwv431, xwv441) new_ltEs14(Just(xwv430), Just(xwv440), ty_Char) -> new_ltEs17(xwv430, xwv440) new_compare15(xwv155, xwv156, True, dhh, eaa) -> LT new_compare210(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, True, bgd, bge, caa) -> EQ new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> GT new_ltEs10(xwv43, xwv44) -> new_fsEs(new_compare7(xwv43, xwv44)) new_compare0(xwv40, xwv300, app(app(app(ty_@3, eb), ec), ed)) -> new_compare13(xwv40, xwv300, eb, ec, ed) new_ltEs22(xwv117, xwv120, ty_@0) -> new_ltEs8(xwv117, xwv120) new_esEs28(xwv4000, xwv30000, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs19(xwv4000, xwv30000, dab, dac, dad) new_ltEs14(Just(xwv430), Just(xwv440), app(app(app(ty_@3, beh), bfa), bfb)) -> new_ltEs11(xwv430, xwv440, beh, bfa, bfb) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(app(ty_@2, egg), egh)) -> new_esEs26(xwv4000, xwv30000, egg, egh) new_esEs35(xwv4002, xwv30002, app(app(ty_Either, fde), fdf)) -> new_esEs25(xwv4002, xwv30002, fde, fdf) new_esEs27(:(xwv4000, xwv4001), :(xwv30000, xwv30001), dge) -> new_asAs(new_esEs39(xwv4000, xwv30000, dge), new_esEs27(xwv4001, xwv30001, dge)) new_esEs38(xwv116, xwv119, ty_Integer) -> new_esEs16(xwv116, xwv119) new_lt22(xwv116, xwv119, app(ty_[], cab)) -> new_lt5(xwv116, xwv119, cab) new_primPlusNat1(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv24200))) new_primCompAux00(xwv32, xwv33, GT, fhc) -> GT new_esEs6(xwv400, xwv3000, app(ty_[], dfg)) -> new_esEs27(xwv400, xwv3000, dfg) new_primCmpNat0(Zero, Succ(xwv30000)) -> LT new_esEs30(xwv430, xwv440, app(app(ty_Either, bah), bba)) -> new_esEs25(xwv430, xwv440, bah, bba) new_ltEs6(Right(xwv430), Right(xwv440), cb, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs11(xwv430, xwv440, cf, cg, da) new_esEs33(xwv4000, xwv30000, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs19(xwv4000, xwv30000, fad, fae, faf) new_esEs10(xwv401, xwv3001, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs19(xwv401, xwv3001, cgf, cgg, cgh) new_esEs39(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_esEs11(xwv400, xwv3000, app(app(ty_@2, ebd), ebe)) -> new_esEs26(xwv400, xwv3000, ebd, ebe) new_esEs5(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs32(xwv128, xwv130, ty_Bool) -> new_esEs18(xwv128, xwv130) new_ltEs19(xwv432, xwv442, app(ty_Maybe, he)) -> new_ltEs14(xwv432, xwv442, he) new_esEs39(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_compare29(EQ, GT) -> LT new_esEs9(xwv400, xwv3000, app(app(ty_Either, ehg), ehh)) -> new_esEs25(xwv400, xwv3000, ehg, ehh) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(app(ty_Either, ege), egf)) -> new_esEs25(xwv4000, xwv30000, ege, egf) new_esEs19(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), dfh, dga, dgb) -> new_asAs(new_esEs33(xwv4000, xwv30000, dfh), new_asAs(new_esEs34(xwv4001, xwv30001, dga), new_esEs35(xwv4002, xwv30002, dgb))) new_ltEs23(xwv50, xwv51, ty_Int) -> new_ltEs10(xwv50, xwv51) new_esEs29(xwv4001, xwv30001, ty_Char) -> new_esEs23(xwv4001, xwv30001) new_lt22(xwv116, xwv119, app(app(app(ty_@3, cac), cad), cae)) -> new_lt12(xwv116, xwv119, cac, cad, cae) new_lt7(xwv431, xwv441, app(ty_Maybe, bag)) -> new_lt15(xwv431, xwv441, bag) new_ltEs24(xwv43, xwv44, ty_Bool) -> new_ltEs4(xwv43, xwv44) new_esEs36(xwv430, xwv440, app(app(ty_@2, beb), bec)) -> new_esEs26(xwv430, xwv440, beb, bec) new_compare0(xwv40, xwv300, ty_Double) -> new_compare6(xwv40, xwv300) new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv40000, xwv300000) new_esEs4(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_lt23(xwv115, xwv118, app(app(ty_@2, cba), cbb)) -> new_lt13(xwv115, xwv118, cba, cbb) new_esEs32(xwv128, xwv130, app(ty_[], cda)) -> new_esEs27(xwv128, xwv130, cda) new_esEs28(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT new_ltEs20(xwv129, xwv131, ty_Char) -> new_ltEs17(xwv129, xwv131) new_esEs7(xwv401, xwv3001, ty_Integer) -> new_esEs16(xwv401, xwv3001) new_primMulInt(Pos(xwv30000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv30000, xwv4010)) new_esEs5(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_lt11(xwv115, xwv118) -> new_esEs17(new_compare7(xwv115, xwv118), LT) new_esEs33(xwv4000, xwv30000, app(ty_Ratio, fah)) -> new_esEs12(xwv4000, xwv30000, fah) new_esEs27([], [], dge) -> True new_ltEs20(xwv129, xwv131, ty_Double) -> new_ltEs15(xwv129, xwv131) new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, eab, eac, ead) -> LT new_lt9(xwv115, xwv118, bff, bfg) -> new_esEs17(new_compare14(xwv115, xwv118, bff, bfg), LT) new_esEs34(xwv4001, xwv30001, ty_Double) -> new_esEs24(xwv4001, xwv30001) new_esEs7(xwv401, xwv3001, app(app(ty_Either, ece), ecf)) -> new_esEs25(xwv401, xwv3001, ece, ecf) new_lt7(xwv431, xwv441, ty_@0) -> new_lt10(xwv431, xwv441) new_lt5(xwv115, xwv118, bfh) -> new_esEs17(new_compare9(xwv115, xwv118, bfh), LT) new_primMulNat0(Succ(xwv300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xwv40100)) -> Zero new_esEs7(xwv401, xwv3001, ty_Float) -> new_esEs21(xwv401, xwv3001) new_lt23(xwv115, xwv118, ty_Ordering) -> new_lt17(xwv115, xwv118) new_compare8(False, False) -> EQ new_lt20(xwv128, xwv130, ty_@0) -> new_lt10(xwv128, xwv130) new_esEs11(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs34(xwv4001, xwv30001, app(ty_[], fcg)) -> new_esEs27(xwv4001, xwv30001, fcg) new_esEs29(xwv4001, xwv30001, ty_Ordering) -> new_esEs17(xwv4001, xwv30001) new_compare110(xwv202, xwv203, xwv204, xwv205, True, xwv207, dcf, dcg) -> new_compare12(xwv202, xwv203, xwv204, xwv205, True, dcf, dcg) new_compare7(xwv40, xwv300) -> new_primCmpInt(xwv40, xwv300) new_esEs10(xwv401, xwv3001, app(app(ty_Either, chc), chd)) -> new_esEs25(xwv401, xwv3001, chc, chd) new_esEs8(xwv402, xwv3002, app(ty_Ratio, edf)) -> new_esEs12(xwv402, xwv3002, edf) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(ty_Ratio, egd)) -> new_esEs12(xwv4000, xwv30000, egd) new_esEs33(xwv4000, xwv30000, app(app(ty_Either, fba), fbb)) -> new_esEs25(xwv4000, xwv30000, fba, fbb) new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare19(xwv32, xwv33) new_lt19(xwv115, xwv118) -> new_esEs17(new_compare31(xwv115, xwv118), LT) new_esEs32(xwv128, xwv130, ty_Double) -> new_esEs24(xwv128, xwv130) new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) new_primPlusNat1(Zero, Succ(xwv24200)) -> Succ(xwv24200) new_ltEs14(Just(xwv430), Just(xwv440), ty_Integer) -> new_ltEs9(xwv430, xwv440) new_esEs30(xwv430, xwv440, ty_@0) -> new_esEs20(xwv430, xwv440) new_esEs8(xwv402, xwv3002, app(ty_[], eec)) -> new_esEs27(xwv402, xwv3002, eec) new_lt8(xwv430, xwv440, ty_Bool) -> new_lt4(xwv430, xwv440) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Int) -> new_ltEs10(xwv430, xwv440) new_esEs29(xwv4001, xwv30001, ty_Bool) -> new_esEs18(xwv4001, xwv30001) new_esEs6(xwv400, xwv3000, app(ty_Maybe, dfa)) -> new_esEs22(xwv400, xwv3000, dfa) new_esEs32(xwv128, xwv130, app(app(ty_Either, ccf), ccg)) -> new_esEs25(xwv128, xwv130, ccf, ccg) new_ltEs20(xwv129, xwv131, ty_Integer) -> new_ltEs9(xwv129, xwv131) new_ltEs5(xwv83, xwv84, app(ty_Maybe, ceh)) -> new_ltEs14(xwv83, xwv84, ceh) new_esEs30(xwv430, xwv440, ty_Integer) -> new_esEs16(xwv430, xwv440) new_esEs9(xwv400, xwv3000, app(ty_[], fac)) -> new_esEs27(xwv400, xwv3000, fac) new_esEs9(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, ty_@0) -> new_ltEs8(xwv83, xwv84) new_ltEs19(xwv432, xwv442, ty_Ordering) -> new_ltEs16(xwv432, xwv442) new_esEs31(xwv431, xwv441, app(ty_Ratio, dda)) -> new_esEs12(xwv431, xwv441, dda) new_lt21(xwv430, xwv440, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt12(xwv430, xwv440, bdg, bdh, bea) new_esEs35(xwv4002, xwv30002, app(app(ty_@2, fdg), fdh)) -> new_esEs26(xwv4002, xwv30002, fdg, fdh) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Double) -> new_ltEs15(xwv430, xwv440) new_lt21(xwv430, xwv440, ty_@0) -> new_lt10(xwv430, xwv440) new_ltEs6(Left(xwv430), Left(xwv440), ty_Float, bb) -> new_ltEs18(xwv430, xwv440) new_esEs5(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs33(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs35(xwv4002, xwv30002, ty_Int) -> new_esEs15(xwv4002, xwv30002) new_esEs5(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_esEs29(xwv4001, xwv30001, app(ty_Maybe, dbg)) -> new_esEs22(xwv4001, xwv30001, dbg) new_esEs7(xwv401, xwv3001, app(ty_Ratio, ecd)) -> new_esEs12(xwv401, xwv3001, ecd) new_esEs6(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs10(xwv401, xwv3001, ty_Float) -> new_esEs21(xwv401, xwv3001) new_ltEs21(xwv431, xwv441, ty_Double) -> new_ltEs15(xwv431, xwv441) new_esEs10(xwv401, xwv3001, ty_Double) -> new_esEs24(xwv401, xwv3001) new_lt20(xwv128, xwv130, ty_Integer) -> new_lt6(xwv128, xwv130) new_lt22(xwv116, xwv119, ty_Bool) -> new_lt4(xwv116, xwv119) new_ltEs6(Left(xwv430), Left(xwv440), app(app(ty_@2, bg), bh), bb) -> new_ltEs12(xwv430, xwv440, bg, bh) new_esEs10(xwv401, xwv3001, app(app(ty_@2, che), chf)) -> new_esEs26(xwv401, xwv3001, che, chf) new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, eh), fa)) -> new_compare14(xwv32, xwv33, eh, fa) new_esEs38(xwv116, xwv119, ty_Char) -> new_esEs23(xwv116, xwv119) new_esEs37(xwv115, xwv118, app(app(ty_Either, bff), bfg)) -> new_esEs25(xwv115, xwv118, bff, bfg) new_compare18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), ty_Int) -> new_compare7(new_sr(xwv400, xwv3001), new_sr(xwv3000, xwv401)) new_lt22(xwv116, xwv119, ty_Ordering) -> new_lt17(xwv116, xwv119) new_esEs4(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_compare26(xwv50, xwv51, False, cfa, fgh) -> new_compare15(xwv50, xwv51, new_ltEs23(xwv50, xwv51, fgh), cfa, fgh) new_esEs10(xwv401, xwv3001, ty_Integer) -> new_esEs16(xwv401, xwv3001) new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare30(xwv32, xwv33) new_esEs11(xwv400, xwv3000, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs19(xwv400, xwv3000, eae, eaf, eag) new_ltEs21(xwv431, xwv441, ty_Float) -> new_ltEs18(xwv431, xwv441) new_esEs29(xwv4001, xwv30001, ty_Double) -> new_esEs24(xwv4001, xwv30001) new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare10(xwv32, xwv33) new_compare14(Left(xwv400), Right(xwv3000), dh, ea) -> LT new_esEs35(xwv4002, xwv30002, ty_Bool) -> new_esEs18(xwv4002, xwv30002) new_esEs22(Just(xwv4000), Just(xwv30000), app(app(ty_Either, dea), deb)) -> new_esEs25(xwv4000, xwv30000, dea, deb) new_esEs31(xwv431, xwv441, ty_Bool) -> new_esEs18(xwv431, xwv441) new_lt18(xwv115, xwv118) -> new_esEs17(new_compare30(xwv115, xwv118), LT) new_esEs38(xwv116, xwv119, ty_Ordering) -> new_esEs17(xwv116, xwv119) new_esEs33(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_esEs34(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_compare29(GT, EQ) -> GT new_esEs4(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs31(xwv431, xwv441, app(ty_[], baa)) -> new_esEs27(xwv431, xwv441, baa) new_compare0(xwv40, xwv300, app(ty_[], df)) -> new_compare9(xwv40, xwv300, df) new_esEs36(xwv430, xwv440, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs19(xwv430, xwv440, bdg, bdh, bea) new_compare0(xwv40, xwv300, app(app(ty_Either, dh), ea)) -> new_compare14(xwv40, xwv300, dh, ea) new_esEs36(xwv430, xwv440, ty_@0) -> new_esEs20(xwv430, xwv440) new_esEs29(xwv4001, xwv30001, app(ty_Ratio, dbh)) -> new_esEs12(xwv4001, xwv30001, dbh) new_esEs31(xwv431, xwv441, ty_Integer) -> new_esEs16(xwv431, xwv441) new_esEs11(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_esEs39(xwv4000, xwv30000, app(ty_Maybe, fga)) -> new_esEs22(xwv4000, xwv30000, fga) new_esEs28(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_compare0(xwv40, xwv300, app(app(ty_@2, ee), ef)) -> new_compare27(xwv40, xwv300, ee, ef) new_ltEs23(xwv50, xwv51, app(app(ty_@2, cfh), cga)) -> new_ltEs12(xwv50, xwv51, cfh, cga) new_lt7(xwv431, xwv441, ty_Integer) -> new_lt6(xwv431, xwv441) new_esEs18(False, False) -> True new_esEs25(Left(xwv4000), Left(xwv30000), app(app(ty_@2, efe), eff), dgd) -> new_esEs26(xwv4000, xwv30000, efe, eff) new_esEs31(xwv431, xwv441, app(app(ty_@2, bae), baf)) -> new_esEs26(xwv431, xwv441, bae, baf) new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv4000), xwv3000) new_esEs30(xwv430, xwv440, app(ty_Ratio, dch)) -> new_esEs12(xwv430, xwv440, dch) new_esEs4(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_compare10(Integer(xwv400), Integer(xwv3000)) -> new_primCmpInt(xwv400, xwv3000) new_lt7(xwv431, xwv441, app(app(ty_Either, hf), hg)) -> new_lt9(xwv431, xwv441, hf, hg) new_esEs6(xwv400, xwv3000, app(app(ty_Either, dfc), dfd)) -> new_esEs25(xwv400, xwv3000, dfc, dfd) new_esEs4(xwv400, xwv3000, app(ty_Maybe, ddc)) -> new_esEs22(xwv400, xwv3000, ddc) new_lt8(xwv430, xwv440, ty_Integer) -> new_lt6(xwv430, xwv440) new_esEs34(xwv4001, xwv30001, ty_Char) -> new_esEs23(xwv4001, xwv30001) new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, fg), fh)) -> new_compare27(xwv32, xwv33, fg, fh) new_lt7(xwv431, xwv441, ty_Float) -> new_lt19(xwv431, xwv441) new_lt8(xwv430, xwv440, ty_Float) -> new_lt19(xwv430, xwv440) new_esEs14(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_esEs22(Just(xwv4000), Just(xwv30000), ty_@0) -> new_esEs20(xwv4000, xwv30000) new_ltEs6(Right(xwv430), Right(xwv440), cb, app(ty_[], ce)) -> new_ltEs7(xwv430, xwv440, ce) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(ty_[], eha)) -> new_esEs27(xwv4000, xwv30000, eha) new_esEs5(xwv400, xwv3000, app(app(ty_Either, dhc), dhd)) -> new_esEs25(xwv400, xwv3000, dhc, dhd) new_lt20(xwv128, xwv130, app(app(ty_Either, ccf), ccg)) -> new_lt9(xwv128, xwv130, ccf, ccg) new_compare9([], [], df) -> EQ new_ltEs24(xwv43, xwv44, app(ty_[], de)) -> new_ltEs7(xwv43, xwv44, de) new_esEs35(xwv4002, xwv30002, ty_Float) -> new_esEs21(xwv4002, xwv30002) new_esEs39(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, ty_@0) -> new_esEs20(xwv115, xwv118) new_compare31(Float(xwv400, Neg(xwv4010)), Float(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_esEs29(xwv4001, xwv30001, app(ty_[], dce)) -> new_esEs27(xwv4001, xwv30001, dce) new_esEs10(xwv401, xwv3001, ty_Int) -> new_esEs15(xwv401, xwv3001) new_esEs4(xwv400, xwv3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs19(xwv400, xwv3000, dfh, dga, dgb) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_ltEs14(Just(xwv430), Just(xwv440), ty_Double) -> new_ltEs15(xwv430, xwv440) new_esEs10(xwv401, xwv3001, app(ty_Maybe, cha)) -> new_esEs22(xwv401, xwv3001, cha) new_ltEs22(xwv117, xwv120, app(app(ty_@2, bhd), bhe)) -> new_ltEs12(xwv117, xwv120, bhd, bhe) new_esEs30(xwv430, xwv440, ty_Double) -> new_esEs24(xwv430, xwv440) new_esEs36(xwv430, xwv440, ty_Float) -> new_esEs21(xwv430, xwv440) new_ltEs4(True, False) -> False new_ltEs13(xwv43, xwv44, fhb) -> new_fsEs(new_compare18(xwv43, xwv44, fhb)) new_esEs5(xwv400, xwv3000, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs19(xwv400, xwv3000, dgf, dgg, dgh) new_esEs32(xwv128, xwv130, ty_@0) -> new_esEs20(xwv128, xwv130) new_esEs37(xwv115, xwv118, ty_Ordering) -> new_esEs17(xwv115, xwv118) new_ltEs14(Just(xwv430), Nothing, fed) -> False new_ltEs14(Nothing, Nothing, fed) -> True new_lt8(xwv430, xwv440, ty_Char) -> new_lt18(xwv430, xwv440) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_Ratio, feb), bb) -> new_ltEs13(xwv430, xwv440, feb) new_esEs28(xwv4000, xwv30000, app(ty_Ratio, daf)) -> new_esEs12(xwv4000, xwv30000, daf) new_lt21(xwv430, xwv440, app(ty_Maybe, bed)) -> new_lt15(xwv430, xwv440, bed) new_esEs33(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_lt21(xwv430, xwv440, ty_Bool) -> new_lt4(xwv430, xwv440) new_esEs10(xwv401, xwv3001, ty_Bool) -> new_esEs18(xwv401, xwv3001) new_ltEs4(False, False) -> True new_ltEs5(xwv83, xwv84, app(ty_[], ceb)) -> new_ltEs7(xwv83, xwv84, ceb) new_fsEs(xwv226) -> new_not(new_esEs17(xwv226, GT)) new_lt21(xwv430, xwv440, ty_Ordering) -> new_lt17(xwv430, xwv440) new_ltEs18(xwv43, xwv44) -> new_fsEs(new_compare31(xwv43, xwv44)) new_esEs39(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs31(xwv431, xwv441, ty_Int) -> new_esEs15(xwv431, xwv441) new_ltEs24(xwv43, xwv44, app(app(ty_@2, bca), bde)) -> new_ltEs12(xwv43, xwv44, bca, bde) new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, fc), fd), ff)) -> new_compare13(xwv32, xwv33, fc, fd, ff) new_esEs36(xwv430, xwv440, app(ty_Maybe, bed)) -> new_esEs22(xwv430, xwv440, bed) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Char) -> new_esEs23(xwv4000, xwv30000) new_compare28(Just(xwv400), Just(xwv3000), eg) -> new_compare24(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, eg), eg) new_lt8(xwv430, xwv440, app(app(ty_Either, bah), bba)) -> new_lt9(xwv430, xwv440, bah, bba) new_esEs34(xwv4001, xwv30001, ty_Bool) -> new_esEs18(xwv4001, xwv30001) new_lt7(xwv431, xwv441, ty_Char) -> new_lt18(xwv431, xwv441) new_ltEs6(Right(xwv430), Right(xwv440), cb, app(app(ty_@2, db), dc)) -> new_ltEs12(xwv430, xwv440, db, dc) new_ltEs14(Just(xwv430), Just(xwv440), ty_Bool) -> new_ltEs4(xwv430, xwv440) new_ltEs19(xwv432, xwv442, app(ty_[], gg)) -> new_ltEs7(xwv432, xwv442, gg) new_ltEs6(Right(xwv430), Left(xwv440), cb, bb) -> False new_esEs11(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Float) -> new_esEs21(xwv4000, xwv30000) new_ltEs8(xwv43, xwv44) -> new_fsEs(new_compare19(xwv43, xwv44)) new_esEs35(xwv4002, xwv30002, app(app(app(ty_@3, fch), fda), fdb)) -> new_esEs19(xwv4002, xwv30002, fch, fda, fdb) new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs33(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, app(app(ty_Either, bdc), bdd)) -> new_esEs25(xwv430, xwv440, bdc, bdd) new_esEs16(Integer(xwv4000), Integer(xwv30000)) -> new_primEqInt(xwv4000, xwv30000) new_esEs10(xwv401, xwv3001, ty_@0) -> new_esEs20(xwv401, xwv3001) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_Ratio, fee)) -> new_ltEs13(xwv430, xwv440, fee) new_lt22(xwv116, xwv119, ty_Char) -> new_lt18(xwv116, xwv119) new_esEs11(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs20(xwv129, xwv131, app(ty_[], cbg)) -> new_ltEs7(xwv129, xwv131, cbg) new_ltEs6(Left(xwv430), Left(xwv440), ty_Ordering, bb) -> new_ltEs16(xwv430, xwv440) new_esEs37(xwv115, xwv118, ty_Float) -> new_esEs21(xwv115, xwv118) new_esEs5(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs4(xwv400, xwv3000, app(app(ty_Either, dgc), dgd)) -> new_esEs25(xwv400, xwv3000, dgc, dgd) new_esEs28(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs34(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_compare31(Float(xwv400, Pos(xwv4010)), Float(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_compare31(Float(xwv400, Neg(xwv4010)), Float(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_primPlusNat0(Succ(xwv2370), xwv40100) -> Succ(Succ(new_primPlusNat1(xwv2370, xwv40100))) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_Maybe, efa), dgd) -> new_esEs22(xwv4000, xwv30000, efa) new_lt20(xwv128, xwv130, app(ty_Maybe, cdg)) -> new_lt15(xwv128, xwv130, cdg) new_esEs28(xwv4000, xwv30000, app(app(ty_@2, dba), dbb)) -> new_esEs26(xwv4000, xwv30000, dba, dbb) new_esEs11(xwv400, xwv3000, app(ty_Maybe, eah)) -> new_esEs22(xwv400, xwv3000, eah) new_primPlusNat1(Zero, Zero) -> Zero new_esEs34(xwv4001, xwv30001, app(ty_Maybe, fca)) -> new_esEs22(xwv4001, xwv30001, fca) new_esEs37(xwv115, xwv118, ty_Char) -> new_esEs23(xwv115, xwv118) new_ltEs6(Left(xwv430), Left(xwv440), ty_@0, bb) -> new_ltEs8(xwv430, xwv440) new_ltEs22(xwv117, xwv120, ty_Float) -> new_ltEs18(xwv117, xwv120) new_ltEs23(xwv50, xwv51, app(ty_[], cfd)) -> new_ltEs7(xwv50, xwv51, cfd) new_ltEs6(Left(xwv430), Left(xwv440), ty_Integer, bb) -> new_ltEs9(xwv430, xwv440) new_compare14(Right(xwv400), Left(xwv3000), dh, ea) -> GT new_esEs22(Just(xwv4000), Just(xwv30000), app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs19(xwv4000, xwv30000, ddd, dde, ddf) new_esEs38(xwv116, xwv119, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs19(xwv116, xwv119, cac, cad, cae) new_esEs24(Double(xwv4000, xwv4001), Double(xwv30000, xwv30001)) -> new_esEs15(new_sr(xwv4000, xwv30001), new_sr(xwv4001, xwv30000)) new_ltEs22(xwv117, xwv120, app(ty_[], bgh)) -> new_ltEs7(xwv117, xwv120, bgh) new_ltEs4(True, True) -> True new_esEs29(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_esEs35(xwv4002, xwv30002, ty_Ordering) -> new_esEs17(xwv4002, xwv30002) new_compare0(xwv40, xwv300, ty_Integer) -> new_compare10(xwv40, xwv300) new_primCmpNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primCmpNat0(xwv4000, xwv30000) new_lt4(xwv115, xwv118) -> new_esEs17(new_compare8(xwv115, xwv118), LT) new_esEs30(xwv430, xwv440, app(app(ty_@2, bbf), bbg)) -> new_esEs26(xwv430, xwv440, bbf, bbg) new_esEs35(xwv4002, xwv30002, ty_Char) -> new_esEs23(xwv4002, xwv30002) new_esEs11(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_compare8(False, True) -> LT new_ltEs21(xwv431, xwv441, app(ty_[], bcd)) -> new_ltEs7(xwv431, xwv441, bcd) new_esEs34(xwv4001, xwv30001, ty_Ordering) -> new_esEs17(xwv4001, xwv30001) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Float) -> new_ltEs18(xwv430, xwv440) new_esEs36(xwv430, xwv440, ty_Integer) -> new_esEs16(xwv430, xwv440) new_ltEs19(xwv432, xwv442, ty_Float) -> new_ltEs18(xwv432, xwv442) new_compare15(xwv155, xwv156, False, dhh, eaa) -> GT new_lt20(xwv128, xwv130, ty_Char) -> new_lt18(xwv128, xwv130) new_esEs13(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_lt23(xwv115, xwv118, app(app(ty_Either, bff), bfg)) -> new_lt9(xwv115, xwv118, bff, bfg) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, ty_Char) -> new_esEs23(xwv430, xwv440) new_compare14(Right(xwv400), Right(xwv3000), dh, ea) -> new_compare26(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, ea), dh, ea) new_ltEs20(xwv129, xwv131, ty_Float) -> new_ltEs18(xwv129, xwv131) new_esEs35(xwv4002, xwv30002, ty_Integer) -> new_esEs16(xwv4002, xwv30002) new_lt21(xwv430, xwv440, ty_Char) -> new_lt18(xwv430, xwv440) new_compare14(Left(xwv400), Left(xwv3000), dh, ea) -> new_compare25(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, dh), dh, ea) new_esEs36(xwv430, xwv440, ty_Bool) -> new_esEs18(xwv430, xwv440) new_lt21(xwv430, xwv440, ty_Integer) -> new_lt6(xwv430, xwv440) new_esEs38(xwv116, xwv119, ty_Float) -> new_esEs21(xwv116, xwv119) new_ltEs6(Left(xwv430), Left(xwv440), ty_Char, bb) -> new_ltEs17(xwv430, xwv440) new_ltEs6(Left(xwv430), Right(xwv440), cb, bb) -> True new_esEs30(xwv430, xwv440, ty_Int) -> new_esEs15(xwv430, xwv440) new_lt16(xwv115, xwv118) -> new_esEs17(new_compare6(xwv115, xwv118), LT) new_esEs35(xwv4002, xwv30002, app(ty_Maybe, fdc)) -> new_esEs22(xwv4002, xwv30002, fdc) new_esEs38(xwv116, xwv119, app(app(ty_Either, bhg), bhh)) -> new_esEs25(xwv116, xwv119, bhg, bhh) new_compare18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), ty_Integer) -> new_compare10(new_sr0(xwv400, xwv3001), new_sr0(xwv3000, xwv401)) new_esEs37(xwv115, xwv118, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs19(xwv115, xwv118, bga, bgb, bgc) new_esEs35(xwv4002, xwv30002, ty_@0) -> new_esEs20(xwv4002, xwv30002) new_esEs29(xwv4001, xwv30001, app(app(ty_@2, dcc), dcd)) -> new_esEs26(xwv4001, xwv30001, dcc, dcd) new_compare28(Nothing, Just(xwv3000), eg) -> LT new_esEs4(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Double) -> new_esEs24(xwv4000, xwv30000) new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> LT new_compare11(xwv170, xwv171, True, fef) -> LT new_esEs27(:(xwv4000, xwv4001), [], dge) -> False new_esEs27([], :(xwv30000, xwv30001), dge) -> False new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare8(xwv32, xwv33) new_lt15(xwv115, xwv118, cbc) -> new_esEs17(new_compare28(xwv115, xwv118, cbc), LT) new_esEs5(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_esEs34(xwv4001, xwv30001, ty_@0) -> new_esEs20(xwv4001, xwv30001) new_esEs38(xwv116, xwv119, app(ty_[], cab)) -> new_esEs27(xwv116, xwv119, cab) new_esEs6(xwv400, xwv3000, app(app(ty_@2, dfe), dff)) -> new_esEs26(xwv400, xwv3000, dfe, dff) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT new_esEs34(xwv4001, xwv30001, app(app(app(ty_@3, fbf), fbg), fbh)) -> new_esEs19(xwv4001, xwv30001, fbf, fbg, fbh) new_ltEs24(xwv43, xwv44, ty_Int) -> new_ltEs10(xwv43, xwv44) new_ltEs23(xwv50, xwv51, app(app(ty_Either, cfb), cfc)) -> new_ltEs6(xwv50, xwv51, cfb, cfc) new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv4000)) new_esEs6(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs23(xwv50, xwv51, ty_Bool) -> new_ltEs4(xwv50, xwv51) new_compare12(xwv202, xwv203, xwv204, xwv205, True, dcf, dcg) -> LT new_esEs32(xwv128, xwv130, app(ty_Ratio, eed)) -> new_esEs12(xwv128, xwv130, eed) new_esEs4(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs4(False, True) -> True new_ltEs15(xwv43, xwv44) -> new_fsEs(new_compare6(xwv43, xwv44)) new_lt7(xwv431, xwv441, ty_Bool) -> new_lt4(xwv431, xwv441) new_ltEs14(Nothing, Just(xwv440), fed) -> True new_lt20(xwv128, xwv130, ty_Bool) -> new_lt4(xwv128, xwv130) new_esEs39(xwv4000, xwv30000, app(app(ty_Either, fgc), fgd)) -> new_esEs25(xwv4000, xwv30000, fgc, fgd) new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False new_esEs10(xwv401, xwv3001, ty_Ordering) -> new_esEs17(xwv401, xwv3001) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Bool) -> new_ltEs4(xwv430, xwv440) new_esEs17(LT, LT) -> True new_ltEs17(xwv43, xwv44) -> new_fsEs(new_compare30(xwv43, xwv44)) new_lt23(xwv115, xwv118, ty_Int) -> new_lt11(xwv115, xwv118) new_esEs28(xwv4000, xwv30000, app(ty_[], dbc)) -> new_esEs27(xwv4000, xwv30000, dbc) new_compare0(xwv40, xwv300, app(ty_Ratio, ebg)) -> new_compare18(xwv40, xwv300, ebg) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Bool, dgd) -> new_esEs18(xwv4000, xwv30000) new_esEs25(Left(xwv4000), Left(xwv30000), app(app(ty_Either, efc), efd), dgd) -> new_esEs25(xwv4000, xwv30000, efc, efd) new_esEs11(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare7(xwv32, xwv33) new_ltEs5(xwv83, xwv84, ty_Float) -> new_ltEs18(xwv83, xwv84) new_esEs39(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_esEs38(xwv116, xwv119, ty_Bool) -> new_esEs18(xwv116, xwv119) new_ltEs5(xwv83, xwv84, ty_Double) -> new_ltEs15(xwv83, xwv84) new_esEs7(xwv401, xwv3001, app(ty_[], eda)) -> new_esEs27(xwv401, xwv3001, eda) new_lt21(xwv430, xwv440, app(app(ty_Either, bdc), bdd)) -> new_lt9(xwv430, xwv440, bdc, bdd) new_ltEs5(xwv83, xwv84, app(ty_Ratio, cge)) -> new_ltEs13(xwv83, xwv84, cge) new_primCmpNat0(Zero, Zero) -> EQ new_esEs20(@0, @0) -> True new_esEs37(xwv115, xwv118, ty_Integer) -> new_esEs16(xwv115, xwv118) new_esEs10(xwv401, xwv3001, ty_Char) -> new_esEs23(xwv401, xwv3001) new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, fhd)) -> new_compare18(xwv32, xwv33, fhd) new_ltEs16(GT, EQ) -> False new_esEs22(Just(xwv4000), Just(xwv30000), ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_compare0(xwv40, xwv300, ty_Int) -> new_compare7(xwv40, xwv300) new_lt23(xwv115, xwv118, ty_Double) -> new_lt16(xwv115, xwv118) new_compare29(EQ, EQ) -> EQ new_lt23(xwv115, xwv118, app(app(app(ty_@3, bga), bgb), bgc)) -> new_lt12(xwv115, xwv118, bga, bgb, bgc) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_Maybe, ca), bb) -> new_ltEs14(xwv430, xwv440, ca) new_esEs39(xwv4000, xwv30000, app(app(app(ty_@3, fff), ffg), ffh)) -> new_esEs19(xwv4000, xwv30000, fff, ffg, ffh) new_esEs5(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_lt23(xwv115, xwv118, ty_Integer) -> new_lt6(xwv115, xwv118) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs29(xwv4001, xwv30001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs19(xwv4001, xwv30001, dbd, dbe, dbf) new_esEs37(xwv115, xwv118, app(app(ty_@2, cba), cbb)) -> new_esEs26(xwv115, xwv118, cba, cbb) new_compare28(Just(xwv400), Nothing, eg) -> GT new_ltEs19(xwv432, xwv442, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs11(xwv432, xwv442, gh, ha, hb) new_esEs26(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), chh, daa) -> new_asAs(new_esEs28(xwv4000, xwv30000, chh), new_esEs29(xwv4001, xwv30001, daa)) new_esEs9(xwv400, xwv3000, app(ty_Ratio, ehf)) -> new_esEs12(xwv400, xwv3000, ehf) new_lt21(xwv430, xwv440, app(ty_[], bdf)) -> new_lt5(xwv430, xwv440, bdf) new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare29(xwv32, xwv33) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_Maybe, ddg)) -> new_esEs22(xwv4000, xwv30000, ddg) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs33(xwv4000, xwv30000, app(ty_Maybe, fag)) -> new_esEs22(xwv4000, xwv30000, fag) new_esEs38(xwv116, xwv119, app(ty_Maybe, cah)) -> new_esEs22(xwv116, xwv119, cah) new_esEs33(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, ty_Double) -> new_esEs24(xwv430, xwv440) new_esEs6(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_ltEs24(xwv43, xwv44, ty_Double) -> new_ltEs15(xwv43, xwv44) new_esEs12(:%(xwv4000, xwv4001), :%(xwv30000, xwv30001), cgc) -> new_asAs(new_esEs13(xwv4000, xwv30000, cgc), new_esEs14(xwv4001, xwv30001, cgc)) new_compare6(Double(xwv400, Neg(xwv4010)), Double(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_ltEs16(LT, LT) -> True new_esEs29(xwv4001, xwv30001, app(app(ty_Either, dca), dcb)) -> new_esEs25(xwv4001, xwv30001, dca, dcb) new_esEs32(xwv128, xwv130, app(app(ty_@2, cde), cdf)) -> new_esEs26(xwv128, xwv130, cde, cdf) new_esEs9(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs24(xwv43, xwv44, ty_Char) -> new_ltEs17(xwv43, xwv44) new_lt23(xwv115, xwv118, ty_Char) -> new_lt18(xwv115, xwv118) new_lt23(xwv115, xwv118, ty_Float) -> new_lt19(xwv115, xwv118) new_ltEs24(xwv43, xwv44, app(app(app(ty_@3, gc), gd), hh)) -> new_ltEs11(xwv43, xwv44, gc, gd, hh) new_esEs8(xwv402, xwv3002, ty_@0) -> new_esEs20(xwv402, xwv3002) new_esEs30(xwv430, xwv440, app(ty_[], bbb)) -> new_esEs27(xwv430, xwv440, bbb) new_compare29(GT, GT) -> EQ new_esEs32(xwv128, xwv130, ty_Ordering) -> new_esEs17(xwv128, xwv130) new_ltEs22(xwv117, xwv120, ty_Integer) -> new_ltEs9(xwv117, xwv120) new_lt6(xwv115, xwv118) -> new_esEs17(new_compare10(xwv115, xwv118), LT) new_esEs33(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_compare28(Nothing, Nothing, eg) -> EQ new_compare9(:(xwv400, xwv401), [], df) -> GT new_esEs34(xwv4001, xwv30001, app(app(ty_@2, fce), fcf)) -> new_esEs26(xwv4001, xwv30001, fce, fcf) new_compare16(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, xwv194, eab, eac, ead) -> new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, eab, eac, ead) new_esEs32(xwv128, xwv130, ty_Integer) -> new_esEs16(xwv128, xwv130) new_primCmpNat0(Succ(xwv4000), Zero) -> GT new_lt10(xwv115, xwv118) -> new_esEs17(new_compare19(xwv115, xwv118), LT) new_lt20(xwv128, xwv130, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt12(xwv128, xwv130, cdb, cdc, cdd) new_pePe(False, xwv231) -> xwv231 new_ltEs5(xwv83, xwv84, ty_Char) -> new_ltEs17(xwv83, xwv84) new_lt13(xwv115, xwv118, cba, cbb) -> new_esEs17(new_compare27(xwv115, xwv118, cba, cbb), LT) new_esEs21(Float(xwv4000, xwv4001), Float(xwv30000, xwv30001)) -> new_esEs15(new_sr(xwv4000, xwv30001), new_sr(xwv4001, xwv30000)) new_ltEs19(xwv432, xwv442, ty_Int) -> new_ltEs10(xwv432, xwv442) new_ltEs22(xwv117, xwv120, app(ty_Ratio, ffe)) -> new_ltEs13(xwv117, xwv120, ffe) new_ltEs22(xwv117, xwv120, ty_Double) -> new_ltEs15(xwv117, xwv120) new_compare25(xwv43, xwv44, True, fhe, gb) -> EQ new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, False, eab, eac, ead) -> GT new_esEs28(xwv4000, xwv30000, app(ty_Maybe, dae)) -> new_esEs22(xwv4000, xwv30000, dae) new_esEs7(xwv401, xwv3001, ty_Bool) -> new_esEs18(xwv401, xwv3001) new_esEs30(xwv430, xwv440, ty_Char) -> new_esEs23(xwv430, xwv440) new_ltEs14(Just(xwv430), Just(xwv440), app(app(ty_Either, bee), bef)) -> new_ltEs6(xwv430, xwv440, bee, bef) new_lt22(xwv116, xwv119, app(ty_Maybe, cah)) -> new_lt15(xwv116, xwv119, cah) new_ltEs16(LT, GT) -> True new_ltEs6(Right(xwv430), Right(xwv440), cb, app(ty_Ratio, fec)) -> new_ltEs13(xwv430, xwv440, fec) new_lt23(xwv115, xwv118, ty_Bool) -> new_lt4(xwv115, xwv118) new_ltEs24(xwv43, xwv44, ty_Float) -> new_ltEs18(xwv43, xwv44) new_ltEs24(xwv43, xwv44, app(ty_Ratio, fhb)) -> new_ltEs13(xwv43, xwv44, fhb) new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_esEs30(xwv430, xwv440, ty_Ordering) -> new_esEs17(xwv430, xwv440) new_esEs5(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_lt21(xwv430, xwv440, ty_Float) -> new_lt19(xwv430, xwv440) new_esEs8(xwv402, xwv3002, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs19(xwv402, xwv3002, edb, edc, edd) new_esEs6(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False new_compare24(xwv83, xwv84, True, cgd) -> EQ new_esEs31(xwv431, xwv441, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs19(xwv431, xwv441, bab, bac, bad) new_compare211(xwv128, xwv129, xwv130, xwv131, True, cbd, cch) -> EQ new_ltEs16(GT, LT) -> False new_esEs31(xwv431, xwv441, ty_@0) -> new_esEs20(xwv431, xwv441) new_esEs39(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_esEs17(EQ, EQ) -> True new_lt22(xwv116, xwv119, ty_@0) -> new_lt10(xwv116, xwv119) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Double, dgd) -> new_esEs24(xwv4000, xwv30000) new_esEs31(xwv431, xwv441, ty_Double) -> new_esEs24(xwv431, xwv441) new_esEs32(xwv128, xwv130, ty_Float) -> new_esEs21(xwv128, xwv130) new_compare29(LT, LT) -> EQ new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs28(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_esEs7(xwv401, xwv3001, app(ty_Maybe, ecc)) -> new_esEs22(xwv401, xwv3001, ecc) new_esEs6(xwv400, xwv3000, app(ty_Ratio, dfb)) -> new_esEs12(xwv400, xwv3000, dfb) new_esEs32(xwv128, xwv130, ty_Char) -> new_esEs23(xwv128, xwv130) new_esEs9(xwv400, xwv3000, app(app(ty_@2, faa), fab)) -> new_esEs26(xwv400, xwv3000, faa, fab) new_esEs31(xwv431, xwv441, app(app(ty_Either, hf), hg)) -> new_esEs25(xwv431, xwv441, hf, hg) new_lt8(xwv430, xwv440, app(ty_[], bbb)) -> new_lt5(xwv430, xwv440, bbb) new_compare13(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), eb, ec, ed) -> new_compare210(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, eb), new_asAs(new_esEs7(xwv401, xwv3001, ec), new_esEs8(xwv402, xwv3002, ed))), eb, ec, ed) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_@0) -> new_ltEs8(xwv430, xwv440) new_esEs11(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_compare31(Float(xwv400, Pos(xwv4010)), Float(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs10(xwv401, xwv3001, app(ty_Ratio, chb)) -> new_esEs12(xwv401, xwv3001, chb) new_esEs7(xwv401, xwv3001, ty_Double) -> new_esEs24(xwv401, xwv3001) new_compare8(True, True) -> EQ new_primPlusNat0(Zero, xwv40100) -> Succ(xwv40100) new_esEs11(xwv400, xwv3000, app(app(ty_Either, ebb), ebc)) -> new_esEs25(xwv400, xwv3000, ebb, ebc) new_ltEs21(xwv431, xwv441, ty_@0) -> new_ltEs8(xwv431, xwv441) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(ty_Maybe, egc)) -> new_esEs22(xwv4000, xwv30000, egc) new_ltEs6(Right(xwv430), Right(xwv440), cb, app(app(ty_Either, cc), cd)) -> new_ltEs6(xwv430, xwv440, cc, cd) new_ltEs19(xwv432, xwv442, ty_Char) -> new_ltEs17(xwv432, xwv442) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs6(xwv400, xwv3000, app(app(app(ty_@3, def), deg), deh)) -> new_esEs19(xwv400, xwv3000, def, deg, deh) new_esEs34(xwv4001, xwv30001, app(app(ty_Either, fcc), fcd)) -> new_esEs25(xwv4001, xwv30001, fcc, fcd) new_esEs33(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs7(xwv401, xwv3001, ty_Char) -> new_esEs23(xwv401, xwv3001) new_esEs36(xwv430, xwv440, ty_Int) -> new_esEs15(xwv430, xwv440) new_ltEs20(xwv129, xwv131, app(ty_Maybe, cce)) -> new_ltEs14(xwv129, xwv131, cce) new_esEs31(xwv431, xwv441, app(ty_Maybe, bag)) -> new_esEs22(xwv431, xwv441, bag) new_ltEs16(EQ, GT) -> True new_ltEs20(xwv129, xwv131, app(app(ty_@2, ccc), ccd)) -> new_ltEs12(xwv129, xwv131, ccc, ccd) new_ltEs6(Left(xwv430), Left(xwv440), ty_Bool, bb) -> new_ltEs4(xwv430, xwv440) new_ltEs21(xwv431, xwv441, ty_Int) -> new_ltEs10(xwv431, xwv441) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_Maybe, bfe)) -> new_ltEs14(xwv430, xwv440, bfe) new_esEs34(xwv4001, xwv30001, ty_Float) -> new_esEs21(xwv4001, xwv30001) new_ltEs16(EQ, EQ) -> True new_esEs28(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_esEs8(xwv402, xwv3002, ty_Float) -> new_esEs21(xwv402, xwv3002) new_lt7(xwv431, xwv441, app(app(app(ty_@3, bab), bac), bad)) -> new_lt12(xwv431, xwv441, bab, bac, bad) new_lt14(xwv115, xwv118, ffc) -> new_esEs17(new_compare18(xwv115, xwv118, ffc), LT) new_lt8(xwv430, xwv440, ty_Ordering) -> new_lt17(xwv430, xwv440) new_esEs30(xwv430, xwv440, app(ty_Maybe, bbh)) -> new_esEs22(xwv430, xwv440, bbh) new_esEs5(xwv400, xwv3000, app(ty_Maybe, dha)) -> new_esEs22(xwv400, xwv3000, dha) new_ltEs22(xwv117, xwv120, ty_Char) -> new_ltEs17(xwv117, xwv120) new_esEs11(xwv400, xwv3000, app(ty_[], ebf)) -> new_esEs27(xwv400, xwv3000, ebf) new_lt8(xwv430, xwv440, app(app(ty_@2, bbf), bbg)) -> new_lt13(xwv430, xwv440, bbf, bbg) new_lt8(xwv430, xwv440, app(ty_Maybe, bbh)) -> new_lt15(xwv430, xwv440, bbh) new_lt12(xwv115, xwv118, bga, bgb, bgc) -> new_esEs17(new_compare13(xwv115, xwv118, bga, bgb, bgc), LT) new_compare0(xwv40, xwv300, ty_Bool) -> new_compare8(xwv40, xwv300) new_esEs9(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs13(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs8(xwv402, xwv3002, ty_Double) -> new_esEs24(xwv402, xwv3002) new_ltEs14(Just(xwv430), Just(xwv440), app(app(ty_@2, bfc), bfd)) -> new_ltEs12(xwv430, xwv440, bfc, bfd) new_ltEs14(Just(xwv430), Just(xwv440), ty_Ordering) -> new_ltEs16(xwv430, xwv440) new_ltEs20(xwv129, xwv131, ty_Ordering) -> new_ltEs16(xwv129, xwv131) new_ltEs19(xwv432, xwv442, ty_Integer) -> new_ltEs9(xwv432, xwv442) new_primMulInt(Neg(xwv30000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv30000, xwv4010)) new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) new_esEs8(xwv402, xwv3002, app(app(ty_Either, edg), edh)) -> new_esEs25(xwv402, xwv3002, edg, edh) new_esEs25(Left(xwv4000), Right(xwv30000), dgc, dgd) -> False new_esEs25(Right(xwv4000), Left(xwv30000), dgc, dgd) -> False new_ltEs5(xwv83, xwv84, ty_Integer) -> new_ltEs9(xwv83, xwv84) new_esEs32(xwv128, xwv130, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs19(xwv128, xwv130, cdb, cdc, cdd) new_ltEs22(xwv117, xwv120, ty_Int) -> new_ltEs10(xwv117, xwv120) new_ltEs19(xwv432, xwv442, ty_@0) -> new_ltEs8(xwv432, xwv442) new_esEs30(xwv430, xwv440, ty_Bool) -> new_esEs18(xwv430, xwv440) new_ltEs5(xwv83, xwv84, ty_Ordering) -> new_ltEs16(xwv83, xwv84) new_ltEs21(xwv431, xwv441, ty_Char) -> new_ltEs17(xwv431, xwv441) new_esEs29(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_esEs29(xwv4001, xwv30001, ty_@0) -> new_esEs20(xwv4001, xwv30001) new_lt20(xwv128, xwv130, ty_Float) -> new_lt19(xwv128, xwv130) new_esEs33(xwv4000, xwv30000, app(ty_[], fbe)) -> new_esEs27(xwv4000, xwv30000, fbe) new_ltEs5(xwv83, xwv84, app(app(ty_@2, cef), ceg)) -> new_ltEs12(xwv83, xwv84, cef, ceg) new_esEs6(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_esEs10(xwv401, xwv3001, app(ty_[], chg)) -> new_esEs27(xwv401, xwv3001, chg) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_ltEs14(Just(xwv430), Just(xwv440), ty_@0) -> new_ltEs8(xwv430, xwv440) new_esEs39(xwv4000, xwv30000, app(ty_Ratio, fgb)) -> new_esEs12(xwv4000, xwv30000, fgb) new_compare11(xwv170, xwv171, False, fef) -> GT new_primMulInt(Pos(xwv30000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv30000, xwv4010)) new_primMulInt(Neg(xwv30000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv30000, xwv4010)) new_compare6(Double(xwv400, Pos(xwv4010)), Double(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_compare6(Double(xwv400, Neg(xwv4010)), Double(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Ordering, dgd) -> new_esEs17(xwv4000, xwv30000) new_lt8(xwv430, xwv440, ty_@0) -> new_lt10(xwv430, xwv440) new_ltEs20(xwv129, xwv131, ty_@0) -> new_ltEs8(xwv129, xwv131) new_ltEs23(xwv50, xwv51, ty_Ordering) -> new_ltEs16(xwv50, xwv51) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_lt17(xwv115, xwv118) -> new_esEs17(new_compare29(xwv115, xwv118), LT) new_lt21(xwv430, xwv440, ty_Int) -> new_lt11(xwv430, xwv440) new_ltEs22(xwv117, xwv120, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs11(xwv117, xwv120, bha, bhb, bhc) new_sr0(Integer(xwv30000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv30000, xwv4010)) new_lt22(xwv116, xwv119, app(app(ty_@2, caf), cag)) -> new_lt13(xwv116, xwv119, caf, cag) new_compare0(xwv40, xwv300, ty_Float) -> new_compare31(xwv40, xwv300) new_esEs31(xwv431, xwv441, ty_Float) -> new_esEs21(xwv431, xwv441) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(app(app(ty_@3, efh), ega), egb)) -> new_esEs19(xwv4000, xwv30000, efh, ega, egb) new_ltEs21(xwv431, xwv441, app(ty_Ratio, feh)) -> new_ltEs13(xwv431, xwv441, feh) new_esEs8(xwv402, xwv3002, ty_Bool) -> new_esEs18(xwv402, xwv3002) new_esEs39(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_lt20(xwv128, xwv130, ty_Double) -> new_lt16(xwv128, xwv130) new_ltEs11(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, hh) -> new_pePe(new_lt8(xwv430, xwv440, gc), new_asAs(new_esEs30(xwv430, xwv440, gc), new_pePe(new_lt7(xwv431, xwv441, gd), new_asAs(new_esEs31(xwv431, xwv441, gd), new_ltEs19(xwv432, xwv442, hh))))) new_esEs9(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_compare211(xwv128, xwv129, xwv130, xwv131, False, cbd, cch) -> new_compare110(xwv128, xwv129, xwv130, xwv131, new_lt20(xwv128, xwv130, cbd), new_asAs(new_esEs32(xwv128, xwv130, cbd), new_ltEs20(xwv129, xwv131, cch)), cbd, cch) new_asAs(True, xwv164) -> xwv164 new_esEs7(xwv401, xwv3001, ty_Int) -> new_esEs15(xwv401, xwv3001) new_lt8(xwv430, xwv440, ty_Int) -> new_lt11(xwv430, xwv440) new_esEs4(xwv400, xwv3000, app(ty_[], dge)) -> new_esEs27(xwv400, xwv3000, dge) new_esEs39(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_ltEs21(xwv431, xwv441, ty_Integer) -> new_ltEs9(xwv431, xwv441) new_ltEs9(xwv43, xwv44) -> new_fsEs(new_compare10(xwv43, xwv44)) new_esEs9(xwv400, xwv3000, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs19(xwv400, xwv3000, ehb, ehc, ehd) new_esEs14(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_ltEs6(Left(xwv430), Left(xwv440), ty_Int, bb) -> new_ltEs10(xwv430, xwv440) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Char, dgd) -> new_esEs23(xwv4000, xwv30000) new_ltEs19(xwv432, xwv442, ty_Double) -> new_ltEs15(xwv432, xwv442) new_compare111(xwv148, xwv149, False, ffa, ffb) -> GT new_compare29(LT, GT) -> LT new_esEs6(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_[], efg), dgd) -> new_esEs27(xwv4000, xwv30000, efg) new_compare29(LT, EQ) -> LT new_ltEs21(xwv431, xwv441, ty_Bool) -> new_ltEs4(xwv431, xwv441) new_compare12(xwv202, xwv203, xwv204, xwv205, False, dcf, dcg) -> GT new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare31(xwv32, xwv33) new_esEs4(xwv400, xwv3000, app(app(ty_@2, chh), daa)) -> new_esEs26(xwv400, xwv3000, chh, daa) new_ltEs21(xwv431, xwv441, app(app(ty_Either, bcb), bcc)) -> new_ltEs6(xwv431, xwv441, bcb, bcc) new_sr(xwv3000, xwv401) -> new_primMulInt(xwv3000, xwv401) new_ltEs16(GT, GT) -> True new_lt7(xwv431, xwv441, ty_Double) -> new_lt16(xwv431, xwv441) new_lt23(xwv115, xwv118, app(ty_[], bfh)) -> new_lt5(xwv115, xwv118, bfh) new_ltEs12(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, bde) -> new_pePe(new_lt21(xwv430, xwv440, bca), new_asAs(new_esEs36(xwv430, xwv440, bca), new_ltEs21(xwv431, xwv441, bde))) new_compare9(:(xwv400, xwv401), :(xwv3000, xwv3001), df) -> new_primCompAux1(xwv400, xwv3000, xwv401, xwv3001, df) new_primMulNat0(Zero, Zero) -> Zero new_esEs39(xwv4000, xwv30000, app(app(ty_@2, fge), fgf)) -> new_esEs26(xwv4000, xwv30000, fge, fgf) new_esEs35(xwv4002, xwv30002, app(ty_Ratio, fdd)) -> new_esEs12(xwv4002, xwv30002, fdd) new_compare0(xwv40, xwv300, ty_Char) -> new_compare30(xwv40, xwv300) new_ltEs5(xwv83, xwv84, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs11(xwv83, xwv84, cec, ced, cee) new_ltEs21(xwv431, xwv441, app(ty_Maybe, bdb)) -> new_ltEs14(xwv431, xwv441, bdb) new_esEs28(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_esEs9(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs19(xwv432, xwv442, app(ty_Ratio, ddb)) -> new_ltEs13(xwv432, xwv442, ddb) new_esEs35(xwv4002, xwv30002, app(ty_[], fea)) -> new_esEs27(xwv4002, xwv30002, fea) new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], fb)) -> new_compare9(xwv32, xwv33, fb) new_compare29(EQ, LT) -> GT new_esEs29(xwv4001, xwv30001, ty_Float) -> new_esEs21(xwv4001, xwv30001) new_lt7(xwv431, xwv441, app(ty_[], baa)) -> new_lt5(xwv431, xwv441, baa) new_ltEs22(xwv117, xwv120, app(ty_Maybe, bhf)) -> new_ltEs14(xwv117, xwv120, bhf) new_esEs35(xwv4002, xwv30002, ty_Double) -> new_esEs24(xwv4002, xwv30002) new_lt8(xwv430, xwv440, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_lt12(xwv430, xwv440, bbc, bbd, bbe) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Ordering) -> new_ltEs16(xwv430, xwv440) new_esEs9(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs36(xwv430, xwv440, app(ty_[], bdf)) -> new_esEs27(xwv430, xwv440, bdf) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_[], beg)) -> new_ltEs7(xwv430, xwv440, beg) new_esEs8(xwv402, xwv3002, ty_Integer) -> new_esEs16(xwv402, xwv3002) new_esEs17(GT, GT) -> True new_esEs7(xwv401, xwv3001, ty_Ordering) -> new_esEs17(xwv401, xwv3001) new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False new_ltEs5(xwv83, xwv84, ty_Int) -> new_ltEs10(xwv83, xwv84) new_ltEs20(xwv129, xwv131, app(ty_Ratio, eee)) -> new_ltEs13(xwv129, xwv131, eee) new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv40000, xwv300000) new_ltEs20(xwv129, xwv131, app(app(ty_Either, cbe), cbf)) -> new_ltEs6(xwv129, xwv131, cbe, cbf) new_esEs8(xwv402, xwv3002, ty_Int) -> new_esEs15(xwv402, xwv3002) new_esEs23(Char(xwv4000), Char(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) new_esEs4(xwv400, xwv3000, app(ty_Ratio, cgc)) -> new_esEs12(xwv400, xwv3000, cgc) new_lt8(xwv430, xwv440, ty_Double) -> new_lt16(xwv430, xwv440) new_compare27(@2(xwv400, xwv401), @2(xwv3000, xwv3001), ee, ef) -> new_compare211(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, ee), new_esEs10(xwv401, xwv3001, ef)), ee, ef) new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv30000)) -> False new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv30000)) -> False new_compare25(xwv43, xwv44, False, fhe, gb) -> new_compare111(xwv43, xwv44, new_ltEs24(xwv43, xwv44, fhe), fhe, gb) new_lt20(xwv128, xwv130, app(ty_Ratio, eed)) -> new_lt14(xwv128, xwv130, eed) new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) new_esEs8(xwv402, xwv3002, app(ty_Maybe, ede)) -> new_esEs22(xwv402, xwv3002, ede) new_esEs38(xwv116, xwv119, ty_Int) -> new_esEs15(xwv116, xwv119) new_esEs8(xwv402, xwv3002, app(app(ty_@2, eea), eeb)) -> new_esEs26(xwv402, xwv3002, eea, eeb) new_ltEs19(xwv432, xwv442, app(app(ty_Either, ge), gf)) -> new_ltEs6(xwv432, xwv442, ge, gf) new_esEs34(xwv4001, xwv30001, app(ty_Ratio, fcb)) -> new_esEs12(xwv4001, xwv30001, fcb) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs22(xwv117, xwv120, ty_Ordering) -> new_ltEs16(xwv117, xwv120) new_ltEs23(xwv50, xwv51, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs11(xwv50, xwv51, cfe, cff, cfg) new_lt22(xwv116, xwv119, ty_Int) -> new_lt11(xwv116, xwv119) new_primCompAux00(xwv32, xwv33, LT, fhc) -> LT new_esEs9(xwv400, xwv3000, app(ty_Maybe, ehe)) -> new_esEs22(xwv400, xwv3000, ehe) new_esEs30(xwv430, xwv440, ty_Float) -> new_esEs21(xwv430, xwv440) new_compare24(xwv83, xwv84, False, cgd) -> new_compare11(xwv83, xwv84, new_ltEs5(xwv83, xwv84, cgd), cgd) new_lt21(xwv430, xwv440, app(app(ty_@2, beb), bec)) -> new_lt13(xwv430, xwv440, beb, bec) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_[], dee)) -> new_esEs27(xwv4000, xwv30000, dee) new_ltEs22(xwv117, xwv120, ty_Bool) -> new_ltEs4(xwv117, xwv120) new_esEs38(xwv116, xwv119, ty_Double) -> new_esEs24(xwv116, xwv119) new_ltEs22(xwv117, xwv120, app(app(ty_Either, bgf), bgg)) -> new_ltEs6(xwv117, xwv120, bgf, bgg) new_esEs7(xwv401, xwv3001, app(app(ty_@2, ecg), ech)) -> new_esEs26(xwv401, xwv3001, ecg, ech) new_not(False) -> True new_ltEs20(xwv129, xwv131, ty_Bool) -> new_ltEs4(xwv129, xwv131) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Int, dgd) -> new_esEs15(xwv4000, xwv30000) new_esEs6(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_lt7(xwv431, xwv441, ty_Int) -> new_lt11(xwv431, xwv441) new_esEs25(Left(xwv4000), Left(xwv30000), app(app(app(ty_@3, eef), eeg), eeh), dgd) -> new_esEs19(xwv4000, xwv30000, eef, eeg, eeh) new_esEs39(xwv4000, xwv30000, app(ty_[], fgg)) -> new_esEs27(xwv4000, xwv30000, fgg) new_ltEs24(xwv43, xwv44, ty_Integer) -> new_ltEs9(xwv43, xwv44) new_ltEs24(xwv43, xwv44, ty_Ordering) -> new_ltEs16(xwv43, xwv44) new_ltEs14(Just(xwv430), Just(xwv440), ty_Float) -> new_ltEs18(xwv430, xwv440) new_esEs28(xwv4000, xwv30000, app(app(ty_Either, dag), dah)) -> new_esEs25(xwv4000, xwv30000, dag, dah) new_ltEs23(xwv50, xwv51, ty_@0) -> new_ltEs8(xwv50, xwv51) new_esEs4(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs5(xwv400, xwv3000, app(ty_[], dhg)) -> new_esEs27(xwv400, xwv3000, dhg) new_compare210(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, caa) -> new_compare16(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, new_lt23(xwv115, xwv118, bgd), new_asAs(new_esEs37(xwv115, xwv118, bgd), new_pePe(new_lt22(xwv116, xwv119, bge), new_asAs(new_esEs38(xwv116, xwv119, bge), new_ltEs22(xwv117, xwv120, caa)))), bgd, bge, caa) new_ltEs23(xwv50, xwv51, app(ty_Maybe, cgb)) -> new_ltEs14(xwv50, xwv51, cgb) new_lt20(xwv128, xwv130, ty_Int) -> new_lt11(xwv128, xwv130) new_lt21(xwv430, xwv440, app(ty_Ratio, feg)) -> new_lt14(xwv430, xwv440, feg) new_ltEs24(xwv43, xwv44, app(app(ty_Either, cb), bb)) -> new_ltEs6(xwv43, xwv44, cb, bb) new_lt20(xwv128, xwv130, app(ty_[], cda)) -> new_lt5(xwv128, xwv130, cda) new_esEs38(xwv116, xwv119, app(ty_Ratio, ffd)) -> new_esEs12(xwv116, xwv119, ffd) new_ltEs7(xwv43, xwv44, de) -> new_fsEs(new_compare9(xwv43, xwv44, de)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs6(Left(xwv430), Left(xwv440), app(app(app(ty_@3, bd), be), bf), bb) -> new_ltEs11(xwv430, xwv440, bd, be, bf) new_compare0(xwv40, xwv300, ty_@0) -> new_compare19(xwv40, xwv300) new_esEs4(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_[], bc), bb) -> new_ltEs7(xwv430, xwv440, bc) new_esEs37(xwv115, xwv118, app(ty_[], bfh)) -> new_esEs27(xwv115, xwv118, bfh) new_ltEs19(xwv432, xwv442, ty_Bool) -> new_ltEs4(xwv432, xwv442) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_Ratio, efb), dgd) -> new_esEs12(xwv4000, xwv30000, efb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt7(xwv431, xwv441, app(ty_Ratio, dda)) -> new_lt14(xwv431, xwv441, dda) new_esEs9(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_primMulNat0(Succ(xwv300000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv300000, Succ(xwv40100)), xwv40100) new_ltEs6(Left(xwv430), Left(xwv440), ty_Double, bb) -> new_ltEs15(xwv430, xwv440) new_ltEs24(xwv43, xwv44, ty_@0) -> new_ltEs8(xwv43, xwv44) new_compare30(Char(xwv400), Char(xwv3000)) -> new_primCmpNat0(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, ty_Bool) -> new_ltEs4(xwv83, xwv84) new_compare29(GT, LT) -> GT new_lt8(xwv430, xwv440, app(ty_Ratio, dch)) -> new_lt14(xwv430, xwv440, dch) new_compare9([], :(xwv3000, xwv3001), df) -> LT new_compare16(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, False, xwv194, eab, eac, ead) -> new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, xwv194, eab, eac, ead) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs36(xwv430, xwv440, app(ty_Ratio, feg)) -> new_esEs12(xwv430, xwv440, feg) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, app(ty_Ratio, ffc)) -> new_esEs12(xwv115, xwv118, ffc) new_primEqNat0(Zero, Zero) -> True new_ltEs21(xwv431, xwv441, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs11(xwv431, xwv441, bce, bcf, bcg) new_lt21(xwv430, xwv440, ty_Double) -> new_lt16(xwv430, xwv440) new_compare0(xwv40, xwv300, ty_Ordering) -> new_compare29(xwv40, xwv300) new_asAs(False, xwv164) -> False new_esEs5(xwv400, xwv3000, app(app(ty_@2, dhe), dhf)) -> new_esEs26(xwv400, xwv3000, dhe, dhf) new_lt23(xwv115, xwv118, app(ty_Ratio, ffc)) -> new_lt14(xwv115, xwv118, ffc) new_ltEs24(xwv43, xwv44, app(ty_Maybe, fed)) -> new_ltEs14(xwv43, xwv44, fed) new_compare0(xwv40, xwv300, app(ty_Maybe, eg)) -> new_compare28(xwv40, xwv300, eg) The set Q consists of the following terms: new_primEqNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Bool) new_esEs21(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_@0) new_primPlusNat1(Zero, Zero) new_esEs35(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(True, True) new_lt8(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_esEs20(@0, @0) new_esEs39(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Float) new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Char) new_lt7(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt16(x0, x1) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Char) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_ltEs10(x0, x1) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Double) new_compare26(x0, x1, False, x2, x3) new_lt7(x0, x1, ty_Integer) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt4(x0, x1) new_esEs39(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs16(GT, EQ) new_ltEs16(EQ, GT) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_@0) new_ltEs16(LT, LT) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs38(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_fsEs(x0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Int) new_esEs15(x0, x1) new_lt8(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Integer) new_compare25(x0, x1, False, x2, x3) new_ltEs23(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Double) new_compare14(Left(x0), Left(x1), x2, x3) new_esEs25(Right(x0), Right(x1), x2, ty_Int) new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Char) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_lt23(x0, x1, ty_Char) new_lt21(x0, x1, ty_Char) new_esEs16(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Integer) new_compare111(x0, x1, True, x2, x3) new_ltEs13(x0, x1, x2) new_ltEs5(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Int) new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_ltEs14(Nothing, Nothing, x0) new_compare28(Nothing, Just(x0), x1) new_ltEs4(True, True) new_ltEs21(x0, x1, ty_Bool) new_compare29(EQ, EQ) new_ltEs22(x0, x1, ty_Ordering) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs22(Just(x0), Just(x1), ty_Int) new_esEs34(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Ordering) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs35(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(False, False) new_esEs33(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Left(x0), Left(x1), ty_@0, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(Right(x0), Right(x1), x2, ty_Integer) new_esEs25(Left(x0), Left(x1), ty_Double, x2) new_compare0(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Char) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare10(Integer(x0), Integer(x1)) new_esEs22(Just(x0), Just(x1), ty_Bool) new_ltEs24(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs32(x0, x1, ty_Float) new_compare19(@0, @0) new_primCompAux00(x0, x1, EQ, ty_Int) new_ltEs23(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt22(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_esEs31(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs10(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Float) new_lt8(x0, x1, ty_Integer) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_ltEs15(x0, x1) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs27(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Ordering) new_primPlusNat0(Succ(x0), x1) new_lt21(x0, x1, ty_Integer) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(Right(x0), Right(x1), x2, x3) new_primEqNat0(Zero, Succ(x0)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Float) new_compare25(x0, x1, True, x2, x3) new_ltEs17(x0, x1) new_esEs10(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt5(x0, x1, x2) new_not(True) new_esEs11(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs22(Just(x0), Just(x1), ty_Float) new_esEs6(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs9(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Integer) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_esEs18(False, False) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs4(True, False) new_ltEs4(False, True) new_esEs25(Right(x0), Right(x1), x2, ty_@0) new_esEs28(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) new_esEs17(EQ, EQ) new_asAs(True, x0) new_esEs35(x0, x1, ty_Double) new_compare211(x0, x1, x2, x3, True, x4, x5) new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Double) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(LT, LT) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Double) new_esEs11(x0, x1, ty_Char) new_esEs27([], [], x0) new_esEs35(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Char) new_lt14(x0, x1, x2) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare0(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Int) new_compare8(True, True) new_esEs36(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2) new_ltEs5(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs4(False, False) new_esEs11(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare211(x0, x1, x2, x3, False, x4, x5) new_compare0(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Bool) new_esEs22(Just(x0), Just(x1), ty_Double) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Ordering) new_not(False) new_esEs11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Int) new_compare24(x0, x1, False, x2) new_esEs17(LT, LT) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_lt21(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1) new_esEs6(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Double) new_primMulNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Ordering) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(Just(x0), Nothing, x1) new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Double) new_primCompAux00(x0, x1, LT, x2) new_esEs32(x0, x1, ty_@0) new_esEs31(x0, x1, ty_@0) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_esEs22(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1) new_esEs37(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Nothing, Nothing, x0) new_ltEs22(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs8(x0, x1, ty_Float) new_lt15(x0, x1, x2) new_lt10(x0, x1) new_esEs34(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_compare0(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Zero) new_compare12(x0, x1, x2, x3, False, x4, x5) new_esEs36(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(x0, x1) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, GT, x2) new_esEs10(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Char) new_esEs25(Left(x0), Right(x1), x2, x3) new_esEs25(Right(x0), Left(x1), x2, x3) new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Integer) new_compare29(EQ, GT) new_compare29(GT, EQ) new_esEs39(x0, x1, ty_Int) new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs28(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Float) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_compare29(LT, GT) new_compare29(GT, LT) new_esEs6(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_compare9([], :(x0, x1), x2) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs27(:(x0, x1), :(x2, x3), x4) new_esEs25(Right(x0), Right(x1), x2, ty_Char) new_compare7(x0, x1) new_esEs25(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_Bool) new_compare27(@2(x0, x1), @2(x2, x3), x4, x5) new_compare8(True, False) new_compare8(False, True) new_esEs28(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_lt18(x0, x1) new_esEs4(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Bool) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, ty_Float) new_esEs22(Nothing, Just(x0), x1) new_lt22(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs8(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Just(x0), Just(x1), ty_Char) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs8(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Float) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_sr0(Integer(x0), Integer(x1)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs14(Just(x0), Just(x1), ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Int) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Int) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Integer) new_asAs(False, x0) new_esEs8(x0, x1, ty_@0) new_pePe(True, x0) new_compare26(x0, x1, True, x2, x3) new_ltEs16(GT, GT) new_esEs6(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Bool) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs31(x0, x1, ty_Float) new_esEs18(False, True) new_esEs18(True, False) new_lt9(x0, x1, x2, x3) new_ltEs24(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Bool) new_lt13(x0, x1, x2, x3) new_esEs39(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs20(x0, x1, ty_Int) new_esEs36(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Integer) new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_compare9(:(x0, x1), [], x2) new_esEs4(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_compare30(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_primEqNat0(Succ(x0), Zero) new_esEs22(Just(x0), Just(x1), ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Int) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs31(x0, x1, ty_Bool) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_esEs22(Nothing, Nothing, x0) new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Double) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Int) new_compare15(x0, x1, True, x2, x3) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Char) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs5(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs9(x0, x1, ty_Integer) new_compare28(Just(x0), Just(x1), x2) new_compare0(x0, x1, ty_Ordering) new_esEs13(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_lt11(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs16(EQ, EQ) new_compare29(LT, EQ) new_compare29(EQ, LT) new_ltEs14(Just(x0), Just(x1), ty_@0) new_lt12(x0, x1, x2, x3, x4) new_esEs22(Just(x0), Just(x1), ty_Integer) new_ltEs9(x0, x1) new_compare0(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_esEs25(Left(x0), Left(x1), ty_Int, x2) new_pePe(False, x0) new_esEs11(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_compare29(GT, GT) new_esEs25(Left(x0), Left(x1), ty_Char, x2) new_lt20(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare11(x0, x1, False, x2) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs39(x0, x1, ty_Float) new_lt22(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs24(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Bool) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Int) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_esEs22(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare14(Left(x0), Right(x1), x2, x3) new_compare14(Right(x0), Left(x1), x2, x3) new_primCompAux00(x0, x1, EQ, ty_Integer) new_primPlusNat0(Zero, x0) new_lt20(x0, x1, ty_Double) new_esEs25(Right(x0), Right(x1), x2, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs17(GT, GT) new_esEs25(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs8(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_ltEs21(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Double(x0, x1), Double(x2, x3)) new_esEs8(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Float) new_lt8(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(Just(x0), Just(x1), ty_Float) new_compare12(x0, x1, x2, x3, True, x4, x5) new_esEs9(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Integer, x2) new_esEs10(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Int) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs14(Nothing, Just(x0), x1) new_esEs28(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_lt8(x0, x1, ty_Double) new_compare15(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Ordering) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs7(x0, x1, x2) new_lt7(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs9(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), ty_Bool, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Bool) new_ltEs14(Just(x0), Nothing, x1) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare9([], [], x0) new_esEs38(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs5(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Ordering) new_esEs27([], :(x0, x1), x2) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Double) new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(x0, x1, ty_Bool) new_compare9(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs25(Left(x0), Left(x1), ty_Float, x2) new_esEs29(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Char) new_primCmpNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (60) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. ---------------------------------------- (61) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs3(Just(xwv430), Just(xwv440), app(ty_[], beg)) -> new_ltEs0(xwv430, xwv440, beg) new_ltEs0(xwv43, xwv44, de) -> new_compare(xwv43, xwv44, de) new_compare(:(xwv400, xwv401), :(xwv3000, xwv3001), df) -> new_primCompAux(xwv400, xwv3000, xwv401, xwv3001, df) new_primCompAux(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), xwv41, xwv301, app(app(app(ty_@3, eb), ec), ed)) -> new_compare21(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, eb), new_asAs(new_esEs7(xwv401, xwv3001, ec), new_esEs8(xwv402, xwv3002, ed))), eb, ec, ed) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(app(ty_@2, bhd), bhe)) -> new_ltEs2(xwv117, xwv120, bhd, bhe) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(app(app(ty_@3, bdg), bdh), bea), bde) -> new_lt1(xwv430, xwv440, bdg, bdh, bea) new_lt1(xwv115, xwv118, bga, bgb, bgc) -> new_compare3(xwv115, xwv118, bga, bgb, bgc) new_compare3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), eb, ec, ed) -> new_compare21(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, eb), new_asAs(new_esEs7(xwv401, xwv3001, ec), new_esEs8(xwv402, xwv3002, ed))), eb, ec, ed) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(ty_Maybe, cbc), bge, caa) -> new_compare5(xwv115, xwv118, cbc) new_compare5(Just(xwv400), Just(xwv3000), eg) -> new_compare23(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, eg), eg) new_compare23(xwv83, xwv84, False, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs1(xwv83, xwv84, cec, ced, cee) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(app(ty_Either, bah), bba), gd, hh) -> new_lt(xwv430, xwv440, bah, bba) new_lt(xwv115, xwv118, bff, bfg) -> new_compare1(xwv115, xwv118, bff, bfg) new_compare1(Right(xwv400), Right(xwv3000), dh, ea) -> new_compare20(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, ea), dh, ea) new_compare20(xwv50, xwv51, False, cfa, app(app(ty_@2, cfh), cga)) -> new_ltEs2(xwv50, xwv51, cfh, cga) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs1(xwv431, xwv441, bce, bcf, bcg) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(app(app(ty_@3, bab), bac), bad), hh) -> new_lt1(xwv431, xwv441, bab, bac, bad) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(app(ty_@2, bae), baf), hh) -> new_lt2(xwv431, xwv441, bae, baf) new_lt2(xwv115, xwv118, cba, cbb) -> new_compare4(xwv115, xwv118, cba, cbb) new_compare4(@2(xwv400, xwv401), @2(xwv3000, xwv3001), ee, ef) -> new_compare22(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, ee), new_esEs10(xwv401, xwv3001, ef)), ee, ef) new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(ty_[], cbg)) -> new_ltEs0(xwv129, xwv131, cbg) new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(app(ty_Either, ccf), ccg), cch) -> new_lt(xwv128, xwv130, ccf, ccg) new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(app(ty_@2, cde), cdf), cch) -> new_lt2(xwv128, xwv130, cde, cdf) new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs1(xwv129, xwv131, cbh, cca, ccb) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(ty_[], gg)) -> new_ltEs0(xwv432, xwv442, gg) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(ty_Maybe, bbh), gd, hh) -> new_lt3(xwv430, xwv440, bbh) new_lt3(xwv115, xwv118, cbc) -> new_compare5(xwv115, xwv118, cbc) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(ty_[], baa), hh) -> new_lt0(xwv431, xwv441, baa) new_lt0(xwv115, xwv118, bfh) -> new_compare(xwv115, xwv118, bfh) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(ty_[], bbb), gd, hh) -> new_lt0(xwv430, xwv440, bbb) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(app(app(ty_@3, bbc), bbd), bbe), gd, hh) -> new_lt1(xwv430, xwv440, bbc, bbd, bbe) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(app(ty_Either, ge), gf)) -> new_ltEs(xwv432, xwv442, ge, gf) new_ltEs(Right(xwv430), Right(xwv440), cb, app(ty_Maybe, dd)) -> new_ltEs3(xwv430, xwv440, dd) new_ltEs3(Just(xwv430), Just(xwv440), app(app(ty_@2, bfc), bfd)) -> new_ltEs2(xwv430, xwv440, bfc, bfd) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(ty_Maybe, bdb)) -> new_ltEs3(xwv431, xwv441, bdb) new_ltEs3(Just(xwv430), Just(xwv440), app(app(ty_Either, bee), bef)) -> new_ltEs(xwv430, xwv440, bee, bef) new_ltEs(Left(xwv430), Left(xwv440), app(app(ty_@2, bg), bh), bb) -> new_ltEs2(xwv430, xwv440, bg, bh) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(ty_Maybe, bed), bde) -> new_lt3(xwv430, xwv440, bed) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(app(ty_Either, bcb), bcc)) -> new_ltEs(xwv431, xwv441, bcb, bcc) new_ltEs(Left(xwv430), Left(xwv440), app(ty_Maybe, ca), bb) -> new_ltEs3(xwv430, xwv440, ca) new_ltEs3(Just(xwv430), Just(xwv440), app(ty_Maybe, bfe)) -> new_ltEs3(xwv430, xwv440, bfe) new_ltEs3(Just(xwv430), Just(xwv440), app(app(app(ty_@3, beh), bfa), bfb)) -> new_ltEs1(xwv430, xwv440, beh, bfa, bfb) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(ty_Maybe, bag), hh) -> new_lt3(xwv431, xwv441, bag) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(app(ty_@2, bbf), bbg), gd, hh) -> new_lt2(xwv430, xwv440, bbf, bbg) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(app(ty_Either, hf), hg), hh) -> new_lt(xwv431, xwv441, hf, hg) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(xwv432, xwv442, gh, ha, hb) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(ty_Maybe, he)) -> new_ltEs3(xwv432, xwv442, he) new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(app(ty_@2, hc), hd)) -> new_ltEs2(xwv432, xwv442, hc, hd) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(app(ty_Either, bdc), bdd), bde) -> new_lt(xwv430, xwv440, bdc, bdd) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(ty_[], bdf), bde) -> new_lt0(xwv430, xwv440, bdf) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(app(ty_@2, beb), bec), bde) -> new_lt2(xwv430, xwv440, beb, bec) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(app(ty_@2, bch), bda)) -> new_ltEs2(xwv431, xwv441, bch, bda) new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(ty_[], bcd)) -> new_ltEs0(xwv431, xwv441, bcd) new_ltEs(Left(xwv430), Left(xwv440), app(app(ty_Either, h), ba), bb) -> new_ltEs(xwv430, xwv440, h, ba) new_ltEs(Right(xwv430), Right(xwv440), cb, app(app(ty_@2, db), dc)) -> new_ltEs2(xwv430, xwv440, db, dc) new_ltEs(Left(xwv430), Left(xwv440), app(ty_[], bc), bb) -> new_ltEs0(xwv430, xwv440, bc) new_ltEs(Left(xwv430), Left(xwv440), app(app(app(ty_@3, bd), be), bf), bb) -> new_ltEs1(xwv430, xwv440, bd, be, bf) new_ltEs(Right(xwv430), Right(xwv440), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(xwv430, xwv440, cc, cd) new_ltEs(Right(xwv430), Right(xwv440), cb, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs1(xwv430, xwv440, cf, cg, da) new_ltEs(Right(xwv430), Right(xwv440), cb, app(ty_[], ce)) -> new_ltEs0(xwv430, xwv440, ce) new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(ty_[], cda), cch) -> new_lt0(xwv128, xwv130, cda) new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(ty_Maybe, cce)) -> new_ltEs3(xwv129, xwv131, cce) new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(app(ty_Either, cbe), cbf)) -> new_ltEs(xwv129, xwv131, cbe, cbf) new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(app(app(ty_@3, cdb), cdc), cdd), cch) -> new_lt1(xwv128, xwv130, cdb, cdc, cdd) new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(ty_Maybe, cdg), cch) -> new_lt3(xwv128, xwv130, cdg) new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(app(ty_@2, ccc), ccd)) -> new_ltEs2(xwv129, xwv131, ccc, ccd) new_compare20(xwv50, xwv51, False, cfa, app(app(ty_Either, cfb), cfc)) -> new_ltEs(xwv50, xwv51, cfb, cfc) new_compare20(xwv50, xwv51, False, cfa, app(ty_[], cfd)) -> new_ltEs0(xwv50, xwv51, cfd) new_compare20(xwv50, xwv51, False, cfa, app(ty_Maybe, cgb)) -> new_ltEs3(xwv50, xwv51, cgb) new_compare20(xwv50, xwv51, False, cfa, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs1(xwv50, xwv51, cfe, cff, cfg) new_compare1(Left(xwv400), Left(xwv3000), dh, ea) -> new_compare2(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, dh), dh, ea) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(app(app(ty_@3, gh), ha), hb)), gb) -> new_ltEs1(xwv432, xwv442, gh, ha, hb) new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(app(ty_@2, bfc), bfd)), gb) -> new_ltEs2(xwv430, xwv440, bfc, bfd) new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(app(ty_@2, bg), bh)), bb), gb) -> new_ltEs2(xwv430, xwv440, bg, bh) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(app(ty_@2, bae), baf)), hh), gb) -> new_lt2(xwv431, xwv441, bae, baf) new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(ty_Maybe, ca)), bb), gb) -> new_ltEs3(xwv430, xwv440, ca) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(app(ty_@2, bch), bda)), gb) -> new_ltEs2(xwv431, xwv441, bch, bda) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(app(ty_@2, beb), bec)), bde), gb) -> new_lt2(xwv430, xwv440, beb, bec) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(app(ty_Either, bcb), bcc)), gb) -> new_ltEs(xwv431, xwv441, bcb, bcc) new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), gb) -> new_ltEs(xwv430, xwv440, cc, cd) new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(ty_Maybe, dd)), gb) -> new_ltEs3(xwv430, xwv440, dd) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(ty_Maybe, bbh)), gd), hh), gb) -> new_lt3(xwv430, xwv440, bbh) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(app(ty_Either, hf), hg)), hh), gb) -> new_lt(xwv431, xwv441, hf, hg) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(ty_[], gg)), gb) -> new_ltEs0(xwv432, xwv442, gg) new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(ty_[], ce)), gb) -> new_ltEs0(xwv430, xwv440, ce) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(app(app(ty_@3, bce), bcf), bcg)), gb) -> new_ltEs1(xwv431, xwv441, bce, bcf, bcg) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(ty_Maybe, bag)), hh), gb) -> new_lt3(xwv431, xwv441, bag) new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(app(ty_Either, bee), bef)), gb) -> new_ltEs(xwv430, xwv440, bee, bef) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(app(ty_Either, bdc), bdd)), bde), gb) -> new_lt(xwv430, xwv440, bdc, bdd) new_compare2(xwv43, xwv44, False, app(ty_[], de), gb) -> new_compare(xwv43, xwv44, de) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(ty_Maybe, he)), gb) -> new_ltEs3(xwv432, xwv442, he) new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), gb) -> new_ltEs(xwv430, xwv440, h, ba) new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(app(app(ty_@3, beh), bfa), bfb)), gb) -> new_ltEs1(xwv430, xwv440, beh, bfa, bfb) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(app(ty_Either, ge), gf)), gb) -> new_ltEs(xwv432, xwv442, ge, gf) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(app(ty_Either, bah), bba)), gd), hh), gb) -> new_lt(xwv430, xwv440, bah, bba) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(ty_[], bcd)), gb) -> new_ltEs0(xwv431, xwv441, bcd) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(app(app(ty_@3, bab), bac), bad)), hh), gb) -> new_lt1(xwv431, xwv441, bab, bac, bad) new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(app(app(ty_@3, cf), cg), da)), gb) -> new_ltEs1(xwv430, xwv440, cf, cg, da) new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(app(app(ty_@3, bd), be), bf)), bb), gb) -> new_ltEs1(xwv430, xwv440, bd, be, bf) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(ty_Maybe, bdb)), gb) -> new_ltEs3(xwv431, xwv441, bdb) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(ty_[], bdf)), bde), gb) -> new_lt0(xwv430, xwv440, bdf) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(ty_[], baa)), hh), gb) -> new_lt0(xwv431, xwv441, baa) new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(app(ty_@2, db), dc)), gb) -> new_ltEs2(xwv430, xwv440, db, dc) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(app(app(ty_@3, bdg), bdh), bea)), bde), gb) -> new_lt1(xwv430, xwv440, bdg, bdh, bea) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(ty_[], bbb)), gd), hh), gb) -> new_lt0(xwv430, xwv440, bbb) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(app(app(ty_@3, bbc), bbd), bbe)), gd), hh), gb) -> new_lt1(xwv430, xwv440, bbc, bbd, bbe) new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(ty_Maybe, bfe)), gb) -> new_ltEs3(xwv430, xwv440, bfe) new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(ty_[], bc)), bb), gb) -> new_ltEs0(xwv430, xwv440, bc) new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(ty_Maybe, bed)), bde), gb) -> new_lt3(xwv430, xwv440, bed) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(app(ty_@2, hc), hd)), gb) -> new_ltEs2(xwv432, xwv442, hc, hd) new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(ty_[], beg)), gb) -> new_ltEs0(xwv430, xwv440, beg) new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(app(ty_@2, bbf), bbg)), gd), hh), gb) -> new_lt2(xwv430, xwv440, bbf, bbg) new_compare23(xwv83, xwv84, False, app(ty_Maybe, ceh)) -> new_ltEs3(xwv83, xwv84, ceh) new_compare23(xwv83, xwv84, False, app(app(ty_Either, cdh), cea)) -> new_ltEs(xwv83, xwv84, cdh, cea) new_compare23(xwv83, xwv84, False, app(ty_[], ceb)) -> new_ltEs0(xwv83, xwv84, ceb) new_compare23(xwv83, xwv84, False, app(app(ty_@2, cef), ceg)) -> new_ltEs2(xwv83, xwv84, cef, ceg) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(app(ty_@2, cba), cbb), bge, caa) -> new_compare4(xwv115, xwv118, cba, cbb) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(app(ty_Either, bgf), bgg)) -> new_ltEs(xwv117, xwv120, bgf, bgg) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs1(xwv117, xwv120, bha, bhb, bhc) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(ty_[], bfh), bge, caa) -> new_compare(xwv115, xwv118, bfh) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(app(ty_@2, caf), cag), caa) -> new_lt2(xwv116, xwv119, caf, cag) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(ty_[], cab), caa) -> new_lt0(xwv116, xwv119, cab) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(ty_[], bgh)) -> new_ltEs0(xwv117, xwv120, bgh) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(ty_Maybe, cah), caa) -> new_lt3(xwv116, xwv119, cah) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(ty_Maybe, bhf)) -> new_ltEs3(xwv117, xwv120, bhf) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(app(ty_Either, bhg), bhh), caa) -> new_lt(xwv116, xwv119, bhg, bhh) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(app(ty_Either, bff), bfg), bge, caa) -> new_compare1(xwv115, xwv118, bff, bfg) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(app(app(ty_@3, cac), cad), cae), caa) -> new_lt1(xwv116, xwv119, cac, cad, cae) new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(app(app(ty_@3, bga), bgb), bgc), bge, caa) -> new_compare3(xwv115, xwv118, bga, bgb, bgc) new_primCompAux(Left(xwv400), Left(xwv3000), xwv41, xwv301, app(app(ty_Either, dh), ea)) -> new_compare2(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, dh), dh, ea) new_primCompAux(xwv40, xwv300, xwv41, xwv301, dg) -> new_primCompAux0(xwv41, xwv301, new_compare0(xwv40, xwv300, dg), app(ty_[], dg)) new_primCompAux0(xwv32, xwv33, EQ, app(ty_[], fb)) -> new_compare(xwv32, xwv33, fb) new_primCompAux(Right(xwv400), Right(xwv3000), xwv41, xwv301, app(app(ty_Either, dh), ea)) -> new_compare20(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, ea), dh, ea) new_primCompAux(@2(xwv400, xwv401), @2(xwv3000, xwv3001), xwv41, xwv301, app(app(ty_@2, ee), ef)) -> new_compare22(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, ee), new_esEs10(xwv401, xwv3001, ef)), ee, ef) new_primCompAux(:(xwv400, xwv401), :(xwv3000, xwv3001), xwv41, xwv301, app(ty_[], df)) -> new_primCompAux(xwv400, xwv3000, xwv401, xwv3001, df) new_primCompAux(Just(xwv400), Just(xwv3000), xwv41, xwv301, app(ty_Maybe, eg)) -> new_compare23(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, eg), eg) The TRS R consists of the following rules: new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs23(xwv50, xwv51, app(ty_Ratio, fha)) -> new_ltEs13(xwv50, xwv51, fha) new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, ga)) -> new_compare28(xwv32, xwv33, ga) new_primCompAux1(xwv40, xwv300, xwv41, xwv301, dg) -> new_primCompAux00(xwv41, xwv301, new_compare0(xwv40, xwv300, dg), app(ty_[], dg)) new_esEs7(xwv401, xwv3001, ty_@0) -> new_esEs20(xwv401, xwv3001) new_pePe(True, xwv231) -> True new_esEs31(xwv431, xwv441, ty_Ordering) -> new_esEs17(xwv431, xwv441) new_ltEs23(xwv50, xwv51, ty_Float) -> new_ltEs18(xwv50, xwv51) new_compare8(True, False) -> GT new_ltEs23(xwv50, xwv51, ty_Integer) -> new_ltEs9(xwv50, xwv51) new_esEs18(True, True) -> True new_lt20(xwv128, xwv130, ty_Ordering) -> new_lt17(xwv128, xwv130) new_esEs7(xwv401, xwv3001, app(app(app(ty_@3, ebh), eca), ecb)) -> new_esEs19(xwv401, xwv3001, ebh, eca, ecb) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Char) -> new_ltEs17(xwv430, xwv440) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare26(xwv50, xwv51, True, cfa, fgh) -> EQ new_esEs33(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_ltEs19(xwv432, xwv442, app(app(ty_@2, hc), hd)) -> new_ltEs12(xwv432, xwv442, hc, hd) new_esEs32(xwv128, xwv130, ty_Int) -> new_esEs15(xwv128, xwv130) new_esEs37(xwv115, xwv118, app(ty_Maybe, cbc)) -> new_esEs22(xwv115, xwv118, cbc) new_esEs31(xwv431, xwv441, ty_Char) -> new_esEs23(xwv431, xwv441) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Integer, dgd) -> new_esEs16(xwv4000, xwv30000) new_lt23(xwv115, xwv118, ty_@0) -> new_lt10(xwv115, xwv118) new_ltEs23(xwv50, xwv51, ty_Double) -> new_ltEs15(xwv50, xwv51) new_compare111(xwv148, xwv149, True, ffa, ffb) -> LT new_lt23(xwv115, xwv118, app(ty_Maybe, cbc)) -> new_lt15(xwv115, xwv118, cbc) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_Ratio, ddh)) -> new_esEs12(xwv4000, xwv30000, ddh) new_esEs5(xwv400, xwv3000, app(ty_Ratio, dhb)) -> new_esEs12(xwv400, xwv3000, dhb) new_esEs33(xwv4000, xwv30000, app(app(ty_@2, fbc), fbd)) -> new_esEs26(xwv4000, xwv30000, fbc, fbd) new_lt22(xwv116, xwv119, app(ty_Ratio, ffd)) -> new_lt14(xwv116, xwv119, ffd) new_compare19(@0, @0) -> EQ new_lt7(xwv431, xwv441, app(app(ty_@2, bae), baf)) -> new_lt13(xwv431, xwv441, bae, baf) new_lt22(xwv116, xwv119, ty_Float) -> new_lt19(xwv116, xwv119) new_lt22(xwv116, xwv119, ty_Integer) -> new_lt6(xwv116, xwv119) new_esEs28(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_ltEs20(xwv129, xwv131, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs11(xwv129, xwv131, cbh, cca, ccb) new_compare110(xwv202, xwv203, xwv204, xwv205, False, xwv207, dcf, dcg) -> new_compare12(xwv202, xwv203, xwv204, xwv205, xwv207, dcf, dcg) new_ltEs21(xwv431, xwv441, ty_Ordering) -> new_ltEs16(xwv431, xwv441) new_esEs30(xwv430, xwv440, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs19(xwv430, xwv440, bbc, bbd, bbe) new_lt20(xwv128, xwv130, app(app(ty_@2, cde), cdf)) -> new_lt13(xwv128, xwv130, cde, cdf) new_esEs15(xwv400, xwv3000) -> new_primEqInt(xwv400, xwv3000) new_primEqNat0(Succ(xwv40000), Succ(xwv300000)) -> new_primEqNat0(xwv40000, xwv300000) new_esEs28(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Float, dgd) -> new_esEs21(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, ty_Double) -> new_esEs24(xwv115, xwv118) new_esEs36(xwv430, xwv440, ty_Ordering) -> new_esEs17(xwv430, xwv440) new_ltEs6(Right(xwv430), Right(xwv440), cb, app(ty_Maybe, dd)) -> new_ltEs14(xwv430, xwv440, dd) new_lt22(xwv116, xwv119, ty_Double) -> new_lt16(xwv116, xwv119) new_not(True) -> False new_esEs37(xwv115, xwv118, ty_Bool) -> new_esEs18(xwv115, xwv118) new_compare6(Double(xwv400, Pos(xwv4010)), Double(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs38(xwv116, xwv119, ty_@0) -> new_esEs20(xwv116, xwv119) new_esEs11(xwv400, xwv3000, app(ty_Ratio, eba)) -> new_esEs12(xwv400, xwv3000, eba) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Integer) -> new_ltEs9(xwv430, xwv440) new_ltEs14(Just(xwv430), Just(xwv440), ty_Int) -> new_ltEs10(xwv430, xwv440) new_esEs22(Nothing, Just(xwv30000), ddc) -> False new_esEs22(Just(xwv4000), Nothing, ddc) -> False new_esEs22(Nothing, Nothing, ddc) -> True new_esEs6(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs9(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_esEs38(xwv116, xwv119, app(app(ty_@2, caf), cag)) -> new_esEs26(xwv116, xwv119, caf, cag) new_esEs22(Just(xwv4000), Just(xwv30000), app(app(ty_@2, dec), ded)) -> new_esEs26(xwv4000, xwv30000, dec, ded) new_lt22(xwv116, xwv119, app(app(ty_Either, bhg), bhh)) -> new_lt9(xwv116, xwv119, bhg, bhh) new_esEs32(xwv128, xwv130, app(ty_Maybe, cdg)) -> new_esEs22(xwv128, xwv130, cdg) new_ltEs6(Left(xwv430), Left(xwv440), app(app(ty_Either, h), ba), bb) -> new_ltEs6(xwv430, xwv440, h, ba) new_esEs37(xwv115, xwv118, ty_Int) -> new_esEs15(xwv115, xwv118) new_primEqNat0(Succ(xwv40000), Zero) -> False new_primEqNat0(Zero, Succ(xwv300000)) -> False new_esEs22(Just(xwv4000), Just(xwv30000), ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_esEs11(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, app(app(ty_Either, cdh), cea)) -> new_ltEs6(xwv83, xwv84, cdh, cea) new_esEs8(xwv402, xwv3002, ty_Ordering) -> new_esEs17(xwv402, xwv3002) new_ltEs21(xwv431, xwv441, app(app(ty_@2, bch), bda)) -> new_ltEs12(xwv431, xwv441, bch, bda) new_esEs25(Left(xwv4000), Left(xwv30000), ty_@0, dgd) -> new_esEs20(xwv4000, xwv30000) new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare6(xwv32, xwv33) new_ltEs20(xwv129, xwv131, ty_Int) -> new_ltEs10(xwv129, xwv131) new_ltEs23(xwv50, xwv51, ty_Char) -> new_ltEs17(xwv50, xwv51) new_esEs8(xwv402, xwv3002, ty_Char) -> new_esEs23(xwv402, xwv3002) new_lt7(xwv431, xwv441, ty_Ordering) -> new_lt17(xwv431, xwv441) new_ltEs14(Just(xwv430), Just(xwv440), ty_Char) -> new_ltEs17(xwv430, xwv440) new_compare15(xwv155, xwv156, True, dhh, eaa) -> LT new_compare210(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, True, bgd, bge, caa) -> EQ new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> GT new_ltEs10(xwv43, xwv44) -> new_fsEs(new_compare7(xwv43, xwv44)) new_compare0(xwv40, xwv300, app(app(app(ty_@3, eb), ec), ed)) -> new_compare13(xwv40, xwv300, eb, ec, ed) new_ltEs22(xwv117, xwv120, ty_@0) -> new_ltEs8(xwv117, xwv120) new_esEs28(xwv4000, xwv30000, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs19(xwv4000, xwv30000, dab, dac, dad) new_ltEs14(Just(xwv430), Just(xwv440), app(app(app(ty_@3, beh), bfa), bfb)) -> new_ltEs11(xwv430, xwv440, beh, bfa, bfb) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(app(ty_@2, egg), egh)) -> new_esEs26(xwv4000, xwv30000, egg, egh) new_esEs35(xwv4002, xwv30002, app(app(ty_Either, fde), fdf)) -> new_esEs25(xwv4002, xwv30002, fde, fdf) new_esEs27(:(xwv4000, xwv4001), :(xwv30000, xwv30001), dge) -> new_asAs(new_esEs39(xwv4000, xwv30000, dge), new_esEs27(xwv4001, xwv30001, dge)) new_esEs38(xwv116, xwv119, ty_Integer) -> new_esEs16(xwv116, xwv119) new_lt22(xwv116, xwv119, app(ty_[], cab)) -> new_lt5(xwv116, xwv119, cab) new_primPlusNat1(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv24200))) new_primCompAux00(xwv32, xwv33, GT, fhc) -> GT new_esEs6(xwv400, xwv3000, app(ty_[], dfg)) -> new_esEs27(xwv400, xwv3000, dfg) new_primCmpNat0(Zero, Succ(xwv30000)) -> LT new_esEs30(xwv430, xwv440, app(app(ty_Either, bah), bba)) -> new_esEs25(xwv430, xwv440, bah, bba) new_ltEs6(Right(xwv430), Right(xwv440), cb, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs11(xwv430, xwv440, cf, cg, da) new_esEs33(xwv4000, xwv30000, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs19(xwv4000, xwv30000, fad, fae, faf) new_esEs10(xwv401, xwv3001, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs19(xwv401, xwv3001, cgf, cgg, cgh) new_esEs39(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_esEs11(xwv400, xwv3000, app(app(ty_@2, ebd), ebe)) -> new_esEs26(xwv400, xwv3000, ebd, ebe) new_esEs5(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs32(xwv128, xwv130, ty_Bool) -> new_esEs18(xwv128, xwv130) new_ltEs19(xwv432, xwv442, app(ty_Maybe, he)) -> new_ltEs14(xwv432, xwv442, he) new_esEs39(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_compare29(EQ, GT) -> LT new_esEs9(xwv400, xwv3000, app(app(ty_Either, ehg), ehh)) -> new_esEs25(xwv400, xwv3000, ehg, ehh) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(app(ty_Either, ege), egf)) -> new_esEs25(xwv4000, xwv30000, ege, egf) new_esEs19(@3(xwv4000, xwv4001, xwv4002), @3(xwv30000, xwv30001, xwv30002), dfh, dga, dgb) -> new_asAs(new_esEs33(xwv4000, xwv30000, dfh), new_asAs(new_esEs34(xwv4001, xwv30001, dga), new_esEs35(xwv4002, xwv30002, dgb))) new_ltEs23(xwv50, xwv51, ty_Int) -> new_ltEs10(xwv50, xwv51) new_esEs29(xwv4001, xwv30001, ty_Char) -> new_esEs23(xwv4001, xwv30001) new_lt22(xwv116, xwv119, app(app(app(ty_@3, cac), cad), cae)) -> new_lt12(xwv116, xwv119, cac, cad, cae) new_lt7(xwv431, xwv441, app(ty_Maybe, bag)) -> new_lt15(xwv431, xwv441, bag) new_ltEs24(xwv43, xwv44, ty_Bool) -> new_ltEs4(xwv43, xwv44) new_esEs36(xwv430, xwv440, app(app(ty_@2, beb), bec)) -> new_esEs26(xwv430, xwv440, beb, bec) new_compare0(xwv40, xwv300, ty_Double) -> new_compare6(xwv40, xwv300) new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv40000, xwv300000) new_esEs4(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_lt23(xwv115, xwv118, app(app(ty_@2, cba), cbb)) -> new_lt13(xwv115, xwv118, cba, cbb) new_esEs32(xwv128, xwv130, app(ty_[], cda)) -> new_esEs27(xwv128, xwv130, cda) new_esEs28(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT new_ltEs20(xwv129, xwv131, ty_Char) -> new_ltEs17(xwv129, xwv131) new_esEs7(xwv401, xwv3001, ty_Integer) -> new_esEs16(xwv401, xwv3001) new_primMulInt(Pos(xwv30000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv30000, xwv4010)) new_esEs5(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_lt11(xwv115, xwv118) -> new_esEs17(new_compare7(xwv115, xwv118), LT) new_esEs33(xwv4000, xwv30000, app(ty_Ratio, fah)) -> new_esEs12(xwv4000, xwv30000, fah) new_esEs27([], [], dge) -> True new_ltEs20(xwv129, xwv131, ty_Double) -> new_ltEs15(xwv129, xwv131) new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, eab, eac, ead) -> LT new_lt9(xwv115, xwv118, bff, bfg) -> new_esEs17(new_compare14(xwv115, xwv118, bff, bfg), LT) new_esEs34(xwv4001, xwv30001, ty_Double) -> new_esEs24(xwv4001, xwv30001) new_esEs7(xwv401, xwv3001, app(app(ty_Either, ece), ecf)) -> new_esEs25(xwv401, xwv3001, ece, ecf) new_lt7(xwv431, xwv441, ty_@0) -> new_lt10(xwv431, xwv441) new_lt5(xwv115, xwv118, bfh) -> new_esEs17(new_compare9(xwv115, xwv118, bfh), LT) new_primMulNat0(Succ(xwv300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xwv40100)) -> Zero new_esEs7(xwv401, xwv3001, ty_Float) -> new_esEs21(xwv401, xwv3001) new_lt23(xwv115, xwv118, ty_Ordering) -> new_lt17(xwv115, xwv118) new_compare8(False, False) -> EQ new_lt20(xwv128, xwv130, ty_@0) -> new_lt10(xwv128, xwv130) new_esEs11(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs34(xwv4001, xwv30001, app(ty_[], fcg)) -> new_esEs27(xwv4001, xwv30001, fcg) new_esEs29(xwv4001, xwv30001, ty_Ordering) -> new_esEs17(xwv4001, xwv30001) new_compare110(xwv202, xwv203, xwv204, xwv205, True, xwv207, dcf, dcg) -> new_compare12(xwv202, xwv203, xwv204, xwv205, True, dcf, dcg) new_compare7(xwv40, xwv300) -> new_primCmpInt(xwv40, xwv300) new_esEs10(xwv401, xwv3001, app(app(ty_Either, chc), chd)) -> new_esEs25(xwv401, xwv3001, chc, chd) new_esEs8(xwv402, xwv3002, app(ty_Ratio, edf)) -> new_esEs12(xwv402, xwv3002, edf) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(ty_Ratio, egd)) -> new_esEs12(xwv4000, xwv30000, egd) new_esEs33(xwv4000, xwv30000, app(app(ty_Either, fba), fbb)) -> new_esEs25(xwv4000, xwv30000, fba, fbb) new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare19(xwv32, xwv33) new_lt19(xwv115, xwv118) -> new_esEs17(new_compare31(xwv115, xwv118), LT) new_esEs32(xwv128, xwv130, ty_Double) -> new_esEs24(xwv128, xwv130) new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) new_primPlusNat1(Zero, Succ(xwv24200)) -> Succ(xwv24200) new_ltEs14(Just(xwv430), Just(xwv440), ty_Integer) -> new_ltEs9(xwv430, xwv440) new_esEs30(xwv430, xwv440, ty_@0) -> new_esEs20(xwv430, xwv440) new_esEs8(xwv402, xwv3002, app(ty_[], eec)) -> new_esEs27(xwv402, xwv3002, eec) new_lt8(xwv430, xwv440, ty_Bool) -> new_lt4(xwv430, xwv440) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Int) -> new_ltEs10(xwv430, xwv440) new_esEs29(xwv4001, xwv30001, ty_Bool) -> new_esEs18(xwv4001, xwv30001) new_esEs6(xwv400, xwv3000, app(ty_Maybe, dfa)) -> new_esEs22(xwv400, xwv3000, dfa) new_esEs32(xwv128, xwv130, app(app(ty_Either, ccf), ccg)) -> new_esEs25(xwv128, xwv130, ccf, ccg) new_ltEs20(xwv129, xwv131, ty_Integer) -> new_ltEs9(xwv129, xwv131) new_ltEs5(xwv83, xwv84, app(ty_Maybe, ceh)) -> new_ltEs14(xwv83, xwv84, ceh) new_esEs30(xwv430, xwv440, ty_Integer) -> new_esEs16(xwv430, xwv440) new_esEs9(xwv400, xwv3000, app(ty_[], fac)) -> new_esEs27(xwv400, xwv3000, fac) new_esEs9(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, ty_@0) -> new_ltEs8(xwv83, xwv84) new_ltEs19(xwv432, xwv442, ty_Ordering) -> new_ltEs16(xwv432, xwv442) new_esEs31(xwv431, xwv441, app(ty_Ratio, dda)) -> new_esEs12(xwv431, xwv441, dda) new_lt21(xwv430, xwv440, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt12(xwv430, xwv440, bdg, bdh, bea) new_esEs35(xwv4002, xwv30002, app(app(ty_@2, fdg), fdh)) -> new_esEs26(xwv4002, xwv30002, fdg, fdh) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Double) -> new_ltEs15(xwv430, xwv440) new_lt21(xwv430, xwv440, ty_@0) -> new_lt10(xwv430, xwv440) new_ltEs6(Left(xwv430), Left(xwv440), ty_Float, bb) -> new_ltEs18(xwv430, xwv440) new_esEs5(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs33(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs35(xwv4002, xwv30002, ty_Int) -> new_esEs15(xwv4002, xwv30002) new_esEs5(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_esEs29(xwv4001, xwv30001, app(ty_Maybe, dbg)) -> new_esEs22(xwv4001, xwv30001, dbg) new_esEs7(xwv401, xwv3001, app(ty_Ratio, ecd)) -> new_esEs12(xwv401, xwv3001, ecd) new_esEs6(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs10(xwv401, xwv3001, ty_Float) -> new_esEs21(xwv401, xwv3001) new_ltEs21(xwv431, xwv441, ty_Double) -> new_ltEs15(xwv431, xwv441) new_esEs10(xwv401, xwv3001, ty_Double) -> new_esEs24(xwv401, xwv3001) new_lt20(xwv128, xwv130, ty_Integer) -> new_lt6(xwv128, xwv130) new_lt22(xwv116, xwv119, ty_Bool) -> new_lt4(xwv116, xwv119) new_ltEs6(Left(xwv430), Left(xwv440), app(app(ty_@2, bg), bh), bb) -> new_ltEs12(xwv430, xwv440, bg, bh) new_esEs10(xwv401, xwv3001, app(app(ty_@2, che), chf)) -> new_esEs26(xwv401, xwv3001, che, chf) new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, eh), fa)) -> new_compare14(xwv32, xwv33, eh, fa) new_esEs38(xwv116, xwv119, ty_Char) -> new_esEs23(xwv116, xwv119) new_esEs37(xwv115, xwv118, app(app(ty_Either, bff), bfg)) -> new_esEs25(xwv115, xwv118, bff, bfg) new_compare18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), ty_Int) -> new_compare7(new_sr(xwv400, xwv3001), new_sr(xwv3000, xwv401)) new_lt22(xwv116, xwv119, ty_Ordering) -> new_lt17(xwv116, xwv119) new_esEs4(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_compare26(xwv50, xwv51, False, cfa, fgh) -> new_compare15(xwv50, xwv51, new_ltEs23(xwv50, xwv51, fgh), cfa, fgh) new_esEs10(xwv401, xwv3001, ty_Integer) -> new_esEs16(xwv401, xwv3001) new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare30(xwv32, xwv33) new_esEs11(xwv400, xwv3000, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs19(xwv400, xwv3000, eae, eaf, eag) new_ltEs21(xwv431, xwv441, ty_Float) -> new_ltEs18(xwv431, xwv441) new_esEs29(xwv4001, xwv30001, ty_Double) -> new_esEs24(xwv4001, xwv30001) new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare10(xwv32, xwv33) new_compare14(Left(xwv400), Right(xwv3000), dh, ea) -> LT new_esEs35(xwv4002, xwv30002, ty_Bool) -> new_esEs18(xwv4002, xwv30002) new_esEs22(Just(xwv4000), Just(xwv30000), app(app(ty_Either, dea), deb)) -> new_esEs25(xwv4000, xwv30000, dea, deb) new_esEs31(xwv431, xwv441, ty_Bool) -> new_esEs18(xwv431, xwv441) new_lt18(xwv115, xwv118) -> new_esEs17(new_compare30(xwv115, xwv118), LT) new_esEs38(xwv116, xwv119, ty_Ordering) -> new_esEs17(xwv116, xwv119) new_esEs33(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_esEs34(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_compare29(GT, EQ) -> GT new_esEs4(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs31(xwv431, xwv441, app(ty_[], baa)) -> new_esEs27(xwv431, xwv441, baa) new_compare0(xwv40, xwv300, app(ty_[], df)) -> new_compare9(xwv40, xwv300, df) new_esEs36(xwv430, xwv440, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs19(xwv430, xwv440, bdg, bdh, bea) new_compare0(xwv40, xwv300, app(app(ty_Either, dh), ea)) -> new_compare14(xwv40, xwv300, dh, ea) new_esEs36(xwv430, xwv440, ty_@0) -> new_esEs20(xwv430, xwv440) new_esEs29(xwv4001, xwv30001, app(ty_Ratio, dbh)) -> new_esEs12(xwv4001, xwv30001, dbh) new_esEs31(xwv431, xwv441, ty_Integer) -> new_esEs16(xwv431, xwv441) new_esEs11(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_esEs39(xwv4000, xwv30000, app(ty_Maybe, fga)) -> new_esEs22(xwv4000, xwv30000, fga) new_esEs28(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_compare0(xwv40, xwv300, app(app(ty_@2, ee), ef)) -> new_compare27(xwv40, xwv300, ee, ef) new_ltEs23(xwv50, xwv51, app(app(ty_@2, cfh), cga)) -> new_ltEs12(xwv50, xwv51, cfh, cga) new_lt7(xwv431, xwv441, ty_Integer) -> new_lt6(xwv431, xwv441) new_esEs18(False, False) -> True new_esEs25(Left(xwv4000), Left(xwv30000), app(app(ty_@2, efe), eff), dgd) -> new_esEs26(xwv4000, xwv30000, efe, eff) new_esEs31(xwv431, xwv441, app(app(ty_@2, bae), baf)) -> new_esEs26(xwv431, xwv441, bae, baf) new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv4000), xwv3000) new_esEs30(xwv430, xwv440, app(ty_Ratio, dch)) -> new_esEs12(xwv430, xwv440, dch) new_esEs4(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_compare10(Integer(xwv400), Integer(xwv3000)) -> new_primCmpInt(xwv400, xwv3000) new_lt7(xwv431, xwv441, app(app(ty_Either, hf), hg)) -> new_lt9(xwv431, xwv441, hf, hg) new_esEs6(xwv400, xwv3000, app(app(ty_Either, dfc), dfd)) -> new_esEs25(xwv400, xwv3000, dfc, dfd) new_esEs4(xwv400, xwv3000, app(ty_Maybe, ddc)) -> new_esEs22(xwv400, xwv3000, ddc) new_lt8(xwv430, xwv440, ty_Integer) -> new_lt6(xwv430, xwv440) new_esEs34(xwv4001, xwv30001, ty_Char) -> new_esEs23(xwv4001, xwv30001) new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, fg), fh)) -> new_compare27(xwv32, xwv33, fg, fh) new_lt7(xwv431, xwv441, ty_Float) -> new_lt19(xwv431, xwv441) new_lt8(xwv430, xwv440, ty_Float) -> new_lt19(xwv430, xwv440) new_esEs14(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_esEs22(Just(xwv4000), Just(xwv30000), ty_@0) -> new_esEs20(xwv4000, xwv30000) new_ltEs6(Right(xwv430), Right(xwv440), cb, app(ty_[], ce)) -> new_ltEs7(xwv430, xwv440, ce) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(ty_[], eha)) -> new_esEs27(xwv4000, xwv30000, eha) new_esEs5(xwv400, xwv3000, app(app(ty_Either, dhc), dhd)) -> new_esEs25(xwv400, xwv3000, dhc, dhd) new_lt20(xwv128, xwv130, app(app(ty_Either, ccf), ccg)) -> new_lt9(xwv128, xwv130, ccf, ccg) new_compare9([], [], df) -> EQ new_ltEs24(xwv43, xwv44, app(ty_[], de)) -> new_ltEs7(xwv43, xwv44, de) new_esEs35(xwv4002, xwv30002, ty_Float) -> new_esEs21(xwv4002, xwv30002) new_esEs39(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, ty_@0) -> new_esEs20(xwv115, xwv118) new_compare31(Float(xwv400, Neg(xwv4010)), Float(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_esEs29(xwv4001, xwv30001, app(ty_[], dce)) -> new_esEs27(xwv4001, xwv30001, dce) new_esEs10(xwv401, xwv3001, ty_Int) -> new_esEs15(xwv401, xwv3001) new_esEs4(xwv400, xwv3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs19(xwv400, xwv3000, dfh, dga, dgb) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_ltEs14(Just(xwv430), Just(xwv440), ty_Double) -> new_ltEs15(xwv430, xwv440) new_esEs10(xwv401, xwv3001, app(ty_Maybe, cha)) -> new_esEs22(xwv401, xwv3001, cha) new_ltEs22(xwv117, xwv120, app(app(ty_@2, bhd), bhe)) -> new_ltEs12(xwv117, xwv120, bhd, bhe) new_esEs30(xwv430, xwv440, ty_Double) -> new_esEs24(xwv430, xwv440) new_esEs36(xwv430, xwv440, ty_Float) -> new_esEs21(xwv430, xwv440) new_ltEs4(True, False) -> False new_ltEs13(xwv43, xwv44, fhb) -> new_fsEs(new_compare18(xwv43, xwv44, fhb)) new_esEs5(xwv400, xwv3000, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs19(xwv400, xwv3000, dgf, dgg, dgh) new_esEs32(xwv128, xwv130, ty_@0) -> new_esEs20(xwv128, xwv130) new_esEs37(xwv115, xwv118, ty_Ordering) -> new_esEs17(xwv115, xwv118) new_ltEs14(Just(xwv430), Nothing, fed) -> False new_ltEs14(Nothing, Nothing, fed) -> True new_lt8(xwv430, xwv440, ty_Char) -> new_lt18(xwv430, xwv440) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_Ratio, feb), bb) -> new_ltEs13(xwv430, xwv440, feb) new_esEs28(xwv4000, xwv30000, app(ty_Ratio, daf)) -> new_esEs12(xwv4000, xwv30000, daf) new_lt21(xwv430, xwv440, app(ty_Maybe, bed)) -> new_lt15(xwv430, xwv440, bed) new_esEs33(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_lt21(xwv430, xwv440, ty_Bool) -> new_lt4(xwv430, xwv440) new_esEs10(xwv401, xwv3001, ty_Bool) -> new_esEs18(xwv401, xwv3001) new_ltEs4(False, False) -> True new_ltEs5(xwv83, xwv84, app(ty_[], ceb)) -> new_ltEs7(xwv83, xwv84, ceb) new_fsEs(xwv226) -> new_not(new_esEs17(xwv226, GT)) new_lt21(xwv430, xwv440, ty_Ordering) -> new_lt17(xwv430, xwv440) new_ltEs18(xwv43, xwv44) -> new_fsEs(new_compare31(xwv43, xwv44)) new_esEs39(xwv4000, xwv30000, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs31(xwv431, xwv441, ty_Int) -> new_esEs15(xwv431, xwv441) new_ltEs24(xwv43, xwv44, app(app(ty_@2, bca), bde)) -> new_ltEs12(xwv43, xwv44, bca, bde) new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, fc), fd), ff)) -> new_compare13(xwv32, xwv33, fc, fd, ff) new_esEs36(xwv430, xwv440, app(ty_Maybe, bed)) -> new_esEs22(xwv430, xwv440, bed) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Char) -> new_esEs23(xwv4000, xwv30000) new_compare28(Just(xwv400), Just(xwv3000), eg) -> new_compare24(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, eg), eg) new_lt8(xwv430, xwv440, app(app(ty_Either, bah), bba)) -> new_lt9(xwv430, xwv440, bah, bba) new_esEs34(xwv4001, xwv30001, ty_Bool) -> new_esEs18(xwv4001, xwv30001) new_lt7(xwv431, xwv441, ty_Char) -> new_lt18(xwv431, xwv441) new_ltEs6(Right(xwv430), Right(xwv440), cb, app(app(ty_@2, db), dc)) -> new_ltEs12(xwv430, xwv440, db, dc) new_ltEs14(Just(xwv430), Just(xwv440), ty_Bool) -> new_ltEs4(xwv430, xwv440) new_ltEs19(xwv432, xwv442, app(ty_[], gg)) -> new_ltEs7(xwv432, xwv442, gg) new_ltEs6(Right(xwv430), Left(xwv440), cb, bb) -> False new_esEs11(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Float) -> new_esEs21(xwv4000, xwv30000) new_ltEs8(xwv43, xwv44) -> new_fsEs(new_compare19(xwv43, xwv44)) new_esEs35(xwv4002, xwv30002, app(app(app(ty_@3, fch), fda), fdb)) -> new_esEs19(xwv4002, xwv30002, fch, fda, fdb) new_esEs18(False, True) -> False new_esEs18(True, False) -> False new_esEs33(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, app(app(ty_Either, bdc), bdd)) -> new_esEs25(xwv430, xwv440, bdc, bdd) new_esEs16(Integer(xwv4000), Integer(xwv30000)) -> new_primEqInt(xwv4000, xwv30000) new_esEs10(xwv401, xwv3001, ty_@0) -> new_esEs20(xwv401, xwv3001) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_Ratio, fee)) -> new_ltEs13(xwv430, xwv440, fee) new_lt22(xwv116, xwv119, ty_Char) -> new_lt18(xwv116, xwv119) new_esEs11(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs20(xwv129, xwv131, app(ty_[], cbg)) -> new_ltEs7(xwv129, xwv131, cbg) new_ltEs6(Left(xwv430), Left(xwv440), ty_Ordering, bb) -> new_ltEs16(xwv430, xwv440) new_esEs37(xwv115, xwv118, ty_Float) -> new_esEs21(xwv115, xwv118) new_esEs5(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs4(xwv400, xwv3000, app(app(ty_Either, dgc), dgd)) -> new_esEs25(xwv400, xwv3000, dgc, dgd) new_esEs28(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs34(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_compare31(Float(xwv400, Pos(xwv4010)), Float(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_compare31(Float(xwv400, Neg(xwv4010)), Float(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_primPlusNat0(Succ(xwv2370), xwv40100) -> Succ(Succ(new_primPlusNat1(xwv2370, xwv40100))) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_Maybe, efa), dgd) -> new_esEs22(xwv4000, xwv30000, efa) new_lt20(xwv128, xwv130, app(ty_Maybe, cdg)) -> new_lt15(xwv128, xwv130, cdg) new_esEs28(xwv4000, xwv30000, app(app(ty_@2, dba), dbb)) -> new_esEs26(xwv4000, xwv30000, dba, dbb) new_esEs11(xwv400, xwv3000, app(ty_Maybe, eah)) -> new_esEs22(xwv400, xwv3000, eah) new_primPlusNat1(Zero, Zero) -> Zero new_esEs34(xwv4001, xwv30001, app(ty_Maybe, fca)) -> new_esEs22(xwv4001, xwv30001, fca) new_esEs37(xwv115, xwv118, ty_Char) -> new_esEs23(xwv115, xwv118) new_ltEs6(Left(xwv430), Left(xwv440), ty_@0, bb) -> new_ltEs8(xwv430, xwv440) new_ltEs22(xwv117, xwv120, ty_Float) -> new_ltEs18(xwv117, xwv120) new_ltEs23(xwv50, xwv51, app(ty_[], cfd)) -> new_ltEs7(xwv50, xwv51, cfd) new_ltEs6(Left(xwv430), Left(xwv440), ty_Integer, bb) -> new_ltEs9(xwv430, xwv440) new_compare14(Right(xwv400), Left(xwv3000), dh, ea) -> GT new_esEs22(Just(xwv4000), Just(xwv30000), app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs19(xwv4000, xwv30000, ddd, dde, ddf) new_esEs38(xwv116, xwv119, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs19(xwv116, xwv119, cac, cad, cae) new_esEs24(Double(xwv4000, xwv4001), Double(xwv30000, xwv30001)) -> new_esEs15(new_sr(xwv4000, xwv30001), new_sr(xwv4001, xwv30000)) new_ltEs22(xwv117, xwv120, app(ty_[], bgh)) -> new_ltEs7(xwv117, xwv120, bgh) new_ltEs4(True, True) -> True new_esEs29(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_esEs35(xwv4002, xwv30002, ty_Ordering) -> new_esEs17(xwv4002, xwv30002) new_compare0(xwv40, xwv300, ty_Integer) -> new_compare10(xwv40, xwv300) new_primCmpNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primCmpNat0(xwv4000, xwv30000) new_lt4(xwv115, xwv118) -> new_esEs17(new_compare8(xwv115, xwv118), LT) new_esEs30(xwv430, xwv440, app(app(ty_@2, bbf), bbg)) -> new_esEs26(xwv430, xwv440, bbf, bbg) new_esEs35(xwv4002, xwv30002, ty_Char) -> new_esEs23(xwv4002, xwv30002) new_esEs11(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_compare8(False, True) -> LT new_ltEs21(xwv431, xwv441, app(ty_[], bcd)) -> new_ltEs7(xwv431, xwv441, bcd) new_esEs34(xwv4001, xwv30001, ty_Ordering) -> new_esEs17(xwv4001, xwv30001) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Float) -> new_ltEs18(xwv430, xwv440) new_esEs36(xwv430, xwv440, ty_Integer) -> new_esEs16(xwv430, xwv440) new_ltEs19(xwv432, xwv442, ty_Float) -> new_ltEs18(xwv432, xwv442) new_compare15(xwv155, xwv156, False, dhh, eaa) -> GT new_lt20(xwv128, xwv130, ty_Char) -> new_lt18(xwv128, xwv130) new_esEs13(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_lt23(xwv115, xwv118, app(app(ty_Either, bff), bfg)) -> new_lt9(xwv115, xwv118, bff, bfg) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, ty_Char) -> new_esEs23(xwv430, xwv440) new_compare14(Right(xwv400), Right(xwv3000), dh, ea) -> new_compare26(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, ea), dh, ea) new_ltEs20(xwv129, xwv131, ty_Float) -> new_ltEs18(xwv129, xwv131) new_esEs35(xwv4002, xwv30002, ty_Integer) -> new_esEs16(xwv4002, xwv30002) new_lt21(xwv430, xwv440, ty_Char) -> new_lt18(xwv430, xwv440) new_compare14(Left(xwv400), Left(xwv3000), dh, ea) -> new_compare25(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, dh), dh, ea) new_esEs36(xwv430, xwv440, ty_Bool) -> new_esEs18(xwv430, xwv440) new_lt21(xwv430, xwv440, ty_Integer) -> new_lt6(xwv430, xwv440) new_esEs38(xwv116, xwv119, ty_Float) -> new_esEs21(xwv116, xwv119) new_ltEs6(Left(xwv430), Left(xwv440), ty_Char, bb) -> new_ltEs17(xwv430, xwv440) new_ltEs6(Left(xwv430), Right(xwv440), cb, bb) -> True new_esEs30(xwv430, xwv440, ty_Int) -> new_esEs15(xwv430, xwv440) new_lt16(xwv115, xwv118) -> new_esEs17(new_compare6(xwv115, xwv118), LT) new_esEs35(xwv4002, xwv30002, app(ty_Maybe, fdc)) -> new_esEs22(xwv4002, xwv30002, fdc) new_esEs38(xwv116, xwv119, app(app(ty_Either, bhg), bhh)) -> new_esEs25(xwv116, xwv119, bhg, bhh) new_compare18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), ty_Integer) -> new_compare10(new_sr0(xwv400, xwv3001), new_sr0(xwv3000, xwv401)) new_esEs37(xwv115, xwv118, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs19(xwv115, xwv118, bga, bgb, bgc) new_esEs35(xwv4002, xwv30002, ty_@0) -> new_esEs20(xwv4002, xwv30002) new_esEs29(xwv4001, xwv30001, app(app(ty_@2, dcc), dcd)) -> new_esEs26(xwv4001, xwv30001, dcc, dcd) new_compare28(Nothing, Just(xwv3000), eg) -> LT new_esEs4(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Double) -> new_esEs24(xwv4000, xwv30000) new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> LT new_compare11(xwv170, xwv171, True, fef) -> LT new_esEs27(:(xwv4000, xwv4001), [], dge) -> False new_esEs27([], :(xwv30000, xwv30001), dge) -> False new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare8(xwv32, xwv33) new_lt15(xwv115, xwv118, cbc) -> new_esEs17(new_compare28(xwv115, xwv118, cbc), LT) new_esEs5(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_esEs34(xwv4001, xwv30001, ty_@0) -> new_esEs20(xwv4001, xwv30001) new_esEs38(xwv116, xwv119, app(ty_[], cab)) -> new_esEs27(xwv116, xwv119, cab) new_esEs6(xwv400, xwv3000, app(app(ty_@2, dfe), dff)) -> new_esEs26(xwv400, xwv3000, dfe, dff) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT new_esEs34(xwv4001, xwv30001, app(app(app(ty_@3, fbf), fbg), fbh)) -> new_esEs19(xwv4001, xwv30001, fbf, fbg, fbh) new_ltEs24(xwv43, xwv44, ty_Int) -> new_ltEs10(xwv43, xwv44) new_ltEs23(xwv50, xwv51, app(app(ty_Either, cfb), cfc)) -> new_ltEs6(xwv50, xwv51, cfb, cfc) new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv4000)) new_esEs6(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs23(xwv50, xwv51, ty_Bool) -> new_ltEs4(xwv50, xwv51) new_compare12(xwv202, xwv203, xwv204, xwv205, True, dcf, dcg) -> LT new_esEs32(xwv128, xwv130, app(ty_Ratio, eed)) -> new_esEs12(xwv128, xwv130, eed) new_esEs4(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs4(False, True) -> True new_ltEs15(xwv43, xwv44) -> new_fsEs(new_compare6(xwv43, xwv44)) new_lt7(xwv431, xwv441, ty_Bool) -> new_lt4(xwv431, xwv441) new_ltEs14(Nothing, Just(xwv440), fed) -> True new_lt20(xwv128, xwv130, ty_Bool) -> new_lt4(xwv128, xwv130) new_esEs39(xwv4000, xwv30000, app(app(ty_Either, fgc), fgd)) -> new_esEs25(xwv4000, xwv30000, fgc, fgd) new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False new_esEs10(xwv401, xwv3001, ty_Ordering) -> new_esEs17(xwv401, xwv3001) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Bool) -> new_ltEs4(xwv430, xwv440) new_esEs17(LT, LT) -> True new_ltEs17(xwv43, xwv44) -> new_fsEs(new_compare30(xwv43, xwv44)) new_lt23(xwv115, xwv118, ty_Int) -> new_lt11(xwv115, xwv118) new_esEs28(xwv4000, xwv30000, app(ty_[], dbc)) -> new_esEs27(xwv4000, xwv30000, dbc) new_compare0(xwv40, xwv300, app(ty_Ratio, ebg)) -> new_compare18(xwv40, xwv300, ebg) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Bool, dgd) -> new_esEs18(xwv4000, xwv30000) new_esEs25(Left(xwv4000), Left(xwv30000), app(app(ty_Either, efc), efd), dgd) -> new_esEs25(xwv4000, xwv30000, efc, efd) new_esEs11(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare7(xwv32, xwv33) new_ltEs5(xwv83, xwv84, ty_Float) -> new_ltEs18(xwv83, xwv84) new_esEs39(xwv4000, xwv30000, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_esEs38(xwv116, xwv119, ty_Bool) -> new_esEs18(xwv116, xwv119) new_ltEs5(xwv83, xwv84, ty_Double) -> new_ltEs15(xwv83, xwv84) new_esEs7(xwv401, xwv3001, app(ty_[], eda)) -> new_esEs27(xwv401, xwv3001, eda) new_lt21(xwv430, xwv440, app(app(ty_Either, bdc), bdd)) -> new_lt9(xwv430, xwv440, bdc, bdd) new_ltEs5(xwv83, xwv84, app(ty_Ratio, cge)) -> new_ltEs13(xwv83, xwv84, cge) new_primCmpNat0(Zero, Zero) -> EQ new_esEs20(@0, @0) -> True new_esEs37(xwv115, xwv118, ty_Integer) -> new_esEs16(xwv115, xwv118) new_esEs10(xwv401, xwv3001, ty_Char) -> new_esEs23(xwv401, xwv3001) new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, fhd)) -> new_compare18(xwv32, xwv33, fhd) new_ltEs16(GT, EQ) -> False new_esEs22(Just(xwv4000), Just(xwv30000), ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_compare0(xwv40, xwv300, ty_Int) -> new_compare7(xwv40, xwv300) new_lt23(xwv115, xwv118, ty_Double) -> new_lt16(xwv115, xwv118) new_compare29(EQ, EQ) -> EQ new_lt23(xwv115, xwv118, app(app(app(ty_@3, bga), bgb), bgc)) -> new_lt12(xwv115, xwv118, bga, bgb, bgc) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_Maybe, ca), bb) -> new_ltEs14(xwv430, xwv440, ca) new_esEs39(xwv4000, xwv30000, app(app(app(ty_@3, fff), ffg), ffh)) -> new_esEs19(xwv4000, xwv30000, fff, ffg, ffh) new_esEs5(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_lt23(xwv115, xwv118, ty_Integer) -> new_lt6(xwv115, xwv118) new_esEs22(Just(xwv4000), Just(xwv30000), ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs29(xwv4001, xwv30001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs19(xwv4001, xwv30001, dbd, dbe, dbf) new_esEs37(xwv115, xwv118, app(app(ty_@2, cba), cbb)) -> new_esEs26(xwv115, xwv118, cba, cbb) new_compare28(Just(xwv400), Nothing, eg) -> GT new_ltEs19(xwv432, xwv442, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs11(xwv432, xwv442, gh, ha, hb) new_esEs26(@2(xwv4000, xwv4001), @2(xwv30000, xwv30001), chh, daa) -> new_asAs(new_esEs28(xwv4000, xwv30000, chh), new_esEs29(xwv4001, xwv30001, daa)) new_esEs9(xwv400, xwv3000, app(ty_Ratio, ehf)) -> new_esEs12(xwv400, xwv3000, ehf) new_lt21(xwv430, xwv440, app(ty_[], bdf)) -> new_lt5(xwv430, xwv440, bdf) new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare29(xwv32, xwv33) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_Maybe, ddg)) -> new_esEs22(xwv4000, xwv30000, ddg) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs33(xwv4000, xwv30000, app(ty_Maybe, fag)) -> new_esEs22(xwv4000, xwv30000, fag) new_esEs38(xwv116, xwv119, app(ty_Maybe, cah)) -> new_esEs22(xwv116, xwv119, cah) new_esEs33(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs36(xwv430, xwv440, ty_Double) -> new_esEs24(xwv430, xwv440) new_esEs6(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_ltEs24(xwv43, xwv44, ty_Double) -> new_ltEs15(xwv43, xwv44) new_esEs12(:%(xwv4000, xwv4001), :%(xwv30000, xwv30001), cgc) -> new_asAs(new_esEs13(xwv4000, xwv30000, cgc), new_esEs14(xwv4001, xwv30001, cgc)) new_compare6(Double(xwv400, Neg(xwv4010)), Double(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_ltEs16(LT, LT) -> True new_esEs29(xwv4001, xwv30001, app(app(ty_Either, dca), dcb)) -> new_esEs25(xwv4001, xwv30001, dca, dcb) new_esEs32(xwv128, xwv130, app(app(ty_@2, cde), cdf)) -> new_esEs26(xwv128, xwv130, cde, cdf) new_esEs9(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_ltEs24(xwv43, xwv44, ty_Char) -> new_ltEs17(xwv43, xwv44) new_lt23(xwv115, xwv118, ty_Char) -> new_lt18(xwv115, xwv118) new_lt23(xwv115, xwv118, ty_Float) -> new_lt19(xwv115, xwv118) new_ltEs24(xwv43, xwv44, app(app(app(ty_@3, gc), gd), hh)) -> new_ltEs11(xwv43, xwv44, gc, gd, hh) new_esEs8(xwv402, xwv3002, ty_@0) -> new_esEs20(xwv402, xwv3002) new_esEs30(xwv430, xwv440, app(ty_[], bbb)) -> new_esEs27(xwv430, xwv440, bbb) new_compare29(GT, GT) -> EQ new_esEs32(xwv128, xwv130, ty_Ordering) -> new_esEs17(xwv128, xwv130) new_ltEs22(xwv117, xwv120, ty_Integer) -> new_ltEs9(xwv117, xwv120) new_lt6(xwv115, xwv118) -> new_esEs17(new_compare10(xwv115, xwv118), LT) new_esEs33(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_compare28(Nothing, Nothing, eg) -> EQ new_compare9(:(xwv400, xwv401), [], df) -> GT new_esEs34(xwv4001, xwv30001, app(app(ty_@2, fce), fcf)) -> new_esEs26(xwv4001, xwv30001, fce, fcf) new_compare16(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, xwv194, eab, eac, ead) -> new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, True, eab, eac, ead) new_esEs32(xwv128, xwv130, ty_Integer) -> new_esEs16(xwv128, xwv130) new_primCmpNat0(Succ(xwv4000), Zero) -> GT new_lt10(xwv115, xwv118) -> new_esEs17(new_compare19(xwv115, xwv118), LT) new_lt20(xwv128, xwv130, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt12(xwv128, xwv130, cdb, cdc, cdd) new_pePe(False, xwv231) -> xwv231 new_ltEs5(xwv83, xwv84, ty_Char) -> new_ltEs17(xwv83, xwv84) new_lt13(xwv115, xwv118, cba, cbb) -> new_esEs17(new_compare27(xwv115, xwv118, cba, cbb), LT) new_esEs21(Float(xwv4000, xwv4001), Float(xwv30000, xwv30001)) -> new_esEs15(new_sr(xwv4000, xwv30001), new_sr(xwv4001, xwv30000)) new_ltEs19(xwv432, xwv442, ty_Int) -> new_ltEs10(xwv432, xwv442) new_ltEs22(xwv117, xwv120, app(ty_Ratio, ffe)) -> new_ltEs13(xwv117, xwv120, ffe) new_ltEs22(xwv117, xwv120, ty_Double) -> new_ltEs15(xwv117, xwv120) new_compare25(xwv43, xwv44, True, fhe, gb) -> EQ new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, False, eab, eac, ead) -> GT new_esEs28(xwv4000, xwv30000, app(ty_Maybe, dae)) -> new_esEs22(xwv4000, xwv30000, dae) new_esEs7(xwv401, xwv3001, ty_Bool) -> new_esEs18(xwv401, xwv3001) new_esEs30(xwv430, xwv440, ty_Char) -> new_esEs23(xwv430, xwv440) new_ltEs14(Just(xwv430), Just(xwv440), app(app(ty_Either, bee), bef)) -> new_ltEs6(xwv430, xwv440, bee, bef) new_lt22(xwv116, xwv119, app(ty_Maybe, cah)) -> new_lt15(xwv116, xwv119, cah) new_ltEs16(LT, GT) -> True new_ltEs6(Right(xwv430), Right(xwv440), cb, app(ty_Ratio, fec)) -> new_ltEs13(xwv430, xwv440, fec) new_lt23(xwv115, xwv118, ty_Bool) -> new_lt4(xwv115, xwv118) new_ltEs24(xwv43, xwv44, ty_Float) -> new_ltEs18(xwv43, xwv44) new_ltEs24(xwv43, xwv44, app(ty_Ratio, fhb)) -> new_ltEs13(xwv43, xwv44, fhb) new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_esEs30(xwv430, xwv440, ty_Ordering) -> new_esEs17(xwv430, xwv440) new_esEs5(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_lt21(xwv430, xwv440, ty_Float) -> new_lt19(xwv430, xwv440) new_esEs8(xwv402, xwv3002, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs19(xwv402, xwv3002, edb, edc, edd) new_esEs6(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False new_compare24(xwv83, xwv84, True, cgd) -> EQ new_esEs31(xwv431, xwv441, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs19(xwv431, xwv441, bab, bac, bad) new_compare211(xwv128, xwv129, xwv130, xwv131, True, cbd, cch) -> EQ new_ltEs16(GT, LT) -> False new_esEs31(xwv431, xwv441, ty_@0) -> new_esEs20(xwv431, xwv441) new_esEs39(xwv4000, xwv30000, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_esEs17(EQ, EQ) -> True new_lt22(xwv116, xwv119, ty_@0) -> new_lt10(xwv116, xwv119) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Double, dgd) -> new_esEs24(xwv4000, xwv30000) new_esEs31(xwv431, xwv441, ty_Double) -> new_esEs24(xwv431, xwv441) new_esEs32(xwv128, xwv130, ty_Float) -> new_esEs21(xwv128, xwv130) new_compare29(LT, LT) -> EQ new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs28(xwv4000, xwv30000, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_esEs7(xwv401, xwv3001, app(ty_Maybe, ecc)) -> new_esEs22(xwv401, xwv3001, ecc) new_esEs6(xwv400, xwv3000, app(ty_Ratio, dfb)) -> new_esEs12(xwv400, xwv3000, dfb) new_esEs32(xwv128, xwv130, ty_Char) -> new_esEs23(xwv128, xwv130) new_esEs9(xwv400, xwv3000, app(app(ty_@2, faa), fab)) -> new_esEs26(xwv400, xwv3000, faa, fab) new_esEs31(xwv431, xwv441, app(app(ty_Either, hf), hg)) -> new_esEs25(xwv431, xwv441, hf, hg) new_lt8(xwv430, xwv440, app(ty_[], bbb)) -> new_lt5(xwv430, xwv440, bbb) new_compare13(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), eb, ec, ed) -> new_compare210(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, eb), new_asAs(new_esEs7(xwv401, xwv3001, ec), new_esEs8(xwv402, xwv3002, ed))), eb, ec, ed) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_@0) -> new_ltEs8(xwv430, xwv440) new_esEs11(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_compare31(Float(xwv400, Pos(xwv4010)), Float(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs10(xwv401, xwv3001, app(ty_Ratio, chb)) -> new_esEs12(xwv401, xwv3001, chb) new_esEs7(xwv401, xwv3001, ty_Double) -> new_esEs24(xwv401, xwv3001) new_compare8(True, True) -> EQ new_primPlusNat0(Zero, xwv40100) -> Succ(xwv40100) new_esEs11(xwv400, xwv3000, app(app(ty_Either, ebb), ebc)) -> new_esEs25(xwv400, xwv3000, ebb, ebc) new_ltEs21(xwv431, xwv441, ty_@0) -> new_ltEs8(xwv431, xwv441) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(ty_Maybe, egc)) -> new_esEs22(xwv4000, xwv30000, egc) new_ltEs6(Right(xwv430), Right(xwv440), cb, app(app(ty_Either, cc), cd)) -> new_ltEs6(xwv430, xwv440, cc, cd) new_ltEs19(xwv432, xwv442, ty_Char) -> new_ltEs17(xwv432, xwv442) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs6(xwv400, xwv3000, app(app(app(ty_@3, def), deg), deh)) -> new_esEs19(xwv400, xwv3000, def, deg, deh) new_esEs34(xwv4001, xwv30001, app(app(ty_Either, fcc), fcd)) -> new_esEs25(xwv4001, xwv30001, fcc, fcd) new_esEs33(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_esEs7(xwv401, xwv3001, ty_Char) -> new_esEs23(xwv401, xwv3001) new_esEs36(xwv430, xwv440, ty_Int) -> new_esEs15(xwv430, xwv440) new_ltEs20(xwv129, xwv131, app(ty_Maybe, cce)) -> new_ltEs14(xwv129, xwv131, cce) new_esEs31(xwv431, xwv441, app(ty_Maybe, bag)) -> new_esEs22(xwv431, xwv441, bag) new_ltEs16(EQ, GT) -> True new_ltEs20(xwv129, xwv131, app(app(ty_@2, ccc), ccd)) -> new_ltEs12(xwv129, xwv131, ccc, ccd) new_ltEs6(Left(xwv430), Left(xwv440), ty_Bool, bb) -> new_ltEs4(xwv430, xwv440) new_ltEs21(xwv431, xwv441, ty_Int) -> new_ltEs10(xwv431, xwv441) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_Maybe, bfe)) -> new_ltEs14(xwv430, xwv440, bfe) new_esEs34(xwv4001, xwv30001, ty_Float) -> new_esEs21(xwv4001, xwv30001) new_ltEs16(EQ, EQ) -> True new_esEs28(xwv4000, xwv30000, ty_Ordering) -> new_esEs17(xwv4000, xwv30000) new_esEs8(xwv402, xwv3002, ty_Float) -> new_esEs21(xwv402, xwv3002) new_lt7(xwv431, xwv441, app(app(app(ty_@3, bab), bac), bad)) -> new_lt12(xwv431, xwv441, bab, bac, bad) new_lt14(xwv115, xwv118, ffc) -> new_esEs17(new_compare18(xwv115, xwv118, ffc), LT) new_lt8(xwv430, xwv440, ty_Ordering) -> new_lt17(xwv430, xwv440) new_esEs30(xwv430, xwv440, app(ty_Maybe, bbh)) -> new_esEs22(xwv430, xwv440, bbh) new_esEs5(xwv400, xwv3000, app(ty_Maybe, dha)) -> new_esEs22(xwv400, xwv3000, dha) new_ltEs22(xwv117, xwv120, ty_Char) -> new_ltEs17(xwv117, xwv120) new_esEs11(xwv400, xwv3000, app(ty_[], ebf)) -> new_esEs27(xwv400, xwv3000, ebf) new_lt8(xwv430, xwv440, app(app(ty_@2, bbf), bbg)) -> new_lt13(xwv430, xwv440, bbf, bbg) new_lt8(xwv430, xwv440, app(ty_Maybe, bbh)) -> new_lt15(xwv430, xwv440, bbh) new_lt12(xwv115, xwv118, bga, bgb, bgc) -> new_esEs17(new_compare13(xwv115, xwv118, bga, bgb, bgc), LT) new_compare0(xwv40, xwv300, ty_Bool) -> new_compare8(xwv40, xwv300) new_esEs9(xwv400, xwv3000, ty_Float) -> new_esEs21(xwv400, xwv3000) new_esEs13(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_esEs8(xwv402, xwv3002, ty_Double) -> new_esEs24(xwv402, xwv3002) new_ltEs14(Just(xwv430), Just(xwv440), app(app(ty_@2, bfc), bfd)) -> new_ltEs12(xwv430, xwv440, bfc, bfd) new_ltEs14(Just(xwv430), Just(xwv440), ty_Ordering) -> new_ltEs16(xwv430, xwv440) new_ltEs20(xwv129, xwv131, ty_Ordering) -> new_ltEs16(xwv129, xwv131) new_ltEs19(xwv432, xwv442, ty_Integer) -> new_ltEs9(xwv432, xwv442) new_primMulInt(Neg(xwv30000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv30000, xwv4010)) new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) new_esEs8(xwv402, xwv3002, app(app(ty_Either, edg), edh)) -> new_esEs25(xwv402, xwv3002, edg, edh) new_esEs25(Left(xwv4000), Right(xwv30000), dgc, dgd) -> False new_esEs25(Right(xwv4000), Left(xwv30000), dgc, dgd) -> False new_ltEs5(xwv83, xwv84, ty_Integer) -> new_ltEs9(xwv83, xwv84) new_esEs32(xwv128, xwv130, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs19(xwv128, xwv130, cdb, cdc, cdd) new_ltEs22(xwv117, xwv120, ty_Int) -> new_ltEs10(xwv117, xwv120) new_ltEs19(xwv432, xwv442, ty_@0) -> new_ltEs8(xwv432, xwv442) new_esEs30(xwv430, xwv440, ty_Bool) -> new_esEs18(xwv430, xwv440) new_ltEs5(xwv83, xwv84, ty_Ordering) -> new_ltEs16(xwv83, xwv84) new_ltEs21(xwv431, xwv441, ty_Char) -> new_ltEs17(xwv431, xwv441) new_esEs29(xwv4001, xwv30001, ty_Integer) -> new_esEs16(xwv4001, xwv30001) new_esEs29(xwv4001, xwv30001, ty_@0) -> new_esEs20(xwv4001, xwv30001) new_lt20(xwv128, xwv130, ty_Float) -> new_lt19(xwv128, xwv130) new_esEs33(xwv4000, xwv30000, app(ty_[], fbe)) -> new_esEs27(xwv4000, xwv30000, fbe) new_ltEs5(xwv83, xwv84, app(app(ty_@2, cef), ceg)) -> new_ltEs12(xwv83, xwv84, cef, ceg) new_esEs6(xwv400, xwv3000, ty_Char) -> new_esEs23(xwv400, xwv3000) new_esEs10(xwv401, xwv3001, app(ty_[], chg)) -> new_esEs27(xwv401, xwv3001, chg) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Integer) -> new_esEs16(xwv4000, xwv30000) new_ltEs14(Just(xwv430), Just(xwv440), ty_@0) -> new_ltEs8(xwv430, xwv440) new_esEs39(xwv4000, xwv30000, app(ty_Ratio, fgb)) -> new_esEs12(xwv4000, xwv30000, fgb) new_compare11(xwv170, xwv171, False, fef) -> GT new_primMulInt(Pos(xwv30000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv30000, xwv4010)) new_primMulInt(Neg(xwv30000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv30000, xwv4010)) new_compare6(Double(xwv400, Pos(xwv4010)), Double(xwv3000, Neg(xwv30010))) -> new_compare7(new_sr(xwv400, Pos(xwv30010)), new_sr(Neg(xwv4010), xwv3000)) new_compare6(Double(xwv400, Neg(xwv4010)), Double(xwv3000, Pos(xwv30010))) -> new_compare7(new_sr(xwv400, Neg(xwv30010)), new_sr(Pos(xwv4010), xwv3000)) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Ordering, dgd) -> new_esEs17(xwv4000, xwv30000) new_lt8(xwv430, xwv440, ty_@0) -> new_lt10(xwv430, xwv440) new_ltEs20(xwv129, xwv131, ty_@0) -> new_ltEs8(xwv129, xwv131) new_ltEs23(xwv50, xwv51, ty_Ordering) -> new_ltEs16(xwv50, xwv51) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Bool) -> new_esEs18(xwv4000, xwv30000) new_lt17(xwv115, xwv118) -> new_esEs17(new_compare29(xwv115, xwv118), LT) new_lt21(xwv430, xwv440, ty_Int) -> new_lt11(xwv430, xwv440) new_ltEs22(xwv117, xwv120, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs11(xwv117, xwv120, bha, bhb, bhc) new_sr0(Integer(xwv30000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv30000, xwv4010)) new_lt22(xwv116, xwv119, app(app(ty_@2, caf), cag)) -> new_lt13(xwv116, xwv119, caf, cag) new_compare0(xwv40, xwv300, ty_Float) -> new_compare31(xwv40, xwv300) new_esEs31(xwv431, xwv441, ty_Float) -> new_esEs21(xwv431, xwv441) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, app(app(app(ty_@3, efh), ega), egb)) -> new_esEs19(xwv4000, xwv30000, efh, ega, egb) new_ltEs21(xwv431, xwv441, app(ty_Ratio, feh)) -> new_ltEs13(xwv431, xwv441, feh) new_esEs8(xwv402, xwv3002, ty_Bool) -> new_esEs18(xwv402, xwv3002) new_esEs39(xwv4000, xwv30000, ty_Double) -> new_esEs24(xwv4000, xwv30000) new_lt20(xwv128, xwv130, ty_Double) -> new_lt16(xwv128, xwv130) new_ltEs11(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, hh) -> new_pePe(new_lt8(xwv430, xwv440, gc), new_asAs(new_esEs30(xwv430, xwv440, gc), new_pePe(new_lt7(xwv431, xwv441, gd), new_asAs(new_esEs31(xwv431, xwv441, gd), new_ltEs19(xwv432, xwv442, hh))))) new_esEs9(xwv400, xwv3000, ty_@0) -> new_esEs20(xwv400, xwv3000) new_compare211(xwv128, xwv129, xwv130, xwv131, False, cbd, cch) -> new_compare110(xwv128, xwv129, xwv130, xwv131, new_lt20(xwv128, xwv130, cbd), new_asAs(new_esEs32(xwv128, xwv130, cbd), new_ltEs20(xwv129, xwv131, cch)), cbd, cch) new_asAs(True, xwv164) -> xwv164 new_esEs7(xwv401, xwv3001, ty_Int) -> new_esEs15(xwv401, xwv3001) new_lt8(xwv430, xwv440, ty_Int) -> new_lt11(xwv430, xwv440) new_esEs4(xwv400, xwv3000, app(ty_[], dge)) -> new_esEs27(xwv400, xwv3000, dge) new_esEs39(xwv4000, xwv30000, ty_Int) -> new_esEs15(xwv4000, xwv30000) new_ltEs21(xwv431, xwv441, ty_Integer) -> new_ltEs9(xwv431, xwv441) new_ltEs9(xwv43, xwv44) -> new_fsEs(new_compare10(xwv43, xwv44)) new_esEs9(xwv400, xwv3000, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs19(xwv400, xwv3000, ehb, ehc, ehd) new_esEs14(xwv4001, xwv30001, ty_Int) -> new_esEs15(xwv4001, xwv30001) new_ltEs6(Left(xwv430), Left(xwv440), ty_Int, bb) -> new_ltEs10(xwv430, xwv440) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Char, dgd) -> new_esEs23(xwv4000, xwv30000) new_ltEs19(xwv432, xwv442, ty_Double) -> new_ltEs15(xwv432, xwv442) new_compare111(xwv148, xwv149, False, ffa, ffb) -> GT new_compare29(LT, GT) -> LT new_esEs6(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_[], efg), dgd) -> new_esEs27(xwv4000, xwv30000, efg) new_compare29(LT, EQ) -> LT new_ltEs21(xwv431, xwv441, ty_Bool) -> new_ltEs4(xwv431, xwv441) new_compare12(xwv202, xwv203, xwv204, xwv205, False, dcf, dcg) -> GT new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare31(xwv32, xwv33) new_esEs4(xwv400, xwv3000, app(app(ty_@2, chh), daa)) -> new_esEs26(xwv400, xwv3000, chh, daa) new_ltEs21(xwv431, xwv441, app(app(ty_Either, bcb), bcc)) -> new_ltEs6(xwv431, xwv441, bcb, bcc) new_sr(xwv3000, xwv401) -> new_primMulInt(xwv3000, xwv401) new_ltEs16(GT, GT) -> True new_lt7(xwv431, xwv441, ty_Double) -> new_lt16(xwv431, xwv441) new_lt23(xwv115, xwv118, app(ty_[], bfh)) -> new_lt5(xwv115, xwv118, bfh) new_ltEs12(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, bde) -> new_pePe(new_lt21(xwv430, xwv440, bca), new_asAs(new_esEs36(xwv430, xwv440, bca), new_ltEs21(xwv431, xwv441, bde))) new_compare9(:(xwv400, xwv401), :(xwv3000, xwv3001), df) -> new_primCompAux1(xwv400, xwv3000, xwv401, xwv3001, df) new_primMulNat0(Zero, Zero) -> Zero new_esEs39(xwv4000, xwv30000, app(app(ty_@2, fge), fgf)) -> new_esEs26(xwv4000, xwv30000, fge, fgf) new_esEs35(xwv4002, xwv30002, app(ty_Ratio, fdd)) -> new_esEs12(xwv4002, xwv30002, fdd) new_compare0(xwv40, xwv300, ty_Char) -> new_compare30(xwv40, xwv300) new_ltEs5(xwv83, xwv84, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs11(xwv83, xwv84, cec, ced, cee) new_ltEs21(xwv431, xwv441, app(ty_Maybe, bdb)) -> new_ltEs14(xwv431, xwv441, bdb) new_esEs28(xwv4000, xwv30000, ty_Char) -> new_esEs23(xwv4000, xwv30000) new_esEs9(xwv400, xwv3000, ty_Integer) -> new_esEs16(xwv400, xwv3000) new_ltEs19(xwv432, xwv442, app(ty_Ratio, ddb)) -> new_ltEs13(xwv432, xwv442, ddb) new_esEs35(xwv4002, xwv30002, app(ty_[], fea)) -> new_esEs27(xwv4002, xwv30002, fea) new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], fb)) -> new_compare9(xwv32, xwv33, fb) new_compare29(EQ, LT) -> GT new_esEs29(xwv4001, xwv30001, ty_Float) -> new_esEs21(xwv4001, xwv30001) new_lt7(xwv431, xwv441, app(ty_[], baa)) -> new_lt5(xwv431, xwv441, baa) new_ltEs22(xwv117, xwv120, app(ty_Maybe, bhf)) -> new_ltEs14(xwv117, xwv120, bhf) new_esEs35(xwv4002, xwv30002, ty_Double) -> new_esEs24(xwv4002, xwv30002) new_lt8(xwv430, xwv440, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_lt12(xwv430, xwv440, bbc, bbd, bbe) new_ltEs6(Right(xwv430), Right(xwv440), cb, ty_Ordering) -> new_ltEs16(xwv430, xwv440) new_esEs9(xwv400, xwv3000, ty_Bool) -> new_esEs18(xwv400, xwv3000) new_esEs36(xwv430, xwv440, app(ty_[], bdf)) -> new_esEs27(xwv430, xwv440, bdf) new_ltEs14(Just(xwv430), Just(xwv440), app(ty_[], beg)) -> new_ltEs7(xwv430, xwv440, beg) new_esEs8(xwv402, xwv3002, ty_Integer) -> new_esEs16(xwv402, xwv3002) new_esEs17(GT, GT) -> True new_esEs7(xwv401, xwv3001, ty_Ordering) -> new_esEs17(xwv401, xwv3001) new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False new_ltEs5(xwv83, xwv84, ty_Int) -> new_ltEs10(xwv83, xwv84) new_ltEs20(xwv129, xwv131, app(ty_Ratio, eee)) -> new_ltEs13(xwv129, xwv131, eee) new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv40000, xwv300000) new_ltEs20(xwv129, xwv131, app(app(ty_Either, cbe), cbf)) -> new_ltEs6(xwv129, xwv131, cbe, cbf) new_esEs8(xwv402, xwv3002, ty_Int) -> new_esEs15(xwv402, xwv3002) new_esEs23(Char(xwv4000), Char(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) new_esEs4(xwv400, xwv3000, app(ty_Ratio, cgc)) -> new_esEs12(xwv400, xwv3000, cgc) new_lt8(xwv430, xwv440, ty_Double) -> new_lt16(xwv430, xwv440) new_compare27(@2(xwv400, xwv401), @2(xwv3000, xwv3001), ee, ef) -> new_compare211(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, ee), new_esEs10(xwv401, xwv3001, ef)), ee, ef) new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv30000)) -> False new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv30000)) -> False new_compare25(xwv43, xwv44, False, fhe, gb) -> new_compare111(xwv43, xwv44, new_ltEs24(xwv43, xwv44, fhe), fhe, gb) new_lt20(xwv128, xwv130, app(ty_Ratio, eed)) -> new_lt14(xwv128, xwv130, eed) new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) new_esEs8(xwv402, xwv3002, app(ty_Maybe, ede)) -> new_esEs22(xwv402, xwv3002, ede) new_esEs38(xwv116, xwv119, ty_Int) -> new_esEs15(xwv116, xwv119) new_esEs8(xwv402, xwv3002, app(app(ty_@2, eea), eeb)) -> new_esEs26(xwv402, xwv3002, eea, eeb) new_ltEs19(xwv432, xwv442, app(app(ty_Either, ge), gf)) -> new_ltEs6(xwv432, xwv442, ge, gf) new_esEs34(xwv4001, xwv30001, app(ty_Ratio, fcb)) -> new_esEs12(xwv4001, xwv30001, fcb) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_@0) -> new_esEs20(xwv4000, xwv30000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs22(xwv117, xwv120, ty_Ordering) -> new_ltEs16(xwv117, xwv120) new_ltEs23(xwv50, xwv51, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs11(xwv50, xwv51, cfe, cff, cfg) new_lt22(xwv116, xwv119, ty_Int) -> new_lt11(xwv116, xwv119) new_primCompAux00(xwv32, xwv33, LT, fhc) -> LT new_esEs9(xwv400, xwv3000, app(ty_Maybe, ehe)) -> new_esEs22(xwv400, xwv3000, ehe) new_esEs30(xwv430, xwv440, ty_Float) -> new_esEs21(xwv430, xwv440) new_compare24(xwv83, xwv84, False, cgd) -> new_compare11(xwv83, xwv84, new_ltEs5(xwv83, xwv84, cgd), cgd) new_lt21(xwv430, xwv440, app(app(ty_@2, beb), bec)) -> new_lt13(xwv430, xwv440, beb, bec) new_esEs22(Just(xwv4000), Just(xwv30000), app(ty_[], dee)) -> new_esEs27(xwv4000, xwv30000, dee) new_ltEs22(xwv117, xwv120, ty_Bool) -> new_ltEs4(xwv117, xwv120) new_esEs38(xwv116, xwv119, ty_Double) -> new_esEs24(xwv116, xwv119) new_ltEs22(xwv117, xwv120, app(app(ty_Either, bgf), bgg)) -> new_ltEs6(xwv117, xwv120, bgf, bgg) new_esEs7(xwv401, xwv3001, app(app(ty_@2, ecg), ech)) -> new_esEs26(xwv401, xwv3001, ecg, ech) new_not(False) -> True new_ltEs20(xwv129, xwv131, ty_Bool) -> new_ltEs4(xwv129, xwv131) new_esEs25(Left(xwv4000), Left(xwv30000), ty_Int, dgd) -> new_esEs15(xwv4000, xwv30000) new_esEs6(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_lt7(xwv431, xwv441, ty_Int) -> new_lt11(xwv431, xwv441) new_esEs25(Left(xwv4000), Left(xwv30000), app(app(app(ty_@3, eef), eeg), eeh), dgd) -> new_esEs19(xwv4000, xwv30000, eef, eeg, eeh) new_esEs39(xwv4000, xwv30000, app(ty_[], fgg)) -> new_esEs27(xwv4000, xwv30000, fgg) new_ltEs24(xwv43, xwv44, ty_Integer) -> new_ltEs9(xwv43, xwv44) new_ltEs24(xwv43, xwv44, ty_Ordering) -> new_ltEs16(xwv43, xwv44) new_ltEs14(Just(xwv430), Just(xwv440), ty_Float) -> new_ltEs18(xwv430, xwv440) new_esEs28(xwv4000, xwv30000, app(app(ty_Either, dag), dah)) -> new_esEs25(xwv4000, xwv30000, dag, dah) new_ltEs23(xwv50, xwv51, ty_@0) -> new_ltEs8(xwv50, xwv51) new_esEs4(xwv400, xwv3000, ty_Double) -> new_esEs24(xwv400, xwv3000) new_esEs5(xwv400, xwv3000, app(ty_[], dhg)) -> new_esEs27(xwv400, xwv3000, dhg) new_compare210(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, caa) -> new_compare16(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, new_lt23(xwv115, xwv118, bgd), new_asAs(new_esEs37(xwv115, xwv118, bgd), new_pePe(new_lt22(xwv116, xwv119, bge), new_asAs(new_esEs38(xwv116, xwv119, bge), new_ltEs22(xwv117, xwv120, caa)))), bgd, bge, caa) new_ltEs23(xwv50, xwv51, app(ty_Maybe, cgb)) -> new_ltEs14(xwv50, xwv51, cgb) new_lt20(xwv128, xwv130, ty_Int) -> new_lt11(xwv128, xwv130) new_lt21(xwv430, xwv440, app(ty_Ratio, feg)) -> new_lt14(xwv430, xwv440, feg) new_ltEs24(xwv43, xwv44, app(app(ty_Either, cb), bb)) -> new_ltEs6(xwv43, xwv44, cb, bb) new_lt20(xwv128, xwv130, app(ty_[], cda)) -> new_lt5(xwv128, xwv130, cda) new_esEs38(xwv116, xwv119, app(ty_Ratio, ffd)) -> new_esEs12(xwv116, xwv119, ffd) new_ltEs7(xwv43, xwv44, de) -> new_fsEs(new_compare9(xwv43, xwv44, de)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs6(Left(xwv430), Left(xwv440), app(app(app(ty_@3, bd), be), bf), bb) -> new_ltEs11(xwv430, xwv440, bd, be, bf) new_compare0(xwv40, xwv300, ty_@0) -> new_compare19(xwv40, xwv300) new_esEs4(xwv400, xwv3000, ty_Int) -> new_esEs15(xwv400, xwv3000) new_ltEs6(Left(xwv430), Left(xwv440), app(ty_[], bc), bb) -> new_ltEs7(xwv430, xwv440, bc) new_esEs37(xwv115, xwv118, app(ty_[], bfh)) -> new_esEs27(xwv115, xwv118, bfh) new_ltEs19(xwv432, xwv442, ty_Bool) -> new_ltEs4(xwv432, xwv442) new_esEs25(Left(xwv4000), Left(xwv30000), app(ty_Ratio, efb), dgd) -> new_esEs12(xwv4000, xwv30000, efb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt7(xwv431, xwv441, app(ty_Ratio, dda)) -> new_lt14(xwv431, xwv441, dda) new_esEs9(xwv400, xwv3000, ty_Ordering) -> new_esEs17(xwv400, xwv3000) new_primMulNat0(Succ(xwv300000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv300000, Succ(xwv40100)), xwv40100) new_ltEs6(Left(xwv430), Left(xwv440), ty_Double, bb) -> new_ltEs15(xwv430, xwv440) new_ltEs24(xwv43, xwv44, ty_@0) -> new_ltEs8(xwv43, xwv44) new_compare30(Char(xwv400), Char(xwv3000)) -> new_primCmpNat0(xwv400, xwv3000) new_ltEs5(xwv83, xwv84, ty_Bool) -> new_ltEs4(xwv83, xwv84) new_compare29(GT, LT) -> GT new_lt8(xwv430, xwv440, app(ty_Ratio, dch)) -> new_lt14(xwv430, xwv440, dch) new_compare9([], :(xwv3000, xwv3001), df) -> LT new_compare16(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, False, xwv194, eab, eac, ead) -> new_compare17(xwv187, xwv188, xwv189, xwv190, xwv191, xwv192, xwv194, eab, eac, ead) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs36(xwv430, xwv440, app(ty_Ratio, feg)) -> new_esEs12(xwv430, xwv440, feg) new_esEs25(Right(xwv4000), Right(xwv30000), dgc, ty_Float) -> new_esEs21(xwv4000, xwv30000) new_esEs37(xwv115, xwv118, app(ty_Ratio, ffc)) -> new_esEs12(xwv115, xwv118, ffc) new_primEqNat0(Zero, Zero) -> True new_ltEs21(xwv431, xwv441, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs11(xwv431, xwv441, bce, bcf, bcg) new_lt21(xwv430, xwv440, ty_Double) -> new_lt16(xwv430, xwv440) new_compare0(xwv40, xwv300, ty_Ordering) -> new_compare29(xwv40, xwv300) new_asAs(False, xwv164) -> False new_esEs5(xwv400, xwv3000, app(app(ty_@2, dhe), dhf)) -> new_esEs26(xwv400, xwv3000, dhe, dhf) new_lt23(xwv115, xwv118, app(ty_Ratio, ffc)) -> new_lt14(xwv115, xwv118, ffc) new_ltEs24(xwv43, xwv44, app(ty_Maybe, fed)) -> new_ltEs14(xwv43, xwv44, fed) new_compare0(xwv40, xwv300, app(ty_Maybe, eg)) -> new_compare28(xwv40, xwv300, eg) The set Q consists of the following terms: new_primEqNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Bool) new_esEs21(Float(x0, x1), Float(x2, x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_@0) new_primPlusNat1(Zero, Zero) new_esEs35(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(True, True) new_lt8(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_esEs20(@0, @0) new_esEs39(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Float) new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Char) new_lt7(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt16(x0, x1) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Char) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_ltEs10(x0, x1) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Double) new_compare26(x0, x1, False, x2, x3) new_lt7(x0, x1, ty_Integer) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt4(x0, x1) new_esEs39(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs16(GT, EQ) new_ltEs16(EQ, GT) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_@0) new_ltEs16(LT, LT) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs33(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs38(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_fsEs(x0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Int) new_esEs15(x0, x1) new_lt8(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Integer) new_compare25(x0, x1, False, x2, x3) new_ltEs23(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Double) new_compare14(Left(x0), Left(x1), x2, x3) new_esEs25(Right(x0), Right(x1), x2, ty_Int) new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Char) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_lt23(x0, x1, ty_Char) new_lt21(x0, x1, ty_Char) new_esEs16(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Integer) new_compare111(x0, x1, True, x2, x3) new_ltEs13(x0, x1, x2) new_ltEs5(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Int) new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_ltEs14(Nothing, Nothing, x0) new_compare28(Nothing, Just(x0), x1) new_ltEs4(True, True) new_ltEs21(x0, x1, ty_Bool) new_compare29(EQ, EQ) new_ltEs22(x0, x1, ty_Ordering) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs22(Just(x0), Just(x1), ty_Int) new_esEs34(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Ordering) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs35(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(False, False) new_esEs33(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(Left(x0), Left(x1), ty_@0, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(Right(x0), Right(x1), x2, ty_Integer) new_esEs25(Left(x0), Left(x1), ty_Double, x2) new_compare0(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Char) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare10(Integer(x0), Integer(x1)) new_esEs22(Just(x0), Just(x1), ty_Bool) new_ltEs24(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs32(x0, x1, ty_Float) new_compare19(@0, @0) new_primCompAux00(x0, x1, EQ, ty_Int) new_ltEs23(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt22(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_esEs31(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs10(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, ty_Float) new_lt8(x0, x1, ty_Integer) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_ltEs15(x0, x1) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs27(:(x0, x1), [], x2) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Ordering) new_primPlusNat0(Succ(x0), x1) new_lt21(x0, x1, ty_Integer) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(Right(x0), Right(x1), x2, x3) new_primEqNat0(Zero, Succ(x0)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Float) new_compare25(x0, x1, True, x2, x3) new_ltEs17(x0, x1) new_esEs10(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt5(x0, x1, x2) new_not(True) new_esEs11(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs22(Just(x0), Just(x1), ty_Float) new_esEs6(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs9(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Integer) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, Succ(x0)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_esEs18(False, False) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs4(True, False) new_ltEs4(False, True) new_esEs25(Right(x0), Right(x1), x2, ty_@0) new_esEs28(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) new_esEs17(EQ, EQ) new_asAs(True, x0) new_esEs35(x0, x1, ty_Double) new_compare211(x0, x1, x2, x3, True, x4, x5) new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Double) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(LT, LT) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Double) new_esEs11(x0, x1, ty_Char) new_esEs27([], [], x0) new_esEs35(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Char) new_lt14(x0, x1, x2) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare0(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Int) new_compare8(True, True) new_esEs36(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2) new_ltEs5(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs4(False, False) new_esEs11(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare211(x0, x1, x2, x3, False, x4, x5) new_compare0(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Bool) new_esEs22(Just(x0), Just(x1), ty_Double) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Ordering) new_not(False) new_esEs11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Int) new_compare24(x0, x1, False, x2) new_esEs17(LT, LT) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_lt21(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1) new_esEs6(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Double) new_primMulNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Ordering) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt23(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(Just(x0), Nothing, x1) new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Double) new_primCompAux00(x0, x1, LT, x2) new_esEs32(x0, x1, ty_@0) new_esEs31(x0, x1, ty_@0) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_esEs22(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1) new_esEs37(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Nothing, Nothing, x0) new_ltEs22(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs8(x0, x1, ty_Float) new_lt15(x0, x1, x2) new_lt10(x0, x1) new_esEs34(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_compare0(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Zero) new_compare12(x0, x1, x2, x3, False, x4, x5) new_esEs36(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(x0, x1) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, GT, x2) new_esEs10(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Char) new_esEs25(Left(x0), Right(x1), x2, x3) new_esEs25(Right(x0), Left(x1), x2, x3) new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Integer) new_compare29(EQ, GT) new_compare29(GT, EQ) new_esEs39(x0, x1, ty_Int) new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs28(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_@0) new_lt23(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Float) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_compare29(LT, GT) new_compare29(GT, LT) new_esEs6(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs14(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_compare9([], :(x0, x1), x2) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs27(:(x0, x1), :(x2, x3), x4) new_esEs25(Right(x0), Right(x1), x2, ty_Char) new_compare7(x0, x1) new_esEs25(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_Bool) new_compare27(@2(x0, x1), @2(x2, x3), x4, x5) new_compare8(True, False) new_compare8(False, True) new_esEs28(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_lt18(x0, x1) new_esEs4(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Bool) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, ty_Float) new_esEs22(Nothing, Just(x0), x1) new_lt22(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs8(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Just(x0), Just(x1), ty_Char) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs8(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Float) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_sr0(Integer(x0), Integer(x1)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs14(Just(x0), Just(x1), ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Int) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Int) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Integer) new_asAs(False, x0) new_esEs8(x0, x1, ty_@0) new_pePe(True, x0) new_compare26(x0, x1, True, x2, x3) new_ltEs16(GT, GT) new_esEs6(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Bool) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs31(x0, x1, ty_Float) new_esEs18(False, True) new_esEs18(True, False) new_lt9(x0, x1, x2, x3) new_ltEs24(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Bool) new_lt13(x0, x1, x2, x3) new_esEs39(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs20(x0, x1, ty_Int) new_esEs36(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Integer) new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_compare9(:(x0, x1), [], x2) new_esEs4(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_compare30(Char(x0), Char(x1)) new_esEs33(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_primEqNat0(Succ(x0), Zero) new_esEs22(Just(x0), Just(x1), ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) new_lt21(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Int) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs31(x0, x1, ty_Bool) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_esEs22(Nothing, Nothing, x0) new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Double) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, ty_Int) new_compare15(x0, x1, True, x2, x3) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Char) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs5(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs9(x0, x1, ty_Integer) new_compare28(Just(x0), Just(x1), x2) new_compare0(x0, x1, ty_Ordering) new_esEs13(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_lt11(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs16(EQ, EQ) new_compare29(LT, EQ) new_compare29(EQ, LT) new_ltEs14(Just(x0), Just(x1), ty_@0) new_lt12(x0, x1, x2, x3, x4) new_esEs22(Just(x0), Just(x1), ty_Integer) new_ltEs9(x0, x1) new_compare0(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_esEs25(Left(x0), Left(x1), ty_Int, x2) new_pePe(False, x0) new_esEs11(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_compare29(GT, GT) new_esEs25(Left(x0), Left(x1), ty_Char, x2) new_lt20(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare11(x0, x1, False, x2) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs39(x0, x1, ty_Float) new_lt22(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs24(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Bool) new_esEs23(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Int) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_esEs22(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare14(Left(x0), Right(x1), x2, x3) new_compare14(Right(x0), Left(x1), x2, x3) new_primCompAux00(x0, x1, EQ, ty_Integer) new_primPlusNat0(Zero, x0) new_lt20(x0, x1, ty_Double) new_esEs25(Right(x0), Right(x1), x2, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs17(GT, GT) new_esEs25(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs8(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_ltEs21(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Double(x0, x1), Double(x2, x3)) new_esEs8(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Float) new_lt8(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(Just(x0), Just(x1), ty_Float) new_compare12(x0, x1, x2, x3, True, x4, x5) new_esEs9(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Integer, x2) new_esEs10(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Int) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs14(Nothing, Just(x0), x1) new_esEs28(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_lt8(x0, x1, ty_Double) new_compare15(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Ordering) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, ty_Integer) new_ltEs7(x0, x1, x2) new_lt7(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs9(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), ty_Bool, x2) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Bool) new_ltEs14(Just(x0), Nothing, x1) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare9([], [], x0) new_esEs38(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs5(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Ordering) new_esEs27([], :(x0, x1), x2) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Double) new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(x0, x1, ty_Bool) new_compare9(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs25(Left(x0), Left(x1), ty_Float, x2) new_esEs29(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Char) new_primCmpNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (62) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_ltEs0(xwv43, xwv44, de) -> new_compare(xwv43, xwv44, de) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare(:(xwv400, xwv401), :(xwv3000, xwv3001), df) -> new_primCompAux(xwv400, xwv3000, xwv401, xwv3001, df) The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 3 >= 5 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(ty_Maybe, bhf)) -> new_ltEs3(xwv117, xwv120, bhf) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(ty_[], bgh)) -> new_ltEs0(xwv117, xwv120, bgh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_primCompAux(:(xwv400, xwv401), :(xwv3000, xwv3001), xwv41, xwv301, app(ty_[], df)) -> new_primCompAux(xwv400, xwv3000, xwv401, xwv3001, df) The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 5 > 5 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(ty_[], bfh), bge, caa) -> new_compare(xwv115, xwv118, bfh) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(ty_Maybe, bdb)) -> new_ltEs3(xwv431, xwv441, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(ty_[], bcd)) -> new_ltEs0(xwv431, xwv441, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), xwv41, xwv301, app(app(app(ty_@3, eb), ec), ed)) -> new_compare21(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, eb), new_asAs(new_esEs7(xwv401, xwv3001, ec), new_esEs8(xwv402, xwv3002, ed))), eb, ec, ed) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 5 > 8, 5 > 9, 5 > 10 *new_compare3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), eb, ec, ed) -> new_compare21(xwv400, xwv401, xwv402, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs6(xwv400, xwv3000, eb), new_asAs(new_esEs7(xwv401, xwv3001, ec), new_esEs8(xwv402, xwv3002, ed))), eb, ec, ed) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(app(ty_@2, bhd), bhe)) -> new_ltEs2(xwv117, xwv120, bhd, bhe) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(app(ty_@2, bch), bda)) -> new_ltEs2(xwv431, xwv441, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt1(xwv115, xwv118, bga, bgb, bgc) -> new_compare3(xwv115, xwv118, bga, bgb, bgc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(app(app(ty_@3, cac), cad), cae), caa) -> new_lt1(xwv116, xwv119, cac, cad, cae) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(app(app(ty_@3, bdg), bdh), bea), bde) -> new_lt1(xwv430, xwv440, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(app(app(ty_@3, bga), bgb), bgc), bge, caa) -> new_compare3(xwv115, xwv118, bga, bgb, bgc) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare5(Just(xwv400), Just(xwv3000), eg) -> new_compare23(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare23(xwv83, xwv84, False, app(ty_Maybe, ceh)) -> new_ltEs3(xwv83, xwv84, ceh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare23(xwv83, xwv84, False, app(ty_[], ceb)) -> new_ltEs0(xwv83, xwv84, ceb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(ty_Maybe, cbc), bge, caa) -> new_compare5(xwv115, xwv118, cbc) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare23(xwv83, xwv84, False, app(app(ty_@2, cef), ceg)) -> new_ltEs2(xwv83, xwv84, cef, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_lt3(xwv115, xwv118, cbc) -> new_compare5(xwv115, xwv118, cbc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(ty_Maybe, he)) -> new_ltEs3(xwv432, xwv442, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(ty_[], gg)) -> new_ltEs0(xwv432, xwv442, gg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_primCompAux(Just(xwv400), Just(xwv3000), xwv41, xwv301, app(ty_Maybe, eg)) -> new_compare23(xwv400, xwv3000, new_esEs11(xwv400, xwv3000, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(app(ty_@2, hc), hd)) -> new_ltEs2(xwv432, xwv442, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs1(xwv117, xwv120, bha, bhb, bhc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs1(xwv431, xwv441, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(xwv83, xwv84, False, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs1(xwv83, xwv84, cec, ced, cee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(xwv83, xwv84, False, app(app(ty_Either, cdh), cea)) -> new_ltEs(xwv83, xwv84, cdh, cea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(xwv432, xwv442, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt(xwv115, xwv118, bff, bfg) -> new_compare1(xwv115, xwv118, bff, bfg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(app(ty_Either, bhg), bhh), caa) -> new_lt(xwv116, xwv119, bhg, bhh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(app(ty_Either, bdc), bdd), bde) -> new_lt(xwv430, xwv440, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(xwv50, xwv51, False, cfa, app(ty_Maybe, cgb)) -> new_ltEs3(xwv50, xwv51, cgb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare20(xwv50, xwv51, False, cfa, app(ty_[], cfd)) -> new_ltEs0(xwv50, xwv51, cfd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(app(ty_Either, bff), bfg), bge, caa) -> new_compare1(xwv115, xwv118, bff, bfg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare20(xwv50, xwv51, False, cfa, app(app(ty_@2, cfh), cga)) -> new_ltEs2(xwv50, xwv51, cfh, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare20(xwv50, xwv51, False, cfa, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs1(xwv50, xwv51, cfe, cff, cfg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(xwv50, xwv51, False, cfa, app(app(ty_Either, cfb), cfc)) -> new_ltEs(xwv50, xwv51, cfb, cfc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_primCompAux(Right(xwv400), Right(xwv3000), xwv41, xwv301, app(app(ty_Either, dh), ea)) -> new_compare20(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, ea), dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 *new_compare1(Right(xwv400), Right(xwv3000), dh, ea) -> new_compare20(xwv400, xwv3000, new_esEs5(xwv400, xwv3000, ea), dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare1(Left(xwv400), Left(xwv3000), dh, ea) -> new_compare2(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, dh), dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt2(xwv115, xwv118, cba, cbb) -> new_compare4(xwv115, xwv118, cba, cbb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(app(ty_@2, caf), cag), caa) -> new_lt2(xwv116, xwv119, caf, cag) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(app(ty_@2, beb), bec), bde) -> new_lt2(xwv430, xwv440, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare4(@2(xwv400, xwv401), @2(xwv3000, xwv3001), ee, ef) -> new_compare22(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, ee), new_esEs10(xwv401, xwv3001, ef)), ee, ef) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(ty_Maybe, cce)) -> new_ltEs3(xwv129, xwv131, cce) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(ty_[], cbg)) -> new_ltEs0(xwv129, xwv131, cbg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, app(app(ty_@2, cba), cbb), bge, caa) -> new_compare4(xwv115, xwv118, cba, cbb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(app(ty_@2, ccc), ccd)) -> new_ltEs2(xwv129, xwv131, ccc, ccd) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(app(app(ty_@3, cdb), cdc), cdd), cch) -> new_lt1(xwv128, xwv130, cdb, cdc, cdd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs1(xwv129, xwv131, cbh, cca, ccb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(app(ty_Either, ccf), ccg), cch) -> new_lt(xwv128, xwv130, ccf, ccg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(app(ty_@2, cde), cdf), cch) -> new_lt2(xwv128, xwv130, cde, cdf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(@2(xwv400, xwv401), @2(xwv3000, xwv3001), xwv41, xwv301, app(app(ty_@2, ee), ef)) -> new_compare22(xwv400, xwv401, xwv3000, xwv3001, new_asAs(new_esEs9(xwv400, xwv3000, ee), new_esEs10(xwv401, xwv3001, ef)), ee, ef) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 5 > 6, 5 > 7 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(ty_Maybe, cah), caa) -> new_lt3(xwv116, xwv119, cah) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(ty_Maybe, bed), bde) -> new_lt3(xwv430, xwv440, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(ty_Maybe, cdg), cch) -> new_lt3(xwv128, xwv130, cdg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_lt0(xwv115, xwv118, bfh) -> new_compare(xwv115, xwv118, bfh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, app(ty_[], cab), caa) -> new_lt0(xwv116, xwv119, cab) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare21(xwv115, xwv116, xwv117, xwv118, xwv119, xwv120, False, bgd, bge, app(app(ty_Either, bgf), bgg)) -> new_ltEs(xwv117, xwv120, bgf, bgg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), app(ty_[], bdf), bde) -> new_lt0(xwv430, xwv440, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@2(xwv430, xwv431), @2(xwv440, xwv441), bca, app(app(ty_Either, bcb), bcc)) -> new_ltEs(xwv431, xwv441, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, gd, app(app(ty_Either, ge), gf)) -> new_ltEs(xwv432, xwv442, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(xwv128, xwv129, xwv130, xwv131, False, app(ty_[], cda), cch) -> new_lt0(xwv128, xwv130, cda) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare22(xwv128, xwv129, xwv130, xwv131, False, cbd, app(app(ty_Either, cbe), cbf)) -> new_ltEs(xwv129, xwv131, cbe, cbf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_ltEs3(Just(xwv430), Just(xwv440), app(ty_Maybe, bfe)) -> new_ltEs3(xwv430, xwv440, bfe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(xwv430), Just(xwv440), app(ty_[], beg)) -> new_ltEs0(xwv430, xwv440, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(xwv430), Just(xwv440), app(app(ty_@2, bfc), bfd)) -> new_ltEs2(xwv430, xwv440, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Just(xwv430), Just(xwv440), app(app(app(ty_@3, beh), bfa), bfb)) -> new_ltEs1(xwv430, xwv440, beh, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(Just(xwv430), Just(xwv440), app(app(ty_Either, bee), bef)) -> new_ltEs(xwv430, xwv440, bee, bef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(xwv43, xwv44, False, app(ty_[], de), gb) -> new_compare(xwv43, xwv44, de) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux0(xwv32, xwv33, EQ, app(ty_[], fb)) -> new_compare(xwv32, xwv33, fb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(Left(xwv400), Left(xwv3000), xwv41, xwv301, app(app(ty_Either, dh), ea)) -> new_compare2(xwv400, xwv3000, new_esEs4(xwv400, xwv3000, dh), dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 *new_primCompAux(xwv40, xwv300, xwv41, xwv301, dg) -> new_primCompAux0(xwv41, xwv301, new_compare0(xwv40, xwv300, dg), app(ty_[], dg)) The graph contains the following edges 3 >= 1, 4 >= 2 *new_ltEs(Right(xwv430), Right(xwv440), cb, app(ty_Maybe, dd)) -> new_ltEs3(xwv430, xwv440, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(xwv430), Left(xwv440), app(ty_Maybe, ca), bb) -> new_ltEs3(xwv430, xwv440, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(ty_Maybe, ca)), bb), gb) -> new_ltEs3(xwv430, xwv440, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(ty_Maybe, dd)), gb) -> new_ltEs3(xwv430, xwv440, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(ty_Maybe, he)), gb) -> new_ltEs3(xwv432, xwv442, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(ty_Maybe, bdb)), gb) -> new_ltEs3(xwv431, xwv441, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(ty_Maybe, bfe)), gb) -> new_ltEs3(xwv430, xwv440, bfe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(xwv430), Left(xwv440), app(ty_[], bc), bb) -> new_ltEs0(xwv430, xwv440, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(xwv430), Right(xwv440), cb, app(ty_[], ce)) -> new_ltEs0(xwv430, xwv440, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(ty_[], gg)), gb) -> new_ltEs0(xwv432, xwv442, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(ty_[], ce)), gb) -> new_ltEs0(xwv430, xwv440, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(ty_[], bcd)), gb) -> new_ltEs0(xwv431, xwv441, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(ty_[], bc)), bb), gb) -> new_ltEs0(xwv430, xwv440, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(ty_[], beg)), gb) -> new_ltEs0(xwv430, xwv440, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(xwv430), Left(xwv440), app(app(ty_@2, bg), bh), bb) -> new_ltEs2(xwv430, xwv440, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(xwv430), Right(xwv440), cb, app(app(ty_@2, db), dc)) -> new_ltEs2(xwv430, xwv440, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(app(ty_@2, bfc), bfd)), gb) -> new_ltEs2(xwv430, xwv440, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(app(ty_@2, bg), bh)), bb), gb) -> new_ltEs2(xwv430, xwv440, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(app(ty_@2, bch), bda)), gb) -> new_ltEs2(xwv431, xwv441, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(app(ty_@2, db), dc)), gb) -> new_ltEs2(xwv430, xwv440, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(app(ty_@2, hc), hd)), gb) -> new_ltEs2(xwv432, xwv442, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(app(app(ty_@3, bab), bac), bad), hh) -> new_lt1(xwv431, xwv441, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(app(app(ty_@3, bbc), bbd), bbe), gd, hh) -> new_lt1(xwv430, xwv440, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(app(app(ty_@3, bab), bac), bad)), hh), gb) -> new_lt1(xwv431, xwv441, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(app(app(ty_@3, bdg), bdh), bea)), bde), gb) -> new_lt1(xwv430, xwv440, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(app(app(ty_@3, bbc), bbd), bbe)), gd), hh), gb) -> new_lt1(xwv430, xwv440, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(app(ty_Either, bah), bba), gd, hh) -> new_lt(xwv430, xwv440, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(app(ty_Either, hf), hg), hh) -> new_lt(xwv431, xwv441, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(app(ty_@2, bae), baf), hh) -> new_lt2(xwv431, xwv441, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(app(ty_@2, bbf), bbg), gd, hh) -> new_lt2(xwv430, xwv440, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(ty_Maybe, bbh), gd, hh) -> new_lt3(xwv430, xwv440, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(ty_Maybe, bag), hh) -> new_lt3(xwv431, xwv441, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), gc, app(ty_[], baa), hh) -> new_lt0(xwv431, xwv441, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), app(ty_[], bbb), gd, hh) -> new_lt0(xwv430, xwv440, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Left(xwv430), Left(xwv440), app(app(app(ty_@3, bd), be), bf), bb) -> new_ltEs1(xwv430, xwv440, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(xwv430), Right(xwv440), cb, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs1(xwv430, xwv440, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(app(app(ty_@3, gh), ha), hb)), gb) -> new_ltEs1(xwv432, xwv442, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(app(app(ty_@3, bce), bcf), bcg)), gb) -> new_ltEs1(xwv431, xwv441, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(app(app(ty_@3, beh), bfa), bfb)), gb) -> new_ltEs1(xwv430, xwv440, beh, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(app(app(ty_@3, cf), cg), da)), gb) -> new_ltEs1(xwv430, xwv440, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(app(app(ty_@3, bd), be), bf)), bb), gb) -> new_ltEs1(xwv430, xwv440, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(app(ty_Either, hf), hg)), hh), gb) -> new_lt(xwv431, xwv441, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(app(ty_Either, bdc), bdd)), bde), gb) -> new_lt(xwv430, xwv440, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(app(ty_Either, bah), bba)), gd), hh), gb) -> new_lt(xwv430, xwv440, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(app(ty_@2, bae), baf)), hh), gb) -> new_lt2(xwv431, xwv441, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(app(ty_@2, beb), bec)), bde), gb) -> new_lt2(xwv430, xwv440, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(app(ty_@2, bbf), bbg)), gd), hh), gb) -> new_lt2(xwv430, xwv440, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(ty_Maybe, bbh)), gd), hh), gb) -> new_lt3(xwv430, xwv440, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(ty_Maybe, bag)), hh), gb) -> new_lt3(xwv431, xwv441, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(ty_Maybe, bed)), bde), gb) -> new_lt3(xwv430, xwv440, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, app(ty_[], bdf)), bde), gb) -> new_lt0(xwv430, xwv440, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), app(ty_[], baa)), hh), gb) -> new_lt0(xwv431, xwv441, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, app(ty_[], bbb)), gd), hh), gb) -> new_lt0(xwv430, xwv440, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(xwv430), Left(xwv440), app(app(ty_Either, h), ba), bb) -> new_ltEs(xwv430, xwv440, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(xwv430), Right(xwv440), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(xwv430, xwv440, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(xwv430, xwv431), @2(xwv440, xwv441), False, app(app(ty_@2, bca), app(app(ty_Either, bcb), bcc)), gb) -> new_ltEs(xwv431, xwv441, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(xwv430), Right(xwv440), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), gb) -> new_ltEs(xwv430, xwv440, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(xwv430), Just(xwv440), False, app(ty_Maybe, app(app(ty_Either, bee), bef)), gb) -> new_ltEs(xwv430, xwv440, bee, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(xwv430), Left(xwv440), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), gb) -> new_ltEs(xwv430, xwv440, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(xwv430, xwv431, xwv432), @3(xwv440, xwv441, xwv442), False, app(app(app(ty_@3, gc), gd), app(app(ty_Either, ge), gf)), gb) -> new_ltEs(xwv432, xwv442, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (63) YES ---------------------------------------- (64) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xwv40000), Succ(xwv300000)) -> new_primEqNat(xwv40000, xwv300000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (65) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(xwv40000), Succ(xwv300000)) -> new_primEqNat(xwv40000, xwv300000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (66) YES