/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, 179 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) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (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) QDPSizeChangeProof [EQUIVALENT, 0 ms] (61) YES ---------------------------------------- (0) 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; delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; delListFromFM fm keys = foldl delFromFM fm keys; 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 a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 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 a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 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 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 = 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; delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; delListFromFM fm keys = foldl delFromFM fm keys; 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 b a -> (b,a); 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 :: (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 a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 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 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 = 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; delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; delListFromFM fm keys = foldl delFromFM fm keys; deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 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 b a -> (b,a); 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 -> b -> a -> a) -> a -> FiniteMap c b -> 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_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 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; } ---------------------------------------- (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 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 = 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; delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; delListFromFM fm keys = foldl delFromFM fm keys; 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 b a -> (b,a); 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 :: (a -> c -> b -> b) -> b -> FiniteMap a c -> 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 a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 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; } ---------------------------------------- (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 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; delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; delListFromFM fm keys = foldl delFromFM fm keys; 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 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 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 b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 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 b a -> 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; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "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); " "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; " "mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; " "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; " "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); " "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); " "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 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; delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; delListFromFM fm keys = foldl delFromFM fm keys; 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 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 b a -> 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' x wuy = gcd0Gcd'2 x wuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x wuy = gcd0Gcd'1 (wuy == 0) x wuy; gcd0Gcd'2 wvw wvx = gcd0Gcd'0 wvw wvx; " 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 "reduce2Reduce0 wzw wzx x y True = x `quot` reduce2D wzw wzx :% (y `quot` reduce2D wzw wzx); " "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; " 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 "mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM wzy; " "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; " "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); " "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; " "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; " "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 wzz xuu fm_lrr fm_r); " "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); " "mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; " "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); " "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 wzz xuu fm_l fm_rl) fm_rr; " "mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "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); " "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; " "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 wzz xuu fm_lr 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; " "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); " "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 wzz xuu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr 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); " 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 "mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; " "mkBranchUnbox xuw xux xuy x = x; " "mkBranchBalance_ok xuw xux xuy = True; " "mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; " "mkBranchRight_size xuw xux xuy = sizeFM xuy; " "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; " "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; " "mkBranchLeft_size xuw xux xuy = sizeFM xuw; " 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_key1 xvx xvy = glueBal2Mid_key10 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; " "glueBal2Vv3 xvx xvy = findMin xvx; " "glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); " "glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; " "glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); " "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_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); " "glueBal2Vv2 xvx xvy = findMax xvy; " "glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; " "glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; " 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 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 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; delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; delListFromFM fm keys = foldl delFromFM fm keys; 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 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 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 :: (c -> b -> a -> a) -> a -> FiniteMap c b -> 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 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 fm2 fm1 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 xvy; glueBal2Vv3 xvx xvy = findMin xvx; 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 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < 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 wzz xuu 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 wzz xuu 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 wzz xuu 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 wzz xuu fm_lr fm_r); mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM wzy; mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 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 b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 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; delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; delListFromFM fm keys = foldl delFromFM fm keys; 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 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 b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 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 fm2 fm1 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 xvy; glueBal2Vv3 xvx xvy = findMin xvx; 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 = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < 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))))))) wzz xuu 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))))))))))))) wzz xuu 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))))) wzz xuu 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)))))))))) wzz xuu fm_lr fm_r); mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM wzy; mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 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 (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.delListFromFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.delListFromFM xwv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.delListFromFM xwv3 xwv4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="foldl FiniteMap.delFromFM xwv3 xwv4",fontsize=16,color="burlywood",shape="triangle"];3779[label="xwv4/xwv40 : xwv41",fontsize=10,color="white",style="solid",shape="box"];5 -> 3779[label="",style="solid", color="burlywood", weight=9]; 3779 -> 6[label="",style="solid", color="burlywood", weight=3]; 3780[label="xwv4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 3780[label="",style="solid", color="burlywood", weight=9]; 3780 -> 7[label="",style="solid", color="burlywood", weight=3]; 6[label="foldl FiniteMap.delFromFM xwv3 (xwv40 : xwv41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="foldl FiniteMap.delFromFM xwv3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8 -> 5[label="",style="dashed", color="red", weight=0]; 8[label="foldl FiniteMap.delFromFM (FiniteMap.delFromFM xwv3 xwv40) xwv41",fontsize=16,color="magenta"];8 -> 10[label="",style="dashed", color="magenta", weight=3]; 8 -> 11[label="",style="dashed", color="magenta", weight=3]; 9[label="xwv3",fontsize=16,color="green",shape="box"];10[label="xwv41",fontsize=16,color="green",shape="box"];11[label="FiniteMap.delFromFM xwv3 xwv40",fontsize=16,color="burlywood",shape="triangle"];3781[label="xwv3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];11 -> 3781[label="",style="solid", color="burlywood", weight=9]; 3781 -> 12[label="",style="solid", color="burlywood", weight=3]; 3782[label="xwv3/FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=10,color="white",style="solid",shape="box"];11 -> 3782[label="",style="solid", color="burlywood", weight=9]; 3782 -> 13[label="",style="solid", color="burlywood", weight=3]; 12[label="FiniteMap.delFromFM FiniteMap.EmptyFM xwv40",fontsize=16,color="black",shape="box"];12 -> 14[label="",style="solid", color="black", weight=3]; 13[label="FiniteMap.delFromFM (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv40",fontsize=16,color="black",shape="box"];13 -> 15[label="",style="solid", color="black", weight=3]; 14[label="FiniteMap.delFromFM4 FiniteMap.EmptyFM xwv40",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 15[label="FiniteMap.delFromFM3 (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv40",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 16[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 17 -> 19[label="",style="dashed", color="red", weight=0]; 17[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv40 (xwv40 > xwv30)",fontsize=16,color="magenta"];17 -> 20[label="",style="dashed", color="magenta", weight=3]; 17 -> 21[label="",style="dashed", color="magenta", weight=3]; 17 -> 22[label="",style="dashed", color="magenta", weight=3]; 17 -> 23[label="",style="dashed", color="magenta", weight=3]; 17 -> 24[label="",style="dashed", color="magenta", weight=3]; 17 -> 25[label="",style="dashed", color="magenta", weight=3]; 17 -> 26[label="",style="dashed", color="magenta", weight=3]; 18[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];20[label="xwv31",fontsize=16,color="green",shape="box"];21[label="xwv32",fontsize=16,color="green",shape="box"];22[label="xwv34",fontsize=16,color="green",shape="box"];23[label="xwv30",fontsize=16,color="green",shape="box"];24[label="xwv40 > xwv30",fontsize=16,color="blue",shape="box"];3783[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 27[label="",style="solid", color="blue", weight=3]; 3784[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3784[label="",style="solid", color="blue", weight=9]; 3784 -> 28[label="",style="solid", color="blue", weight=3]; 3785[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3785[label="",style="solid", color="blue", weight=9]; 3785 -> 29[label="",style="solid", color="blue", weight=3]; 3786[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3786[label="",style="solid", color="blue", weight=9]; 3786 -> 30[label="",style="solid", color="blue", weight=3]; 3787[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3787[label="",style="solid", color="blue", weight=9]; 3787 -> 31[label="",style="solid", color="blue", weight=3]; 3788[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3788[label="",style="solid", color="blue", weight=9]; 3788 -> 32[label="",style="solid", color="blue", weight=3]; 3789[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3789[label="",style="solid", color="blue", weight=9]; 3789 -> 33[label="",style="solid", color="blue", weight=3]; 3790[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3790[label="",style="solid", color="blue", weight=9]; 3790 -> 34[label="",style="solid", color="blue", weight=3]; 3791[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3791[label="",style="solid", color="blue", weight=9]; 3791 -> 35[label="",style="solid", color="blue", weight=3]; 3792[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3792[label="",style="solid", color="blue", weight=9]; 3792 -> 36[label="",style="solid", color="blue", weight=3]; 3793[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3793[label="",style="solid", color="blue", weight=9]; 3793 -> 37[label="",style="solid", color="blue", weight=3]; 3794[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3794[label="",style="solid", color="blue", weight=9]; 3794 -> 38[label="",style="solid", color="blue", weight=3]; 3795[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3795[label="",style="solid", color="blue", weight=9]; 3795 -> 39[label="",style="solid", color="blue", weight=3]; 3796[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3796[label="",style="solid", color="blue", weight=9]; 3796 -> 40[label="",style="solid", color="blue", weight=3]; 25[label="xwv33",fontsize=16,color="green",shape="box"];26[label="xwv40",fontsize=16,color="green",shape="box"];19[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 xwv19",fontsize=16,color="burlywood",shape="triangle"];3797[label="xwv19/False",fontsize=10,color="white",style="solid",shape="box"];19 -> 3797[label="",style="solid", color="burlywood", weight=9]; 3797 -> 41[label="",style="solid", color="burlywood", weight=3]; 3798[label="xwv19/True",fontsize=10,color="white",style="solid",shape="box"];19 -> 3798[label="",style="solid", color="burlywood", weight=9]; 3798 -> 42[label="",style="solid", color="burlywood", weight=3]; 27[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];27 -> 43[label="",style="solid", color="black", weight=3]; 28[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];28 -> 44[label="",style="solid", color="black", weight=3]; 29[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];29 -> 45[label="",style="solid", color="black", weight=3]; 30[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];30 -> 46[label="",style="solid", color="black", weight=3]; 31[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];31 -> 47[label="",style="solid", color="black", weight=3]; 32[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];32 -> 48[label="",style="solid", color="black", weight=3]; 33[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];33 -> 49[label="",style="solid", color="black", weight=3]; 34[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];34 -> 50[label="",style="solid", color="black", weight=3]; 35[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];35 -> 51[label="",style="solid", color="black", weight=3]; 36[label="xwv40 > xwv30",fontsize=16,color="black",shape="triangle"];36 -> 52[label="",style="solid", color="black", weight=3]; 37[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];37 -> 53[label="",style="solid", color="black", weight=3]; 38[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];38 -> 54[label="",style="solid", color="black", weight=3]; 39[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];39 -> 55[label="",style="solid", color="black", weight=3]; 40[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];40 -> 56[label="",style="solid", color="black", weight=3]; 41[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 False",fontsize=16,color="black",shape="box"];41 -> 57[label="",style="solid", color="black", weight=3]; 42[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 True",fontsize=16,color="black",shape="box"];42 -> 58[label="",style="solid", color="black", weight=3]; 43 -> 201[label="",style="dashed", color="red", weight=0]; 43[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];43 -> 202[label="",style="dashed", color="magenta", weight=3]; 44 -> 201[label="",style="dashed", color="red", weight=0]; 44[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];44 -> 203[label="",style="dashed", color="magenta", weight=3]; 45 -> 201[label="",style="dashed", color="red", weight=0]; 45[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];45 -> 204[label="",style="dashed", color="magenta", weight=3]; 46 -> 201[label="",style="dashed", color="red", weight=0]; 46[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];46 -> 205[label="",style="dashed", color="magenta", weight=3]; 47 -> 201[label="",style="dashed", color="red", weight=0]; 47[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];47 -> 206[label="",style="dashed", color="magenta", weight=3]; 48 -> 201[label="",style="dashed", color="red", weight=0]; 48[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];48 -> 207[label="",style="dashed", color="magenta", weight=3]; 49 -> 201[label="",style="dashed", color="red", weight=0]; 49[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];49 -> 208[label="",style="dashed", color="magenta", weight=3]; 50 -> 201[label="",style="dashed", color="red", weight=0]; 50[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];50 -> 209[label="",style="dashed", color="magenta", weight=3]; 51 -> 201[label="",style="dashed", color="red", weight=0]; 51[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];51 -> 210[label="",style="dashed", color="magenta", weight=3]; 52 -> 201[label="",style="dashed", color="red", weight=0]; 52[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];52 -> 211[label="",style="dashed", color="magenta", weight=3]; 53 -> 201[label="",style="dashed", color="red", weight=0]; 53[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];53 -> 212[label="",style="dashed", color="magenta", weight=3]; 54 -> 201[label="",style="dashed", color="red", weight=0]; 54[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];54 -> 213[label="",style="dashed", color="magenta", weight=3]; 55 -> 201[label="",style="dashed", color="red", weight=0]; 55[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];55 -> 214[label="",style="dashed", color="magenta", weight=3]; 56 -> 201[label="",style="dashed", color="red", weight=0]; 56[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];56 -> 215[label="",style="dashed", color="magenta", weight=3]; 57 -> 74[label="",style="dashed", color="red", weight=0]; 57[label="FiniteMap.delFromFM1 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 (xwv18 < xwv13)",fontsize=16,color="magenta"];57 -> 75[label="",style="dashed", color="magenta", weight=3]; 57 -> 76[label="",style="dashed", color="magenta", weight=3]; 57 -> 77[label="",style="dashed", color="magenta", weight=3]; 57 -> 78[label="",style="dashed", color="magenta", weight=3]; 57 -> 79[label="",style="dashed", color="magenta", weight=3]; 57 -> 80[label="",style="dashed", color="magenta", weight=3]; 57 -> 81[label="",style="dashed", color="magenta", weight=3]; 58 -> 82[label="",style="dashed", color="red", weight=0]; 58[label="FiniteMap.mkBalBranch xwv13 xwv14 xwv16 (FiniteMap.delFromFM xwv17 xwv18)",fontsize=16,color="magenta"];58 -> 83[label="",style="dashed", color="magenta", weight=3]; 202[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];202 -> 241[label="",style="solid", color="black", weight=3]; 201[label="xwv38 == GT",fontsize=16,color="burlywood",shape="triangle"];3799[label="xwv38/LT",fontsize=10,color="white",style="solid",shape="box"];201 -> 3799[label="",style="solid", color="burlywood", weight=9]; 3799 -> 242[label="",style="solid", color="burlywood", weight=3]; 3800[label="xwv38/EQ",fontsize=10,color="white",style="solid",shape="box"];201 -> 3800[label="",style="solid", color="burlywood", weight=9]; 3800 -> 243[label="",style="solid", color="burlywood", weight=3]; 3801[label="xwv38/GT",fontsize=10,color="white",style="solid",shape="box"];201 -> 3801[label="",style="solid", color="burlywood", weight=9]; 3801 -> 244[label="",style="solid", color="burlywood", weight=3]; 203[label="compare xwv40 xwv30",fontsize=16,color="burlywood",shape="triangle"];3802[label="xwv40/Integer xwv400",fontsize=10,color="white",style="solid",shape="box"];203 -> 3802[label="",style="solid", color="burlywood", weight=9]; 3802 -> 245[label="",style="solid", color="burlywood", weight=3]; 204[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];204 -> 246[label="",style="solid", color="black", weight=3]; 205[label="compare xwv40 xwv30",fontsize=16,color="burlywood",shape="triangle"];3803[label="xwv40/xwv400 : xwv401",fontsize=10,color="white",style="solid",shape="box"];205 -> 3803[label="",style="solid", color="burlywood", weight=9]; 3803 -> 247[label="",style="solid", color="burlywood", weight=3]; 3804[label="xwv40/[]",fontsize=10,color="white",style="solid",shape="box"];205 -> 3804[label="",style="solid", color="burlywood", weight=9]; 3804 -> 248[label="",style="solid", color="burlywood", weight=3]; 206[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];206 -> 249[label="",style="solid", color="black", weight=3]; 207[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];207 -> 250[label="",style="solid", color="black", weight=3]; 208[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];208 -> 251[label="",style="solid", color="black", weight=3]; 209[label="compare xwv40 xwv30",fontsize=16,color="burlywood",shape="triangle"];3805[label="xwv40/()",fontsize=10,color="white",style="solid",shape="box"];209 -> 3805[label="",style="solid", color="burlywood", weight=9]; 3805 -> 252[label="",style="solid", color="burlywood", weight=3]; 210[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];210 -> 253[label="",style="solid", color="black", weight=3]; 211[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];211 -> 254[label="",style="solid", color="black", weight=3]; 212[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];212 -> 255[label="",style="solid", color="black", weight=3]; 213[label="compare xwv40 xwv30",fontsize=16,color="burlywood",shape="triangle"];3806[label="xwv40/xwv400 :% xwv401",fontsize=10,color="white",style="solid",shape="box"];213 -> 3806[label="",style="solid", color="burlywood", weight=9]; 3806 -> 256[label="",style="solid", color="burlywood", weight=3]; 214[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];214 -> 257[label="",style="solid", color="black", weight=3]; 215[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];215 -> 258[label="",style="solid", color="black", weight=3]; 75[label="xwv15",fontsize=16,color="green",shape="box"];76[label="xwv13",fontsize=16,color="green",shape="box"];77[label="xwv17",fontsize=16,color="green",shape="box"];78[label="xwv18",fontsize=16,color="green",shape="box"];79[label="xwv18 < xwv13",fontsize=16,color="blue",shape="box"];3807[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3807[label="",style="solid", color="blue", weight=9]; 3807 -> 102[label="",style="solid", color="blue", weight=3]; 3808[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3808[label="",style="solid", color="blue", weight=9]; 3808 -> 103[label="",style="solid", color="blue", weight=3]; 3809[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3809[label="",style="solid", color="blue", weight=9]; 3809 -> 104[label="",style="solid", color="blue", weight=3]; 3810[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3810[label="",style="solid", color="blue", weight=9]; 3810 -> 105[label="",style="solid", color="blue", weight=3]; 3811[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3811[label="",style="solid", color="blue", weight=9]; 3811 -> 106[label="",style="solid", color="blue", weight=3]; 3812[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3812[label="",style="solid", color="blue", weight=9]; 3812 -> 107[label="",style="solid", color="blue", weight=3]; 3813[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3813[label="",style="solid", color="blue", weight=9]; 3813 -> 108[label="",style="solid", color="blue", weight=3]; 3814[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3814[label="",style="solid", color="blue", weight=9]; 3814 -> 109[label="",style="solid", color="blue", weight=3]; 3815[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3815[label="",style="solid", color="blue", weight=9]; 3815 -> 110[label="",style="solid", color="blue", weight=3]; 3816[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3816[label="",style="solid", color="blue", weight=9]; 3816 -> 111[label="",style="solid", color="blue", weight=3]; 3817[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3817[label="",style="solid", color="blue", weight=9]; 3817 -> 112[label="",style="solid", color="blue", weight=3]; 3818[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3818[label="",style="solid", color="blue", weight=9]; 3818 -> 113[label="",style="solid", color="blue", weight=3]; 3819[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3819[label="",style="solid", color="blue", weight=9]; 3819 -> 114[label="",style="solid", color="blue", weight=3]; 3820[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3820[label="",style="solid", color="blue", weight=9]; 3820 -> 115[label="",style="solid", color="blue", weight=3]; 80[label="xwv16",fontsize=16,color="green",shape="box"];81[label="xwv14",fontsize=16,color="green",shape="box"];74[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=16,color="burlywood",shape="triangle"];3821[label="xwv34/False",fontsize=10,color="white",style="solid",shape="box"];74 -> 3821[label="",style="solid", color="burlywood", weight=9]; 3821 -> 116[label="",style="solid", color="burlywood", weight=3]; 3822[label="xwv34/True",fontsize=10,color="white",style="solid",shape="box"];74 -> 3822[label="",style="solid", color="burlywood", weight=9]; 3822 -> 117[label="",style="solid", color="burlywood", weight=3]; 83 -> 11[label="",style="dashed", color="red", weight=0]; 83[label="FiniteMap.delFromFM xwv17 xwv18",fontsize=16,color="magenta"];83 -> 118[label="",style="dashed", color="magenta", weight=3]; 83 -> 119[label="",style="dashed", color="magenta", weight=3]; 82[label="FiniteMap.mkBalBranch xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];82 -> 120[label="",style="solid", color="black", weight=3]; 241[label="primCmpChar xwv40 xwv30",fontsize=16,color="burlywood",shape="box"];3823[label="xwv40/Char xwv400",fontsize=10,color="white",style="solid",shape="box"];241 -> 3823[label="",style="solid", color="burlywood", weight=9]; 3823 -> 274[label="",style="solid", color="burlywood", weight=3]; 242[label="LT == GT",fontsize=16,color="black",shape="box"];242 -> 275[label="",style="solid", color="black", weight=3]; 243[label="EQ == GT",fontsize=16,color="black",shape="box"];243 -> 276[label="",style="solid", color="black", weight=3]; 244[label="GT == GT",fontsize=16,color="black",shape="box"];244 -> 277[label="",style="solid", color="black", weight=3]; 245[label="compare (Integer xwv400) xwv30",fontsize=16,color="burlywood",shape="box"];3824[label="xwv30/Integer xwv300",fontsize=10,color="white",style="solid",shape="box"];245 -> 3824[label="",style="solid", color="burlywood", weight=9]; 3824 -> 278[label="",style="solid", color="burlywood", weight=3]; 246[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];246 -> 279[label="",style="solid", color="black", weight=3]; 247[label="compare (xwv400 : xwv401) xwv30",fontsize=16,color="burlywood",shape="box"];3825[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];247 -> 3825[label="",style="solid", color="burlywood", weight=9]; 3825 -> 280[label="",style="solid", color="burlywood", weight=3]; 3826[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];247 -> 3826[label="",style="solid", color="burlywood", weight=9]; 3826 -> 281[label="",style="solid", color="burlywood", weight=3]; 248[label="compare [] xwv30",fontsize=16,color="burlywood",shape="box"];3827[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];248 -> 3827[label="",style="solid", color="burlywood", weight=9]; 3827 -> 282[label="",style="solid", color="burlywood", weight=3]; 3828[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];248 -> 3828[label="",style="solid", color="burlywood", weight=9]; 3828 -> 283[label="",style="solid", color="burlywood", weight=3]; 249[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];249 -> 284[label="",style="solid", color="black", weight=3]; 250[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];250 -> 285[label="",style="solid", color="black", weight=3]; 251[label="primCmpFloat xwv40 xwv30",fontsize=16,color="burlywood",shape="box"];3829[label="xwv40/Float xwv400 xwv401",fontsize=10,color="white",style="solid",shape="box"];251 -> 3829[label="",style="solid", color="burlywood", weight=9]; 3829 -> 286[label="",style="solid", color="burlywood", weight=3]; 252[label="compare () xwv30",fontsize=16,color="burlywood",shape="box"];3830[label="xwv30/()",fontsize=10,color="white",style="solid",shape="box"];252 -> 3830[label="",style="solid", color="burlywood", weight=9]; 3830 -> 287[label="",style="solid", color="burlywood", weight=3]; 253[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];253 -> 288[label="",style="solid", color="black", weight=3]; 254[label="primCmpInt xwv40 xwv30",fontsize=16,color="burlywood",shape="triangle"];3831[label="xwv40/Pos xwv400",fontsize=10,color="white",style="solid",shape="box"];254 -> 3831[label="",style="solid", color="burlywood", weight=9]; 3831 -> 289[label="",style="solid", color="burlywood", weight=3]; 3832[label="xwv40/Neg xwv400",fontsize=10,color="white",style="solid",shape="box"];254 -> 3832[label="",style="solid", color="burlywood", weight=9]; 3832 -> 290[label="",style="solid", color="burlywood", weight=3]; 255[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];255 -> 291[label="",style="solid", color="black", weight=3]; 256[label="compare (xwv400 :% xwv401) xwv30",fontsize=16,color="burlywood",shape="box"];3833[label="xwv30/xwv300 :% xwv301",fontsize=10,color="white",style="solid",shape="box"];256 -> 3833[label="",style="solid", color="burlywood", weight=9]; 3833 -> 292[label="",style="solid", color="burlywood", weight=3]; 257[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];257 -> 293[label="",style="solid", color="black", weight=3]; 258[label="primCmpDouble xwv40 xwv30",fontsize=16,color="burlywood",shape="box"];3834[label="xwv40/Double xwv400 xwv401",fontsize=10,color="white",style="solid",shape="box"];258 -> 3834[label="",style="solid", color="burlywood", weight=9]; 3834 -> 294[label="",style="solid", color="burlywood", weight=3]; 102[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];102 -> 148[label="",style="solid", color="black", weight=3]; 103[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];103 -> 149[label="",style="solid", color="black", weight=3]; 104[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];104 -> 150[label="",style="solid", color="black", weight=3]; 105[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];105 -> 151[label="",style="solid", color="black", weight=3]; 106[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];106 -> 152[label="",style="solid", color="black", weight=3]; 107[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];107 -> 153[label="",style="solid", color="black", weight=3]; 108[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];108 -> 154[label="",style="solid", color="black", weight=3]; 109[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];109 -> 155[label="",style="solid", color="black", weight=3]; 110[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];110 -> 156[label="",style="solid", color="black", weight=3]; 111[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];111 -> 157[label="",style="solid", color="black", weight=3]; 112[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];112 -> 158[label="",style="solid", color="black", weight=3]; 113[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];113 -> 159[label="",style="solid", color="black", weight=3]; 114[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];114 -> 160[label="",style="solid", color="black", weight=3]; 115[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];115 -> 161[label="",style="solid", color="black", weight=3]; 116[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 False",fontsize=16,color="black",shape="box"];116 -> 162[label="",style="solid", color="black", weight=3]; 117[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 True",fontsize=16,color="black",shape="box"];117 -> 163[label="",style="solid", color="black", weight=3]; 118[label="xwv18",fontsize=16,color="green",shape="box"];119[label="xwv17",fontsize=16,color="green",shape="box"];120[label="FiniteMap.mkBalBranch6 xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];120 -> 164[label="",style="solid", color="black", weight=3]; 274[label="primCmpChar (Char xwv400) xwv30",fontsize=16,color="burlywood",shape="box"];3835[label="xwv30/Char xwv300",fontsize=10,color="white",style="solid",shape="box"];274 -> 3835[label="",style="solid", color="burlywood", weight=9]; 3835 -> 303[label="",style="solid", color="burlywood", weight=3]; 275[label="False",fontsize=16,color="green",shape="box"];276[label="False",fontsize=16,color="green",shape="box"];277[label="True",fontsize=16,color="green",shape="box"];278[label="compare (Integer xwv400) (Integer xwv300)",fontsize=16,color="black",shape="box"];278 -> 304[label="",style="solid", color="black", weight=3]; 279[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3836[label="xwv40/Nothing",fontsize=10,color="white",style="solid",shape="box"];279 -> 3836[label="",style="solid", color="burlywood", weight=9]; 3836 -> 305[label="",style="solid", color="burlywood", weight=3]; 3837[label="xwv40/Just xwv400",fontsize=10,color="white",style="solid",shape="box"];279 -> 3837[label="",style="solid", color="burlywood", weight=9]; 3837 -> 306[label="",style="solid", color="burlywood", weight=3]; 280[label="compare (xwv400 : xwv401) (xwv300 : xwv301)",fontsize=16,color="black",shape="box"];280 -> 307[label="",style="solid", color="black", weight=3]; 281[label="compare (xwv400 : xwv401) []",fontsize=16,color="black",shape="box"];281 -> 308[label="",style="solid", color="black", weight=3]; 282[label="compare [] (xwv300 : xwv301)",fontsize=16,color="black",shape="box"];282 -> 309[label="",style="solid", color="black", weight=3]; 283[label="compare [] []",fontsize=16,color="black",shape="box"];283 -> 310[label="",style="solid", color="black", weight=3]; 284[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3838[label="xwv40/(xwv400,xwv401,xwv402)",fontsize=10,color="white",style="solid",shape="box"];284 -> 3838[label="",style="solid", color="burlywood", weight=9]; 3838 -> 311[label="",style="solid", color="burlywood", weight=3]; 285[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3839[label="xwv40/LT",fontsize=10,color="white",style="solid",shape="box"];285 -> 3839[label="",style="solid", color="burlywood", weight=9]; 3839 -> 312[label="",style="solid", color="burlywood", weight=3]; 3840[label="xwv40/EQ",fontsize=10,color="white",style="solid",shape="box"];285 -> 3840[label="",style="solid", color="burlywood", weight=9]; 3840 -> 313[label="",style="solid", color="burlywood", weight=3]; 3841[label="xwv40/GT",fontsize=10,color="white",style="solid",shape="box"];285 -> 3841[label="",style="solid", color="burlywood", weight=9]; 3841 -> 314[label="",style="solid", color="burlywood", weight=3]; 286[label="primCmpFloat (Float xwv400 xwv401) xwv30",fontsize=16,color="burlywood",shape="box"];3842[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];286 -> 3842[label="",style="solid", color="burlywood", weight=9]; 3842 -> 315[label="",style="solid", color="burlywood", weight=3]; 3843[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];286 -> 3843[label="",style="solid", color="burlywood", weight=9]; 3843 -> 316[label="",style="solid", color="burlywood", weight=3]; 287[label="compare () ()",fontsize=16,color="black",shape="box"];287 -> 317[label="",style="solid", color="black", weight=3]; 288[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3844[label="xwv40/False",fontsize=10,color="white",style="solid",shape="box"];288 -> 3844[label="",style="solid", color="burlywood", weight=9]; 3844 -> 318[label="",style="solid", color="burlywood", weight=3]; 3845[label="xwv40/True",fontsize=10,color="white",style="solid",shape="box"];288 -> 3845[label="",style="solid", color="burlywood", weight=9]; 3845 -> 319[label="",style="solid", color="burlywood", weight=3]; 289[label="primCmpInt (Pos xwv400) xwv30",fontsize=16,color="burlywood",shape="box"];3846[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];289 -> 3846[label="",style="solid", color="burlywood", weight=9]; 3846 -> 320[label="",style="solid", color="burlywood", weight=3]; 3847[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];289 -> 3847[label="",style="solid", color="burlywood", weight=9]; 3847 -> 321[label="",style="solid", color="burlywood", weight=3]; 290[label="primCmpInt (Neg xwv400) xwv30",fontsize=16,color="burlywood",shape="box"];3848[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];290 -> 3848[label="",style="solid", color="burlywood", weight=9]; 3848 -> 322[label="",style="solid", color="burlywood", weight=3]; 3849[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];290 -> 3849[label="",style="solid", color="burlywood", weight=9]; 3849 -> 323[label="",style="solid", color="burlywood", weight=3]; 291[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3850[label="xwv40/(xwv400,xwv401)",fontsize=10,color="white",style="solid",shape="box"];291 -> 3850[label="",style="solid", color="burlywood", weight=9]; 3850 -> 324[label="",style="solid", color="burlywood", weight=3]; 292[label="compare (xwv400 :% xwv401) (xwv300 :% xwv301)",fontsize=16,color="black",shape="box"];292 -> 325[label="",style="solid", color="black", weight=3]; 293[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3851[label="xwv40/Left xwv400",fontsize=10,color="white",style="solid",shape="box"];293 -> 3851[label="",style="solid", color="burlywood", weight=9]; 3851 -> 326[label="",style="solid", color="burlywood", weight=3]; 3852[label="xwv40/Right xwv400",fontsize=10,color="white",style="solid",shape="box"];293 -> 3852[label="",style="solid", color="burlywood", weight=9]; 3852 -> 327[label="",style="solid", color="burlywood", weight=3]; 294[label="primCmpDouble (Double xwv400 xwv401) xwv30",fontsize=16,color="burlywood",shape="box"];3853[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];294 -> 3853[label="",style="solid", color="burlywood", weight=9]; 3853 -> 328[label="",style="solid", color="burlywood", weight=3]; 3854[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];294 -> 3854[label="",style="solid", color="burlywood", weight=9]; 3854 -> 329[label="",style="solid", color="burlywood", weight=3]; 148 -> 259[label="",style="dashed", color="red", weight=0]; 148[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];148 -> 260[label="",style="dashed", color="magenta", weight=3]; 149 -> 259[label="",style="dashed", color="red", weight=0]; 149[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];149 -> 261[label="",style="dashed", color="magenta", weight=3]; 150 -> 259[label="",style="dashed", color="red", weight=0]; 150[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];150 -> 262[label="",style="dashed", color="magenta", weight=3]; 151 -> 259[label="",style="dashed", color="red", weight=0]; 151[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];151 -> 263[label="",style="dashed", color="magenta", weight=3]; 152 -> 259[label="",style="dashed", color="red", weight=0]; 152[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];152 -> 264[label="",style="dashed", color="magenta", weight=3]; 153 -> 259[label="",style="dashed", color="red", weight=0]; 153[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];153 -> 265[label="",style="dashed", color="magenta", weight=3]; 154 -> 259[label="",style="dashed", color="red", weight=0]; 154[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];154 -> 266[label="",style="dashed", color="magenta", weight=3]; 155 -> 259[label="",style="dashed", color="red", weight=0]; 155[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];155 -> 267[label="",style="dashed", color="magenta", weight=3]; 156 -> 259[label="",style="dashed", color="red", weight=0]; 156[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];156 -> 268[label="",style="dashed", color="magenta", weight=3]; 157 -> 259[label="",style="dashed", color="red", weight=0]; 157[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];157 -> 269[label="",style="dashed", color="magenta", weight=3]; 158 -> 259[label="",style="dashed", color="red", weight=0]; 158[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];158 -> 270[label="",style="dashed", color="magenta", weight=3]; 159 -> 259[label="",style="dashed", color="red", weight=0]; 159[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];159 -> 271[label="",style="dashed", color="magenta", weight=3]; 160 -> 259[label="",style="dashed", color="red", weight=0]; 160[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];160 -> 272[label="",style="dashed", color="magenta", weight=3]; 161 -> 259[label="",style="dashed", color="red", weight=0]; 161[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];161 -> 273[label="",style="dashed", color="magenta", weight=3]; 162 -> 295[label="",style="dashed", color="red", weight=0]; 162[label="FiniteMap.delFromFM0 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 (xwv28 == xwv33)",fontsize=16,color="magenta"];162 -> 296[label="",style="dashed", color="magenta", weight=3]; 162 -> 297[label="",style="dashed", color="magenta", weight=3]; 162 -> 298[label="",style="dashed", color="magenta", weight=3]; 162 -> 299[label="",style="dashed", color="magenta", weight=3]; 162 -> 300[label="",style="dashed", color="magenta", weight=3]; 162 -> 301[label="",style="dashed", color="magenta", weight=3]; 162 -> 302[label="",style="dashed", color="magenta", weight=3]; 163 -> 82[label="",style="dashed", color="red", weight=0]; 163[label="FiniteMap.mkBalBranch xwv28 xwv29 (FiniteMap.delFromFM xwv31 xwv33) xwv32",fontsize=16,color="magenta"];163 -> 330[label="",style="dashed", color="magenta", weight=3]; 163 -> 331[label="",style="dashed", color="magenta", weight=3]; 163 -> 332[label="",style="dashed", color="magenta", weight=3]; 163 -> 333[label="",style="dashed", color="magenta", weight=3]; 164 -> 334[label="",style="dashed", color="red", weight=0]; 164[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35 + FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];164 -> 335[label="",style="dashed", color="magenta", weight=3]; 303[label="primCmpChar (Char xwv400) (Char xwv300)",fontsize=16,color="black",shape="box"];303 -> 336[label="",style="solid", color="black", weight=3]; 304 -> 254[label="",style="dashed", color="red", weight=0]; 304[label="primCmpInt xwv400 xwv300",fontsize=16,color="magenta"];304 -> 337[label="",style="dashed", color="magenta", weight=3]; 304 -> 338[label="",style="dashed", color="magenta", weight=3]; 305[label="compare2 Nothing xwv30 (Nothing == xwv30)",fontsize=16,color="burlywood",shape="box"];3855[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];305 -> 3855[label="",style="solid", color="burlywood", weight=9]; 3855 -> 339[label="",style="solid", color="burlywood", weight=3]; 3856[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];305 -> 3856[label="",style="solid", color="burlywood", weight=9]; 3856 -> 340[label="",style="solid", color="burlywood", weight=3]; 306[label="compare2 (Just xwv400) xwv30 (Just xwv400 == xwv30)",fontsize=16,color="burlywood",shape="box"];3857[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];306 -> 3857[label="",style="solid", color="burlywood", weight=9]; 3857 -> 341[label="",style="solid", color="burlywood", weight=3]; 3858[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];306 -> 3858[label="",style="solid", color="burlywood", weight=9]; 3858 -> 342[label="",style="solid", color="burlywood", weight=3]; 307 -> 343[label="",style="dashed", color="red", weight=0]; 307[label="primCompAux xwv400 xwv300 (compare xwv401 xwv301)",fontsize=16,color="magenta"];307 -> 344[label="",style="dashed", color="magenta", weight=3]; 308[label="GT",fontsize=16,color="green",shape="box"];309[label="LT",fontsize=16,color="green",shape="box"];310[label="EQ",fontsize=16,color="green",shape="box"];311[label="compare2 (xwv400,xwv401,xwv402) xwv30 ((xwv400,xwv401,xwv402) == xwv30)",fontsize=16,color="burlywood",shape="box"];3859[label="xwv30/(xwv300,xwv301,xwv302)",fontsize=10,color="white",style="solid",shape="box"];311 -> 3859[label="",style="solid", color="burlywood", weight=9]; 3859 -> 345[label="",style="solid", color="burlywood", weight=3]; 312[label="compare2 LT xwv30 (LT == xwv30)",fontsize=16,color="burlywood",shape="box"];3860[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];312 -> 3860[label="",style="solid", color="burlywood", weight=9]; 3860 -> 346[label="",style="solid", color="burlywood", weight=3]; 3861[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];312 -> 3861[label="",style="solid", color="burlywood", weight=9]; 3861 -> 347[label="",style="solid", color="burlywood", weight=3]; 3862[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];312 -> 3862[label="",style="solid", color="burlywood", weight=9]; 3862 -> 348[label="",style="solid", color="burlywood", weight=3]; 313[label="compare2 EQ xwv30 (EQ == xwv30)",fontsize=16,color="burlywood",shape="box"];3863[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];313 -> 3863[label="",style="solid", color="burlywood", weight=9]; 3863 -> 349[label="",style="solid", color="burlywood", weight=3]; 3864[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];313 -> 3864[label="",style="solid", color="burlywood", weight=9]; 3864 -> 350[label="",style="solid", color="burlywood", weight=3]; 3865[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];313 -> 3865[label="",style="solid", color="burlywood", weight=9]; 3865 -> 351[label="",style="solid", color="burlywood", weight=3]; 314[label="compare2 GT xwv30 (GT == xwv30)",fontsize=16,color="burlywood",shape="box"];3866[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];314 -> 3866[label="",style="solid", color="burlywood", weight=9]; 3866 -> 352[label="",style="solid", color="burlywood", weight=3]; 3867[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];314 -> 3867[label="",style="solid", color="burlywood", weight=9]; 3867 -> 353[label="",style="solid", color="burlywood", weight=3]; 3868[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];314 -> 3868[label="",style="solid", color="burlywood", weight=9]; 3868 -> 354[label="",style="solid", color="burlywood", weight=3]; 315[label="primCmpFloat (Float xwv400 (Pos xwv4010)) xwv30",fontsize=16,color="burlywood",shape="box"];3869[label="xwv30/Float xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];315 -> 3869[label="",style="solid", color="burlywood", weight=9]; 3869 -> 355[label="",style="solid", color="burlywood", weight=3]; 316[label="primCmpFloat (Float xwv400 (Neg xwv4010)) xwv30",fontsize=16,color="burlywood",shape="box"];3870[label="xwv30/Float xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];316 -> 3870[label="",style="solid", color="burlywood", weight=9]; 3870 -> 356[label="",style="solid", color="burlywood", weight=3]; 317[label="EQ",fontsize=16,color="green",shape="box"];318[label="compare2 False xwv30 (False == xwv30)",fontsize=16,color="burlywood",shape="box"];3871[label="xwv30/False",fontsize=10,color="white",style="solid",shape="box"];318 -> 3871[label="",style="solid", color="burlywood", weight=9]; 3871 -> 357[label="",style="solid", color="burlywood", weight=3]; 3872[label="xwv30/True",fontsize=10,color="white",style="solid",shape="box"];318 -> 3872[label="",style="solid", color="burlywood", weight=9]; 3872 -> 358[label="",style="solid", color="burlywood", weight=3]; 319[label="compare2 True xwv30 (True == xwv30)",fontsize=16,color="burlywood",shape="box"];3873[label="xwv30/False",fontsize=10,color="white",style="solid",shape="box"];319 -> 3873[label="",style="solid", color="burlywood", weight=9]; 3873 -> 359[label="",style="solid", color="burlywood", weight=3]; 3874[label="xwv30/True",fontsize=10,color="white",style="solid",shape="box"];319 -> 3874[label="",style="solid", color="burlywood", weight=9]; 3874 -> 360[label="",style="solid", color="burlywood", weight=3]; 320[label="primCmpInt (Pos (Succ xwv4000)) xwv30",fontsize=16,color="burlywood",shape="box"];3875[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];320 -> 3875[label="",style="solid", color="burlywood", weight=9]; 3875 -> 361[label="",style="solid", color="burlywood", weight=3]; 3876[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];320 -> 3876[label="",style="solid", color="burlywood", weight=9]; 3876 -> 362[label="",style="solid", color="burlywood", weight=3]; 321[label="primCmpInt (Pos Zero) xwv30",fontsize=16,color="burlywood",shape="box"];3877[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];321 -> 3877[label="",style="solid", color="burlywood", weight=9]; 3877 -> 363[label="",style="solid", color="burlywood", weight=3]; 3878[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];321 -> 3878[label="",style="solid", color="burlywood", weight=9]; 3878 -> 364[label="",style="solid", color="burlywood", weight=3]; 322[label="primCmpInt (Neg (Succ xwv4000)) xwv30",fontsize=16,color="burlywood",shape="box"];3879[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];322 -> 3879[label="",style="solid", color="burlywood", weight=9]; 3879 -> 365[label="",style="solid", color="burlywood", weight=3]; 3880[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];322 -> 3880[label="",style="solid", color="burlywood", weight=9]; 3880 -> 366[label="",style="solid", color="burlywood", weight=3]; 323[label="primCmpInt (Neg Zero) xwv30",fontsize=16,color="burlywood",shape="box"];3881[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];323 -> 3881[label="",style="solid", color="burlywood", weight=9]; 3881 -> 367[label="",style="solid", color="burlywood", weight=3]; 3882[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];323 -> 3882[label="",style="solid", color="burlywood", weight=9]; 3882 -> 368[label="",style="solid", color="burlywood", weight=3]; 324[label="compare2 (xwv400,xwv401) xwv30 ((xwv400,xwv401) == xwv30)",fontsize=16,color="burlywood",shape="box"];3883[label="xwv30/(xwv300,xwv301)",fontsize=10,color="white",style="solid",shape="box"];324 -> 3883[label="",style="solid", color="burlywood", weight=9]; 3883 -> 369[label="",style="solid", color="burlywood", weight=3]; 325[label="compare (xwv400 * xwv301) (xwv300 * xwv401)",fontsize=16,color="blue",shape="box"];3884[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];325 -> 3884[label="",style="solid", color="blue", weight=9]; 3884 -> 370[label="",style="solid", color="blue", weight=3]; 3885[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];325 -> 3885[label="",style="solid", color="blue", weight=9]; 3885 -> 371[label="",style="solid", color="blue", weight=3]; 326[label="compare2 (Left xwv400) xwv30 (Left xwv400 == xwv30)",fontsize=16,color="burlywood",shape="box"];3886[label="xwv30/Left xwv300",fontsize=10,color="white",style="solid",shape="box"];326 -> 3886[label="",style="solid", color="burlywood", weight=9]; 3886 -> 372[label="",style="solid", color="burlywood", weight=3]; 3887[label="xwv30/Right xwv300",fontsize=10,color="white",style="solid",shape="box"];326 -> 3887[label="",style="solid", color="burlywood", weight=9]; 3887 -> 373[label="",style="solid", color="burlywood", weight=3]; 327[label="compare2 (Right xwv400) xwv30 (Right xwv400 == xwv30)",fontsize=16,color="burlywood",shape="box"];3888[label="xwv30/Left xwv300",fontsize=10,color="white",style="solid",shape="box"];327 -> 3888[label="",style="solid", color="burlywood", weight=9]; 3888 -> 374[label="",style="solid", color="burlywood", weight=3]; 3889[label="xwv30/Right xwv300",fontsize=10,color="white",style="solid",shape="box"];327 -> 3889[label="",style="solid", color="burlywood", weight=9]; 3889 -> 375[label="",style="solid", color="burlywood", weight=3]; 328[label="primCmpDouble (Double xwv400 (Pos xwv4010)) xwv30",fontsize=16,color="burlywood",shape="box"];3890[label="xwv30/Double xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];328 -> 3890[label="",style="solid", color="burlywood", weight=9]; 3890 -> 376[label="",style="solid", color="burlywood", weight=3]; 329[label="primCmpDouble (Double xwv400 (Neg xwv4010)) xwv30",fontsize=16,color="burlywood",shape="box"];3891[label="xwv30/Double xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];329 -> 3891[label="",style="solid", color="burlywood", weight=9]; 3891 -> 377[label="",style="solid", color="burlywood", weight=3]; 260 -> 202[label="",style="dashed", color="red", weight=0]; 260[label="compare xwv18 xwv13",fontsize=16,color="magenta"];260 -> 378[label="",style="dashed", color="magenta", weight=3]; 260 -> 379[label="",style="dashed", color="magenta", weight=3]; 259[label="xwv39 == LT",fontsize=16,color="burlywood",shape="triangle"];3892[label="xwv39/LT",fontsize=10,color="white",style="solid",shape="box"];259 -> 3892[label="",style="solid", color="burlywood", weight=9]; 3892 -> 380[label="",style="solid", color="burlywood", weight=3]; 3893[label="xwv39/EQ",fontsize=10,color="white",style="solid",shape="box"];259 -> 3893[label="",style="solid", color="burlywood", weight=9]; 3893 -> 381[label="",style="solid", color="burlywood", weight=3]; 3894[label="xwv39/GT",fontsize=10,color="white",style="solid",shape="box"];259 -> 3894[label="",style="solid", color="burlywood", weight=9]; 3894 -> 382[label="",style="solid", color="burlywood", weight=3]; 261 -> 203[label="",style="dashed", color="red", weight=0]; 261[label="compare xwv18 xwv13",fontsize=16,color="magenta"];261 -> 383[label="",style="dashed", color="magenta", weight=3]; 261 -> 384[label="",style="dashed", color="magenta", weight=3]; 262 -> 204[label="",style="dashed", color="red", weight=0]; 262[label="compare xwv18 xwv13",fontsize=16,color="magenta"];262 -> 385[label="",style="dashed", color="magenta", weight=3]; 262 -> 386[label="",style="dashed", color="magenta", weight=3]; 263 -> 205[label="",style="dashed", color="red", weight=0]; 263[label="compare xwv18 xwv13",fontsize=16,color="magenta"];263 -> 387[label="",style="dashed", color="magenta", weight=3]; 263 -> 388[label="",style="dashed", color="magenta", weight=3]; 264 -> 206[label="",style="dashed", color="red", weight=0]; 264[label="compare xwv18 xwv13",fontsize=16,color="magenta"];264 -> 389[label="",style="dashed", color="magenta", weight=3]; 264 -> 390[label="",style="dashed", color="magenta", weight=3]; 265 -> 207[label="",style="dashed", color="red", weight=0]; 265[label="compare xwv18 xwv13",fontsize=16,color="magenta"];265 -> 391[label="",style="dashed", color="magenta", weight=3]; 265 -> 392[label="",style="dashed", color="magenta", weight=3]; 266 -> 208[label="",style="dashed", color="red", weight=0]; 266[label="compare xwv18 xwv13",fontsize=16,color="magenta"];266 -> 393[label="",style="dashed", color="magenta", weight=3]; 266 -> 394[label="",style="dashed", color="magenta", weight=3]; 267 -> 209[label="",style="dashed", color="red", weight=0]; 267[label="compare xwv18 xwv13",fontsize=16,color="magenta"];267 -> 395[label="",style="dashed", color="magenta", weight=3]; 267 -> 396[label="",style="dashed", color="magenta", weight=3]; 268 -> 210[label="",style="dashed", color="red", weight=0]; 268[label="compare xwv18 xwv13",fontsize=16,color="magenta"];268 -> 397[label="",style="dashed", color="magenta", weight=3]; 268 -> 398[label="",style="dashed", color="magenta", weight=3]; 269 -> 211[label="",style="dashed", color="red", weight=0]; 269[label="compare xwv18 xwv13",fontsize=16,color="magenta"];269 -> 399[label="",style="dashed", color="magenta", weight=3]; 269 -> 400[label="",style="dashed", color="magenta", weight=3]; 270 -> 212[label="",style="dashed", color="red", weight=0]; 270[label="compare xwv18 xwv13",fontsize=16,color="magenta"];270 -> 401[label="",style="dashed", color="magenta", weight=3]; 270 -> 402[label="",style="dashed", color="magenta", weight=3]; 271 -> 213[label="",style="dashed", color="red", weight=0]; 271[label="compare xwv18 xwv13",fontsize=16,color="magenta"];271 -> 403[label="",style="dashed", color="magenta", weight=3]; 271 -> 404[label="",style="dashed", color="magenta", weight=3]; 272 -> 214[label="",style="dashed", color="red", weight=0]; 272[label="compare xwv18 xwv13",fontsize=16,color="magenta"];272 -> 405[label="",style="dashed", color="magenta", weight=3]; 272 -> 406[label="",style="dashed", color="magenta", weight=3]; 273 -> 215[label="",style="dashed", color="red", weight=0]; 273[label="compare xwv18 xwv13",fontsize=16,color="magenta"];273 -> 407[label="",style="dashed", color="magenta", weight=3]; 273 -> 408[label="",style="dashed", color="magenta", weight=3]; 296[label="xwv28",fontsize=16,color="green",shape="box"];297[label="xwv32",fontsize=16,color="green",shape="box"];298[label="xwv31",fontsize=16,color="green",shape="box"];299[label="xwv30",fontsize=16,color="green",shape="box"];300[label="xwv33",fontsize=16,color="green",shape="box"];301[label="xwv28 == xwv33",fontsize=16,color="blue",shape="box"];3895[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 409[label="",style="solid", color="blue", weight=3]; 3896[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 410[label="",style="solid", color="blue", weight=3]; 3897[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3897[label="",style="solid", color="blue", weight=9]; 3897 -> 411[label="",style="solid", color="blue", weight=3]; 3898[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3898[label="",style="solid", color="blue", weight=9]; 3898 -> 412[label="",style="solid", color="blue", weight=3]; 3899[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3899[label="",style="solid", color="blue", weight=9]; 3899 -> 413[label="",style="solid", color="blue", weight=3]; 3900[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3900[label="",style="solid", color="blue", weight=9]; 3900 -> 414[label="",style="solid", color="blue", weight=3]; 3901[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3901[label="",style="solid", color="blue", weight=9]; 3901 -> 415[label="",style="solid", color="blue", weight=3]; 3902[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3902[label="",style="solid", color="blue", weight=9]; 3902 -> 416[label="",style="solid", color="blue", weight=3]; 3903[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3903[label="",style="solid", color="blue", weight=9]; 3903 -> 417[label="",style="solid", color="blue", weight=3]; 3904[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3904[label="",style="solid", color="blue", weight=9]; 3904 -> 418[label="",style="solid", color="blue", weight=3]; 3905[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3905[label="",style="solid", color="blue", weight=9]; 3905 -> 419[label="",style="solid", color="blue", weight=3]; 3906[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3906[label="",style="solid", color="blue", weight=9]; 3906 -> 420[label="",style="solid", color="blue", weight=3]; 3907[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3907[label="",style="solid", color="blue", weight=9]; 3907 -> 421[label="",style="solid", color="blue", weight=3]; 3908[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 3908[label="",style="solid", color="blue", weight=9]; 3908 -> 422[label="",style="solid", color="blue", weight=3]; 302[label="xwv29",fontsize=16,color="green",shape="box"];295[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 xwv54",fontsize=16,color="burlywood",shape="triangle"];3909[label="xwv54/False",fontsize=10,color="white",style="solid",shape="box"];295 -> 3909[label="",style="solid", color="burlywood", weight=9]; 3909 -> 423[label="",style="solid", color="burlywood", weight=3]; 3910[label="xwv54/True",fontsize=10,color="white",style="solid",shape="box"];295 -> 3910[label="",style="solid", color="burlywood", weight=9]; 3910 -> 424[label="",style="solid", color="burlywood", weight=3]; 330[label="xwv29",fontsize=16,color="green",shape="box"];331[label="xwv28",fontsize=16,color="green",shape="box"];332 -> 11[label="",style="dashed", color="red", weight=0]; 332[label="FiniteMap.delFromFM xwv31 xwv33",fontsize=16,color="magenta"];332 -> 425[label="",style="dashed", color="magenta", weight=3]; 332 -> 426[label="",style="dashed", color="magenta", weight=3]; 333[label="xwv32",fontsize=16,color="green",shape="box"];335 -> 111[label="",style="dashed", color="red", weight=0]; 335[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35 + FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];335 -> 427[label="",style="dashed", color="magenta", weight=3]; 335 -> 428[label="",style="dashed", color="magenta", weight=3]; 334[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 xwv55",fontsize=16,color="burlywood",shape="triangle"];3911[label="xwv55/False",fontsize=10,color="white",style="solid",shape="box"];334 -> 3911[label="",style="solid", color="burlywood", weight=9]; 3911 -> 429[label="",style="solid", color="burlywood", weight=3]; 3912[label="xwv55/True",fontsize=10,color="white",style="solid",shape="box"];334 -> 3912[label="",style="solid", color="burlywood", weight=9]; 3912 -> 430[label="",style="solid", color="burlywood", weight=3]; 336[label="primCmpNat xwv400 xwv300",fontsize=16,color="burlywood",shape="triangle"];3913[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];336 -> 3913[label="",style="solid", color="burlywood", weight=9]; 3913 -> 431[label="",style="solid", color="burlywood", weight=3]; 3914[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];336 -> 3914[label="",style="solid", color="burlywood", weight=9]; 3914 -> 432[label="",style="solid", color="burlywood", weight=3]; 337[label="xwv300",fontsize=16,color="green",shape="box"];338[label="xwv400",fontsize=16,color="green",shape="box"];339[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];339 -> 433[label="",style="solid", color="black", weight=3]; 340[label="compare2 Nothing (Just xwv300) (Nothing == Just xwv300)",fontsize=16,color="black",shape="box"];340 -> 434[label="",style="solid", color="black", weight=3]; 341[label="compare2 (Just xwv400) Nothing (Just xwv400 == Nothing)",fontsize=16,color="black",shape="box"];341 -> 435[label="",style="solid", color="black", weight=3]; 342[label="compare2 (Just xwv400) (Just xwv300) (Just xwv400 == Just xwv300)",fontsize=16,color="black",shape="box"];342 -> 436[label="",style="solid", color="black", weight=3]; 344 -> 205[label="",style="dashed", color="red", weight=0]; 344[label="compare xwv401 xwv301",fontsize=16,color="magenta"];344 -> 437[label="",style="dashed", color="magenta", weight=3]; 344 -> 438[label="",style="dashed", color="magenta", weight=3]; 343[label="primCompAux xwv400 xwv300 xwv56",fontsize=16,color="black",shape="triangle"];343 -> 439[label="",style="solid", color="black", weight=3]; 345[label="compare2 (xwv400,xwv401,xwv402) (xwv300,xwv301,xwv302) ((xwv400,xwv401,xwv402) == (xwv300,xwv301,xwv302))",fontsize=16,color="black",shape="box"];345 -> 440[label="",style="solid", color="black", weight=3]; 346[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];346 -> 441[label="",style="solid", color="black", weight=3]; 347[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];347 -> 442[label="",style="solid", color="black", weight=3]; 348[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];348 -> 443[label="",style="solid", color="black", weight=3]; 349[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];349 -> 444[label="",style="solid", color="black", weight=3]; 350[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];350 -> 445[label="",style="solid", color="black", weight=3]; 351[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];351 -> 446[label="",style="solid", color="black", weight=3]; 352[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];352 -> 447[label="",style="solid", color="black", weight=3]; 353[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];353 -> 448[label="",style="solid", color="black", weight=3]; 354[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];354 -> 449[label="",style="solid", color="black", weight=3]; 355[label="primCmpFloat (Float xwv400 (Pos xwv4010)) (Float xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3915[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];355 -> 3915[label="",style="solid", color="burlywood", weight=9]; 3915 -> 450[label="",style="solid", color="burlywood", weight=3]; 3916[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];355 -> 3916[label="",style="solid", color="burlywood", weight=9]; 3916 -> 451[label="",style="solid", color="burlywood", weight=3]; 356[label="primCmpFloat (Float xwv400 (Neg xwv4010)) (Float xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3917[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];356 -> 3917[label="",style="solid", color="burlywood", weight=9]; 3917 -> 452[label="",style="solid", color="burlywood", weight=3]; 3918[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];356 -> 3918[label="",style="solid", color="burlywood", weight=9]; 3918 -> 453[label="",style="solid", color="burlywood", weight=3]; 357[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];357 -> 454[label="",style="solid", color="black", weight=3]; 358[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];358 -> 455[label="",style="solid", color="black", weight=3]; 359[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];359 -> 456[label="",style="solid", color="black", weight=3]; 360[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];360 -> 457[label="",style="solid", color="black", weight=3]; 361[label="primCmpInt (Pos (Succ xwv4000)) (Pos xwv300)",fontsize=16,color="black",shape="box"];361 -> 458[label="",style="solid", color="black", weight=3]; 362[label="primCmpInt (Pos (Succ xwv4000)) (Neg xwv300)",fontsize=16,color="black",shape="box"];362 -> 459[label="",style="solid", color="black", weight=3]; 363[label="primCmpInt (Pos Zero) (Pos xwv300)",fontsize=16,color="burlywood",shape="box"];3919[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];363 -> 3919[label="",style="solid", color="burlywood", weight=9]; 3919 -> 460[label="",style="solid", color="burlywood", weight=3]; 3920[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];363 -> 3920[label="",style="solid", color="burlywood", weight=9]; 3920 -> 461[label="",style="solid", color="burlywood", weight=3]; 364[label="primCmpInt (Pos Zero) (Neg xwv300)",fontsize=16,color="burlywood",shape="box"];3921[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];364 -> 3921[label="",style="solid", color="burlywood", weight=9]; 3921 -> 462[label="",style="solid", color="burlywood", weight=3]; 3922[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];364 -> 3922[label="",style="solid", color="burlywood", weight=9]; 3922 -> 463[label="",style="solid", color="burlywood", weight=3]; 365[label="primCmpInt (Neg (Succ xwv4000)) (Pos xwv300)",fontsize=16,color="black",shape="box"];365 -> 464[label="",style="solid", color="black", weight=3]; 366[label="primCmpInt (Neg (Succ xwv4000)) (Neg xwv300)",fontsize=16,color="black",shape="box"];366 -> 465[label="",style="solid", color="black", weight=3]; 367[label="primCmpInt (Neg Zero) (Pos xwv300)",fontsize=16,color="burlywood",shape="box"];3923[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];367 -> 3923[label="",style="solid", color="burlywood", weight=9]; 3923 -> 466[label="",style="solid", color="burlywood", weight=3]; 3924[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];367 -> 3924[label="",style="solid", color="burlywood", weight=9]; 3924 -> 467[label="",style="solid", color="burlywood", weight=3]; 368[label="primCmpInt (Neg Zero) (Neg xwv300)",fontsize=16,color="burlywood",shape="box"];3925[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];368 -> 3925[label="",style="solid", color="burlywood", weight=9]; 3925 -> 468[label="",style="solid", color="burlywood", weight=3]; 3926[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];368 -> 3926[label="",style="solid", color="burlywood", weight=9]; 3926 -> 469[label="",style="solid", color="burlywood", weight=3]; 369[label="compare2 (xwv400,xwv401) (xwv300,xwv301) ((xwv400,xwv401) == (xwv300,xwv301))",fontsize=16,color="black",shape="box"];369 -> 470[label="",style="solid", color="black", weight=3]; 370 -> 203[label="",style="dashed", color="red", weight=0]; 370[label="compare (xwv400 * xwv301) (xwv300 * xwv401)",fontsize=16,color="magenta"];370 -> 471[label="",style="dashed", color="magenta", weight=3]; 370 -> 472[label="",style="dashed", color="magenta", weight=3]; 371 -> 211[label="",style="dashed", color="red", weight=0]; 371[label="compare (xwv400 * xwv301) (xwv300 * xwv401)",fontsize=16,color="magenta"];371 -> 473[label="",style="dashed", color="magenta", weight=3]; 371 -> 474[label="",style="dashed", color="magenta", weight=3]; 372[label="compare2 (Left xwv400) (Left xwv300) (Left xwv400 == Left xwv300)",fontsize=16,color="black",shape="box"];372 -> 475[label="",style="solid", color="black", weight=3]; 373[label="compare2 (Left xwv400) (Right xwv300) (Left xwv400 == Right xwv300)",fontsize=16,color="black",shape="box"];373 -> 476[label="",style="solid", color="black", weight=3]; 374[label="compare2 (Right xwv400) (Left xwv300) (Right xwv400 == Left xwv300)",fontsize=16,color="black",shape="box"];374 -> 477[label="",style="solid", color="black", weight=3]; 375[label="compare2 (Right xwv400) (Right xwv300) (Right xwv400 == Right xwv300)",fontsize=16,color="black",shape="box"];375 -> 478[label="",style="solid", color="black", weight=3]; 376[label="primCmpDouble (Double xwv400 (Pos xwv4010)) (Double xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3927[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];376 -> 3927[label="",style="solid", color="burlywood", weight=9]; 3927 -> 479[label="",style="solid", color="burlywood", weight=3]; 3928[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];376 -> 3928[label="",style="solid", color="burlywood", weight=9]; 3928 -> 480[label="",style="solid", color="burlywood", weight=3]; 377[label="primCmpDouble (Double xwv400 (Neg xwv4010)) (Double xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3929[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];377 -> 3929[label="",style="solid", color="burlywood", weight=9]; 3929 -> 481[label="",style="solid", color="burlywood", weight=3]; 3930[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];377 -> 3930[label="",style="solid", color="burlywood", weight=9]; 3930 -> 482[label="",style="solid", color="burlywood", weight=3]; 378[label="xwv13",fontsize=16,color="green",shape="box"];379[label="xwv18",fontsize=16,color="green",shape="box"];380[label="LT == LT",fontsize=16,color="black",shape="box"];380 -> 483[label="",style="solid", color="black", weight=3]; 381[label="EQ == LT",fontsize=16,color="black",shape="box"];381 -> 484[label="",style="solid", color="black", weight=3]; 382[label="GT == LT",fontsize=16,color="black",shape="box"];382 -> 485[label="",style="solid", color="black", weight=3]; 383[label="xwv13",fontsize=16,color="green",shape="box"];384[label="xwv18",fontsize=16,color="green",shape="box"];385[label="xwv13",fontsize=16,color="green",shape="box"];386[label="xwv18",fontsize=16,color="green",shape="box"];387[label="xwv13",fontsize=16,color="green",shape="box"];388[label="xwv18",fontsize=16,color="green",shape="box"];389[label="xwv13",fontsize=16,color="green",shape="box"];390[label="xwv18",fontsize=16,color="green",shape="box"];391[label="xwv13",fontsize=16,color="green",shape="box"];392[label="xwv18",fontsize=16,color="green",shape="box"];393[label="xwv13",fontsize=16,color="green",shape="box"];394[label="xwv18",fontsize=16,color="green",shape="box"];395[label="xwv13",fontsize=16,color="green",shape="box"];396[label="xwv18",fontsize=16,color="green",shape="box"];397[label="xwv13",fontsize=16,color="green",shape="box"];398[label="xwv18",fontsize=16,color="green",shape="box"];399[label="xwv13",fontsize=16,color="green",shape="box"];400[label="xwv18",fontsize=16,color="green",shape="box"];401[label="xwv13",fontsize=16,color="green",shape="box"];402[label="xwv18",fontsize=16,color="green",shape="box"];403[label="xwv13",fontsize=16,color="green",shape="box"];404[label="xwv18",fontsize=16,color="green",shape="box"];405[label="xwv13",fontsize=16,color="green",shape="box"];406[label="xwv18",fontsize=16,color="green",shape="box"];407[label="xwv13",fontsize=16,color="green",shape="box"];408[label="xwv18",fontsize=16,color="green",shape="box"];409[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3931[label="xwv28/Left xwv280",fontsize=10,color="white",style="solid",shape="box"];409 -> 3931[label="",style="solid", color="burlywood", weight=9]; 3931 -> 486[label="",style="solid", color="burlywood", weight=3]; 3932[label="xwv28/Right xwv280",fontsize=10,color="white",style="solid",shape="box"];409 -> 3932[label="",style="solid", color="burlywood", weight=9]; 3932 -> 487[label="",style="solid", color="burlywood", weight=3]; 410[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];410 -> 488[label="",style="solid", color="black", weight=3]; 411[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3933[label="xwv28/()",fontsize=10,color="white",style="solid",shape="box"];411 -> 3933[label="",style="solid", color="burlywood", weight=9]; 3933 -> 489[label="",style="solid", color="burlywood", weight=3]; 412[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];412 -> 490[label="",style="solid", color="black", weight=3]; 413[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3934[label="xwv28/xwv280 :% xwv281",fontsize=10,color="white",style="solid",shape="box"];413 -> 3934[label="",style="solid", color="burlywood", weight=9]; 3934 -> 491[label="",style="solid", color="burlywood", weight=3]; 414[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3935[label="xwv28/Nothing",fontsize=10,color="white",style="solid",shape="box"];414 -> 3935[label="",style="solid", color="burlywood", weight=9]; 3935 -> 492[label="",style="solid", color="burlywood", weight=3]; 3936[label="xwv28/Just xwv280",fontsize=10,color="white",style="solid",shape="box"];414 -> 3936[label="",style="solid", color="burlywood", weight=9]; 3936 -> 493[label="",style="solid", color="burlywood", weight=3]; 415[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];415 -> 494[label="",style="solid", color="black", weight=3]; 416[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3937[label="xwv28/Integer xwv280",fontsize=10,color="white",style="solid",shape="box"];416 -> 3937[label="",style="solid", color="burlywood", weight=9]; 3937 -> 495[label="",style="solid", color="burlywood", weight=3]; 417[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3938[label="xwv28/False",fontsize=10,color="white",style="solid",shape="box"];417 -> 3938[label="",style="solid", color="burlywood", weight=9]; 3938 -> 496[label="",style="solid", color="burlywood", weight=3]; 3939[label="xwv28/True",fontsize=10,color="white",style="solid",shape="box"];417 -> 3939[label="",style="solid", color="burlywood", weight=9]; 3939 -> 497[label="",style="solid", color="burlywood", weight=3]; 418[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];418 -> 498[label="",style="solid", color="black", weight=3]; 419[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3940[label="xwv28/xwv280 : xwv281",fontsize=10,color="white",style="solid",shape="box"];419 -> 3940[label="",style="solid", color="burlywood", weight=9]; 3940 -> 499[label="",style="solid", color="burlywood", weight=3]; 3941[label="xwv28/[]",fontsize=10,color="white",style="solid",shape="box"];419 -> 3941[label="",style="solid", color="burlywood", weight=9]; 3941 -> 500[label="",style="solid", color="burlywood", weight=3]; 420[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3942[label="xwv28/(xwv280,xwv281,xwv282)",fontsize=10,color="white",style="solid",shape="box"];420 -> 3942[label="",style="solid", color="burlywood", weight=9]; 3942 -> 501[label="",style="solid", color="burlywood", weight=3]; 421[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3943[label="xwv28/LT",fontsize=10,color="white",style="solid",shape="box"];421 -> 3943[label="",style="solid", color="burlywood", weight=9]; 3943 -> 502[label="",style="solid", color="burlywood", weight=3]; 3944[label="xwv28/EQ",fontsize=10,color="white",style="solid",shape="box"];421 -> 3944[label="",style="solid", color="burlywood", weight=9]; 3944 -> 503[label="",style="solid", color="burlywood", weight=3]; 3945[label="xwv28/GT",fontsize=10,color="white",style="solid",shape="box"];421 -> 3945[label="",style="solid", color="burlywood", weight=9]; 3945 -> 504[label="",style="solid", color="burlywood", weight=3]; 422[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3946[label="xwv28/(xwv280,xwv281)",fontsize=10,color="white",style="solid",shape="box"];422 -> 3946[label="",style="solid", color="burlywood", weight=9]; 3946 -> 505[label="",style="solid", color="burlywood", weight=3]; 423[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 False",fontsize=16,color="black",shape="box"];423 -> 506[label="",style="solid", color="black", weight=3]; 424[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 True",fontsize=16,color="black",shape="box"];424 -> 507[label="",style="solid", color="black", weight=3]; 425[label="xwv33",fontsize=16,color="green",shape="box"];426[label="xwv31",fontsize=16,color="green",shape="box"];427[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];428[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35 + FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="black",shape="box"];428 -> 508[label="",style="solid", color="black", weight=3]; 429[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];429 -> 509[label="",style="solid", color="black", weight=3]; 430[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];430 -> 510[label="",style="solid", color="black", weight=3]; 431[label="primCmpNat (Succ xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];3947[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];431 -> 3947[label="",style="solid", color="burlywood", weight=9]; 3947 -> 511[label="",style="solid", color="burlywood", weight=3]; 3948[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];431 -> 3948[label="",style="solid", color="burlywood", weight=9]; 3948 -> 512[label="",style="solid", color="burlywood", weight=3]; 432[label="primCmpNat Zero xwv300",fontsize=16,color="burlywood",shape="box"];3949[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];432 -> 3949[label="",style="solid", color="burlywood", weight=9]; 3949 -> 513[label="",style="solid", color="burlywood", weight=3]; 3950[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];432 -> 3950[label="",style="solid", color="burlywood", weight=9]; 3950 -> 514[label="",style="solid", color="burlywood", weight=3]; 433[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];433 -> 515[label="",style="solid", color="black", weight=3]; 434[label="compare2 Nothing (Just xwv300) False",fontsize=16,color="black",shape="box"];434 -> 516[label="",style="solid", color="black", weight=3]; 435[label="compare2 (Just xwv400) Nothing False",fontsize=16,color="black",shape="box"];435 -> 517[label="",style="solid", color="black", weight=3]; 436 -> 518[label="",style="dashed", color="red", weight=0]; 436[label="compare2 (Just xwv400) (Just xwv300) (xwv400 == xwv300)",fontsize=16,color="magenta"];436 -> 519[label="",style="dashed", color="magenta", weight=3]; 436 -> 520[label="",style="dashed", color="magenta", weight=3]; 436 -> 521[label="",style="dashed", color="magenta", weight=3]; 437[label="xwv301",fontsize=16,color="green",shape="box"];438[label="xwv401",fontsize=16,color="green",shape="box"];439 -> 522[label="",style="dashed", color="red", weight=0]; 439[label="primCompAux0 xwv56 (compare xwv400 xwv300)",fontsize=16,color="magenta"];439 -> 523[label="",style="dashed", color="magenta", weight=3]; 439 -> 524[label="",style="dashed", color="magenta", weight=3]; 440 -> 1134[label="",style="dashed", color="red", weight=0]; 440[label="compare2 (xwv400,xwv401,xwv402) (xwv300,xwv301,xwv302) (xwv400 == xwv300 && xwv401 == xwv301 && xwv402 == xwv302)",fontsize=16,color="magenta"];440 -> 1135[label="",style="dashed", color="magenta", weight=3]; 440 -> 1136[label="",style="dashed", color="magenta", weight=3]; 440 -> 1137[label="",style="dashed", color="magenta", weight=3]; 440 -> 1138[label="",style="dashed", color="magenta", weight=3]; 440 -> 1139[label="",style="dashed", color="magenta", weight=3]; 440 -> 1140[label="",style="dashed", color="magenta", weight=3]; 440 -> 1141[label="",style="dashed", color="magenta", weight=3]; 441[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];441 -> 533[label="",style="solid", color="black", weight=3]; 442[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];442 -> 534[label="",style="solid", color="black", weight=3]; 443[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];443 -> 535[label="",style="solid", color="black", weight=3]; 444[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];444 -> 536[label="",style="solid", color="black", weight=3]; 445[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];445 -> 537[label="",style="solid", color="black", weight=3]; 446[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];446 -> 538[label="",style="solid", color="black", weight=3]; 447[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];447 -> 539[label="",style="solid", color="black", weight=3]; 448[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];448 -> 540[label="",style="solid", color="black", weight=3]; 449[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];449 -> 541[label="",style="solid", color="black", weight=3]; 450[label="primCmpFloat (Float xwv400 (Pos xwv4010)) (Float xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];450 -> 542[label="",style="solid", color="black", weight=3]; 451[label="primCmpFloat (Float xwv400 (Pos xwv4010)) (Float xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];451 -> 543[label="",style="solid", color="black", weight=3]; 452[label="primCmpFloat (Float xwv400 (Neg xwv4010)) (Float xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];452 -> 544[label="",style="solid", color="black", weight=3]; 453[label="primCmpFloat (Float xwv400 (Neg xwv4010)) (Float xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];453 -> 545[label="",style="solid", color="black", weight=3]; 454[label="compare2 False False True",fontsize=16,color="black",shape="box"];454 -> 546[label="",style="solid", color="black", weight=3]; 455[label="compare2 False True False",fontsize=16,color="black",shape="box"];455 -> 547[label="",style="solid", color="black", weight=3]; 456[label="compare2 True False False",fontsize=16,color="black",shape="box"];456 -> 548[label="",style="solid", color="black", weight=3]; 457[label="compare2 True True True",fontsize=16,color="black",shape="box"];457 -> 549[label="",style="solid", color="black", weight=3]; 458 -> 336[label="",style="dashed", color="red", weight=0]; 458[label="primCmpNat (Succ xwv4000) xwv300",fontsize=16,color="magenta"];458 -> 550[label="",style="dashed", color="magenta", weight=3]; 458 -> 551[label="",style="dashed", color="magenta", weight=3]; 459[label="GT",fontsize=16,color="green",shape="box"];460[label="primCmpInt (Pos Zero) (Pos (Succ xwv3000))",fontsize=16,color="black",shape="box"];460 -> 552[label="",style="solid", color="black", weight=3]; 461[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];461 -> 553[label="",style="solid", color="black", weight=3]; 462[label="primCmpInt (Pos Zero) (Neg (Succ xwv3000))",fontsize=16,color="black",shape="box"];462 -> 554[label="",style="solid", color="black", weight=3]; 463[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];463 -> 555[label="",style="solid", color="black", weight=3]; 464[label="LT",fontsize=16,color="green",shape="box"];465 -> 336[label="",style="dashed", color="red", weight=0]; 465[label="primCmpNat xwv300 (Succ xwv4000)",fontsize=16,color="magenta"];465 -> 556[label="",style="dashed", color="magenta", weight=3]; 465 -> 557[label="",style="dashed", color="magenta", weight=3]; 466[label="primCmpInt (Neg Zero) (Pos (Succ xwv3000))",fontsize=16,color="black",shape="box"];466 -> 558[label="",style="solid", color="black", weight=3]; 467[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];467 -> 559[label="",style="solid", color="black", weight=3]; 468[label="primCmpInt (Neg Zero) (Neg (Succ xwv3000))",fontsize=16,color="black",shape="box"];468 -> 560[label="",style="solid", color="black", weight=3]; 469[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];469 -> 561[label="",style="solid", color="black", weight=3]; 470 -> 1155[label="",style="dashed", color="red", weight=0]; 470[label="compare2 (xwv400,xwv401) (xwv300,xwv301) (xwv400 == xwv300 && xwv401 == xwv301)",fontsize=16,color="magenta"];470 -> 1156[label="",style="dashed", color="magenta", weight=3]; 470 -> 1157[label="",style="dashed", color="magenta", weight=3]; 470 -> 1158[label="",style="dashed", color="magenta", weight=3]; 470 -> 1159[label="",style="dashed", color="magenta", weight=3]; 470 -> 1160[label="",style="dashed", color="magenta", weight=3]; 471[label="xwv300 * xwv401",fontsize=16,color="burlywood",shape="triangle"];3951[label="xwv300/Integer xwv3000",fontsize=10,color="white",style="solid",shape="box"];471 -> 3951[label="",style="solid", color="burlywood", weight=9]; 3951 -> 568[label="",style="solid", color="burlywood", weight=3]; 472 -> 471[label="",style="dashed", color="red", weight=0]; 472[label="xwv400 * xwv301",fontsize=16,color="magenta"];472 -> 569[label="",style="dashed", color="magenta", weight=3]; 472 -> 570[label="",style="dashed", color="magenta", weight=3]; 473[label="xwv300 * xwv401",fontsize=16,color="black",shape="triangle"];473 -> 571[label="",style="solid", color="black", weight=3]; 474 -> 473[label="",style="dashed", color="red", weight=0]; 474[label="xwv400 * xwv301",fontsize=16,color="magenta"];474 -> 572[label="",style="dashed", color="magenta", weight=3]; 474 -> 573[label="",style="dashed", color="magenta", weight=3]; 475 -> 574[label="",style="dashed", color="red", weight=0]; 475[label="compare2 (Left xwv400) (Left xwv300) (xwv400 == xwv300)",fontsize=16,color="magenta"];475 -> 575[label="",style="dashed", color="magenta", weight=3]; 475 -> 576[label="",style="dashed", color="magenta", weight=3]; 475 -> 577[label="",style="dashed", color="magenta", weight=3]; 476[label="compare2 (Left xwv400) (Right xwv300) False",fontsize=16,color="black",shape="box"];476 -> 578[label="",style="solid", color="black", weight=3]; 477[label="compare2 (Right xwv400) (Left xwv300) False",fontsize=16,color="black",shape="box"];477 -> 579[label="",style="solid", color="black", weight=3]; 478 -> 580[label="",style="dashed", color="red", weight=0]; 478[label="compare2 (Right xwv400) (Right xwv300) (xwv400 == xwv300)",fontsize=16,color="magenta"];478 -> 581[label="",style="dashed", color="magenta", weight=3]; 478 -> 582[label="",style="dashed", color="magenta", weight=3]; 478 -> 583[label="",style="dashed", color="magenta", weight=3]; 479[label="primCmpDouble (Double xwv400 (Pos xwv4010)) (Double xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];479 -> 584[label="",style="solid", color="black", weight=3]; 480[label="primCmpDouble (Double xwv400 (Pos xwv4010)) (Double xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];480 -> 585[label="",style="solid", color="black", weight=3]; 481[label="primCmpDouble (Double xwv400 (Neg xwv4010)) (Double xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];481 -> 586[label="",style="solid", color="black", weight=3]; 482[label="primCmpDouble (Double xwv400 (Neg xwv4010)) (Double xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];482 -> 587[label="",style="solid", color="black", weight=3]; 483[label="True",fontsize=16,color="green",shape="box"];484[label="False",fontsize=16,color="green",shape="box"];485[label="False",fontsize=16,color="green",shape="box"];486[label="Left xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3952[label="xwv33/Left xwv330",fontsize=10,color="white",style="solid",shape="box"];486 -> 3952[label="",style="solid", color="burlywood", weight=9]; 3952 -> 588[label="",style="solid", color="burlywood", weight=3]; 3953[label="xwv33/Right xwv330",fontsize=10,color="white",style="solid",shape="box"];486 -> 3953[label="",style="solid", color="burlywood", weight=9]; 3953 -> 589[label="",style="solid", color="burlywood", weight=3]; 487[label="Right xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3954[label="xwv33/Left xwv330",fontsize=10,color="white",style="solid",shape="box"];487 -> 3954[label="",style="solid", color="burlywood", weight=9]; 3954 -> 590[label="",style="solid", color="burlywood", weight=3]; 3955[label="xwv33/Right xwv330",fontsize=10,color="white",style="solid",shape="box"];487 -> 3955[label="",style="solid", color="burlywood", weight=9]; 3955 -> 591[label="",style="solid", color="burlywood", weight=3]; 488[label="primEqChar xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3956[label="xwv28/Char xwv280",fontsize=10,color="white",style="solid",shape="box"];488 -> 3956[label="",style="solid", color="burlywood", weight=9]; 3956 -> 592[label="",style="solid", color="burlywood", weight=3]; 489[label="() == xwv33",fontsize=16,color="burlywood",shape="box"];3957[label="xwv33/()",fontsize=10,color="white",style="solid",shape="box"];489 -> 3957[label="",style="solid", color="burlywood", weight=9]; 3957 -> 593[label="",style="solid", color="burlywood", weight=3]; 490[label="primEqInt xwv28 xwv33",fontsize=16,color="burlywood",shape="triangle"];3958[label="xwv28/Pos xwv280",fontsize=10,color="white",style="solid",shape="box"];490 -> 3958[label="",style="solid", color="burlywood", weight=9]; 3958 -> 594[label="",style="solid", color="burlywood", weight=3]; 3959[label="xwv28/Neg xwv280",fontsize=10,color="white",style="solid",shape="box"];490 -> 3959[label="",style="solid", color="burlywood", weight=9]; 3959 -> 595[label="",style="solid", color="burlywood", weight=3]; 491[label="xwv280 :% xwv281 == xwv33",fontsize=16,color="burlywood",shape="box"];3960[label="xwv33/xwv330 :% xwv331",fontsize=10,color="white",style="solid",shape="box"];491 -> 3960[label="",style="solid", color="burlywood", weight=9]; 3960 -> 596[label="",style="solid", color="burlywood", weight=3]; 492[label="Nothing == xwv33",fontsize=16,color="burlywood",shape="box"];3961[label="xwv33/Nothing",fontsize=10,color="white",style="solid",shape="box"];492 -> 3961[label="",style="solid", color="burlywood", weight=9]; 3961 -> 597[label="",style="solid", color="burlywood", weight=3]; 3962[label="xwv33/Just xwv330",fontsize=10,color="white",style="solid",shape="box"];492 -> 3962[label="",style="solid", color="burlywood", weight=9]; 3962 -> 598[label="",style="solid", color="burlywood", weight=3]; 493[label="Just xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3963[label="xwv33/Nothing",fontsize=10,color="white",style="solid",shape="box"];493 -> 3963[label="",style="solid", color="burlywood", weight=9]; 3963 -> 599[label="",style="solid", color="burlywood", weight=3]; 3964[label="xwv33/Just xwv330",fontsize=10,color="white",style="solid",shape="box"];493 -> 3964[label="",style="solid", color="burlywood", weight=9]; 3964 -> 600[label="",style="solid", color="burlywood", weight=3]; 494[label="primEqFloat xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3965[label="xwv28/Float xwv280 xwv281",fontsize=10,color="white",style="solid",shape="box"];494 -> 3965[label="",style="solid", color="burlywood", weight=9]; 3965 -> 601[label="",style="solid", color="burlywood", weight=3]; 495[label="Integer xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3966[label="xwv33/Integer xwv330",fontsize=10,color="white",style="solid",shape="box"];495 -> 3966[label="",style="solid", color="burlywood", weight=9]; 3966 -> 602[label="",style="solid", color="burlywood", weight=3]; 496[label="False == xwv33",fontsize=16,color="burlywood",shape="box"];3967[label="xwv33/False",fontsize=10,color="white",style="solid",shape="box"];496 -> 3967[label="",style="solid", color="burlywood", weight=9]; 3967 -> 603[label="",style="solid", color="burlywood", weight=3]; 3968[label="xwv33/True",fontsize=10,color="white",style="solid",shape="box"];496 -> 3968[label="",style="solid", color="burlywood", weight=9]; 3968 -> 604[label="",style="solid", color="burlywood", weight=3]; 497[label="True == xwv33",fontsize=16,color="burlywood",shape="box"];3969[label="xwv33/False",fontsize=10,color="white",style="solid",shape="box"];497 -> 3969[label="",style="solid", color="burlywood", weight=9]; 3969 -> 605[label="",style="solid", color="burlywood", weight=3]; 3970[label="xwv33/True",fontsize=10,color="white",style="solid",shape="box"];497 -> 3970[label="",style="solid", color="burlywood", weight=9]; 3970 -> 606[label="",style="solid", color="burlywood", weight=3]; 498[label="primEqDouble xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3971[label="xwv28/Double xwv280 xwv281",fontsize=10,color="white",style="solid",shape="box"];498 -> 3971[label="",style="solid", color="burlywood", weight=9]; 3971 -> 607[label="",style="solid", color="burlywood", weight=3]; 499[label="xwv280 : xwv281 == xwv33",fontsize=16,color="burlywood",shape="box"];3972[label="xwv33/xwv330 : xwv331",fontsize=10,color="white",style="solid",shape="box"];499 -> 3972[label="",style="solid", color="burlywood", weight=9]; 3972 -> 608[label="",style="solid", color="burlywood", weight=3]; 3973[label="xwv33/[]",fontsize=10,color="white",style="solid",shape="box"];499 -> 3973[label="",style="solid", color="burlywood", weight=9]; 3973 -> 609[label="",style="solid", color="burlywood", weight=3]; 500[label="[] == xwv33",fontsize=16,color="burlywood",shape="box"];3974[label="xwv33/xwv330 : xwv331",fontsize=10,color="white",style="solid",shape="box"];500 -> 3974[label="",style="solid", color="burlywood", weight=9]; 3974 -> 610[label="",style="solid", color="burlywood", weight=3]; 3975[label="xwv33/[]",fontsize=10,color="white",style="solid",shape="box"];500 -> 3975[label="",style="solid", color="burlywood", weight=9]; 3975 -> 611[label="",style="solid", color="burlywood", weight=3]; 501[label="(xwv280,xwv281,xwv282) == xwv33",fontsize=16,color="burlywood",shape="box"];3976[label="xwv33/(xwv330,xwv331,xwv332)",fontsize=10,color="white",style="solid",shape="box"];501 -> 3976[label="",style="solid", color="burlywood", weight=9]; 3976 -> 612[label="",style="solid", color="burlywood", weight=3]; 502[label="LT == xwv33",fontsize=16,color="burlywood",shape="box"];3977[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];502 -> 3977[label="",style="solid", color="burlywood", weight=9]; 3977 -> 613[label="",style="solid", color="burlywood", weight=3]; 3978[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];502 -> 3978[label="",style="solid", color="burlywood", weight=9]; 3978 -> 614[label="",style="solid", color="burlywood", weight=3]; 3979[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];502 -> 3979[label="",style="solid", color="burlywood", weight=9]; 3979 -> 615[label="",style="solid", color="burlywood", weight=3]; 503[label="EQ == xwv33",fontsize=16,color="burlywood",shape="box"];3980[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];503 -> 3980[label="",style="solid", color="burlywood", weight=9]; 3980 -> 616[label="",style="solid", color="burlywood", weight=3]; 3981[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];503 -> 3981[label="",style="solid", color="burlywood", weight=9]; 3981 -> 617[label="",style="solid", color="burlywood", weight=3]; 3982[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];503 -> 3982[label="",style="solid", color="burlywood", weight=9]; 3982 -> 618[label="",style="solid", color="burlywood", weight=3]; 504[label="GT == xwv33",fontsize=16,color="burlywood",shape="box"];3983[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];504 -> 3983[label="",style="solid", color="burlywood", weight=9]; 3983 -> 619[label="",style="solid", color="burlywood", weight=3]; 3984[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];504 -> 3984[label="",style="solid", color="burlywood", weight=9]; 3984 -> 620[label="",style="solid", color="burlywood", weight=3]; 3985[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];504 -> 3985[label="",style="solid", color="burlywood", weight=9]; 3985 -> 621[label="",style="solid", color="burlywood", weight=3]; 505[label="(xwv280,xwv281) == xwv33",fontsize=16,color="burlywood",shape="box"];3986[label="xwv33/(xwv330,xwv331)",fontsize=10,color="white",style="solid",shape="box"];505 -> 3986[label="",style="solid", color="burlywood", weight=9]; 3986 -> 622[label="",style="solid", color="burlywood", weight=3]; 506[label="error []",fontsize=16,color="red",shape="box"];507[label="FiniteMap.glueBal xwv51 xwv52",fontsize=16,color="burlywood",shape="box"];3987[label="xwv51/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];507 -> 3987[label="",style="solid", color="burlywood", weight=9]; 3987 -> 623[label="",style="solid", color="burlywood", weight=3]; 3988[label="xwv51/FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=10,color="white",style="solid",shape="box"];507 -> 3988[label="",style="solid", color="burlywood", weight=9]; 3988 -> 624[label="",style="solid", color="burlywood", weight=3]; 508 -> 1549[label="",style="dashed", color="red", weight=0]; 508[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35) (FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35)",fontsize=16,color="magenta"];508 -> 1550[label="",style="dashed", color="magenta", weight=3]; 508 -> 1551[label="",style="dashed", color="magenta", weight=3]; 509 -> 626[label="",style="dashed", color="red", weight=0]; 509[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35)",fontsize=16,color="magenta"];509 -> 627[label="",style="dashed", color="magenta", weight=3]; 510[label="FiniteMap.mkBranch (Pos (Succ Zero)) xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];510 -> 628[label="",style="solid", color="black", weight=3]; 511[label="primCmpNat (Succ xwv4000) (Succ xwv3000)",fontsize=16,color="black",shape="box"];511 -> 629[label="",style="solid", color="black", weight=3]; 512[label="primCmpNat (Succ xwv4000) Zero",fontsize=16,color="black",shape="box"];512 -> 630[label="",style="solid", color="black", weight=3]; 513[label="primCmpNat Zero (Succ xwv3000)",fontsize=16,color="black",shape="box"];513 -> 631[label="",style="solid", color="black", weight=3]; 514[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];514 -> 632[label="",style="solid", color="black", weight=3]; 515[label="EQ",fontsize=16,color="green",shape="box"];516[label="compare1 Nothing (Just xwv300) (Nothing <= Just xwv300)",fontsize=16,color="black",shape="box"];516 -> 633[label="",style="solid", color="black", weight=3]; 517[label="compare1 (Just xwv400) Nothing (Just xwv400 <= Nothing)",fontsize=16,color="black",shape="box"];517 -> 634[label="",style="solid", color="black", weight=3]; 519[label="xwv400",fontsize=16,color="green",shape="box"];520[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];3989[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 635[label="",style="solid", color="blue", weight=3]; 3990[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3990[label="",style="solid", color="blue", weight=9]; 3990 -> 636[label="",style="solid", color="blue", weight=3]; 3991[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3991[label="",style="solid", color="blue", weight=9]; 3991 -> 637[label="",style="solid", color="blue", weight=3]; 3992[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3992[label="",style="solid", color="blue", weight=9]; 3992 -> 638[label="",style="solid", color="blue", weight=3]; 3993[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3993[label="",style="solid", color="blue", weight=9]; 3993 -> 639[label="",style="solid", color="blue", weight=3]; 3994[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3994[label="",style="solid", color="blue", weight=9]; 3994 -> 640[label="",style="solid", color="blue", weight=3]; 3995[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3995[label="",style="solid", color="blue", weight=9]; 3995 -> 641[label="",style="solid", color="blue", weight=3]; 3996[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 642[label="",style="solid", color="blue", weight=3]; 3997[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3997[label="",style="solid", color="blue", weight=9]; 3997 -> 643[label="",style="solid", color="blue", weight=3]; 3998[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3998[label="",style="solid", color="blue", weight=9]; 3998 -> 644[label="",style="solid", color="blue", weight=3]; 3999[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3999[label="",style="solid", color="blue", weight=9]; 3999 -> 645[label="",style="solid", color="blue", weight=3]; 4000[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 4000[label="",style="solid", color="blue", weight=9]; 4000 -> 646[label="",style="solid", color="blue", weight=3]; 4001[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 4001[label="",style="solid", color="blue", weight=9]; 4001 -> 647[label="",style="solid", color="blue", weight=3]; 4002[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 4002[label="",style="solid", color="blue", weight=9]; 4002 -> 648[label="",style="solid", color="blue", weight=3]; 521[label="xwv300",fontsize=16,color="green",shape="box"];518[label="compare2 (Just xwv61) (Just xwv62) xwv63",fontsize=16,color="burlywood",shape="triangle"];4003[label="xwv63/False",fontsize=10,color="white",style="solid",shape="box"];518 -> 4003[label="",style="solid", color="burlywood", weight=9]; 4003 -> 649[label="",style="solid", color="burlywood", weight=3]; 4004[label="xwv63/True",fontsize=10,color="white",style="solid",shape="box"];518 -> 4004[label="",style="solid", color="burlywood", weight=9]; 4004 -> 650[label="",style="solid", color="burlywood", weight=3]; 523[label="xwv56",fontsize=16,color="green",shape="box"];524[label="compare xwv400 xwv300",fontsize=16,color="blue",shape="box"];4005[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4005[label="",style="solid", color="blue", weight=9]; 4005 -> 651[label="",style="solid", color="blue", weight=3]; 4006[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4006[label="",style="solid", color="blue", weight=9]; 4006 -> 652[label="",style="solid", color="blue", weight=3]; 4007[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4007[label="",style="solid", color="blue", weight=9]; 4007 -> 653[label="",style="solid", color="blue", weight=3]; 4008[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4008[label="",style="solid", color="blue", weight=9]; 4008 -> 654[label="",style="solid", color="blue", weight=3]; 4009[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4009[label="",style="solid", color="blue", weight=9]; 4009 -> 655[label="",style="solid", color="blue", weight=3]; 4010[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4010[label="",style="solid", color="blue", weight=9]; 4010 -> 656[label="",style="solid", color="blue", weight=3]; 4011[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4011[label="",style="solid", color="blue", weight=9]; 4011 -> 657[label="",style="solid", color="blue", weight=3]; 4012[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4012[label="",style="solid", color="blue", weight=9]; 4012 -> 658[label="",style="solid", color="blue", weight=3]; 4013[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4013[label="",style="solid", color="blue", weight=9]; 4013 -> 659[label="",style="solid", color="blue", weight=3]; 4014[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4014[label="",style="solid", color="blue", weight=9]; 4014 -> 660[label="",style="solid", color="blue", weight=3]; 4015[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4015[label="",style="solid", color="blue", weight=9]; 4015 -> 661[label="",style="solid", color="blue", weight=3]; 4016[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4016[label="",style="solid", color="blue", weight=9]; 4016 -> 662[label="",style="solid", color="blue", weight=3]; 4017[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4017[label="",style="solid", color="blue", weight=9]; 4017 -> 663[label="",style="solid", color="blue", weight=3]; 4018[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];524 -> 4018[label="",style="solid", color="blue", weight=9]; 4018 -> 664[label="",style="solid", color="blue", weight=3]; 522[label="primCompAux0 xwv67 xwv68",fontsize=16,color="burlywood",shape="triangle"];4019[label="xwv68/LT",fontsize=10,color="white",style="solid",shape="box"];522 -> 4019[label="",style="solid", color="burlywood", weight=9]; 4019 -> 665[label="",style="solid", color="burlywood", weight=3]; 4020[label="xwv68/EQ",fontsize=10,color="white",style="solid",shape="box"];522 -> 4020[label="",style="solid", color="burlywood", weight=9]; 4020 -> 666[label="",style="solid", color="burlywood", weight=3]; 4021[label="xwv68/GT",fontsize=10,color="white",style="solid",shape="box"];522 -> 4021[label="",style="solid", color="burlywood", weight=9]; 4021 -> 667[label="",style="solid", color="burlywood", weight=3]; 1135[label="xwv300",fontsize=16,color="green",shape="box"];1136[label="xwv301",fontsize=16,color="green",shape="box"];1137[label="xwv402",fontsize=16,color="green",shape="box"];1138 -> 1184[label="",style="dashed", color="red", weight=0]; 1138[label="xwv400 == xwv300 && xwv401 == xwv301 && xwv402 == xwv302",fontsize=16,color="magenta"];1138 -> 1185[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1139[label="xwv400",fontsize=16,color="green",shape="box"];1140[label="xwv302",fontsize=16,color="green",shape="box"];1141[label="xwv401",fontsize=16,color="green",shape="box"];1134[label="compare2 (xwv77,xwv78,xwv79) (xwv80,xwv81,xwv82) xwv119",fontsize=16,color="burlywood",shape="triangle"];4022[label="xwv119/False",fontsize=10,color="white",style="solid",shape="box"];1134 -> 4022[label="",style="solid", color="burlywood", weight=9]; 4022 -> 1148[label="",style="solid", color="burlywood", weight=3]; 4023[label="xwv119/True",fontsize=10,color="white",style="solid",shape="box"];1134 -> 4023[label="",style="solid", color="burlywood", weight=9]; 4023 -> 1149[label="",style="solid", color="burlywood", weight=3]; 533[label="EQ",fontsize=16,color="green",shape="box"];534[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];534 -> 684[label="",style="solid", color="black", weight=3]; 535[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];535 -> 685[label="",style="solid", color="black", weight=3]; 536[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];536 -> 686[label="",style="solid", color="black", weight=3]; 537[label="EQ",fontsize=16,color="green",shape="box"];538[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];538 -> 687[label="",style="solid", color="black", weight=3]; 539[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];539 -> 688[label="",style="solid", color="black", weight=3]; 540[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];540 -> 689[label="",style="solid", color="black", weight=3]; 541[label="EQ",fontsize=16,color="green",shape="box"];542 -> 211[label="",style="dashed", color="red", weight=0]; 542[label="compare (xwv400 * Pos xwv3010) (Pos xwv4010 * xwv300)",fontsize=16,color="magenta"];542 -> 690[label="",style="dashed", color="magenta", weight=3]; 542 -> 691[label="",style="dashed", color="magenta", weight=3]; 543 -> 211[label="",style="dashed", color="red", weight=0]; 543[label="compare (xwv400 * Pos xwv3010) (Neg xwv4010 * xwv300)",fontsize=16,color="magenta"];543 -> 692[label="",style="dashed", color="magenta", weight=3]; 543 -> 693[label="",style="dashed", color="magenta", weight=3]; 544 -> 211[label="",style="dashed", color="red", weight=0]; 544[label="compare (xwv400 * Neg xwv3010) (Pos xwv4010 * xwv300)",fontsize=16,color="magenta"];544 -> 694[label="",style="dashed", color="magenta", weight=3]; 544 -> 695[label="",style="dashed", color="magenta", weight=3]; 545 -> 211[label="",style="dashed", color="red", weight=0]; 545[label="compare (xwv400 * Neg xwv3010) (Neg xwv4010 * xwv300)",fontsize=16,color="magenta"];545 -> 696[label="",style="dashed", color="magenta", weight=3]; 545 -> 697[label="",style="dashed", color="magenta", weight=3]; 546[label="EQ",fontsize=16,color="green",shape="box"];547[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];547 -> 698[label="",style="solid", color="black", weight=3]; 548[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];548 -> 699[label="",style="solid", color="black", weight=3]; 549[label="EQ",fontsize=16,color="green",shape="box"];550[label="Succ xwv4000",fontsize=16,color="green",shape="box"];551[label="xwv300",fontsize=16,color="green",shape="box"];552 -> 336[label="",style="dashed", color="red", weight=0]; 552[label="primCmpNat Zero (Succ xwv3000)",fontsize=16,color="magenta"];552 -> 700[label="",style="dashed", color="magenta", weight=3]; 552 -> 701[label="",style="dashed", color="magenta", weight=3]; 553[label="EQ",fontsize=16,color="green",shape="box"];554[label="GT",fontsize=16,color="green",shape="box"];555[label="EQ",fontsize=16,color="green",shape="box"];556[label="xwv300",fontsize=16,color="green",shape="box"];557[label="Succ xwv4000",fontsize=16,color="green",shape="box"];558[label="LT",fontsize=16,color="green",shape="box"];559[label="EQ",fontsize=16,color="green",shape="box"];560 -> 336[label="",style="dashed", color="red", weight=0]; 560[label="primCmpNat (Succ xwv3000) Zero",fontsize=16,color="magenta"];560 -> 702[label="",style="dashed", color="magenta", weight=3]; 560 -> 703[label="",style="dashed", color="magenta", weight=3]; 561[label="EQ",fontsize=16,color="green",shape="box"];1156[label="xwv401",fontsize=16,color="green",shape="box"];1157[label="xwv301",fontsize=16,color="green",shape="box"];1158[label="xwv400",fontsize=16,color="green",shape="box"];1159 -> 1184[label="",style="dashed", color="red", weight=0]; 1159[label="xwv400 == xwv300 && xwv401 == xwv301",fontsize=16,color="magenta"];1159 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1160[label="xwv300",fontsize=16,color="green",shape="box"];1155[label="compare2 (xwv126,xwv127) (xwv128,xwv129) xwv130",fontsize=16,color="burlywood",shape="triangle"];4024[label="xwv130/False",fontsize=10,color="white",style="solid",shape="box"];1155 -> 4024[label="",style="solid", color="burlywood", weight=9]; 4024 -> 1179[label="",style="solid", color="burlywood", weight=3]; 4025[label="xwv130/True",fontsize=10,color="white",style="solid",shape="box"];1155 -> 4025[label="",style="solid", color="burlywood", weight=9]; 4025 -> 1180[label="",style="solid", color="burlywood", weight=3]; 568[label="Integer xwv3000 * xwv401",fontsize=16,color="burlywood",shape="box"];4026[label="xwv401/Integer xwv4010",fontsize=10,color="white",style="solid",shape="box"];568 -> 4026[label="",style="solid", color="burlywood", weight=9]; 4026 -> 720[label="",style="solid", color="burlywood", weight=3]; 569[label="xwv400",fontsize=16,color="green",shape="box"];570[label="xwv301",fontsize=16,color="green",shape="box"];571[label="primMulInt xwv300 xwv401",fontsize=16,color="burlywood",shape="triangle"];4027[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];571 -> 4027[label="",style="solid", color="burlywood", weight=9]; 4027 -> 721[label="",style="solid", color="burlywood", weight=3]; 4028[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];571 -> 4028[label="",style="solid", color="burlywood", weight=9]; 4028 -> 722[label="",style="solid", color="burlywood", weight=3]; 572[label="xwv400",fontsize=16,color="green",shape="box"];573[label="xwv301",fontsize=16,color="green",shape="box"];575[label="xwv400",fontsize=16,color="green",shape="box"];576[label="xwv300",fontsize=16,color="green",shape="box"];577[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4029[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4029[label="",style="solid", color="blue", weight=9]; 4029 -> 723[label="",style="solid", color="blue", weight=3]; 4030[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4030[label="",style="solid", color="blue", weight=9]; 4030 -> 724[label="",style="solid", color="blue", weight=3]; 4031[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4031[label="",style="solid", color="blue", weight=9]; 4031 -> 725[label="",style="solid", color="blue", weight=3]; 4032[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4032[label="",style="solid", color="blue", weight=9]; 4032 -> 726[label="",style="solid", color="blue", weight=3]; 4033[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4033[label="",style="solid", color="blue", weight=9]; 4033 -> 727[label="",style="solid", color="blue", weight=3]; 4034[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4034[label="",style="solid", color="blue", weight=9]; 4034 -> 728[label="",style="solid", color="blue", weight=3]; 4035[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4035[label="",style="solid", color="blue", weight=9]; 4035 -> 729[label="",style="solid", color="blue", weight=3]; 4036[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4036[label="",style="solid", color="blue", weight=9]; 4036 -> 730[label="",style="solid", color="blue", weight=3]; 4037[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4037[label="",style="solid", color="blue", weight=9]; 4037 -> 731[label="",style="solid", color="blue", weight=3]; 4038[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4038[label="",style="solid", color="blue", weight=9]; 4038 -> 732[label="",style="solid", color="blue", weight=3]; 4039[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4039[label="",style="solid", color="blue", weight=9]; 4039 -> 733[label="",style="solid", color="blue", weight=3]; 4040[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4040[label="",style="solid", color="blue", weight=9]; 4040 -> 734[label="",style="solid", color="blue", weight=3]; 4041[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4041[label="",style="solid", color="blue", weight=9]; 4041 -> 735[label="",style="solid", color="blue", weight=3]; 4042[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];577 -> 4042[label="",style="solid", color="blue", weight=9]; 4042 -> 736[label="",style="solid", color="blue", weight=3]; 574[label="compare2 (Left xwv99) (Left xwv100) xwv101",fontsize=16,color="burlywood",shape="triangle"];4043[label="xwv101/False",fontsize=10,color="white",style="solid",shape="box"];574 -> 4043[label="",style="solid", color="burlywood", weight=9]; 4043 -> 737[label="",style="solid", color="burlywood", weight=3]; 4044[label="xwv101/True",fontsize=10,color="white",style="solid",shape="box"];574 -> 4044[label="",style="solid", color="burlywood", weight=9]; 4044 -> 738[label="",style="solid", color="burlywood", weight=3]; 578[label="compare1 (Left xwv400) (Right xwv300) (Left xwv400 <= Right xwv300)",fontsize=16,color="black",shape="box"];578 -> 739[label="",style="solid", color="black", weight=3]; 579[label="compare1 (Right xwv400) (Left xwv300) (Right xwv400 <= Left xwv300)",fontsize=16,color="black",shape="box"];579 -> 740[label="",style="solid", color="black", weight=3]; 581[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4045[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4045[label="",style="solid", color="blue", weight=9]; 4045 -> 741[label="",style="solid", color="blue", weight=3]; 4046[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4046[label="",style="solid", color="blue", weight=9]; 4046 -> 742[label="",style="solid", color="blue", weight=3]; 4047[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4047[label="",style="solid", color="blue", weight=9]; 4047 -> 743[label="",style="solid", color="blue", weight=3]; 4048[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4048[label="",style="solid", color="blue", weight=9]; 4048 -> 744[label="",style="solid", color="blue", weight=3]; 4049[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4049[label="",style="solid", color="blue", weight=9]; 4049 -> 745[label="",style="solid", color="blue", weight=3]; 4050[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4050[label="",style="solid", color="blue", weight=9]; 4050 -> 746[label="",style="solid", color="blue", weight=3]; 4051[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4051[label="",style="solid", color="blue", weight=9]; 4051 -> 747[label="",style="solid", color="blue", weight=3]; 4052[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4052[label="",style="solid", color="blue", weight=9]; 4052 -> 748[label="",style="solid", color="blue", weight=3]; 4053[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4053[label="",style="solid", color="blue", weight=9]; 4053 -> 749[label="",style="solid", color="blue", weight=3]; 4054[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4054[label="",style="solid", color="blue", weight=9]; 4054 -> 750[label="",style="solid", color="blue", weight=3]; 4055[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4055[label="",style="solid", color="blue", weight=9]; 4055 -> 751[label="",style="solid", color="blue", weight=3]; 4056[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4056[label="",style="solid", color="blue", weight=9]; 4056 -> 752[label="",style="solid", color="blue", weight=3]; 4057[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4057[label="",style="solid", color="blue", weight=9]; 4057 -> 753[label="",style="solid", color="blue", weight=3]; 4058[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];581 -> 4058[label="",style="solid", color="blue", weight=9]; 4058 -> 754[label="",style="solid", color="blue", weight=3]; 582[label="xwv300",fontsize=16,color="green",shape="box"];583[label="xwv400",fontsize=16,color="green",shape="box"];580[label="compare2 (Right xwv106) (Right xwv107) xwv108",fontsize=16,color="burlywood",shape="triangle"];4059[label="xwv108/False",fontsize=10,color="white",style="solid",shape="box"];580 -> 4059[label="",style="solid", color="burlywood", weight=9]; 4059 -> 755[label="",style="solid", color="burlywood", weight=3]; 4060[label="xwv108/True",fontsize=10,color="white",style="solid",shape="box"];580 -> 4060[label="",style="solid", color="burlywood", weight=9]; 4060 -> 756[label="",style="solid", color="burlywood", weight=3]; 584 -> 211[label="",style="dashed", color="red", weight=0]; 584[label="compare (xwv400 * Pos xwv3010) (Pos xwv4010 * xwv300)",fontsize=16,color="magenta"];584 -> 757[label="",style="dashed", color="magenta", weight=3]; 584 -> 758[label="",style="dashed", color="magenta", weight=3]; 585 -> 211[label="",style="dashed", color="red", weight=0]; 585[label="compare (xwv400 * Pos xwv3010) (Neg xwv4010 * xwv300)",fontsize=16,color="magenta"];585 -> 759[label="",style="dashed", color="magenta", weight=3]; 585 -> 760[label="",style="dashed", color="magenta", weight=3]; 586 -> 211[label="",style="dashed", color="red", weight=0]; 586[label="compare (xwv400 * Neg xwv3010) (Pos xwv4010 * xwv300)",fontsize=16,color="magenta"];586 -> 761[label="",style="dashed", color="magenta", weight=3]; 586 -> 762[label="",style="dashed", color="magenta", weight=3]; 587 -> 211[label="",style="dashed", color="red", weight=0]; 587[label="compare (xwv400 * Neg xwv3010) (Neg xwv4010 * xwv300)",fontsize=16,color="magenta"];587 -> 763[label="",style="dashed", color="magenta", weight=3]; 587 -> 764[label="",style="dashed", color="magenta", weight=3]; 588[label="Left xwv280 == Left xwv330",fontsize=16,color="black",shape="box"];588 -> 765[label="",style="solid", color="black", weight=3]; 589[label="Left xwv280 == Right xwv330",fontsize=16,color="black",shape="box"];589 -> 766[label="",style="solid", color="black", weight=3]; 590[label="Right xwv280 == Left xwv330",fontsize=16,color="black",shape="box"];590 -> 767[label="",style="solid", color="black", weight=3]; 591[label="Right xwv280 == Right xwv330",fontsize=16,color="black",shape="box"];591 -> 768[label="",style="solid", color="black", weight=3]; 592[label="primEqChar (Char xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4061[label="xwv33/Char xwv330",fontsize=10,color="white",style="solid",shape="box"];592 -> 4061[label="",style="solid", color="burlywood", weight=9]; 4061 -> 769[label="",style="solid", color="burlywood", weight=3]; 593[label="() == ()",fontsize=16,color="black",shape="box"];593 -> 770[label="",style="solid", color="black", weight=3]; 594[label="primEqInt (Pos xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4062[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];594 -> 4062[label="",style="solid", color="burlywood", weight=9]; 4062 -> 771[label="",style="solid", color="burlywood", weight=3]; 4063[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];594 -> 4063[label="",style="solid", color="burlywood", weight=9]; 4063 -> 772[label="",style="solid", color="burlywood", weight=3]; 595[label="primEqInt (Neg xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4064[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];595 -> 4064[label="",style="solid", color="burlywood", weight=9]; 4064 -> 773[label="",style="solid", color="burlywood", weight=3]; 4065[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];595 -> 4065[label="",style="solid", color="burlywood", weight=9]; 4065 -> 774[label="",style="solid", color="burlywood", weight=3]; 596[label="xwv280 :% xwv281 == xwv330 :% xwv331",fontsize=16,color="black",shape="box"];596 -> 775[label="",style="solid", color="black", weight=3]; 597[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];597 -> 776[label="",style="solid", color="black", weight=3]; 598[label="Nothing == Just xwv330",fontsize=16,color="black",shape="box"];598 -> 777[label="",style="solid", color="black", weight=3]; 599[label="Just xwv280 == Nothing",fontsize=16,color="black",shape="box"];599 -> 778[label="",style="solid", color="black", weight=3]; 600[label="Just xwv280 == Just xwv330",fontsize=16,color="black",shape="box"];600 -> 779[label="",style="solid", color="black", weight=3]; 601[label="primEqFloat (Float xwv280 xwv281) xwv33",fontsize=16,color="burlywood",shape="box"];4066[label="xwv33/Float xwv330 xwv331",fontsize=10,color="white",style="solid",shape="box"];601 -> 4066[label="",style="solid", color="burlywood", weight=9]; 4066 -> 780[label="",style="solid", color="burlywood", weight=3]; 602[label="Integer xwv280 == Integer xwv330",fontsize=16,color="black",shape="box"];602 -> 781[label="",style="solid", color="black", weight=3]; 603[label="False == False",fontsize=16,color="black",shape="box"];603 -> 782[label="",style="solid", color="black", weight=3]; 604[label="False == True",fontsize=16,color="black",shape="box"];604 -> 783[label="",style="solid", color="black", weight=3]; 605[label="True == False",fontsize=16,color="black",shape="box"];605 -> 784[label="",style="solid", color="black", weight=3]; 606[label="True == True",fontsize=16,color="black",shape="box"];606 -> 785[label="",style="solid", color="black", weight=3]; 607[label="primEqDouble (Double xwv280 xwv281) xwv33",fontsize=16,color="burlywood",shape="box"];4067[label="xwv33/Double xwv330 xwv331",fontsize=10,color="white",style="solid",shape="box"];607 -> 4067[label="",style="solid", color="burlywood", weight=9]; 4067 -> 786[label="",style="solid", color="burlywood", weight=3]; 608[label="xwv280 : xwv281 == xwv330 : xwv331",fontsize=16,color="black",shape="box"];608 -> 787[label="",style="solid", color="black", weight=3]; 609[label="xwv280 : xwv281 == []",fontsize=16,color="black",shape="box"];609 -> 788[label="",style="solid", color="black", weight=3]; 610[label="[] == xwv330 : xwv331",fontsize=16,color="black",shape="box"];610 -> 789[label="",style="solid", color="black", weight=3]; 611[label="[] == []",fontsize=16,color="black",shape="box"];611 -> 790[label="",style="solid", color="black", weight=3]; 612[label="(xwv280,xwv281,xwv282) == (xwv330,xwv331,xwv332)",fontsize=16,color="black",shape="box"];612 -> 791[label="",style="solid", color="black", weight=3]; 613[label="LT == LT",fontsize=16,color="black",shape="box"];613 -> 792[label="",style="solid", color="black", weight=3]; 614[label="LT == EQ",fontsize=16,color="black",shape="box"];614 -> 793[label="",style="solid", color="black", weight=3]; 615[label="LT == GT",fontsize=16,color="black",shape="box"];615 -> 794[label="",style="solid", color="black", weight=3]; 616[label="EQ == LT",fontsize=16,color="black",shape="box"];616 -> 795[label="",style="solid", color="black", weight=3]; 617[label="EQ == EQ",fontsize=16,color="black",shape="box"];617 -> 796[label="",style="solid", color="black", weight=3]; 618[label="EQ == GT",fontsize=16,color="black",shape="box"];618 -> 797[label="",style="solid", color="black", weight=3]; 619[label="GT == LT",fontsize=16,color="black",shape="box"];619 -> 798[label="",style="solid", color="black", weight=3]; 620[label="GT == EQ",fontsize=16,color="black",shape="box"];620 -> 799[label="",style="solid", color="black", weight=3]; 621[label="GT == GT",fontsize=16,color="black",shape="box"];621 -> 800[label="",style="solid", color="black", weight=3]; 622[label="(xwv280,xwv281) == (xwv330,xwv331)",fontsize=16,color="black",shape="box"];622 -> 801[label="",style="solid", color="black", weight=3]; 623[label="FiniteMap.glueBal FiniteMap.EmptyFM xwv52",fontsize=16,color="black",shape="box"];623 -> 802[label="",style="solid", color="black", weight=3]; 624[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) xwv52",fontsize=16,color="burlywood",shape="box"];4068[label="xwv52/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];624 -> 4068[label="",style="solid", color="burlywood", weight=9]; 4068 -> 803[label="",style="solid", color="burlywood", weight=3]; 4069[label="xwv52/FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=10,color="white",style="solid",shape="box"];624 -> 4069[label="",style="solid", color="burlywood", weight=9]; 4069 -> 804[label="",style="solid", color="burlywood", weight=3]; 1550 -> 808[label="",style="dashed", color="red", weight=0]; 1550[label="FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];1551[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35",fontsize=16,color="black",shape="triangle"];1551 -> 1559[label="",style="solid", color="black", weight=3]; 1549[label="primPlusInt xwv162 xwv137",fontsize=16,color="burlywood",shape="triangle"];4070[label="xwv162/Pos xwv1620",fontsize=10,color="white",style="solid",shape="box"];1549 -> 4070[label="",style="solid", color="burlywood", weight=9]; 4070 -> 1560[label="",style="solid", color="burlywood", weight=3]; 4071[label="xwv162/Neg xwv1620",fontsize=10,color="white",style="solid",shape="box"];1549 -> 4071[label="",style="solid", color="burlywood", weight=9]; 4071 -> 1561[label="",style="solid", color="burlywood", weight=3]; 627 -> 36[label="",style="dashed", color="red", weight=0]; 627[label="FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];627 -> 807[label="",style="dashed", color="magenta", weight=3]; 627 -> 808[label="",style="dashed", color="magenta", weight=3]; 626[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 xwv109",fontsize=16,color="burlywood",shape="triangle"];4072[label="xwv109/False",fontsize=10,color="white",style="solid",shape="box"];626 -> 4072[label="",style="solid", color="burlywood", weight=9]; 4072 -> 809[label="",style="solid", color="burlywood", weight=3]; 4073[label="xwv109/True",fontsize=10,color="white",style="solid",shape="box"];626 -> 4073[label="",style="solid", color="burlywood", weight=9]; 4073 -> 810[label="",style="solid", color="burlywood", weight=3]; 628[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];628 -> 811[label="",style="solid", color="black", weight=3]; 629 -> 336[label="",style="dashed", color="red", weight=0]; 629[label="primCmpNat xwv4000 xwv3000",fontsize=16,color="magenta"];629 -> 812[label="",style="dashed", color="magenta", weight=3]; 629 -> 813[label="",style="dashed", color="magenta", weight=3]; 630[label="GT",fontsize=16,color="green",shape="box"];631[label="LT",fontsize=16,color="green",shape="box"];632[label="EQ",fontsize=16,color="green",shape="box"];633[label="compare1 Nothing (Just xwv300) True",fontsize=16,color="black",shape="box"];633 -> 814[label="",style="solid", color="black", weight=3]; 634[label="compare1 (Just xwv400) Nothing False",fontsize=16,color="black",shape="box"];634 -> 815[label="",style="solid", color="black", weight=3]; 635 -> 409[label="",style="dashed", color="red", weight=0]; 635[label="xwv400 == xwv300",fontsize=16,color="magenta"];635 -> 816[label="",style="dashed", color="magenta", weight=3]; 635 -> 817[label="",style="dashed", color="magenta", weight=3]; 636 -> 410[label="",style="dashed", color="red", weight=0]; 636[label="xwv400 == xwv300",fontsize=16,color="magenta"];636 -> 818[label="",style="dashed", color="magenta", weight=3]; 636 -> 819[label="",style="dashed", color="magenta", weight=3]; 637 -> 411[label="",style="dashed", color="red", weight=0]; 637[label="xwv400 == xwv300",fontsize=16,color="magenta"];637 -> 820[label="",style="dashed", color="magenta", weight=3]; 637 -> 821[label="",style="dashed", color="magenta", weight=3]; 638 -> 412[label="",style="dashed", color="red", weight=0]; 638[label="xwv400 == xwv300",fontsize=16,color="magenta"];638 -> 822[label="",style="dashed", color="magenta", weight=3]; 638 -> 823[label="",style="dashed", color="magenta", weight=3]; 639 -> 413[label="",style="dashed", color="red", weight=0]; 639[label="xwv400 == xwv300",fontsize=16,color="magenta"];639 -> 824[label="",style="dashed", color="magenta", weight=3]; 639 -> 825[label="",style="dashed", color="magenta", weight=3]; 640 -> 414[label="",style="dashed", color="red", weight=0]; 640[label="xwv400 == xwv300",fontsize=16,color="magenta"];640 -> 826[label="",style="dashed", color="magenta", weight=3]; 640 -> 827[label="",style="dashed", color="magenta", weight=3]; 641 -> 415[label="",style="dashed", color="red", weight=0]; 641[label="xwv400 == xwv300",fontsize=16,color="magenta"];641 -> 828[label="",style="dashed", color="magenta", weight=3]; 641 -> 829[label="",style="dashed", color="magenta", weight=3]; 642 -> 416[label="",style="dashed", color="red", weight=0]; 642[label="xwv400 == xwv300",fontsize=16,color="magenta"];642 -> 830[label="",style="dashed", color="magenta", weight=3]; 642 -> 831[label="",style="dashed", color="magenta", weight=3]; 643 -> 417[label="",style="dashed", color="red", weight=0]; 643[label="xwv400 == xwv300",fontsize=16,color="magenta"];643 -> 832[label="",style="dashed", color="magenta", weight=3]; 643 -> 833[label="",style="dashed", color="magenta", weight=3]; 644 -> 418[label="",style="dashed", color="red", weight=0]; 644[label="xwv400 == xwv300",fontsize=16,color="magenta"];644 -> 834[label="",style="dashed", color="magenta", weight=3]; 644 -> 835[label="",style="dashed", color="magenta", weight=3]; 645 -> 419[label="",style="dashed", color="red", weight=0]; 645[label="xwv400 == xwv300",fontsize=16,color="magenta"];645 -> 836[label="",style="dashed", color="magenta", weight=3]; 645 -> 837[label="",style="dashed", color="magenta", weight=3]; 646 -> 420[label="",style="dashed", color="red", weight=0]; 646[label="xwv400 == xwv300",fontsize=16,color="magenta"];646 -> 838[label="",style="dashed", color="magenta", weight=3]; 646 -> 839[label="",style="dashed", color="magenta", weight=3]; 647 -> 421[label="",style="dashed", color="red", weight=0]; 647[label="xwv400 == xwv300",fontsize=16,color="magenta"];647 -> 840[label="",style="dashed", color="magenta", weight=3]; 647 -> 841[label="",style="dashed", color="magenta", weight=3]; 648 -> 422[label="",style="dashed", color="red", weight=0]; 648[label="xwv400 == xwv300",fontsize=16,color="magenta"];648 -> 842[label="",style="dashed", color="magenta", weight=3]; 648 -> 843[label="",style="dashed", color="magenta", weight=3]; 649[label="compare2 (Just xwv61) (Just xwv62) False",fontsize=16,color="black",shape="box"];649 -> 844[label="",style="solid", color="black", weight=3]; 650[label="compare2 (Just xwv61) (Just xwv62) True",fontsize=16,color="black",shape="box"];650 -> 845[label="",style="solid", color="black", weight=3]; 651 -> 202[label="",style="dashed", color="red", weight=0]; 651[label="compare xwv400 xwv300",fontsize=16,color="magenta"];651 -> 846[label="",style="dashed", color="magenta", weight=3]; 651 -> 847[label="",style="dashed", color="magenta", weight=3]; 652 -> 203[label="",style="dashed", color="red", weight=0]; 652[label="compare xwv400 xwv300",fontsize=16,color="magenta"];652 -> 848[label="",style="dashed", color="magenta", weight=3]; 652 -> 849[label="",style="dashed", color="magenta", weight=3]; 653 -> 204[label="",style="dashed", color="red", weight=0]; 653[label="compare xwv400 xwv300",fontsize=16,color="magenta"];653 -> 850[label="",style="dashed", color="magenta", weight=3]; 653 -> 851[label="",style="dashed", color="magenta", weight=3]; 654 -> 205[label="",style="dashed", color="red", weight=0]; 654[label="compare xwv400 xwv300",fontsize=16,color="magenta"];654 -> 852[label="",style="dashed", color="magenta", weight=3]; 654 -> 853[label="",style="dashed", color="magenta", weight=3]; 655 -> 206[label="",style="dashed", color="red", weight=0]; 655[label="compare xwv400 xwv300",fontsize=16,color="magenta"];655 -> 854[label="",style="dashed", color="magenta", weight=3]; 655 -> 855[label="",style="dashed", color="magenta", weight=3]; 656 -> 207[label="",style="dashed", color="red", weight=0]; 656[label="compare xwv400 xwv300",fontsize=16,color="magenta"];656 -> 856[label="",style="dashed", color="magenta", weight=3]; 656 -> 857[label="",style="dashed", color="magenta", weight=3]; 657 -> 208[label="",style="dashed", color="red", weight=0]; 657[label="compare xwv400 xwv300",fontsize=16,color="magenta"];657 -> 858[label="",style="dashed", color="magenta", weight=3]; 657 -> 859[label="",style="dashed", color="magenta", weight=3]; 658 -> 209[label="",style="dashed", color="red", weight=0]; 658[label="compare xwv400 xwv300",fontsize=16,color="magenta"];658 -> 860[label="",style="dashed", color="magenta", weight=3]; 658 -> 861[label="",style="dashed", color="magenta", weight=3]; 659 -> 210[label="",style="dashed", color="red", weight=0]; 659[label="compare xwv400 xwv300",fontsize=16,color="magenta"];659 -> 862[label="",style="dashed", color="magenta", weight=3]; 659 -> 863[label="",style="dashed", color="magenta", weight=3]; 660 -> 211[label="",style="dashed", color="red", weight=0]; 660[label="compare xwv400 xwv300",fontsize=16,color="magenta"];660 -> 864[label="",style="dashed", color="magenta", weight=3]; 660 -> 865[label="",style="dashed", color="magenta", weight=3]; 661 -> 212[label="",style="dashed", color="red", weight=0]; 661[label="compare xwv400 xwv300",fontsize=16,color="magenta"];661 -> 866[label="",style="dashed", color="magenta", weight=3]; 661 -> 867[label="",style="dashed", color="magenta", weight=3]; 662 -> 213[label="",style="dashed", color="red", weight=0]; 662[label="compare xwv400 xwv300",fontsize=16,color="magenta"];662 -> 868[label="",style="dashed", color="magenta", weight=3]; 662 -> 869[label="",style="dashed", color="magenta", weight=3]; 663 -> 214[label="",style="dashed", color="red", weight=0]; 663[label="compare xwv400 xwv300",fontsize=16,color="magenta"];663 -> 870[label="",style="dashed", color="magenta", weight=3]; 663 -> 871[label="",style="dashed", color="magenta", weight=3]; 664 -> 215[label="",style="dashed", color="red", weight=0]; 664[label="compare xwv400 xwv300",fontsize=16,color="magenta"];664 -> 872[label="",style="dashed", color="magenta", weight=3]; 664 -> 873[label="",style="dashed", color="magenta", weight=3]; 665[label="primCompAux0 xwv67 LT",fontsize=16,color="black",shape="box"];665 -> 874[label="",style="solid", color="black", weight=3]; 666[label="primCompAux0 xwv67 EQ",fontsize=16,color="black",shape="box"];666 -> 875[label="",style="solid", color="black", weight=3]; 667[label="primCompAux0 xwv67 GT",fontsize=16,color="black",shape="box"];667 -> 876[label="",style="solid", color="black", weight=3]; 1185[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4074[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4074[label="",style="solid", color="blue", weight=9]; 4074 -> 1203[label="",style="solid", color="blue", weight=3]; 4075[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4075[label="",style="solid", color="blue", weight=9]; 4075 -> 1204[label="",style="solid", color="blue", weight=3]; 4076[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4076[label="",style="solid", color="blue", weight=9]; 4076 -> 1205[label="",style="solid", color="blue", weight=3]; 4077[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4077[label="",style="solid", color="blue", weight=9]; 4077 -> 1206[label="",style="solid", color="blue", weight=3]; 4078[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4078[label="",style="solid", color="blue", weight=9]; 4078 -> 1207[label="",style="solid", color="blue", weight=3]; 4079[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4079[label="",style="solid", color="blue", weight=9]; 4079 -> 1208[label="",style="solid", color="blue", weight=3]; 4080[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4080[label="",style="solid", color="blue", weight=9]; 4080 -> 1209[label="",style="solid", color="blue", weight=3]; 4081[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4081[label="",style="solid", color="blue", weight=9]; 4081 -> 1210[label="",style="solid", color="blue", weight=3]; 4082[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4082[label="",style="solid", color="blue", weight=9]; 4082 -> 1211[label="",style="solid", color="blue", weight=3]; 4083[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4083[label="",style="solid", color="blue", weight=9]; 4083 -> 1212[label="",style="solid", color="blue", weight=3]; 4084[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4084[label="",style="solid", color="blue", weight=9]; 4084 -> 1213[label="",style="solid", color="blue", weight=3]; 4085[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4085[label="",style="solid", color="blue", weight=9]; 4085 -> 1214[label="",style="solid", color="blue", weight=3]; 4086[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4086[label="",style="solid", color="blue", weight=9]; 4086 -> 1215[label="",style="solid", color="blue", weight=3]; 4087[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 4087[label="",style="solid", color="blue", weight=9]; 4087 -> 1216[label="",style="solid", color="blue", weight=3]; 1186 -> 1184[label="",style="dashed", color="red", weight=0]; 1186[label="xwv401 == xwv301 && xwv402 == xwv302",fontsize=16,color="magenta"];1186 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1184[label="xwv134 && xwv135",fontsize=16,color="burlywood",shape="triangle"];4088[label="xwv134/False",fontsize=10,color="white",style="solid",shape="box"];1184 -> 4088[label="",style="solid", color="burlywood", weight=9]; 4088 -> 1219[label="",style="solid", color="burlywood", weight=3]; 4089[label="xwv134/True",fontsize=10,color="white",style="solid",shape="box"];1184 -> 4089[label="",style="solid", color="burlywood", weight=9]; 4089 -> 1220[label="",style="solid", color="burlywood", weight=3]; 1148[label="compare2 (xwv77,xwv78,xwv79) (xwv80,xwv81,xwv82) False",fontsize=16,color="black",shape="box"];1148 -> 1221[label="",style="solid", color="black", weight=3]; 1149[label="compare2 (xwv77,xwv78,xwv79) (xwv80,xwv81,xwv82) True",fontsize=16,color="black",shape="box"];1149 -> 1222[label="",style="solid", color="black", weight=3]; 684[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];684 -> 907[label="",style="solid", color="black", weight=3]; 685[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];685 -> 908[label="",style="solid", color="black", weight=3]; 686[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];686 -> 909[label="",style="solid", color="black", weight=3]; 687[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];687 -> 910[label="",style="solid", color="black", weight=3]; 688[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];688 -> 911[label="",style="solid", color="black", weight=3]; 689[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];689 -> 912[label="",style="solid", color="black", weight=3]; 690 -> 473[label="",style="dashed", color="red", weight=0]; 690[label="Pos xwv4010 * xwv300",fontsize=16,color="magenta"];690 -> 913[label="",style="dashed", color="magenta", weight=3]; 690 -> 914[label="",style="dashed", color="magenta", weight=3]; 691 -> 473[label="",style="dashed", color="red", weight=0]; 691[label="xwv400 * Pos xwv3010",fontsize=16,color="magenta"];691 -> 915[label="",style="dashed", color="magenta", weight=3]; 691 -> 916[label="",style="dashed", color="magenta", weight=3]; 692 -> 473[label="",style="dashed", color="red", weight=0]; 692[label="Neg xwv4010 * xwv300",fontsize=16,color="magenta"];692 -> 917[label="",style="dashed", color="magenta", weight=3]; 692 -> 918[label="",style="dashed", color="magenta", weight=3]; 693 -> 473[label="",style="dashed", color="red", weight=0]; 693[label="xwv400 * Pos xwv3010",fontsize=16,color="magenta"];693 -> 919[label="",style="dashed", color="magenta", weight=3]; 693 -> 920[label="",style="dashed", color="magenta", weight=3]; 694 -> 473[label="",style="dashed", color="red", weight=0]; 694[label="Pos xwv4010 * xwv300",fontsize=16,color="magenta"];694 -> 921[label="",style="dashed", color="magenta", weight=3]; 694 -> 922[label="",style="dashed", color="magenta", weight=3]; 695 -> 473[label="",style="dashed", color="red", weight=0]; 695[label="xwv400 * Neg xwv3010",fontsize=16,color="magenta"];695 -> 923[label="",style="dashed", color="magenta", weight=3]; 695 -> 924[label="",style="dashed", color="magenta", weight=3]; 696 -> 473[label="",style="dashed", color="red", weight=0]; 696[label="Neg xwv4010 * xwv300",fontsize=16,color="magenta"];696 -> 925[label="",style="dashed", color="magenta", weight=3]; 696 -> 926[label="",style="dashed", color="magenta", weight=3]; 697 -> 473[label="",style="dashed", color="red", weight=0]; 697[label="xwv400 * Neg xwv3010",fontsize=16,color="magenta"];697 -> 927[label="",style="dashed", color="magenta", weight=3]; 697 -> 928[label="",style="dashed", color="magenta", weight=3]; 698[label="compare1 False True True",fontsize=16,color="black",shape="box"];698 -> 929[label="",style="solid", color="black", weight=3]; 699[label="compare1 True False False",fontsize=16,color="black",shape="box"];699 -> 930[label="",style="solid", color="black", weight=3]; 700[label="Zero",fontsize=16,color="green",shape="box"];701[label="Succ xwv3000",fontsize=16,color="green",shape="box"];702[label="Succ xwv3000",fontsize=16,color="green",shape="box"];703[label="Zero",fontsize=16,color="green",shape="box"];1187[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4090[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4090[label="",style="solid", color="blue", weight=9]; 4090 -> 1223[label="",style="solid", color="blue", weight=3]; 4091[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4091[label="",style="solid", color="blue", weight=9]; 4091 -> 1224[label="",style="solid", color="blue", weight=3]; 4092[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4092[label="",style="solid", color="blue", weight=9]; 4092 -> 1225[label="",style="solid", color="blue", weight=3]; 4093[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4093[label="",style="solid", color="blue", weight=9]; 4093 -> 1226[label="",style="solid", color="blue", weight=3]; 4094[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4094[label="",style="solid", color="blue", weight=9]; 4094 -> 1227[label="",style="solid", color="blue", weight=3]; 4095[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4095[label="",style="solid", color="blue", weight=9]; 4095 -> 1228[label="",style="solid", color="blue", weight=3]; 4096[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4096[label="",style="solid", color="blue", weight=9]; 4096 -> 1229[label="",style="solid", color="blue", weight=3]; 4097[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4097[label="",style="solid", color="blue", weight=9]; 4097 -> 1230[label="",style="solid", color="blue", weight=3]; 4098[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4098[label="",style="solid", color="blue", weight=9]; 4098 -> 1231[label="",style="solid", color="blue", weight=3]; 4099[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4099[label="",style="solid", color="blue", weight=9]; 4099 -> 1232[label="",style="solid", color="blue", weight=3]; 4100[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4100[label="",style="solid", color="blue", weight=9]; 4100 -> 1233[label="",style="solid", color="blue", weight=3]; 4101[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4101[label="",style="solid", color="blue", weight=9]; 4101 -> 1234[label="",style="solid", color="blue", weight=3]; 4102[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4102[label="",style="solid", color="blue", weight=9]; 4102 -> 1235[label="",style="solid", color="blue", weight=3]; 4103[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4103[label="",style="solid", color="blue", weight=9]; 4103 -> 1236[label="",style="solid", color="blue", weight=3]; 1188[label="xwv401 == xwv301",fontsize=16,color="blue",shape="box"];4104[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4104[label="",style="solid", color="blue", weight=9]; 4104 -> 1237[label="",style="solid", color="blue", weight=3]; 4105[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4105[label="",style="solid", color="blue", weight=9]; 4105 -> 1238[label="",style="solid", color="blue", weight=3]; 4106[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4106[label="",style="solid", color="blue", weight=9]; 4106 -> 1239[label="",style="solid", color="blue", weight=3]; 4107[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4107[label="",style="solid", color="blue", weight=9]; 4107 -> 1240[label="",style="solid", color="blue", weight=3]; 4108[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4108[label="",style="solid", color="blue", weight=9]; 4108 -> 1241[label="",style="solid", color="blue", weight=3]; 4109[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4109[label="",style="solid", color="blue", weight=9]; 4109 -> 1242[label="",style="solid", color="blue", weight=3]; 4110[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4110[label="",style="solid", color="blue", weight=9]; 4110 -> 1243[label="",style="solid", color="blue", weight=3]; 4111[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4111[label="",style="solid", color="blue", weight=9]; 4111 -> 1244[label="",style="solid", color="blue", weight=3]; 4112[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4112[label="",style="solid", color="blue", weight=9]; 4112 -> 1245[label="",style="solid", color="blue", weight=3]; 4113[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4113[label="",style="solid", color="blue", weight=9]; 4113 -> 1246[label="",style="solid", color="blue", weight=3]; 4114[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4114[label="",style="solid", color="blue", weight=9]; 4114 -> 1247[label="",style="solid", color="blue", weight=3]; 4115[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4115[label="",style="solid", color="blue", weight=9]; 4115 -> 1248[label="",style="solid", color="blue", weight=3]; 4116[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4116[label="",style="solid", color="blue", weight=9]; 4116 -> 1249[label="",style="solid", color="blue", weight=3]; 4117[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4117[label="",style="solid", color="blue", weight=9]; 4117 -> 1250[label="",style="solid", color="blue", weight=3]; 1179[label="compare2 (xwv126,xwv127) (xwv128,xwv129) False",fontsize=16,color="black",shape="box"];1179 -> 1251[label="",style="solid", color="black", weight=3]; 1180[label="compare2 (xwv126,xwv127) (xwv128,xwv129) True",fontsize=16,color="black",shape="box"];1180 -> 1252[label="",style="solid", color="black", weight=3]; 720[label="Integer xwv3000 * Integer xwv4010",fontsize=16,color="black",shape="box"];720 -> 961[label="",style="solid", color="black", weight=3]; 721[label="primMulInt (Pos xwv3000) xwv401",fontsize=16,color="burlywood",shape="box"];4118[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];721 -> 4118[label="",style="solid", color="burlywood", weight=9]; 4118 -> 962[label="",style="solid", color="burlywood", weight=3]; 4119[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];721 -> 4119[label="",style="solid", color="burlywood", weight=9]; 4119 -> 963[label="",style="solid", color="burlywood", weight=3]; 722[label="primMulInt (Neg xwv3000) xwv401",fontsize=16,color="burlywood",shape="box"];4120[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];722 -> 4120[label="",style="solid", color="burlywood", weight=9]; 4120 -> 964[label="",style="solid", color="burlywood", weight=3]; 4121[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];722 -> 4121[label="",style="solid", color="burlywood", weight=9]; 4121 -> 965[label="",style="solid", color="burlywood", weight=3]; 723 -> 409[label="",style="dashed", color="red", weight=0]; 723[label="xwv400 == xwv300",fontsize=16,color="magenta"];723 -> 966[label="",style="dashed", color="magenta", weight=3]; 723 -> 967[label="",style="dashed", color="magenta", weight=3]; 724 -> 410[label="",style="dashed", color="red", weight=0]; 724[label="xwv400 == xwv300",fontsize=16,color="magenta"];724 -> 968[label="",style="dashed", color="magenta", weight=3]; 724 -> 969[label="",style="dashed", color="magenta", weight=3]; 725 -> 411[label="",style="dashed", color="red", weight=0]; 725[label="xwv400 == xwv300",fontsize=16,color="magenta"];725 -> 970[label="",style="dashed", color="magenta", weight=3]; 725 -> 971[label="",style="dashed", color="magenta", weight=3]; 726 -> 412[label="",style="dashed", color="red", weight=0]; 726[label="xwv400 == xwv300",fontsize=16,color="magenta"];726 -> 972[label="",style="dashed", color="magenta", weight=3]; 726 -> 973[label="",style="dashed", color="magenta", weight=3]; 727 -> 413[label="",style="dashed", color="red", weight=0]; 727[label="xwv400 == xwv300",fontsize=16,color="magenta"];727 -> 974[label="",style="dashed", color="magenta", weight=3]; 727 -> 975[label="",style="dashed", color="magenta", weight=3]; 728 -> 414[label="",style="dashed", color="red", weight=0]; 728[label="xwv400 == xwv300",fontsize=16,color="magenta"];728 -> 976[label="",style="dashed", color="magenta", weight=3]; 728 -> 977[label="",style="dashed", color="magenta", weight=3]; 729 -> 415[label="",style="dashed", color="red", weight=0]; 729[label="xwv400 == xwv300",fontsize=16,color="magenta"];729 -> 978[label="",style="dashed", color="magenta", weight=3]; 729 -> 979[label="",style="dashed", color="magenta", weight=3]; 730 -> 416[label="",style="dashed", color="red", weight=0]; 730[label="xwv400 == xwv300",fontsize=16,color="magenta"];730 -> 980[label="",style="dashed", color="magenta", weight=3]; 730 -> 981[label="",style="dashed", color="magenta", weight=3]; 731 -> 417[label="",style="dashed", color="red", weight=0]; 731[label="xwv400 == xwv300",fontsize=16,color="magenta"];731 -> 982[label="",style="dashed", color="magenta", weight=3]; 731 -> 983[label="",style="dashed", color="magenta", weight=3]; 732 -> 418[label="",style="dashed", color="red", weight=0]; 732[label="xwv400 == xwv300",fontsize=16,color="magenta"];732 -> 984[label="",style="dashed", color="magenta", weight=3]; 732 -> 985[label="",style="dashed", color="magenta", weight=3]; 733 -> 419[label="",style="dashed", color="red", weight=0]; 733[label="xwv400 == xwv300",fontsize=16,color="magenta"];733 -> 986[label="",style="dashed", color="magenta", weight=3]; 733 -> 987[label="",style="dashed", color="magenta", weight=3]; 734 -> 420[label="",style="dashed", color="red", weight=0]; 734[label="xwv400 == xwv300",fontsize=16,color="magenta"];734 -> 988[label="",style="dashed", color="magenta", weight=3]; 734 -> 989[label="",style="dashed", color="magenta", weight=3]; 735 -> 421[label="",style="dashed", color="red", weight=0]; 735[label="xwv400 == xwv300",fontsize=16,color="magenta"];735 -> 990[label="",style="dashed", color="magenta", weight=3]; 735 -> 991[label="",style="dashed", color="magenta", weight=3]; 736 -> 422[label="",style="dashed", color="red", weight=0]; 736[label="xwv400 == xwv300",fontsize=16,color="magenta"];736 -> 992[label="",style="dashed", color="magenta", weight=3]; 736 -> 993[label="",style="dashed", color="magenta", weight=3]; 737[label="compare2 (Left xwv99) (Left xwv100) False",fontsize=16,color="black",shape="box"];737 -> 994[label="",style="solid", color="black", weight=3]; 738[label="compare2 (Left xwv99) (Left xwv100) True",fontsize=16,color="black",shape="box"];738 -> 995[label="",style="solid", color="black", weight=3]; 739[label="compare1 (Left xwv400) (Right xwv300) True",fontsize=16,color="black",shape="box"];739 -> 996[label="",style="solid", color="black", weight=3]; 740[label="compare1 (Right xwv400) (Left xwv300) False",fontsize=16,color="black",shape="box"];740 -> 997[label="",style="solid", color="black", weight=3]; 741 -> 409[label="",style="dashed", color="red", weight=0]; 741[label="xwv400 == xwv300",fontsize=16,color="magenta"];741 -> 998[label="",style="dashed", color="magenta", weight=3]; 741 -> 999[label="",style="dashed", color="magenta", weight=3]; 742 -> 410[label="",style="dashed", color="red", weight=0]; 742[label="xwv400 == xwv300",fontsize=16,color="magenta"];742 -> 1000[label="",style="dashed", color="magenta", weight=3]; 742 -> 1001[label="",style="dashed", color="magenta", weight=3]; 743 -> 411[label="",style="dashed", color="red", weight=0]; 743[label="xwv400 == xwv300",fontsize=16,color="magenta"];743 -> 1002[label="",style="dashed", color="magenta", weight=3]; 743 -> 1003[label="",style="dashed", color="magenta", weight=3]; 744 -> 412[label="",style="dashed", color="red", weight=0]; 744[label="xwv400 == xwv300",fontsize=16,color="magenta"];744 -> 1004[label="",style="dashed", color="magenta", weight=3]; 744 -> 1005[label="",style="dashed", color="magenta", weight=3]; 745 -> 413[label="",style="dashed", color="red", weight=0]; 745[label="xwv400 == xwv300",fontsize=16,color="magenta"];745 -> 1006[label="",style="dashed", color="magenta", weight=3]; 745 -> 1007[label="",style="dashed", color="magenta", weight=3]; 746 -> 414[label="",style="dashed", color="red", weight=0]; 746[label="xwv400 == xwv300",fontsize=16,color="magenta"];746 -> 1008[label="",style="dashed", color="magenta", weight=3]; 746 -> 1009[label="",style="dashed", color="magenta", weight=3]; 747 -> 415[label="",style="dashed", color="red", weight=0]; 747[label="xwv400 == xwv300",fontsize=16,color="magenta"];747 -> 1010[label="",style="dashed", color="magenta", weight=3]; 747 -> 1011[label="",style="dashed", color="magenta", weight=3]; 748 -> 416[label="",style="dashed", color="red", weight=0]; 748[label="xwv400 == xwv300",fontsize=16,color="magenta"];748 -> 1012[label="",style="dashed", color="magenta", weight=3]; 748 -> 1013[label="",style="dashed", color="magenta", weight=3]; 749 -> 417[label="",style="dashed", color="red", weight=0]; 749[label="xwv400 == xwv300",fontsize=16,color="magenta"];749 -> 1014[label="",style="dashed", color="magenta", weight=3]; 749 -> 1015[label="",style="dashed", color="magenta", weight=3]; 750 -> 418[label="",style="dashed", color="red", weight=0]; 750[label="xwv400 == xwv300",fontsize=16,color="magenta"];750 -> 1016[label="",style="dashed", color="magenta", weight=3]; 750 -> 1017[label="",style="dashed", color="magenta", weight=3]; 751 -> 419[label="",style="dashed", color="red", weight=0]; 751[label="xwv400 == xwv300",fontsize=16,color="magenta"];751 -> 1018[label="",style="dashed", color="magenta", weight=3]; 751 -> 1019[label="",style="dashed", color="magenta", weight=3]; 752 -> 420[label="",style="dashed", color="red", weight=0]; 752[label="xwv400 == xwv300",fontsize=16,color="magenta"];752 -> 1020[label="",style="dashed", color="magenta", weight=3]; 752 -> 1021[label="",style="dashed", color="magenta", weight=3]; 753 -> 421[label="",style="dashed", color="red", weight=0]; 753[label="xwv400 == xwv300",fontsize=16,color="magenta"];753 -> 1022[label="",style="dashed", color="magenta", weight=3]; 753 -> 1023[label="",style="dashed", color="magenta", weight=3]; 754 -> 422[label="",style="dashed", color="red", weight=0]; 754[label="xwv400 == xwv300",fontsize=16,color="magenta"];754 -> 1024[label="",style="dashed", color="magenta", weight=3]; 754 -> 1025[label="",style="dashed", color="magenta", weight=3]; 755[label="compare2 (Right xwv106) (Right xwv107) False",fontsize=16,color="black",shape="box"];755 -> 1026[label="",style="solid", color="black", weight=3]; 756[label="compare2 (Right xwv106) (Right xwv107) True",fontsize=16,color="black",shape="box"];756 -> 1027[label="",style="solid", color="black", weight=3]; 757 -> 473[label="",style="dashed", color="red", weight=0]; 757[label="Pos xwv4010 * xwv300",fontsize=16,color="magenta"];757 -> 1028[label="",style="dashed", color="magenta", weight=3]; 757 -> 1029[label="",style="dashed", color="magenta", weight=3]; 758 -> 473[label="",style="dashed", color="red", weight=0]; 758[label="xwv400 * Pos xwv3010",fontsize=16,color="magenta"];758 -> 1030[label="",style="dashed", color="magenta", weight=3]; 758 -> 1031[label="",style="dashed", color="magenta", weight=3]; 759 -> 473[label="",style="dashed", color="red", weight=0]; 759[label="Neg xwv4010 * xwv300",fontsize=16,color="magenta"];759 -> 1032[label="",style="dashed", color="magenta", weight=3]; 759 -> 1033[label="",style="dashed", color="magenta", weight=3]; 760 -> 473[label="",style="dashed", color="red", weight=0]; 760[label="xwv400 * Pos xwv3010",fontsize=16,color="magenta"];760 -> 1034[label="",style="dashed", color="magenta", weight=3]; 760 -> 1035[label="",style="dashed", color="magenta", weight=3]; 761 -> 473[label="",style="dashed", color="red", weight=0]; 761[label="Pos xwv4010 * xwv300",fontsize=16,color="magenta"];761 -> 1036[label="",style="dashed", color="magenta", weight=3]; 761 -> 1037[label="",style="dashed", color="magenta", weight=3]; 762 -> 473[label="",style="dashed", color="red", weight=0]; 762[label="xwv400 * Neg xwv3010",fontsize=16,color="magenta"];762 -> 1038[label="",style="dashed", color="magenta", weight=3]; 762 -> 1039[label="",style="dashed", color="magenta", weight=3]; 763 -> 473[label="",style="dashed", color="red", weight=0]; 763[label="Neg xwv4010 * xwv300",fontsize=16,color="magenta"];763 -> 1040[label="",style="dashed", color="magenta", weight=3]; 763 -> 1041[label="",style="dashed", color="magenta", weight=3]; 764 -> 473[label="",style="dashed", color="red", weight=0]; 764[label="xwv400 * Neg xwv3010",fontsize=16,color="magenta"];764 -> 1042[label="",style="dashed", color="magenta", weight=3]; 764 -> 1043[label="",style="dashed", color="magenta", weight=3]; 765[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4122[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4122[label="",style="solid", color="blue", weight=9]; 4122 -> 1044[label="",style="solid", color="blue", weight=3]; 4123[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4123[label="",style="solid", color="blue", weight=9]; 4123 -> 1045[label="",style="solid", color="blue", weight=3]; 4124[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4124[label="",style="solid", color="blue", weight=9]; 4124 -> 1046[label="",style="solid", color="blue", weight=3]; 4125[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4125[label="",style="solid", color="blue", weight=9]; 4125 -> 1047[label="",style="solid", color="blue", weight=3]; 4126[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4126[label="",style="solid", color="blue", weight=9]; 4126 -> 1048[label="",style="solid", color="blue", weight=3]; 4127[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4127[label="",style="solid", color="blue", weight=9]; 4127 -> 1049[label="",style="solid", color="blue", weight=3]; 4128[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4128[label="",style="solid", color="blue", weight=9]; 4128 -> 1050[label="",style="solid", color="blue", weight=3]; 4129[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4129[label="",style="solid", color="blue", weight=9]; 4129 -> 1051[label="",style="solid", color="blue", weight=3]; 4130[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4130[label="",style="solid", color="blue", weight=9]; 4130 -> 1052[label="",style="solid", color="blue", weight=3]; 4131[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4131[label="",style="solid", color="blue", weight=9]; 4131 -> 1053[label="",style="solid", color="blue", weight=3]; 4132[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4132[label="",style="solid", color="blue", weight=9]; 4132 -> 1054[label="",style="solid", color="blue", weight=3]; 4133[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4133[label="",style="solid", color="blue", weight=9]; 4133 -> 1055[label="",style="solid", color="blue", weight=3]; 4134[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4134[label="",style="solid", color="blue", weight=9]; 4134 -> 1056[label="",style="solid", color="blue", weight=3]; 4135[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];765 -> 4135[label="",style="solid", color="blue", weight=9]; 4135 -> 1057[label="",style="solid", color="blue", weight=3]; 766[label="False",fontsize=16,color="green",shape="box"];767[label="False",fontsize=16,color="green",shape="box"];768[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4136[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4136[label="",style="solid", color="blue", weight=9]; 4136 -> 1058[label="",style="solid", color="blue", weight=3]; 4137[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4137[label="",style="solid", color="blue", weight=9]; 4137 -> 1059[label="",style="solid", color="blue", weight=3]; 4138[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4138[label="",style="solid", color="blue", weight=9]; 4138 -> 1060[label="",style="solid", color="blue", weight=3]; 4139[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4139[label="",style="solid", color="blue", weight=9]; 4139 -> 1061[label="",style="solid", color="blue", weight=3]; 4140[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4140[label="",style="solid", color="blue", weight=9]; 4140 -> 1062[label="",style="solid", color="blue", weight=3]; 4141[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4141[label="",style="solid", color="blue", weight=9]; 4141 -> 1063[label="",style="solid", color="blue", weight=3]; 4142[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4142[label="",style="solid", color="blue", weight=9]; 4142 -> 1064[label="",style="solid", color="blue", weight=3]; 4143[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4143[label="",style="solid", color="blue", weight=9]; 4143 -> 1065[label="",style="solid", color="blue", weight=3]; 4144[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4144[label="",style="solid", color="blue", weight=9]; 4144 -> 1066[label="",style="solid", color="blue", weight=3]; 4145[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4145[label="",style="solid", color="blue", weight=9]; 4145 -> 1067[label="",style="solid", color="blue", weight=3]; 4146[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4146[label="",style="solid", color="blue", weight=9]; 4146 -> 1068[label="",style="solid", color="blue", weight=3]; 4147[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4147[label="",style="solid", color="blue", weight=9]; 4147 -> 1069[label="",style="solid", color="blue", weight=3]; 4148[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4148[label="",style="solid", color="blue", weight=9]; 4148 -> 1070[label="",style="solid", color="blue", weight=3]; 4149[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];768 -> 4149[label="",style="solid", color="blue", weight=9]; 4149 -> 1071[label="",style="solid", color="blue", weight=3]; 769[label="primEqChar (Char xwv280) (Char xwv330)",fontsize=16,color="black",shape="box"];769 -> 1072[label="",style="solid", color="black", weight=3]; 770[label="True",fontsize=16,color="green",shape="box"];771[label="primEqInt (Pos (Succ xwv2800)) xwv33",fontsize=16,color="burlywood",shape="box"];4150[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];771 -> 4150[label="",style="solid", color="burlywood", weight=9]; 4150 -> 1073[label="",style="solid", color="burlywood", weight=3]; 4151[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];771 -> 4151[label="",style="solid", color="burlywood", weight=9]; 4151 -> 1074[label="",style="solid", color="burlywood", weight=3]; 772[label="primEqInt (Pos Zero) xwv33",fontsize=16,color="burlywood",shape="box"];4152[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];772 -> 4152[label="",style="solid", color="burlywood", weight=9]; 4152 -> 1075[label="",style="solid", color="burlywood", weight=3]; 4153[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];772 -> 4153[label="",style="solid", color="burlywood", weight=9]; 4153 -> 1076[label="",style="solid", color="burlywood", weight=3]; 773[label="primEqInt (Neg (Succ xwv2800)) xwv33",fontsize=16,color="burlywood",shape="box"];4154[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];773 -> 4154[label="",style="solid", color="burlywood", weight=9]; 4154 -> 1077[label="",style="solid", color="burlywood", weight=3]; 4155[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];773 -> 4155[label="",style="solid", color="burlywood", weight=9]; 4155 -> 1078[label="",style="solid", color="burlywood", weight=3]; 774[label="primEqInt (Neg Zero) xwv33",fontsize=16,color="burlywood",shape="box"];4156[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];774 -> 4156[label="",style="solid", color="burlywood", weight=9]; 4156 -> 1079[label="",style="solid", color="burlywood", weight=3]; 4157[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];774 -> 4157[label="",style="solid", color="burlywood", weight=9]; 4157 -> 1080[label="",style="solid", color="burlywood", weight=3]; 775 -> 1184[label="",style="dashed", color="red", weight=0]; 775[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];775 -> 1193[label="",style="dashed", color="magenta", weight=3]; 775 -> 1194[label="",style="dashed", color="magenta", weight=3]; 776[label="True",fontsize=16,color="green",shape="box"];777[label="False",fontsize=16,color="green",shape="box"];778[label="False",fontsize=16,color="green",shape="box"];779[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4158[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4158[label="",style="solid", color="blue", weight=9]; 4158 -> 1091[label="",style="solid", color="blue", weight=3]; 4159[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4159[label="",style="solid", color="blue", weight=9]; 4159 -> 1092[label="",style="solid", color="blue", weight=3]; 4160[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4160[label="",style="solid", color="blue", weight=9]; 4160 -> 1093[label="",style="solid", color="blue", weight=3]; 4161[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4161[label="",style="solid", color="blue", weight=9]; 4161 -> 1094[label="",style="solid", color="blue", weight=3]; 4162[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4162[label="",style="solid", color="blue", weight=9]; 4162 -> 1095[label="",style="solid", color="blue", weight=3]; 4163[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4163[label="",style="solid", color="blue", weight=9]; 4163 -> 1096[label="",style="solid", color="blue", weight=3]; 4164[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4164[label="",style="solid", color="blue", weight=9]; 4164 -> 1097[label="",style="solid", color="blue", weight=3]; 4165[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4165[label="",style="solid", color="blue", weight=9]; 4165 -> 1098[label="",style="solid", color="blue", weight=3]; 4166[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4166[label="",style="solid", color="blue", weight=9]; 4166 -> 1099[label="",style="solid", color="blue", weight=3]; 4167[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4167[label="",style="solid", color="blue", weight=9]; 4167 -> 1100[label="",style="solid", color="blue", weight=3]; 4168[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4168[label="",style="solid", color="blue", weight=9]; 4168 -> 1101[label="",style="solid", color="blue", weight=3]; 4169[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4169[label="",style="solid", color="blue", weight=9]; 4169 -> 1102[label="",style="solid", color="blue", weight=3]; 4170[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4170[label="",style="solid", color="blue", weight=9]; 4170 -> 1103[label="",style="solid", color="blue", weight=3]; 4171[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];779 -> 4171[label="",style="solid", color="blue", weight=9]; 4171 -> 1104[label="",style="solid", color="blue", weight=3]; 780[label="primEqFloat (Float xwv280 xwv281) (Float xwv330 xwv331)",fontsize=16,color="black",shape="box"];780 -> 1105[label="",style="solid", color="black", weight=3]; 781 -> 490[label="",style="dashed", color="red", weight=0]; 781[label="primEqInt xwv280 xwv330",fontsize=16,color="magenta"];781 -> 1106[label="",style="dashed", color="magenta", weight=3]; 781 -> 1107[label="",style="dashed", color="magenta", weight=3]; 782[label="True",fontsize=16,color="green",shape="box"];783[label="False",fontsize=16,color="green",shape="box"];784[label="False",fontsize=16,color="green",shape="box"];785[label="True",fontsize=16,color="green",shape="box"];786[label="primEqDouble (Double xwv280 xwv281) (Double xwv330 xwv331)",fontsize=16,color="black",shape="box"];786 -> 1108[label="",style="solid", color="black", weight=3]; 787 -> 1184[label="",style="dashed", color="red", weight=0]; 787[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];787 -> 1195[label="",style="dashed", color="magenta", weight=3]; 787 -> 1196[label="",style="dashed", color="magenta", weight=3]; 788[label="False",fontsize=16,color="green",shape="box"];789[label="False",fontsize=16,color="green",shape="box"];790[label="True",fontsize=16,color="green",shape="box"];791 -> 1184[label="",style="dashed", color="red", weight=0]; 791[label="xwv280 == xwv330 && xwv281 == xwv331 && xwv282 == xwv332",fontsize=16,color="magenta"];791 -> 1197[label="",style="dashed", color="magenta", weight=3]; 791 -> 1198[label="",style="dashed", color="magenta", weight=3]; 792[label="True",fontsize=16,color="green",shape="box"];793[label="False",fontsize=16,color="green",shape="box"];794[label="False",fontsize=16,color="green",shape="box"];795[label="False",fontsize=16,color="green",shape="box"];796[label="True",fontsize=16,color="green",shape="box"];797[label="False",fontsize=16,color="green",shape="box"];798[label="False",fontsize=16,color="green",shape="box"];799[label="False",fontsize=16,color="green",shape="box"];800[label="True",fontsize=16,color="green",shape="box"];801 -> 1184[label="",style="dashed", color="red", weight=0]; 801[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];801 -> 1199[label="",style="dashed", color="magenta", weight=3]; 801 -> 1200[label="",style="dashed", color="magenta", weight=3]; 802[label="FiniteMap.glueBal4 FiniteMap.EmptyFM xwv52",fontsize=16,color="black",shape="box"];802 -> 1120[label="",style="solid", color="black", weight=3]; 803[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];803 -> 1121[label="",style="solid", color="black", weight=3]; 804[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];804 -> 1122[label="",style="solid", color="black", weight=3]; 808[label="FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="black",shape="triangle"];808 -> 1127[label="",style="solid", color="black", weight=3]; 1559 -> 1127[label="",style="dashed", color="red", weight=0]; 1559[label="FiniteMap.sizeFM xwv16",fontsize=16,color="magenta"];1559 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1560[label="primPlusInt (Pos xwv1620) xwv137",fontsize=16,color="burlywood",shape="box"];4172[label="xwv137/Pos xwv1370",fontsize=10,color="white",style="solid",shape="box"];1560 -> 4172[label="",style="solid", color="burlywood", weight=9]; 4172 -> 1568[label="",style="solid", color="burlywood", weight=3]; 4173[label="xwv137/Neg xwv1370",fontsize=10,color="white",style="solid",shape="box"];1560 -> 4173[label="",style="solid", color="burlywood", weight=9]; 4173 -> 1569[label="",style="solid", color="burlywood", weight=3]; 1561[label="primPlusInt (Neg xwv1620) xwv137",fontsize=16,color="burlywood",shape="box"];4174[label="xwv137/Pos xwv1370",fontsize=10,color="white",style="solid",shape="box"];1561 -> 4174[label="",style="solid", color="burlywood", weight=9]; 4174 -> 1570[label="",style="solid", color="burlywood", weight=3]; 4175[label="xwv137/Neg xwv1370",fontsize=10,color="white",style="solid",shape="box"];1561 -> 4175[label="",style="solid", color="burlywood", weight=9]; 4175 -> 1571[label="",style="solid", color="burlywood", weight=3]; 807 -> 473[label="",style="dashed", color="red", weight=0]; 807[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];807 -> 1125[label="",style="dashed", color="magenta", weight=3]; 807 -> 1126[label="",style="dashed", color="magenta", weight=3]; 809[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];809 -> 1128[label="",style="solid", color="black", weight=3]; 810[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];810 -> 1129[label="",style="solid", color="black", weight=3]; 811[label="FiniteMap.Branch xwv13 xwv14 (FiniteMap.mkBranchUnbox xwv16 xwv13 xwv35 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35 + FiniteMap.mkBranchRight_size xwv16 xwv13 xwv35)) xwv16 xwv35",fontsize=16,color="green",shape="box"];811 -> 1130[label="",style="dashed", color="green", weight=3]; 812[label="xwv4000",fontsize=16,color="green",shape="box"];813[label="xwv3000",fontsize=16,color="green",shape="box"];814[label="LT",fontsize=16,color="green",shape="box"];815[label="compare0 (Just xwv400) Nothing otherwise",fontsize=16,color="black",shape="box"];815 -> 1131[label="",style="solid", color="black", weight=3]; 816[label="xwv400",fontsize=16,color="green",shape="box"];817[label="xwv300",fontsize=16,color="green",shape="box"];818[label="xwv400",fontsize=16,color="green",shape="box"];819[label="xwv300",fontsize=16,color="green",shape="box"];820[label="xwv400",fontsize=16,color="green",shape="box"];821[label="xwv300",fontsize=16,color="green",shape="box"];822[label="xwv400",fontsize=16,color="green",shape="box"];823[label="xwv300",fontsize=16,color="green",shape="box"];824[label="xwv400",fontsize=16,color="green",shape="box"];825[label="xwv300",fontsize=16,color="green",shape="box"];826[label="xwv400",fontsize=16,color="green",shape="box"];827[label="xwv300",fontsize=16,color="green",shape="box"];828[label="xwv400",fontsize=16,color="green",shape="box"];829[label="xwv300",fontsize=16,color="green",shape="box"];830[label="xwv400",fontsize=16,color="green",shape="box"];831[label="xwv300",fontsize=16,color="green",shape="box"];832[label="xwv400",fontsize=16,color="green",shape="box"];833[label="xwv300",fontsize=16,color="green",shape="box"];834[label="xwv400",fontsize=16,color="green",shape="box"];835[label="xwv300",fontsize=16,color="green",shape="box"];836[label="xwv400",fontsize=16,color="green",shape="box"];837[label="xwv300",fontsize=16,color="green",shape="box"];838[label="xwv400",fontsize=16,color="green",shape="box"];839[label="xwv300",fontsize=16,color="green",shape="box"];840[label="xwv400",fontsize=16,color="green",shape="box"];841[label="xwv300",fontsize=16,color="green",shape="box"];842[label="xwv400",fontsize=16,color="green",shape="box"];843[label="xwv300",fontsize=16,color="green",shape="box"];844 -> 1576[label="",style="dashed", color="red", weight=0]; 844[label="compare1 (Just xwv61) (Just xwv62) (Just xwv61 <= Just xwv62)",fontsize=16,color="magenta"];844 -> 1577[label="",style="dashed", color="magenta", weight=3]; 844 -> 1578[label="",style="dashed", color="magenta", weight=3]; 844 -> 1579[label="",style="dashed", color="magenta", weight=3]; 845[label="EQ",fontsize=16,color="green",shape="box"];846[label="xwv300",fontsize=16,color="green",shape="box"];847[label="xwv400",fontsize=16,color="green",shape="box"];848[label="xwv300",fontsize=16,color="green",shape="box"];849[label="xwv400",fontsize=16,color="green",shape="box"];850[label="xwv300",fontsize=16,color="green",shape="box"];851[label="xwv400",fontsize=16,color="green",shape="box"];852[label="xwv300",fontsize=16,color="green",shape="box"];853[label="xwv400",fontsize=16,color="green",shape="box"];854[label="xwv300",fontsize=16,color="green",shape="box"];855[label="xwv400",fontsize=16,color="green",shape="box"];856[label="xwv300",fontsize=16,color="green",shape="box"];857[label="xwv400",fontsize=16,color="green",shape="box"];858[label="xwv300",fontsize=16,color="green",shape="box"];859[label="xwv400",fontsize=16,color="green",shape="box"];860[label="xwv300",fontsize=16,color="green",shape="box"];861[label="xwv400",fontsize=16,color="green",shape="box"];862[label="xwv300",fontsize=16,color="green",shape="box"];863[label="xwv400",fontsize=16,color="green",shape="box"];864[label="xwv300",fontsize=16,color="green",shape="box"];865[label="xwv400",fontsize=16,color="green",shape="box"];866[label="xwv300",fontsize=16,color="green",shape="box"];867[label="xwv400",fontsize=16,color="green",shape="box"];868[label="xwv300",fontsize=16,color="green",shape="box"];869[label="xwv400",fontsize=16,color="green",shape="box"];870[label="xwv300",fontsize=16,color="green",shape="box"];871[label="xwv400",fontsize=16,color="green",shape="box"];872[label="xwv300",fontsize=16,color="green",shape="box"];873[label="xwv400",fontsize=16,color="green",shape="box"];874[label="LT",fontsize=16,color="green",shape="box"];875[label="xwv67",fontsize=16,color="green",shape="box"];876[label="GT",fontsize=16,color="green",shape="box"];1203 -> 409[label="",style="dashed", color="red", weight=0]; 1203[label="xwv400 == xwv300",fontsize=16,color="magenta"];1203 -> 1433[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1204 -> 410[label="",style="dashed", color="red", weight=0]; 1204[label="xwv400 == xwv300",fontsize=16,color="magenta"];1204 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1205 -> 411[label="",style="dashed", color="red", weight=0]; 1205[label="xwv400 == xwv300",fontsize=16,color="magenta"];1205 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1206 -> 412[label="",style="dashed", color="red", weight=0]; 1206[label="xwv400 == xwv300",fontsize=16,color="magenta"];1206 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1207 -> 413[label="",style="dashed", color="red", weight=0]; 1207[label="xwv400 == xwv300",fontsize=16,color="magenta"];1207 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1208 -> 414[label="",style="dashed", color="red", weight=0]; 1208[label="xwv400 == xwv300",fontsize=16,color="magenta"];1208 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1209 -> 415[label="",style="dashed", color="red", weight=0]; 1209[label="xwv400 == xwv300",fontsize=16,color="magenta"];1209 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1210 -> 416[label="",style="dashed", color="red", weight=0]; 1210[label="xwv400 == xwv300",fontsize=16,color="magenta"];1210 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1210 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1211 -> 417[label="",style="dashed", color="red", weight=0]; 1211[label="xwv400 == xwv300",fontsize=16,color="magenta"];1211 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1212 -> 418[label="",style="dashed", color="red", weight=0]; 1212[label="xwv400 == xwv300",fontsize=16,color="magenta"];1212 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1213 -> 419[label="",style="dashed", color="red", weight=0]; 1213[label="xwv400 == xwv300",fontsize=16,color="magenta"];1213 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1214 -> 420[label="",style="dashed", color="red", weight=0]; 1214[label="xwv400 == xwv300",fontsize=16,color="magenta"];1214 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1215 -> 421[label="",style="dashed", color="red", weight=0]; 1215[label="xwv400 == xwv300",fontsize=16,color="magenta"];1215 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1216 -> 422[label="",style="dashed", color="red", weight=0]; 1216[label="xwv400 == xwv300",fontsize=16,color="magenta"];1216 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1217[label="xwv401 == xwv301",fontsize=16,color="blue",shape="box"];4176[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4176[label="",style="solid", color="blue", weight=9]; 4176 -> 1461[label="",style="solid", color="blue", weight=3]; 4177[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4177[label="",style="solid", color="blue", weight=9]; 4177 -> 1462[label="",style="solid", color="blue", weight=3]; 4178[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4178[label="",style="solid", color="blue", weight=9]; 4178 -> 1463[label="",style="solid", color="blue", weight=3]; 4179[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4179[label="",style="solid", color="blue", weight=9]; 4179 -> 1464[label="",style="solid", color="blue", weight=3]; 4180[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4180[label="",style="solid", color="blue", weight=9]; 4180 -> 1465[label="",style="solid", color="blue", weight=3]; 4181[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4181[label="",style="solid", color="blue", weight=9]; 4181 -> 1466[label="",style="solid", color="blue", weight=3]; 4182[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4182[label="",style="solid", color="blue", weight=9]; 4182 -> 1467[label="",style="solid", color="blue", weight=3]; 4183[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4183[label="",style="solid", color="blue", weight=9]; 4183 -> 1468[label="",style="solid", color="blue", weight=3]; 4184[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4184[label="",style="solid", color="blue", weight=9]; 4184 -> 1469[label="",style="solid", color="blue", weight=3]; 4185[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4185[label="",style="solid", color="blue", weight=9]; 4185 -> 1470[label="",style="solid", color="blue", weight=3]; 4186[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4186[label="",style="solid", color="blue", weight=9]; 4186 -> 1471[label="",style="solid", color="blue", weight=3]; 4187[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4187[label="",style="solid", color="blue", weight=9]; 4187 -> 1472[label="",style="solid", color="blue", weight=3]; 4188[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 1473[label="",style="solid", color="blue", weight=3]; 4189[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 1474[label="",style="solid", color="blue", weight=3]; 1218[label="xwv402 == xwv302",fontsize=16,color="blue",shape="box"];4190[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 1475[label="",style="solid", color="blue", weight=3]; 4191[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 1476[label="",style="solid", color="blue", weight=3]; 4192[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 1477[label="",style="solid", color="blue", weight=3]; 4193[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 1478[label="",style="solid", color="blue", weight=3]; 4194[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 1479[label="",style="solid", color="blue", weight=3]; 4195[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 1480[label="",style="solid", color="blue", weight=3]; 4196[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 1481[label="",style="solid", color="blue", weight=3]; 4197[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 1482[label="",style="solid", color="blue", weight=3]; 4198[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 1483[label="",style="solid", color="blue", weight=3]; 4199[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 1484[label="",style="solid", color="blue", weight=3]; 4200[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 1485[label="",style="solid", color="blue", weight=3]; 4201[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 1486[label="",style="solid", color="blue", weight=3]; 4202[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4202[label="",style="solid", color="blue", weight=9]; 4202 -> 1487[label="",style="solid", color="blue", weight=3]; 4203[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4203[label="",style="solid", color="blue", weight=9]; 4203 -> 1488[label="",style="solid", color="blue", weight=3]; 1219[label="False && xwv135",fontsize=16,color="black",shape="box"];1219 -> 1489[label="",style="solid", color="black", weight=3]; 1220[label="True && xwv135",fontsize=16,color="black",shape="box"];1220 -> 1490[label="",style="solid", color="black", weight=3]; 1221[label="compare1 (xwv77,xwv78,xwv79) (xwv80,xwv81,xwv82) ((xwv77,xwv78,xwv79) <= (xwv80,xwv81,xwv82))",fontsize=16,color="black",shape="box"];1221 -> 1491[label="",style="solid", color="black", weight=3]; 1222[label="EQ",fontsize=16,color="green",shape="box"];907[label="LT",fontsize=16,color="green",shape="box"];908[label="LT",fontsize=16,color="green",shape="box"];909[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];909 -> 1150[label="",style="solid", color="black", weight=3]; 910[label="LT",fontsize=16,color="green",shape="box"];911[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];911 -> 1151[label="",style="solid", color="black", weight=3]; 912[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];912 -> 1152[label="",style="solid", color="black", weight=3]; 913[label="Pos xwv4010",fontsize=16,color="green",shape="box"];914[label="xwv300",fontsize=16,color="green",shape="box"];915[label="xwv400",fontsize=16,color="green",shape="box"];916[label="Pos xwv3010",fontsize=16,color="green",shape="box"];917[label="Neg xwv4010",fontsize=16,color="green",shape="box"];918[label="xwv300",fontsize=16,color="green",shape="box"];919[label="xwv400",fontsize=16,color="green",shape="box"];920[label="Pos xwv3010",fontsize=16,color="green",shape="box"];921[label="Pos xwv4010",fontsize=16,color="green",shape="box"];922[label="xwv300",fontsize=16,color="green",shape="box"];923[label="xwv400",fontsize=16,color="green",shape="box"];924[label="Neg xwv3010",fontsize=16,color="green",shape="box"];925[label="Neg xwv4010",fontsize=16,color="green",shape="box"];926[label="xwv300",fontsize=16,color="green",shape="box"];927[label="xwv400",fontsize=16,color="green",shape="box"];928[label="Neg xwv3010",fontsize=16,color="green",shape="box"];929[label="LT",fontsize=16,color="green",shape="box"];930[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];930 -> 1153[label="",style="solid", color="black", weight=3]; 1223 -> 409[label="",style="dashed", color="red", weight=0]; 1223[label="xwv400 == xwv300",fontsize=16,color="magenta"];1223 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1224 -> 410[label="",style="dashed", color="red", weight=0]; 1224[label="xwv400 == xwv300",fontsize=16,color="magenta"];1224 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1225 -> 411[label="",style="dashed", color="red", weight=0]; 1225[label="xwv400 == xwv300",fontsize=16,color="magenta"];1225 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1226 -> 412[label="",style="dashed", color="red", weight=0]; 1226[label="xwv400 == xwv300",fontsize=16,color="magenta"];1226 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1227 -> 413[label="",style="dashed", color="red", weight=0]; 1227[label="xwv400 == xwv300",fontsize=16,color="magenta"];1227 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1228 -> 414[label="",style="dashed", color="red", weight=0]; 1228[label="xwv400 == xwv300",fontsize=16,color="magenta"];1228 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1229 -> 415[label="",style="dashed", color="red", weight=0]; 1229[label="xwv400 == xwv300",fontsize=16,color="magenta"];1229 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1230 -> 416[label="",style="dashed", color="red", weight=0]; 1230[label="xwv400 == xwv300",fontsize=16,color="magenta"];1230 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1231 -> 417[label="",style="dashed", color="red", weight=0]; 1231[label="xwv400 == xwv300",fontsize=16,color="magenta"];1231 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1232 -> 418[label="",style="dashed", color="red", weight=0]; 1232[label="xwv400 == xwv300",fontsize=16,color="magenta"];1232 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1233 -> 419[label="",style="dashed", color="red", weight=0]; 1233[label="xwv400 == xwv300",fontsize=16,color="magenta"];1233 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1234 -> 420[label="",style="dashed", color="red", weight=0]; 1234[label="xwv400 == xwv300",fontsize=16,color="magenta"];1234 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1235 -> 421[label="",style="dashed", color="red", weight=0]; 1235[label="xwv400 == xwv300",fontsize=16,color="magenta"];1235 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1236 -> 422[label="",style="dashed", color="red", weight=0]; 1236[label="xwv400 == xwv300",fontsize=16,color="magenta"];1236 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1237 -> 409[label="",style="dashed", color="red", weight=0]; 1237[label="xwv401 == xwv301",fontsize=16,color="magenta"];1237 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1238 -> 410[label="",style="dashed", color="red", weight=0]; 1238[label="xwv401 == xwv301",fontsize=16,color="magenta"];1238 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1239 -> 411[label="",style="dashed", color="red", weight=0]; 1239[label="xwv401 == xwv301",fontsize=16,color="magenta"];1239 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1240 -> 412[label="",style="dashed", color="red", weight=0]; 1240[label="xwv401 == xwv301",fontsize=16,color="magenta"];1240 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1241 -> 413[label="",style="dashed", color="red", weight=0]; 1241[label="xwv401 == xwv301",fontsize=16,color="magenta"];1241 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1242 -> 414[label="",style="dashed", color="red", weight=0]; 1242[label="xwv401 == xwv301",fontsize=16,color="magenta"];1242 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1243 -> 415[label="",style="dashed", color="red", weight=0]; 1243[label="xwv401 == xwv301",fontsize=16,color="magenta"];1243 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1244 -> 416[label="",style="dashed", color="red", weight=0]; 1244[label="xwv401 == xwv301",fontsize=16,color="magenta"];1244 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1245 -> 417[label="",style="dashed", color="red", weight=0]; 1245[label="xwv401 == xwv301",fontsize=16,color="magenta"];1245 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1245 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1246 -> 418[label="",style="dashed", color="red", weight=0]; 1246[label="xwv401 == xwv301",fontsize=16,color="magenta"];1246 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1246 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1247 -> 419[label="",style="dashed", color="red", weight=0]; 1247[label="xwv401 == xwv301",fontsize=16,color="magenta"];1247 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1247 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1248 -> 420[label="",style="dashed", color="red", weight=0]; 1248[label="xwv401 == xwv301",fontsize=16,color="magenta"];1248 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1248 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1249 -> 421[label="",style="dashed", color="red", weight=0]; 1249[label="xwv401 == xwv301",fontsize=16,color="magenta"];1249 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1249 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1250 -> 422[label="",style="dashed", color="red", weight=0]; 1250[label="xwv401 == xwv301",fontsize=16,color="magenta"];1250 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1250 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1251[label="compare1 (xwv126,xwv127) (xwv128,xwv129) ((xwv126,xwv127) <= (xwv128,xwv129))",fontsize=16,color="black",shape="box"];1251 -> 1548[label="",style="solid", color="black", weight=3]; 1252[label="EQ",fontsize=16,color="green",shape="box"];961[label="Integer (primMulInt xwv3000 xwv4010)",fontsize=16,color="green",shape="box"];961 -> 1253[label="",style="dashed", color="green", weight=3]; 962[label="primMulInt (Pos xwv3000) (Pos xwv4010)",fontsize=16,color="black",shape="box"];962 -> 1254[label="",style="solid", color="black", weight=3]; 963[label="primMulInt (Pos xwv3000) (Neg xwv4010)",fontsize=16,color="black",shape="box"];963 -> 1255[label="",style="solid", color="black", weight=3]; 964[label="primMulInt (Neg xwv3000) (Pos xwv4010)",fontsize=16,color="black",shape="box"];964 -> 1256[label="",style="solid", color="black", weight=3]; 965[label="primMulInt (Neg xwv3000) (Neg xwv4010)",fontsize=16,color="black",shape="box"];965 -> 1257[label="",style="solid", color="black", weight=3]; 966[label="xwv400",fontsize=16,color="green",shape="box"];967[label="xwv300",fontsize=16,color="green",shape="box"];968[label="xwv400",fontsize=16,color="green",shape="box"];969[label="xwv300",fontsize=16,color="green",shape="box"];970[label="xwv400",fontsize=16,color="green",shape="box"];971[label="xwv300",fontsize=16,color="green",shape="box"];972[label="xwv400",fontsize=16,color="green",shape="box"];973[label="xwv300",fontsize=16,color="green",shape="box"];974[label="xwv400",fontsize=16,color="green",shape="box"];975[label="xwv300",fontsize=16,color="green",shape="box"];976[label="xwv400",fontsize=16,color="green",shape="box"];977[label="xwv300",fontsize=16,color="green",shape="box"];978[label="xwv400",fontsize=16,color="green",shape="box"];979[label="xwv300",fontsize=16,color="green",shape="box"];980[label="xwv400",fontsize=16,color="green",shape="box"];981[label="xwv300",fontsize=16,color="green",shape="box"];982[label="xwv400",fontsize=16,color="green",shape="box"];983[label="xwv300",fontsize=16,color="green",shape="box"];984[label="xwv400",fontsize=16,color="green",shape="box"];985[label="xwv300",fontsize=16,color="green",shape="box"];986[label="xwv400",fontsize=16,color="green",shape="box"];987[label="xwv300",fontsize=16,color="green",shape="box"];988[label="xwv400",fontsize=16,color="green",shape="box"];989[label="xwv300",fontsize=16,color="green",shape="box"];990[label="xwv400",fontsize=16,color="green",shape="box"];991[label="xwv300",fontsize=16,color="green",shape="box"];992[label="xwv400",fontsize=16,color="green",shape="box"];993[label="xwv300",fontsize=16,color="green",shape="box"];994 -> 1660[label="",style="dashed", color="red", weight=0]; 994[label="compare1 (Left xwv99) (Left xwv100) (Left xwv99 <= Left xwv100)",fontsize=16,color="magenta"];994 -> 1661[label="",style="dashed", color="magenta", weight=3]; 994 -> 1662[label="",style="dashed", color="magenta", weight=3]; 994 -> 1663[label="",style="dashed", color="magenta", weight=3]; 995[label="EQ",fontsize=16,color="green",shape="box"];996[label="LT",fontsize=16,color="green",shape="box"];997[label="compare0 (Right xwv400) (Left xwv300) otherwise",fontsize=16,color="black",shape="box"];997 -> 1259[label="",style="solid", color="black", weight=3]; 998[label="xwv400",fontsize=16,color="green",shape="box"];999[label="xwv300",fontsize=16,color="green",shape="box"];1000[label="xwv400",fontsize=16,color="green",shape="box"];1001[label="xwv300",fontsize=16,color="green",shape="box"];1002[label="xwv400",fontsize=16,color="green",shape="box"];1003[label="xwv300",fontsize=16,color="green",shape="box"];1004[label="xwv400",fontsize=16,color="green",shape="box"];1005[label="xwv300",fontsize=16,color="green",shape="box"];1006[label="xwv400",fontsize=16,color="green",shape="box"];1007[label="xwv300",fontsize=16,color="green",shape="box"];1008[label="xwv400",fontsize=16,color="green",shape="box"];1009[label="xwv300",fontsize=16,color="green",shape="box"];1010[label="xwv400",fontsize=16,color="green",shape="box"];1011[label="xwv300",fontsize=16,color="green",shape="box"];1012[label="xwv400",fontsize=16,color="green",shape="box"];1013[label="xwv300",fontsize=16,color="green",shape="box"];1014[label="xwv400",fontsize=16,color="green",shape="box"];1015[label="xwv300",fontsize=16,color="green",shape="box"];1016[label="xwv400",fontsize=16,color="green",shape="box"];1017[label="xwv300",fontsize=16,color="green",shape="box"];1018[label="xwv400",fontsize=16,color="green",shape="box"];1019[label="xwv300",fontsize=16,color="green",shape="box"];1020[label="xwv400",fontsize=16,color="green",shape="box"];1021[label="xwv300",fontsize=16,color="green",shape="box"];1022[label="xwv400",fontsize=16,color="green",shape="box"];1023[label="xwv300",fontsize=16,color="green",shape="box"];1024[label="xwv400",fontsize=16,color="green",shape="box"];1025[label="xwv300",fontsize=16,color="green",shape="box"];1026 -> 1671[label="",style="dashed", color="red", weight=0]; 1026[label="compare1 (Right xwv106) (Right xwv107) (Right xwv106 <= Right xwv107)",fontsize=16,color="magenta"];1026 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1027[label="EQ",fontsize=16,color="green",shape="box"];1028[label="Pos xwv4010",fontsize=16,color="green",shape="box"];1029[label="xwv300",fontsize=16,color="green",shape="box"];1030[label="xwv400",fontsize=16,color="green",shape="box"];1031[label="Pos xwv3010",fontsize=16,color="green",shape="box"];1032[label="Neg xwv4010",fontsize=16,color="green",shape="box"];1033[label="xwv300",fontsize=16,color="green",shape="box"];1034[label="xwv400",fontsize=16,color="green",shape="box"];1035[label="Pos xwv3010",fontsize=16,color="green",shape="box"];1036[label="Pos xwv4010",fontsize=16,color="green",shape="box"];1037[label="xwv300",fontsize=16,color="green",shape="box"];1038[label="xwv400",fontsize=16,color="green",shape="box"];1039[label="Neg xwv3010",fontsize=16,color="green",shape="box"];1040[label="Neg xwv4010",fontsize=16,color="green",shape="box"];1041[label="xwv300",fontsize=16,color="green",shape="box"];1042[label="xwv400",fontsize=16,color="green",shape="box"];1043[label="Neg xwv3010",fontsize=16,color="green",shape="box"];1044 -> 409[label="",style="dashed", color="red", weight=0]; 1044[label="xwv280 == xwv330",fontsize=16,color="magenta"];1044 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1044 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1045 -> 410[label="",style="dashed", color="red", weight=0]; 1045[label="xwv280 == xwv330",fontsize=16,color="magenta"];1045 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1046 -> 411[label="",style="dashed", color="red", weight=0]; 1046[label="xwv280 == xwv330",fontsize=16,color="magenta"];1046 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1046 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1047 -> 412[label="",style="dashed", color="red", weight=0]; 1047[label="xwv280 == xwv330",fontsize=16,color="magenta"];1047 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1047 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1048 -> 413[label="",style="dashed", color="red", weight=0]; 1048[label="xwv280 == xwv330",fontsize=16,color="magenta"];1048 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1048 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1049 -> 414[label="",style="dashed", color="red", weight=0]; 1049[label="xwv280 == xwv330",fontsize=16,color="magenta"];1049 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1049 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1050 -> 415[label="",style="dashed", color="red", weight=0]; 1050[label="xwv280 == xwv330",fontsize=16,color="magenta"];1050 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1050 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1051 -> 416[label="",style="dashed", color="red", weight=0]; 1051[label="xwv280 == xwv330",fontsize=16,color="magenta"];1051 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1051 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1052 -> 417[label="",style="dashed", color="red", weight=0]; 1052[label="xwv280 == xwv330",fontsize=16,color="magenta"];1052 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1052 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1053 -> 418[label="",style="dashed", color="red", weight=0]; 1053[label="xwv280 == xwv330",fontsize=16,color="magenta"];1053 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1053 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1054 -> 419[label="",style="dashed", color="red", weight=0]; 1054[label="xwv280 == xwv330",fontsize=16,color="magenta"];1054 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1054 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1055 -> 420[label="",style="dashed", color="red", weight=0]; 1055[label="xwv280 == xwv330",fontsize=16,color="magenta"];1055 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1055 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1056 -> 421[label="",style="dashed", color="red", weight=0]; 1056[label="xwv280 == xwv330",fontsize=16,color="magenta"];1056 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1056 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1057 -> 422[label="",style="dashed", color="red", weight=0]; 1057[label="xwv280 == xwv330",fontsize=16,color="magenta"];1057 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1057 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1058 -> 409[label="",style="dashed", color="red", weight=0]; 1058[label="xwv280 == xwv330",fontsize=16,color="magenta"];1058 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1058 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1059 -> 410[label="",style="dashed", color="red", weight=0]; 1059[label="xwv280 == xwv330",fontsize=16,color="magenta"];1059 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1059 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1060 -> 411[label="",style="dashed", color="red", weight=0]; 1060[label="xwv280 == xwv330",fontsize=16,color="magenta"];1060 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1060 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1061 -> 412[label="",style="dashed", color="red", weight=0]; 1061[label="xwv280 == xwv330",fontsize=16,color="magenta"];1061 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1061 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1062 -> 413[label="",style="dashed", color="red", weight=0]; 1062[label="xwv280 == xwv330",fontsize=16,color="magenta"];1062 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1063 -> 414[label="",style="dashed", color="red", weight=0]; 1063[label="xwv280 == xwv330",fontsize=16,color="magenta"];1063 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1064 -> 415[label="",style="dashed", color="red", weight=0]; 1064[label="xwv280 == xwv330",fontsize=16,color="magenta"];1064 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1064 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1065 -> 416[label="",style="dashed", color="red", weight=0]; 1065[label="xwv280 == xwv330",fontsize=16,color="magenta"];1065 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1066 -> 417[label="",style="dashed", color="red", weight=0]; 1066[label="xwv280 == xwv330",fontsize=16,color="magenta"];1066 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1066 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1067 -> 418[label="",style="dashed", color="red", weight=0]; 1067[label="xwv280 == xwv330",fontsize=16,color="magenta"];1067 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1068 -> 419[label="",style="dashed", color="red", weight=0]; 1068[label="xwv280 == xwv330",fontsize=16,color="magenta"];1068 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1068 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1069 -> 420[label="",style="dashed", color="red", weight=0]; 1069[label="xwv280 == xwv330",fontsize=16,color="magenta"];1069 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1069 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1070 -> 421[label="",style="dashed", color="red", weight=0]; 1070[label="xwv280 == xwv330",fontsize=16,color="magenta"];1070 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1070 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1071 -> 422[label="",style="dashed", color="red", weight=0]; 1071[label="xwv280 == xwv330",fontsize=16,color="magenta"];1071 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1071 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1072[label="primEqNat xwv280 xwv330",fontsize=16,color="burlywood",shape="triangle"];4204[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];1072 -> 4204[label="",style="solid", color="burlywood", weight=9]; 4204 -> 1317[label="",style="solid", color="burlywood", weight=3]; 4205[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];1072 -> 4205[label="",style="solid", color="burlywood", weight=9]; 4205 -> 1318[label="",style="solid", color="burlywood", weight=3]; 1073[label="primEqInt (Pos (Succ xwv2800)) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4206[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1073 -> 4206[label="",style="solid", color="burlywood", weight=9]; 4206 -> 1319[label="",style="solid", color="burlywood", weight=3]; 4207[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1073 -> 4207[label="",style="solid", color="burlywood", weight=9]; 4207 -> 1320[label="",style="solid", color="burlywood", weight=3]; 1074[label="primEqInt (Pos (Succ xwv2800)) (Neg xwv330)",fontsize=16,color="black",shape="box"];1074 -> 1321[label="",style="solid", color="black", weight=3]; 1075[label="primEqInt (Pos Zero) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4208[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1075 -> 4208[label="",style="solid", color="burlywood", weight=9]; 4208 -> 1322[label="",style="solid", color="burlywood", weight=3]; 4209[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1075 -> 4209[label="",style="solid", color="burlywood", weight=9]; 4209 -> 1323[label="",style="solid", color="burlywood", weight=3]; 1076[label="primEqInt (Pos Zero) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4210[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1076 -> 4210[label="",style="solid", color="burlywood", weight=9]; 4210 -> 1324[label="",style="solid", color="burlywood", weight=3]; 4211[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1076 -> 4211[label="",style="solid", color="burlywood", weight=9]; 4211 -> 1325[label="",style="solid", color="burlywood", weight=3]; 1077[label="primEqInt (Neg (Succ xwv2800)) (Pos xwv330)",fontsize=16,color="black",shape="box"];1077 -> 1326[label="",style="solid", color="black", weight=3]; 1078[label="primEqInt (Neg (Succ xwv2800)) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4212[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1078 -> 4212[label="",style="solid", color="burlywood", weight=9]; 4212 -> 1327[label="",style="solid", color="burlywood", weight=3]; 4213[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1078 -> 4213[label="",style="solid", color="burlywood", weight=9]; 4213 -> 1328[label="",style="solid", color="burlywood", weight=3]; 1079[label="primEqInt (Neg Zero) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4214[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1079 -> 4214[label="",style="solid", color="burlywood", weight=9]; 4214 -> 1329[label="",style="solid", color="burlywood", weight=3]; 4215[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1079 -> 4215[label="",style="solid", color="burlywood", weight=9]; 4215 -> 1330[label="",style="solid", color="burlywood", weight=3]; 1080[label="primEqInt (Neg Zero) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4216[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1080 -> 4216[label="",style="solid", color="burlywood", weight=9]; 4216 -> 1331[label="",style="solid", color="burlywood", weight=3]; 4217[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1080 -> 4217[label="",style="solid", color="burlywood", weight=9]; 4217 -> 1332[label="",style="solid", color="burlywood", weight=3]; 1193[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4218[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 1333[label="",style="solid", color="blue", weight=3]; 4219[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4219[label="",style="solid", color="blue", weight=9]; 4219 -> 1334[label="",style="solid", color="blue", weight=3]; 1194[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4220[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4220[label="",style="solid", color="blue", weight=9]; 4220 -> 1335[label="",style="solid", color="blue", weight=3]; 4221[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 1336[label="",style="solid", color="blue", weight=3]; 1091 -> 409[label="",style="dashed", color="red", weight=0]; 1091[label="xwv280 == xwv330",fontsize=16,color="magenta"];1091 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1092 -> 410[label="",style="dashed", color="red", weight=0]; 1092[label="xwv280 == xwv330",fontsize=16,color="magenta"];1092 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1092 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1093 -> 411[label="",style="dashed", color="red", weight=0]; 1093[label="xwv280 == xwv330",fontsize=16,color="magenta"];1093 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1094 -> 412[label="",style="dashed", color="red", weight=0]; 1094[label="xwv280 == xwv330",fontsize=16,color="magenta"];1094 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1095 -> 413[label="",style="dashed", color="red", weight=0]; 1095[label="xwv280 == xwv330",fontsize=16,color="magenta"];1095 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1095 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1096 -> 414[label="",style="dashed", color="red", weight=0]; 1096[label="xwv280 == xwv330",fontsize=16,color="magenta"];1096 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1096 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1097 -> 415[label="",style="dashed", color="red", weight=0]; 1097[label="xwv280 == xwv330",fontsize=16,color="magenta"];1097 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1098 -> 416[label="",style="dashed", color="red", weight=0]; 1098[label="xwv280 == xwv330",fontsize=16,color="magenta"];1098 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1099 -> 417[label="",style="dashed", color="red", weight=0]; 1099[label="xwv280 == xwv330",fontsize=16,color="magenta"];1099 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1100 -> 418[label="",style="dashed", color="red", weight=0]; 1100[label="xwv280 == xwv330",fontsize=16,color="magenta"];1100 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1101 -> 419[label="",style="dashed", color="red", weight=0]; 1101[label="xwv280 == xwv330",fontsize=16,color="magenta"];1101 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1101 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1102 -> 420[label="",style="dashed", color="red", weight=0]; 1102[label="xwv280 == xwv330",fontsize=16,color="magenta"];1102 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1103 -> 421[label="",style="dashed", color="red", weight=0]; 1103[label="xwv280 == xwv330",fontsize=16,color="magenta"];1103 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1104 -> 422[label="",style="dashed", color="red", weight=0]; 1104[label="xwv280 == xwv330",fontsize=16,color="magenta"];1104 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1104 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1105 -> 412[label="",style="dashed", color="red", weight=0]; 1105[label="xwv280 * xwv331 == xwv281 * xwv330",fontsize=16,color="magenta"];1105 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1105 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1106[label="xwv280",fontsize=16,color="green",shape="box"];1107[label="xwv330",fontsize=16,color="green",shape="box"];1108 -> 412[label="",style="dashed", color="red", weight=0]; 1108[label="xwv280 * xwv331 == xwv281 * xwv330",fontsize=16,color="magenta"];1108 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1195[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4222[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 1369[label="",style="solid", color="blue", weight=3]; 4223[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4223[label="",style="solid", color="blue", weight=9]; 4223 -> 1370[label="",style="solid", color="blue", weight=3]; 4224[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4224[label="",style="solid", color="blue", weight=9]; 4224 -> 1371[label="",style="solid", color="blue", weight=3]; 4225[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4225[label="",style="solid", color="blue", weight=9]; 4225 -> 1372[label="",style="solid", color="blue", weight=3]; 4226[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4226[label="",style="solid", color="blue", weight=9]; 4226 -> 1373[label="",style="solid", color="blue", weight=3]; 4227[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4227[label="",style="solid", color="blue", weight=9]; 4227 -> 1374[label="",style="solid", color="blue", weight=3]; 4228[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4228[label="",style="solid", color="blue", weight=9]; 4228 -> 1375[label="",style="solid", color="blue", weight=3]; 4229[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4229[label="",style="solid", color="blue", weight=9]; 4229 -> 1376[label="",style="solid", color="blue", weight=3]; 4230[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4230[label="",style="solid", color="blue", weight=9]; 4230 -> 1377[label="",style="solid", color="blue", weight=3]; 4231[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4231[label="",style="solid", color="blue", weight=9]; 4231 -> 1378[label="",style="solid", color="blue", weight=3]; 4232[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4232[label="",style="solid", color="blue", weight=9]; 4232 -> 1379[label="",style="solid", color="blue", weight=3]; 4233[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4233[label="",style="solid", color="blue", weight=9]; 4233 -> 1380[label="",style="solid", color="blue", weight=3]; 4234[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4234[label="",style="solid", color="blue", weight=9]; 4234 -> 1381[label="",style="solid", color="blue", weight=3]; 4235[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4235[label="",style="solid", color="blue", weight=9]; 4235 -> 1382[label="",style="solid", color="blue", weight=3]; 1196 -> 419[label="",style="dashed", color="red", weight=0]; 1196[label="xwv281 == xwv331",fontsize=16,color="magenta"];1196 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1197[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4236[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4236[label="",style="solid", color="blue", weight=9]; 4236 -> 1385[label="",style="solid", color="blue", weight=3]; 4237[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4237[label="",style="solid", color="blue", weight=9]; 4237 -> 1386[label="",style="solid", color="blue", weight=3]; 4238[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4238[label="",style="solid", color="blue", weight=9]; 4238 -> 1387[label="",style="solid", color="blue", weight=3]; 4239[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4239[label="",style="solid", color="blue", weight=9]; 4239 -> 1388[label="",style="solid", color="blue", weight=3]; 4240[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4240[label="",style="solid", color="blue", weight=9]; 4240 -> 1389[label="",style="solid", color="blue", weight=3]; 4241[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4241[label="",style="solid", color="blue", weight=9]; 4241 -> 1390[label="",style="solid", color="blue", weight=3]; 4242[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4242[label="",style="solid", color="blue", weight=9]; 4242 -> 1391[label="",style="solid", color="blue", weight=3]; 4243[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 1392[label="",style="solid", color="blue", weight=3]; 4244[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4244[label="",style="solid", color="blue", weight=9]; 4244 -> 1393[label="",style="solid", color="blue", weight=3]; 4245[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4245[label="",style="solid", color="blue", weight=9]; 4245 -> 1394[label="",style="solid", color="blue", weight=3]; 4246[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4246[label="",style="solid", color="blue", weight=9]; 4246 -> 1395[label="",style="solid", color="blue", weight=3]; 4247[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4247[label="",style="solid", color="blue", weight=9]; 4247 -> 1396[label="",style="solid", color="blue", weight=3]; 4248[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4248[label="",style="solid", color="blue", weight=9]; 4248 -> 1397[label="",style="solid", color="blue", weight=3]; 4249[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4249[label="",style="solid", color="blue", weight=9]; 4249 -> 1398[label="",style="solid", color="blue", weight=3]; 1198 -> 1184[label="",style="dashed", color="red", weight=0]; 1198[label="xwv281 == xwv331 && xwv282 == xwv332",fontsize=16,color="magenta"];1198 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1199[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4250[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4250[label="",style="solid", color="blue", weight=9]; 4250 -> 1401[label="",style="solid", color="blue", weight=3]; 4251[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4251[label="",style="solid", color="blue", weight=9]; 4251 -> 1402[label="",style="solid", color="blue", weight=3]; 4252[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4252[label="",style="solid", color="blue", weight=9]; 4252 -> 1403[label="",style="solid", color="blue", weight=3]; 4253[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4253[label="",style="solid", color="blue", weight=9]; 4253 -> 1404[label="",style="solid", color="blue", weight=3]; 4254[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4254[label="",style="solid", color="blue", weight=9]; 4254 -> 1405[label="",style="solid", color="blue", weight=3]; 4255[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4255[label="",style="solid", color="blue", weight=9]; 4255 -> 1406[label="",style="solid", color="blue", weight=3]; 4256[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4256[label="",style="solid", color="blue", weight=9]; 4256 -> 1407[label="",style="solid", color="blue", weight=3]; 4257[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4257[label="",style="solid", color="blue", weight=9]; 4257 -> 1408[label="",style="solid", color="blue", weight=3]; 4258[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4258[label="",style="solid", color="blue", weight=9]; 4258 -> 1409[label="",style="solid", color="blue", weight=3]; 4259[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4259[label="",style="solid", color="blue", weight=9]; 4259 -> 1410[label="",style="solid", color="blue", weight=3]; 4260[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4260[label="",style="solid", color="blue", weight=9]; 4260 -> 1411[label="",style="solid", color="blue", weight=3]; 4261[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4261[label="",style="solid", color="blue", weight=9]; 4261 -> 1412[label="",style="solid", color="blue", weight=3]; 4262[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4262[label="",style="solid", color="blue", weight=9]; 4262 -> 1413[label="",style="solid", color="blue", weight=3]; 4263[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 4263[label="",style="solid", color="blue", weight=9]; 4263 -> 1414[label="",style="solid", color="blue", weight=3]; 1200[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4264[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4264[label="",style="solid", color="blue", weight=9]; 4264 -> 1415[label="",style="solid", color="blue", weight=3]; 4265[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4265[label="",style="solid", color="blue", weight=9]; 4265 -> 1416[label="",style="solid", color="blue", weight=3]; 4266[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4266[label="",style="solid", color="blue", weight=9]; 4266 -> 1417[label="",style="solid", color="blue", weight=3]; 4267[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4267[label="",style="solid", color="blue", weight=9]; 4267 -> 1418[label="",style="solid", color="blue", weight=3]; 4268[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4268[label="",style="solid", color="blue", weight=9]; 4268 -> 1419[label="",style="solid", color="blue", weight=3]; 4269[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4269[label="",style="solid", color="blue", weight=9]; 4269 -> 1420[label="",style="solid", color="blue", weight=3]; 4270[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4270[label="",style="solid", color="blue", weight=9]; 4270 -> 1421[label="",style="solid", color="blue", weight=3]; 4271[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4271[label="",style="solid", color="blue", weight=9]; 4271 -> 1422[label="",style="solid", color="blue", weight=3]; 4272[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4272[label="",style="solid", color="blue", weight=9]; 4272 -> 1423[label="",style="solid", color="blue", weight=3]; 4273[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4273[label="",style="solid", color="blue", weight=9]; 4273 -> 1424[label="",style="solid", color="blue", weight=3]; 4274[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4274[label="",style="solid", color="blue", weight=9]; 4274 -> 1425[label="",style="solid", color="blue", weight=3]; 4275[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4275[label="",style="solid", color="blue", weight=9]; 4275 -> 1426[label="",style="solid", color="blue", weight=3]; 4276[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4276[label="",style="solid", color="blue", weight=9]; 4276 -> 1427[label="",style="solid", color="blue", weight=3]; 4277[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 4277[label="",style="solid", color="blue", weight=9]; 4277 -> 1428[label="",style="solid", color="blue", weight=3]; 1120[label="xwv52",fontsize=16,color="green",shape="box"];1121[label="FiniteMap.glueBal3 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1121 -> 1429[label="",style="solid", color="black", weight=3]; 1122[label="FiniteMap.glueBal2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];1122 -> 1430[label="",style="solid", color="black", weight=3]; 1127[label="FiniteMap.sizeFM xwv35",fontsize=16,color="burlywood",shape="triangle"];4278[label="xwv35/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1127 -> 4278[label="",style="solid", color="burlywood", weight=9]; 4278 -> 1563[label="",style="solid", color="burlywood", weight=3]; 4279[label="xwv35/FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354",fontsize=10,color="white",style="solid",shape="box"];1127 -> 4279[label="",style="solid", color="burlywood", weight=9]; 4279 -> 1564[label="",style="solid", color="burlywood", weight=3]; 1567[label="xwv16",fontsize=16,color="green",shape="box"];1568[label="primPlusInt (Pos xwv1620) (Pos xwv1370)",fontsize=16,color="black",shape="box"];1568 -> 1583[label="",style="solid", color="black", weight=3]; 1569[label="primPlusInt (Pos xwv1620) (Neg xwv1370)",fontsize=16,color="black",shape="box"];1569 -> 1584[label="",style="solid", color="black", weight=3]; 1570[label="primPlusInt (Neg xwv1620) (Pos xwv1370)",fontsize=16,color="black",shape="box"];1570 -> 1585[label="",style="solid", color="black", weight=3]; 1571[label="primPlusInt (Neg xwv1620) (Neg xwv1370)",fontsize=16,color="black",shape="box"];1571 -> 1586[label="",style="solid", color="black", weight=3]; 1125[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1125 -> 1562[label="",style="solid", color="black", weight=3]; 1126 -> 1551[label="",style="dashed", color="red", weight=0]; 1126[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];1128 -> 1565[label="",style="dashed", color="red", weight=0]; 1128[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35)",fontsize=16,color="magenta"];1128 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1129[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv16 xwv13 xwv14 xwv35 xwv16 xwv35 xwv35",fontsize=16,color="burlywood",shape="box"];4280[label="xwv35/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4280[label="",style="solid", color="burlywood", weight=9]; 4280 -> 1572[label="",style="solid", color="burlywood", weight=3]; 4281[label="xwv35/FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4281[label="",style="solid", color="burlywood", weight=9]; 4281 -> 1573[label="",style="solid", color="burlywood", weight=3]; 1130[label="FiniteMap.mkBranchUnbox xwv16 xwv13 xwv35 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35 + FiniteMap.mkBranchRight_size xwv16 xwv13 xwv35)",fontsize=16,color="black",shape="box"];1130 -> 1574[label="",style="solid", color="black", weight=3]; 1131[label="compare0 (Just xwv400) Nothing True",fontsize=16,color="black",shape="box"];1131 -> 1575[label="",style="solid", color="black", weight=3]; 1577[label="xwv61",fontsize=16,color="green",shape="box"];1578[label="xwv62",fontsize=16,color="green",shape="box"];1579[label="Just xwv61 <= Just xwv62",fontsize=16,color="black",shape="box"];1579 -> 1587[label="",style="solid", color="black", weight=3]; 1576[label="compare1 (Just xwv147) (Just xwv148) xwv149",fontsize=16,color="burlywood",shape="triangle"];4282[label="xwv149/False",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4282[label="",style="solid", color="burlywood", weight=9]; 4282 -> 1588[label="",style="solid", color="burlywood", weight=3]; 4283[label="xwv149/True",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4283[label="",style="solid", color="burlywood", weight=9]; 4283 -> 1589[label="",style="solid", color="burlywood", weight=3]; 1433[label="xwv400",fontsize=16,color="green",shape="box"];1434[label="xwv300",fontsize=16,color="green",shape="box"];1435[label="xwv400",fontsize=16,color="green",shape="box"];1436[label="xwv300",fontsize=16,color="green",shape="box"];1437[label="xwv400",fontsize=16,color="green",shape="box"];1438[label="xwv300",fontsize=16,color="green",shape="box"];1439[label="xwv400",fontsize=16,color="green",shape="box"];1440[label="xwv300",fontsize=16,color="green",shape="box"];1441[label="xwv400",fontsize=16,color="green",shape="box"];1442[label="xwv300",fontsize=16,color="green",shape="box"];1443[label="xwv400",fontsize=16,color="green",shape="box"];1444[label="xwv300",fontsize=16,color="green",shape="box"];1445[label="xwv400",fontsize=16,color="green",shape="box"];1446[label="xwv300",fontsize=16,color="green",shape="box"];1447[label="xwv400",fontsize=16,color="green",shape="box"];1448[label="xwv300",fontsize=16,color="green",shape="box"];1449[label="xwv400",fontsize=16,color="green",shape="box"];1450[label="xwv300",fontsize=16,color="green",shape="box"];1451[label="xwv400",fontsize=16,color="green",shape="box"];1452[label="xwv300",fontsize=16,color="green",shape="box"];1453[label="xwv400",fontsize=16,color="green",shape="box"];1454[label="xwv300",fontsize=16,color="green",shape="box"];1455[label="xwv400",fontsize=16,color="green",shape="box"];1456[label="xwv300",fontsize=16,color="green",shape="box"];1457[label="xwv400",fontsize=16,color="green",shape="box"];1458[label="xwv300",fontsize=16,color="green",shape="box"];1459[label="xwv400",fontsize=16,color="green",shape="box"];1460[label="xwv300",fontsize=16,color="green",shape="box"];1461 -> 409[label="",style="dashed", color="red", weight=0]; 1461[label="xwv401 == xwv301",fontsize=16,color="magenta"];1461 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1462 -> 410[label="",style="dashed", color="red", weight=0]; 1462[label="xwv401 == xwv301",fontsize=16,color="magenta"];1462 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1463 -> 411[label="",style="dashed", color="red", weight=0]; 1463[label="xwv401 == xwv301",fontsize=16,color="magenta"];1463 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1464 -> 412[label="",style="dashed", color="red", weight=0]; 1464[label="xwv401 == xwv301",fontsize=16,color="magenta"];1464 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1465 -> 413[label="",style="dashed", color="red", weight=0]; 1465[label="xwv401 == xwv301",fontsize=16,color="magenta"];1465 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1466 -> 414[label="",style="dashed", color="red", weight=0]; 1466[label="xwv401 == xwv301",fontsize=16,color="magenta"];1466 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1467 -> 415[label="",style="dashed", color="red", weight=0]; 1467[label="xwv401 == xwv301",fontsize=16,color="magenta"];1467 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1468 -> 416[label="",style="dashed", color="red", weight=0]; 1468[label="xwv401 == xwv301",fontsize=16,color="magenta"];1468 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1469 -> 417[label="",style="dashed", color="red", weight=0]; 1469[label="xwv401 == xwv301",fontsize=16,color="magenta"];1469 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1470 -> 418[label="",style="dashed", color="red", weight=0]; 1470[label="xwv401 == xwv301",fontsize=16,color="magenta"];1470 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1471 -> 419[label="",style="dashed", color="red", weight=0]; 1471[label="xwv401 == xwv301",fontsize=16,color="magenta"];1471 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1472 -> 420[label="",style="dashed", color="red", weight=0]; 1472[label="xwv401 == xwv301",fontsize=16,color="magenta"];1472 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1473 -> 421[label="",style="dashed", color="red", weight=0]; 1473[label="xwv401 == xwv301",fontsize=16,color="magenta"];1473 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1474 -> 422[label="",style="dashed", color="red", weight=0]; 1474[label="xwv401 == xwv301",fontsize=16,color="magenta"];1474 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1475 -> 409[label="",style="dashed", color="red", weight=0]; 1475[label="xwv402 == xwv302",fontsize=16,color="magenta"];1475 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1476 -> 410[label="",style="dashed", color="red", weight=0]; 1476[label="xwv402 == xwv302",fontsize=16,color="magenta"];1476 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1477 -> 411[label="",style="dashed", color="red", weight=0]; 1477[label="xwv402 == xwv302",fontsize=16,color="magenta"];1477 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1478 -> 412[label="",style="dashed", color="red", weight=0]; 1478[label="xwv402 == xwv302",fontsize=16,color="magenta"];1478 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1479 -> 413[label="",style="dashed", color="red", weight=0]; 1479[label="xwv402 == xwv302",fontsize=16,color="magenta"];1479 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1480 -> 414[label="",style="dashed", color="red", weight=0]; 1480[label="xwv402 == xwv302",fontsize=16,color="magenta"];1480 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1481 -> 415[label="",style="dashed", color="red", weight=0]; 1481[label="xwv402 == xwv302",fontsize=16,color="magenta"];1481 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1482 -> 416[label="",style="dashed", color="red", weight=0]; 1482[label="xwv402 == xwv302",fontsize=16,color="magenta"];1482 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1483 -> 417[label="",style="dashed", color="red", weight=0]; 1483[label="xwv402 == xwv302",fontsize=16,color="magenta"];1483 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1484 -> 418[label="",style="dashed", color="red", weight=0]; 1484[label="xwv402 == xwv302",fontsize=16,color="magenta"];1484 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1485 -> 419[label="",style="dashed", color="red", weight=0]; 1485[label="xwv402 == xwv302",fontsize=16,color="magenta"];1485 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1486 -> 420[label="",style="dashed", color="red", weight=0]; 1486[label="xwv402 == xwv302",fontsize=16,color="magenta"];1486 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1487 -> 421[label="",style="dashed", color="red", weight=0]; 1487[label="xwv402 == xwv302",fontsize=16,color="magenta"];1487 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1488 -> 422[label="",style="dashed", color="red", weight=0]; 1488[label="xwv402 == xwv302",fontsize=16,color="magenta"];1488 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1489[label="False",fontsize=16,color="green",shape="box"];1490[label="xwv135",fontsize=16,color="green",shape="box"];1491 -> 1888[label="",style="dashed", color="red", weight=0]; 1491[label="compare1 (xwv77,xwv78,xwv79) (xwv80,xwv81,xwv82) (xwv77 < xwv80 || xwv77 == xwv80 && (xwv78 < xwv81 || xwv78 == xwv81 && xwv79 <= xwv82))",fontsize=16,color="magenta"];1491 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1150[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1150 -> 1648[label="",style="solid", color="black", weight=3]; 1151[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1151 -> 1649[label="",style="solid", color="black", weight=3]; 1152[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1152 -> 1650[label="",style="solid", color="black", weight=3]; 1153[label="compare0 True False True",fontsize=16,color="black",shape="box"];1153 -> 1651[label="",style="solid", color="black", weight=3]; 1492[label="xwv400",fontsize=16,color="green",shape="box"];1493[label="xwv300",fontsize=16,color="green",shape="box"];1494[label="xwv400",fontsize=16,color="green",shape="box"];1495[label="xwv300",fontsize=16,color="green",shape="box"];1496[label="xwv400",fontsize=16,color="green",shape="box"];1497[label="xwv300",fontsize=16,color="green",shape="box"];1498[label="xwv400",fontsize=16,color="green",shape="box"];1499[label="xwv300",fontsize=16,color="green",shape="box"];1500[label="xwv400",fontsize=16,color="green",shape="box"];1501[label="xwv300",fontsize=16,color="green",shape="box"];1502[label="xwv400",fontsize=16,color="green",shape="box"];1503[label="xwv300",fontsize=16,color="green",shape="box"];1504[label="xwv400",fontsize=16,color="green",shape="box"];1505[label="xwv300",fontsize=16,color="green",shape="box"];1506[label="xwv400",fontsize=16,color="green",shape="box"];1507[label="xwv300",fontsize=16,color="green",shape="box"];1508[label="xwv400",fontsize=16,color="green",shape="box"];1509[label="xwv300",fontsize=16,color="green",shape="box"];1510[label="xwv400",fontsize=16,color="green",shape="box"];1511[label="xwv300",fontsize=16,color="green",shape="box"];1512[label="xwv400",fontsize=16,color="green",shape="box"];1513[label="xwv300",fontsize=16,color="green",shape="box"];1514[label="xwv400",fontsize=16,color="green",shape="box"];1515[label="xwv300",fontsize=16,color="green",shape="box"];1516[label="xwv400",fontsize=16,color="green",shape="box"];1517[label="xwv300",fontsize=16,color="green",shape="box"];1518[label="xwv400",fontsize=16,color="green",shape="box"];1519[label="xwv300",fontsize=16,color="green",shape="box"];1520[label="xwv401",fontsize=16,color="green",shape="box"];1521[label="xwv301",fontsize=16,color="green",shape="box"];1522[label="xwv401",fontsize=16,color="green",shape="box"];1523[label="xwv301",fontsize=16,color="green",shape="box"];1524[label="xwv401",fontsize=16,color="green",shape="box"];1525[label="xwv301",fontsize=16,color="green",shape="box"];1526[label="xwv401",fontsize=16,color="green",shape="box"];1527[label="xwv301",fontsize=16,color="green",shape="box"];1528[label="xwv401",fontsize=16,color="green",shape="box"];1529[label="xwv301",fontsize=16,color="green",shape="box"];1530[label="xwv401",fontsize=16,color="green",shape="box"];1531[label="xwv301",fontsize=16,color="green",shape="box"];1532[label="xwv401",fontsize=16,color="green",shape="box"];1533[label="xwv301",fontsize=16,color="green",shape="box"];1534[label="xwv401",fontsize=16,color="green",shape="box"];1535[label="xwv301",fontsize=16,color="green",shape="box"];1536[label="xwv401",fontsize=16,color="green",shape="box"];1537[label="xwv301",fontsize=16,color="green",shape="box"];1538[label="xwv401",fontsize=16,color="green",shape="box"];1539[label="xwv301",fontsize=16,color="green",shape="box"];1540[label="xwv401",fontsize=16,color="green",shape="box"];1541[label="xwv301",fontsize=16,color="green",shape="box"];1542[label="xwv401",fontsize=16,color="green",shape="box"];1543[label="xwv301",fontsize=16,color="green",shape="box"];1544[label="xwv401",fontsize=16,color="green",shape="box"];1545[label="xwv301",fontsize=16,color="green",shape="box"];1546[label="xwv401",fontsize=16,color="green",shape="box"];1547[label="xwv301",fontsize=16,color="green",shape="box"];1548 -> 1925[label="",style="dashed", color="red", weight=0]; 1548[label="compare1 (xwv126,xwv127) (xwv128,xwv129) (xwv126 < xwv128 || xwv126 == xwv128 && xwv127 <= xwv129)",fontsize=16,color="magenta"];1548 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1253 -> 571[label="",style="dashed", color="red", weight=0]; 1253[label="primMulInt xwv3000 xwv4010",fontsize=16,color="magenta"];1253 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1254[label="Pos (primMulNat xwv3000 xwv4010)",fontsize=16,color="green",shape="box"];1254 -> 1656[label="",style="dashed", color="green", weight=3]; 1255[label="Neg (primMulNat xwv3000 xwv4010)",fontsize=16,color="green",shape="box"];1255 -> 1657[label="",style="dashed", color="green", weight=3]; 1256[label="Neg (primMulNat xwv3000 xwv4010)",fontsize=16,color="green",shape="box"];1256 -> 1658[label="",style="dashed", color="green", weight=3]; 1257[label="Pos (primMulNat xwv3000 xwv4010)",fontsize=16,color="green",shape="box"];1257 -> 1659[label="",style="dashed", color="green", weight=3]; 1661[label="xwv100",fontsize=16,color="green",shape="box"];1662[label="Left xwv99 <= Left xwv100",fontsize=16,color="black",shape="box"];1662 -> 1667[label="",style="solid", color="black", weight=3]; 1663[label="xwv99",fontsize=16,color="green",shape="box"];1660[label="compare1 (Left xwv157) (Left xwv158) xwv159",fontsize=16,color="burlywood",shape="triangle"];4284[label="xwv159/False",fontsize=10,color="white",style="solid",shape="box"];1660 -> 4284[label="",style="solid", color="burlywood", weight=9]; 4284 -> 1668[label="",style="solid", color="burlywood", weight=3]; 4285[label="xwv159/True",fontsize=10,color="white",style="solid",shape="box"];1660 -> 4285[label="",style="solid", color="burlywood", weight=9]; 4285 -> 1669[label="",style="solid", color="burlywood", weight=3]; 1259[label="compare0 (Right xwv400) (Left xwv300) True",fontsize=16,color="black",shape="box"];1259 -> 1670[label="",style="solid", color="black", weight=3]; 1672[label="xwv106",fontsize=16,color="green",shape="box"];1673[label="xwv107",fontsize=16,color="green",shape="box"];1674[label="Right xwv106 <= Right xwv107",fontsize=16,color="black",shape="box"];1674 -> 1678[label="",style="solid", color="black", weight=3]; 1671[label="compare1 (Right xwv164) (Right xwv165) xwv166",fontsize=16,color="burlywood",shape="triangle"];4286[label="xwv166/False",fontsize=10,color="white",style="solid",shape="box"];1671 -> 4286[label="",style="solid", color="burlywood", weight=9]; 4286 -> 1679[label="",style="solid", color="burlywood", weight=3]; 4287[label="xwv166/True",fontsize=10,color="white",style="solid",shape="box"];1671 -> 4287[label="",style="solid", color="burlywood", weight=9]; 4287 -> 1680[label="",style="solid", color="burlywood", weight=3]; 1261[label="xwv280",fontsize=16,color="green",shape="box"];1262[label="xwv330",fontsize=16,color="green",shape="box"];1263[label="xwv280",fontsize=16,color="green",shape="box"];1264[label="xwv330",fontsize=16,color="green",shape="box"];1265[label="xwv280",fontsize=16,color="green",shape="box"];1266[label="xwv330",fontsize=16,color="green",shape="box"];1267[label="xwv280",fontsize=16,color="green",shape="box"];1268[label="xwv330",fontsize=16,color="green",shape="box"];1269[label="xwv280",fontsize=16,color="green",shape="box"];1270[label="xwv330",fontsize=16,color="green",shape="box"];1271[label="xwv280",fontsize=16,color="green",shape="box"];1272[label="xwv330",fontsize=16,color="green",shape="box"];1273[label="xwv280",fontsize=16,color="green",shape="box"];1274[label="xwv330",fontsize=16,color="green",shape="box"];1275[label="xwv280",fontsize=16,color="green",shape="box"];1276[label="xwv330",fontsize=16,color="green",shape="box"];1277[label="xwv280",fontsize=16,color="green",shape="box"];1278[label="xwv330",fontsize=16,color="green",shape="box"];1279[label="xwv280",fontsize=16,color="green",shape="box"];1280[label="xwv330",fontsize=16,color="green",shape="box"];1281[label="xwv280",fontsize=16,color="green",shape="box"];1282[label="xwv330",fontsize=16,color="green",shape="box"];1283[label="xwv280",fontsize=16,color="green",shape="box"];1284[label="xwv330",fontsize=16,color="green",shape="box"];1285[label="xwv280",fontsize=16,color="green",shape="box"];1286[label="xwv330",fontsize=16,color="green",shape="box"];1287[label="xwv280",fontsize=16,color="green",shape="box"];1288[label="xwv330",fontsize=16,color="green",shape="box"];1289[label="xwv280",fontsize=16,color="green",shape="box"];1290[label="xwv330",fontsize=16,color="green",shape="box"];1291[label="xwv280",fontsize=16,color="green",shape="box"];1292[label="xwv330",fontsize=16,color="green",shape="box"];1293[label="xwv280",fontsize=16,color="green",shape="box"];1294[label="xwv330",fontsize=16,color="green",shape="box"];1295[label="xwv280",fontsize=16,color="green",shape="box"];1296[label="xwv330",fontsize=16,color="green",shape="box"];1297[label="xwv280",fontsize=16,color="green",shape="box"];1298[label="xwv330",fontsize=16,color="green",shape="box"];1299[label="xwv280",fontsize=16,color="green",shape="box"];1300[label="xwv330",fontsize=16,color="green",shape="box"];1301[label="xwv280",fontsize=16,color="green",shape="box"];1302[label="xwv330",fontsize=16,color="green",shape="box"];1303[label="xwv280",fontsize=16,color="green",shape="box"];1304[label="xwv330",fontsize=16,color="green",shape="box"];1305[label="xwv280",fontsize=16,color="green",shape="box"];1306[label="xwv330",fontsize=16,color="green",shape="box"];1307[label="xwv280",fontsize=16,color="green",shape="box"];1308[label="xwv330",fontsize=16,color="green",shape="box"];1309[label="xwv280",fontsize=16,color="green",shape="box"];1310[label="xwv330",fontsize=16,color="green",shape="box"];1311[label="xwv280",fontsize=16,color="green",shape="box"];1312[label="xwv330",fontsize=16,color="green",shape="box"];1313[label="xwv280",fontsize=16,color="green",shape="box"];1314[label="xwv330",fontsize=16,color="green",shape="box"];1315[label="xwv280",fontsize=16,color="green",shape="box"];1316[label="xwv330",fontsize=16,color="green",shape="box"];1317[label="primEqNat (Succ xwv2800) xwv330",fontsize=16,color="burlywood",shape="box"];4288[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1317 -> 4288[label="",style="solid", color="burlywood", weight=9]; 4288 -> 1681[label="",style="solid", color="burlywood", weight=3]; 4289[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1317 -> 4289[label="",style="solid", color="burlywood", weight=9]; 4289 -> 1682[label="",style="solid", color="burlywood", weight=3]; 1318[label="primEqNat Zero xwv330",fontsize=16,color="burlywood",shape="box"];4290[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1318 -> 4290[label="",style="solid", color="burlywood", weight=9]; 4290 -> 1683[label="",style="solid", color="burlywood", weight=3]; 4291[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1318 -> 4291[label="",style="solid", color="burlywood", weight=9]; 4291 -> 1684[label="",style="solid", color="burlywood", weight=3]; 1319[label="primEqInt (Pos (Succ xwv2800)) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1319 -> 1685[label="",style="solid", color="black", weight=3]; 1320[label="primEqInt (Pos (Succ xwv2800)) (Pos Zero)",fontsize=16,color="black",shape="box"];1320 -> 1686[label="",style="solid", color="black", weight=3]; 1321[label="False",fontsize=16,color="green",shape="box"];1322[label="primEqInt (Pos Zero) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1322 -> 1687[label="",style="solid", color="black", weight=3]; 1323[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1323 -> 1688[label="",style="solid", color="black", weight=3]; 1324[label="primEqInt (Pos Zero) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1324 -> 1689[label="",style="solid", color="black", weight=3]; 1325[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1325 -> 1690[label="",style="solid", color="black", weight=3]; 1326[label="False",fontsize=16,color="green",shape="box"];1327[label="primEqInt (Neg (Succ xwv2800)) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1327 -> 1691[label="",style="solid", color="black", weight=3]; 1328[label="primEqInt (Neg (Succ xwv2800)) (Neg Zero)",fontsize=16,color="black",shape="box"];1328 -> 1692[label="",style="solid", color="black", weight=3]; 1329[label="primEqInt (Neg Zero) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1329 -> 1693[label="",style="solid", color="black", weight=3]; 1330[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1330 -> 1694[label="",style="solid", color="black", weight=3]; 1331[label="primEqInt (Neg Zero) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1331 -> 1695[label="",style="solid", color="black", weight=3]; 1332[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1332 -> 1696[label="",style="solid", color="black", weight=3]; 1333 -> 412[label="",style="dashed", color="red", weight=0]; 1333[label="xwv280 == xwv330",fontsize=16,color="magenta"];1333 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1334 -> 416[label="",style="dashed", color="red", weight=0]; 1334[label="xwv280 == xwv330",fontsize=16,color="magenta"];1334 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1335 -> 412[label="",style="dashed", color="red", weight=0]; 1335[label="xwv281 == xwv331",fontsize=16,color="magenta"];1335 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1336 -> 416[label="",style="dashed", color="red", weight=0]; 1336[label="xwv281 == xwv331",fontsize=16,color="magenta"];1336 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1337[label="xwv280",fontsize=16,color="green",shape="box"];1338[label="xwv330",fontsize=16,color="green",shape="box"];1339[label="xwv280",fontsize=16,color="green",shape="box"];1340[label="xwv330",fontsize=16,color="green",shape="box"];1341[label="xwv280",fontsize=16,color="green",shape="box"];1342[label="xwv330",fontsize=16,color="green",shape="box"];1343[label="xwv280",fontsize=16,color="green",shape="box"];1344[label="xwv330",fontsize=16,color="green",shape="box"];1345[label="xwv280",fontsize=16,color="green",shape="box"];1346[label="xwv330",fontsize=16,color="green",shape="box"];1347[label="xwv280",fontsize=16,color="green",shape="box"];1348[label="xwv330",fontsize=16,color="green",shape="box"];1349[label="xwv280",fontsize=16,color="green",shape="box"];1350[label="xwv330",fontsize=16,color="green",shape="box"];1351[label="xwv280",fontsize=16,color="green",shape="box"];1352[label="xwv330",fontsize=16,color="green",shape="box"];1353[label="xwv280",fontsize=16,color="green",shape="box"];1354[label="xwv330",fontsize=16,color="green",shape="box"];1355[label="xwv280",fontsize=16,color="green",shape="box"];1356[label="xwv330",fontsize=16,color="green",shape="box"];1357[label="xwv280",fontsize=16,color="green",shape="box"];1358[label="xwv330",fontsize=16,color="green",shape="box"];1359[label="xwv280",fontsize=16,color="green",shape="box"];1360[label="xwv330",fontsize=16,color="green",shape="box"];1361[label="xwv280",fontsize=16,color="green",shape="box"];1362[label="xwv330",fontsize=16,color="green",shape="box"];1363[label="xwv280",fontsize=16,color="green",shape="box"];1364[label="xwv330",fontsize=16,color="green",shape="box"];1365 -> 473[label="",style="dashed", color="red", weight=0]; 1365[label="xwv280 * xwv331",fontsize=16,color="magenta"];1365 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1366 -> 473[label="",style="dashed", color="red", weight=0]; 1366[label="xwv281 * xwv330",fontsize=16,color="magenta"];1366 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1366 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1367 -> 473[label="",style="dashed", color="red", weight=0]; 1367[label="xwv280 * xwv331",fontsize=16,color="magenta"];1367 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1368 -> 473[label="",style="dashed", color="red", weight=0]; 1368[label="xwv281 * xwv330",fontsize=16,color="magenta"];1368 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1368 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1369 -> 409[label="",style="dashed", color="red", weight=0]; 1369[label="xwv280 == xwv330",fontsize=16,color="magenta"];1369 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1370 -> 410[label="",style="dashed", color="red", weight=0]; 1370[label="xwv280 == xwv330",fontsize=16,color="magenta"];1370 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1371 -> 411[label="",style="dashed", color="red", weight=0]; 1371[label="xwv280 == xwv330",fontsize=16,color="magenta"];1371 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1372 -> 412[label="",style="dashed", color="red", weight=0]; 1372[label="xwv280 == xwv330",fontsize=16,color="magenta"];1372 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1373 -> 413[label="",style="dashed", color="red", weight=0]; 1373[label="xwv280 == xwv330",fontsize=16,color="magenta"];1373 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1374 -> 414[label="",style="dashed", color="red", weight=0]; 1374[label="xwv280 == xwv330",fontsize=16,color="magenta"];1374 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1375 -> 415[label="",style="dashed", color="red", weight=0]; 1375[label="xwv280 == xwv330",fontsize=16,color="magenta"];1375 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1376 -> 416[label="",style="dashed", color="red", weight=0]; 1376[label="xwv280 == xwv330",fontsize=16,color="magenta"];1376 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1377 -> 417[label="",style="dashed", color="red", weight=0]; 1377[label="xwv280 == xwv330",fontsize=16,color="magenta"];1377 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1378 -> 418[label="",style="dashed", color="red", weight=0]; 1378[label="xwv280 == xwv330",fontsize=16,color="magenta"];1378 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1379 -> 419[label="",style="dashed", color="red", weight=0]; 1379[label="xwv280 == xwv330",fontsize=16,color="magenta"];1379 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1379 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1380 -> 420[label="",style="dashed", color="red", weight=0]; 1380[label="xwv280 == xwv330",fontsize=16,color="magenta"];1380 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1380 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1381 -> 421[label="",style="dashed", color="red", weight=0]; 1381[label="xwv280 == xwv330",fontsize=16,color="magenta"];1381 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1381 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1382 -> 422[label="",style="dashed", color="red", weight=0]; 1382[label="xwv280 == xwv330",fontsize=16,color="magenta"];1382 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1382 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1383[label="xwv281",fontsize=16,color="green",shape="box"];1384[label="xwv331",fontsize=16,color="green",shape="box"];1385 -> 409[label="",style="dashed", color="red", weight=0]; 1385[label="xwv280 == xwv330",fontsize=16,color="magenta"];1385 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1385 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1386 -> 410[label="",style="dashed", color="red", weight=0]; 1386[label="xwv280 == xwv330",fontsize=16,color="magenta"];1386 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1386 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1387 -> 411[label="",style="dashed", color="red", weight=0]; 1387[label="xwv280 == xwv330",fontsize=16,color="magenta"];1387 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1388 -> 412[label="",style="dashed", color="red", weight=0]; 1388[label="xwv280 == xwv330",fontsize=16,color="magenta"];1388 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1389 -> 413[label="",style="dashed", color="red", weight=0]; 1389[label="xwv280 == xwv330",fontsize=16,color="magenta"];1389 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1390 -> 414[label="",style="dashed", color="red", weight=0]; 1390[label="xwv280 == xwv330",fontsize=16,color="magenta"];1390 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1391 -> 415[label="",style="dashed", color="red", weight=0]; 1391[label="xwv280 == xwv330",fontsize=16,color="magenta"];1391 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1392 -> 416[label="",style="dashed", color="red", weight=0]; 1392[label="xwv280 == xwv330",fontsize=16,color="magenta"];1392 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1393 -> 417[label="",style="dashed", color="red", weight=0]; 1393[label="xwv280 == xwv330",fontsize=16,color="magenta"];1393 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1394 -> 418[label="",style="dashed", color="red", weight=0]; 1394[label="xwv280 == xwv330",fontsize=16,color="magenta"];1394 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1395 -> 419[label="",style="dashed", color="red", weight=0]; 1395[label="xwv280 == xwv330",fontsize=16,color="magenta"];1395 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1396 -> 420[label="",style="dashed", color="red", weight=0]; 1396[label="xwv280 == xwv330",fontsize=16,color="magenta"];1396 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1397 -> 421[label="",style="dashed", color="red", weight=0]; 1397[label="xwv280 == xwv330",fontsize=16,color="magenta"];1397 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1398 -> 422[label="",style="dashed", color="red", weight=0]; 1398[label="xwv280 == xwv330",fontsize=16,color="magenta"];1398 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1399[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4292[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4292[label="",style="solid", color="blue", weight=9]; 4292 -> 1769[label="",style="solid", color="blue", weight=3]; 4293[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4293[label="",style="solid", color="blue", weight=9]; 4293 -> 1770[label="",style="solid", color="blue", weight=3]; 4294[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4294[label="",style="solid", color="blue", weight=9]; 4294 -> 1771[label="",style="solid", color="blue", weight=3]; 4295[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4295[label="",style="solid", color="blue", weight=9]; 4295 -> 1772[label="",style="solid", color="blue", weight=3]; 4296[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4296[label="",style="solid", color="blue", weight=9]; 4296 -> 1773[label="",style="solid", color="blue", weight=3]; 4297[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4297[label="",style="solid", color="blue", weight=9]; 4297 -> 1774[label="",style="solid", color="blue", weight=3]; 4298[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4298[label="",style="solid", color="blue", weight=9]; 4298 -> 1775[label="",style="solid", color="blue", weight=3]; 4299[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4299[label="",style="solid", color="blue", weight=9]; 4299 -> 1776[label="",style="solid", color="blue", weight=3]; 4300[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4300[label="",style="solid", color="blue", weight=9]; 4300 -> 1777[label="",style="solid", color="blue", weight=3]; 4301[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 1778[label="",style="solid", color="blue", weight=3]; 4302[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4302[label="",style="solid", color="blue", weight=9]; 4302 -> 1779[label="",style="solid", color="blue", weight=3]; 4303[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4303[label="",style="solid", color="blue", weight=9]; 4303 -> 1780[label="",style="solid", color="blue", weight=3]; 4304[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4304[label="",style="solid", color="blue", weight=9]; 4304 -> 1781[label="",style="solid", color="blue", weight=3]; 4305[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4305[label="",style="solid", color="blue", weight=9]; 4305 -> 1782[label="",style="solid", color="blue", weight=3]; 1400[label="xwv282 == xwv332",fontsize=16,color="blue",shape="box"];4306[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4306[label="",style="solid", color="blue", weight=9]; 4306 -> 1783[label="",style="solid", color="blue", weight=3]; 4307[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4307[label="",style="solid", color="blue", weight=9]; 4307 -> 1784[label="",style="solid", color="blue", weight=3]; 4308[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4308[label="",style="solid", color="blue", weight=9]; 4308 -> 1785[label="",style="solid", color="blue", weight=3]; 4309[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4309[label="",style="solid", color="blue", weight=9]; 4309 -> 1786[label="",style="solid", color="blue", weight=3]; 4310[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4310[label="",style="solid", color="blue", weight=9]; 4310 -> 1787[label="",style="solid", color="blue", weight=3]; 4311[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4311[label="",style="solid", color="blue", weight=9]; 4311 -> 1788[label="",style="solid", color="blue", weight=3]; 4312[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4312[label="",style="solid", color="blue", weight=9]; 4312 -> 1789[label="",style="solid", color="blue", weight=3]; 4313[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4313[label="",style="solid", color="blue", weight=9]; 4313 -> 1790[label="",style="solid", color="blue", weight=3]; 4314[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4314[label="",style="solid", color="blue", weight=9]; 4314 -> 1791[label="",style="solid", color="blue", weight=3]; 4315[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 1792[label="",style="solid", color="blue", weight=3]; 4316[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 1793[label="",style="solid", color="blue", weight=3]; 4317[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 1794[label="",style="solid", color="blue", weight=3]; 4318[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4318[label="",style="solid", color="blue", weight=9]; 4318 -> 1795[label="",style="solid", color="blue", weight=3]; 4319[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 1796[label="",style="solid", color="blue", weight=3]; 1401 -> 409[label="",style="dashed", color="red", weight=0]; 1401[label="xwv280 == xwv330",fontsize=16,color="magenta"];1401 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1402 -> 410[label="",style="dashed", color="red", weight=0]; 1402[label="xwv280 == xwv330",fontsize=16,color="magenta"];1402 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1403 -> 411[label="",style="dashed", color="red", weight=0]; 1403[label="xwv280 == xwv330",fontsize=16,color="magenta"];1403 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1404 -> 412[label="",style="dashed", color="red", weight=0]; 1404[label="xwv280 == xwv330",fontsize=16,color="magenta"];1404 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1405 -> 413[label="",style="dashed", color="red", weight=0]; 1405[label="xwv280 == xwv330",fontsize=16,color="magenta"];1405 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1406 -> 414[label="",style="dashed", color="red", weight=0]; 1406[label="xwv280 == xwv330",fontsize=16,color="magenta"];1406 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1407 -> 415[label="",style="dashed", color="red", weight=0]; 1407[label="xwv280 == xwv330",fontsize=16,color="magenta"];1407 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1408 -> 416[label="",style="dashed", color="red", weight=0]; 1408[label="xwv280 == xwv330",fontsize=16,color="magenta"];1408 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1409 -> 417[label="",style="dashed", color="red", weight=0]; 1409[label="xwv280 == xwv330",fontsize=16,color="magenta"];1409 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1410 -> 418[label="",style="dashed", color="red", weight=0]; 1410[label="xwv280 == xwv330",fontsize=16,color="magenta"];1410 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1410 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1411 -> 419[label="",style="dashed", color="red", weight=0]; 1411[label="xwv280 == xwv330",fontsize=16,color="magenta"];1411 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1412 -> 420[label="",style="dashed", color="red", weight=0]; 1412[label="xwv280 == xwv330",fontsize=16,color="magenta"];1412 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1413 -> 421[label="",style="dashed", color="red", weight=0]; 1413[label="xwv280 == xwv330",fontsize=16,color="magenta"];1413 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1414 -> 422[label="",style="dashed", color="red", weight=0]; 1414[label="xwv280 == xwv330",fontsize=16,color="magenta"];1414 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1415 -> 409[label="",style="dashed", color="red", weight=0]; 1415[label="xwv281 == xwv331",fontsize=16,color="magenta"];1415 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1416 -> 410[label="",style="dashed", color="red", weight=0]; 1416[label="xwv281 == xwv331",fontsize=16,color="magenta"];1416 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1417 -> 411[label="",style="dashed", color="red", weight=0]; 1417[label="xwv281 == xwv331",fontsize=16,color="magenta"];1417 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1418 -> 412[label="",style="dashed", color="red", weight=0]; 1418[label="xwv281 == xwv331",fontsize=16,color="magenta"];1418 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1419 -> 413[label="",style="dashed", color="red", weight=0]; 1419[label="xwv281 == xwv331",fontsize=16,color="magenta"];1419 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1420 -> 414[label="",style="dashed", color="red", weight=0]; 1420[label="xwv281 == xwv331",fontsize=16,color="magenta"];1420 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1421 -> 415[label="",style="dashed", color="red", weight=0]; 1421[label="xwv281 == xwv331",fontsize=16,color="magenta"];1421 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1422 -> 416[label="",style="dashed", color="red", weight=0]; 1422[label="xwv281 == xwv331",fontsize=16,color="magenta"];1422 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1423 -> 417[label="",style="dashed", color="red", weight=0]; 1423[label="xwv281 == xwv331",fontsize=16,color="magenta"];1423 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1424 -> 418[label="",style="dashed", color="red", weight=0]; 1424[label="xwv281 == xwv331",fontsize=16,color="magenta"];1424 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1425 -> 419[label="",style="dashed", color="red", weight=0]; 1425[label="xwv281 == xwv331",fontsize=16,color="magenta"];1425 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1426 -> 420[label="",style="dashed", color="red", weight=0]; 1426[label="xwv281 == xwv331",fontsize=16,color="magenta"];1426 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1427 -> 421[label="",style="dashed", color="red", weight=0]; 1427[label="xwv281 == xwv331",fontsize=16,color="magenta"];1427 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1428 -> 422[label="",style="dashed", color="red", weight=0]; 1428[label="xwv281 == xwv331",fontsize=16,color="magenta"];1428 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1429[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];1430 -> 1853[label="",style="dashed", color="red", weight=0]; 1430[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) > FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];1430 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1563[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1563 -> 1855[label="",style="solid", color="black", weight=3]; 1564[label="FiniteMap.sizeFM (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1564 -> 1856[label="",style="solid", color="black", weight=3]; 1583[label="Pos (primPlusNat xwv1620 xwv1370)",fontsize=16,color="green",shape="box"];1583 -> 1857[label="",style="dashed", color="green", weight=3]; 1584[label="primMinusNat xwv1620 xwv1370",fontsize=16,color="burlywood",shape="triangle"];4320[label="xwv1620/Succ xwv16200",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4320[label="",style="solid", color="burlywood", weight=9]; 4320 -> 1858[label="",style="solid", color="burlywood", weight=3]; 4321[label="xwv1620/Zero",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4321[label="",style="solid", color="burlywood", weight=9]; 4321 -> 1859[label="",style="solid", color="burlywood", weight=3]; 1585 -> 1584[label="",style="dashed", color="red", weight=0]; 1585[label="primMinusNat xwv1370 xwv1620",fontsize=16,color="magenta"];1585 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1586[label="Neg (primPlusNat xwv1620 xwv1370)",fontsize=16,color="green",shape="box"];1586 -> 1862[label="",style="dashed", color="green", weight=3]; 1562[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1566 -> 36[label="",style="dashed", color="red", weight=0]; 1566[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];1566 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1565[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 xwv138",fontsize=16,color="burlywood",shape="triangle"];4322[label="xwv138/False",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4322[label="",style="solid", color="burlywood", weight=9]; 4322 -> 1865[label="",style="solid", color="burlywood", weight=3]; 4323[label="xwv138/True",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4323[label="",style="solid", color="burlywood", weight=9]; 4323 -> 1866[label="",style="solid", color="burlywood", weight=3]; 1572[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv16 xwv13 xwv14 FiniteMap.EmptyFM xwv16 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1572 -> 1867[label="",style="solid", color="black", weight=3]; 1573[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1573 -> 1868[label="",style="solid", color="black", weight=3]; 1574[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35 + FiniteMap.mkBranchRight_size xwv16 xwv13 xwv35",fontsize=16,color="black",shape="box"];1574 -> 1869[label="",style="solid", color="black", weight=3]; 1575[label="GT",fontsize=16,color="green",shape="box"];1587[label="xwv61 <= xwv62",fontsize=16,color="blue",shape="box"];4324[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4324[label="",style="solid", color="blue", weight=9]; 4324 -> 1870[label="",style="solid", color="blue", weight=3]; 4325[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4325[label="",style="solid", color="blue", weight=9]; 4325 -> 1871[label="",style="solid", color="blue", weight=3]; 4326[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4326[label="",style="solid", color="blue", weight=9]; 4326 -> 1872[label="",style="solid", color="blue", weight=3]; 4327[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4327[label="",style="solid", color="blue", weight=9]; 4327 -> 1873[label="",style="solid", color="blue", weight=3]; 4328[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4328[label="",style="solid", color="blue", weight=9]; 4328 -> 1874[label="",style="solid", color="blue", weight=3]; 4329[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4329[label="",style="solid", color="blue", weight=9]; 4329 -> 1875[label="",style="solid", color="blue", weight=3]; 4330[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4330[label="",style="solid", color="blue", weight=9]; 4330 -> 1876[label="",style="solid", color="blue", weight=3]; 4331[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4331[label="",style="solid", color="blue", weight=9]; 4331 -> 1877[label="",style="solid", color="blue", weight=3]; 4332[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4332[label="",style="solid", color="blue", weight=9]; 4332 -> 1878[label="",style="solid", color="blue", weight=3]; 4333[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4333[label="",style="solid", color="blue", weight=9]; 4333 -> 1879[label="",style="solid", color="blue", weight=3]; 4334[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4334[label="",style="solid", color="blue", weight=9]; 4334 -> 1880[label="",style="solid", color="blue", weight=3]; 4335[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4335[label="",style="solid", color="blue", weight=9]; 4335 -> 1881[label="",style="solid", color="blue", weight=3]; 4336[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4336[label="",style="solid", color="blue", weight=9]; 4336 -> 1882[label="",style="solid", color="blue", weight=3]; 4337[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4337[label="",style="solid", color="blue", weight=9]; 4337 -> 1883[label="",style="solid", color="blue", weight=3]; 1588[label="compare1 (Just xwv147) (Just xwv148) False",fontsize=16,color="black",shape="box"];1588 -> 1884[label="",style="solid", color="black", weight=3]; 1589[label="compare1 (Just xwv147) (Just xwv148) True",fontsize=16,color="black",shape="box"];1589 -> 1885[label="",style="solid", color="black", weight=3]; 1590[label="xwv401",fontsize=16,color="green",shape="box"];1591[label="xwv301",fontsize=16,color="green",shape="box"];1592[label="xwv401",fontsize=16,color="green",shape="box"];1593[label="xwv301",fontsize=16,color="green",shape="box"];1594[label="xwv401",fontsize=16,color="green",shape="box"];1595[label="xwv301",fontsize=16,color="green",shape="box"];1596[label="xwv401",fontsize=16,color="green",shape="box"];1597[label="xwv301",fontsize=16,color="green",shape="box"];1598[label="xwv401",fontsize=16,color="green",shape="box"];1599[label="xwv301",fontsize=16,color="green",shape="box"];1600[label="xwv401",fontsize=16,color="green",shape="box"];1601[label="xwv301",fontsize=16,color="green",shape="box"];1602[label="xwv401",fontsize=16,color="green",shape="box"];1603[label="xwv301",fontsize=16,color="green",shape="box"];1604[label="xwv401",fontsize=16,color="green",shape="box"];1605[label="xwv301",fontsize=16,color="green",shape="box"];1606[label="xwv401",fontsize=16,color="green",shape="box"];1607[label="xwv301",fontsize=16,color="green",shape="box"];1608[label="xwv401",fontsize=16,color="green",shape="box"];1609[label="xwv301",fontsize=16,color="green",shape="box"];1610[label="xwv401",fontsize=16,color="green",shape="box"];1611[label="xwv301",fontsize=16,color="green",shape="box"];1612[label="xwv401",fontsize=16,color="green",shape="box"];1613[label="xwv301",fontsize=16,color="green",shape="box"];1614[label="xwv401",fontsize=16,color="green",shape="box"];1615[label="xwv301",fontsize=16,color="green",shape="box"];1616[label="xwv401",fontsize=16,color="green",shape="box"];1617[label="xwv301",fontsize=16,color="green",shape="box"];1618[label="xwv402",fontsize=16,color="green",shape="box"];1619[label="xwv302",fontsize=16,color="green",shape="box"];1620[label="xwv402",fontsize=16,color="green",shape="box"];1621[label="xwv302",fontsize=16,color="green",shape="box"];1622[label="xwv402",fontsize=16,color="green",shape="box"];1623[label="xwv302",fontsize=16,color="green",shape="box"];1624[label="xwv402",fontsize=16,color="green",shape="box"];1625[label="xwv302",fontsize=16,color="green",shape="box"];1626[label="xwv402",fontsize=16,color="green",shape="box"];1627[label="xwv302",fontsize=16,color="green",shape="box"];1628[label="xwv402",fontsize=16,color="green",shape="box"];1629[label="xwv302",fontsize=16,color="green",shape="box"];1630[label="xwv402",fontsize=16,color="green",shape="box"];1631[label="xwv302",fontsize=16,color="green",shape="box"];1632[label="xwv402",fontsize=16,color="green",shape="box"];1633[label="xwv302",fontsize=16,color="green",shape="box"];1634[label="xwv402",fontsize=16,color="green",shape="box"];1635[label="xwv302",fontsize=16,color="green",shape="box"];1636[label="xwv402",fontsize=16,color="green",shape="box"];1637[label="xwv302",fontsize=16,color="green",shape="box"];1638[label="xwv402",fontsize=16,color="green",shape="box"];1639[label="xwv302",fontsize=16,color="green",shape="box"];1640[label="xwv402",fontsize=16,color="green",shape="box"];1641[label="xwv302",fontsize=16,color="green",shape="box"];1642[label="xwv402",fontsize=16,color="green",shape="box"];1643[label="xwv302",fontsize=16,color="green",shape="box"];1644[label="xwv402",fontsize=16,color="green",shape="box"];1645[label="xwv302",fontsize=16,color="green",shape="box"];1889[label="xwv82",fontsize=16,color="green",shape="box"];1890[label="xwv78",fontsize=16,color="green",shape="box"];1891[label="xwv81",fontsize=16,color="green",shape="box"];1892[label="xwv77 < xwv80",fontsize=16,color="blue",shape="box"];4338[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4338[label="",style="solid", color="blue", weight=9]; 4338 -> 1905[label="",style="solid", color="blue", weight=3]; 4339[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4339[label="",style="solid", color="blue", weight=9]; 4339 -> 1906[label="",style="solid", color="blue", weight=3]; 4340[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4340[label="",style="solid", color="blue", weight=9]; 4340 -> 1907[label="",style="solid", color="blue", weight=3]; 4341[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4341[label="",style="solid", color="blue", weight=9]; 4341 -> 1908[label="",style="solid", color="blue", weight=3]; 4342[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4342[label="",style="solid", color="blue", weight=9]; 4342 -> 1909[label="",style="solid", color="blue", weight=3]; 4343[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4343[label="",style="solid", color="blue", weight=9]; 4343 -> 1910[label="",style="solid", color="blue", weight=3]; 4344[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4344[label="",style="solid", color="blue", weight=9]; 4344 -> 1911[label="",style="solid", color="blue", weight=3]; 4345[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4345[label="",style="solid", color="blue", weight=9]; 4345 -> 1912[label="",style="solid", color="blue", weight=3]; 4346[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4346[label="",style="solid", color="blue", weight=9]; 4346 -> 1913[label="",style="solid", color="blue", weight=3]; 4347[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4347[label="",style="solid", color="blue", weight=9]; 4347 -> 1914[label="",style="solid", color="blue", weight=3]; 4348[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4348[label="",style="solid", color="blue", weight=9]; 4348 -> 1915[label="",style="solid", color="blue", weight=3]; 4349[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4349[label="",style="solid", color="blue", weight=9]; 4349 -> 1916[label="",style="solid", color="blue", weight=3]; 4350[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4350[label="",style="solid", color="blue", weight=9]; 4350 -> 1917[label="",style="solid", color="blue", weight=3]; 4351[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4351[label="",style="solid", color="blue", weight=9]; 4351 -> 1918[label="",style="solid", color="blue", weight=3]; 1893[label="xwv80",fontsize=16,color="green",shape="box"];1894[label="xwv79",fontsize=16,color="green",shape="box"];1895 -> 1184[label="",style="dashed", color="red", weight=0]; 1895[label="xwv77 == xwv80 && (xwv78 < xwv81 || xwv78 == xwv81 && xwv79 <= xwv82)",fontsize=16,color="magenta"];1895 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1895 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1896[label="xwv77",fontsize=16,color="green",shape="box"];1888[label="compare1 (xwv179,xwv180,xwv181) (xwv182,xwv183,xwv184) (xwv185 || xwv186)",fontsize=16,color="burlywood",shape="triangle"];4352[label="xwv185/False",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4352[label="",style="solid", color="burlywood", weight=9]; 4352 -> 1921[label="",style="solid", color="burlywood", weight=3]; 4353[label="xwv185/True",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4353[label="",style="solid", color="burlywood", weight=9]; 4353 -> 1922[label="",style="solid", color="burlywood", weight=3]; 1648[label="GT",fontsize=16,color="green",shape="box"];1649[label="GT",fontsize=16,color="green",shape="box"];1650[label="GT",fontsize=16,color="green",shape="box"];1651[label="GT",fontsize=16,color="green",shape="box"];1926 -> 1184[label="",style="dashed", color="red", weight=0]; 1926[label="xwv126 == xwv128 && xwv127 <= xwv129",fontsize=16,color="magenta"];1926 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1926 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1927[label="xwv126",fontsize=16,color="green",shape="box"];1928[label="xwv127",fontsize=16,color="green",shape="box"];1929[label="xwv129",fontsize=16,color="green",shape="box"];1930[label="xwv126 < xwv128",fontsize=16,color="blue",shape="box"];4354[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4354[label="",style="solid", color="blue", weight=9]; 4354 -> 1940[label="",style="solid", color="blue", weight=3]; 4355[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4355[label="",style="solid", color="blue", weight=9]; 4355 -> 1941[label="",style="solid", color="blue", weight=3]; 4356[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4356[label="",style="solid", color="blue", weight=9]; 4356 -> 1942[label="",style="solid", color="blue", weight=3]; 4357[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4357[label="",style="solid", color="blue", weight=9]; 4357 -> 1943[label="",style="solid", color="blue", weight=3]; 4358[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4358[label="",style="solid", color="blue", weight=9]; 4358 -> 1944[label="",style="solid", color="blue", weight=3]; 4359[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4359[label="",style="solid", color="blue", weight=9]; 4359 -> 1945[label="",style="solid", color="blue", weight=3]; 4360[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4360[label="",style="solid", color="blue", weight=9]; 4360 -> 1946[label="",style="solid", color="blue", weight=3]; 4361[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4361[label="",style="solid", color="blue", weight=9]; 4361 -> 1947[label="",style="solid", color="blue", weight=3]; 4362[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4362[label="",style="solid", color="blue", weight=9]; 4362 -> 1948[label="",style="solid", color="blue", weight=3]; 4363[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4363[label="",style="solid", color="blue", weight=9]; 4363 -> 1949[label="",style="solid", color="blue", weight=3]; 4364[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4364[label="",style="solid", color="blue", weight=9]; 4364 -> 1950[label="",style="solid", color="blue", weight=3]; 4365[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4365[label="",style="solid", color="blue", weight=9]; 4365 -> 1951[label="",style="solid", color="blue", weight=3]; 4366[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4366[label="",style="solid", color="blue", weight=9]; 4366 -> 1952[label="",style="solid", color="blue", weight=3]; 4367[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4367[label="",style="solid", color="blue", weight=9]; 4367 -> 1953[label="",style="solid", color="blue", weight=3]; 1931[label="xwv128",fontsize=16,color="green",shape="box"];1925[label="compare1 (xwv194,xwv195) (xwv196,xwv197) (xwv198 || xwv199)",fontsize=16,color="burlywood",shape="triangle"];4368[label="xwv198/False",fontsize=10,color="white",style="solid",shape="box"];1925 -> 4368[label="",style="solid", color="burlywood", weight=9]; 4368 -> 1954[label="",style="solid", color="burlywood", weight=3]; 4369[label="xwv198/True",fontsize=10,color="white",style="solid",shape="box"];1925 -> 4369[label="",style="solid", color="burlywood", weight=9]; 4369 -> 1955[label="",style="solid", color="burlywood", weight=3]; 1654[label="xwv3000",fontsize=16,color="green",shape="box"];1655[label="xwv4010",fontsize=16,color="green",shape="box"];1656[label="primMulNat xwv3000 xwv4010",fontsize=16,color="burlywood",shape="triangle"];4370[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];1656 -> 4370[label="",style="solid", color="burlywood", weight=9]; 4370 -> 1956[label="",style="solid", color="burlywood", weight=3]; 4371[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1656 -> 4371[label="",style="solid", color="burlywood", weight=9]; 4371 -> 1957[label="",style="solid", color="burlywood", weight=3]; 1657 -> 1656[label="",style="dashed", color="red", weight=0]; 1657[label="primMulNat xwv3000 xwv4010",fontsize=16,color="magenta"];1657 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1656[label="",style="dashed", color="red", weight=0]; 1658[label="primMulNat xwv3000 xwv4010",fontsize=16,color="magenta"];1658 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1656[label="",style="dashed", color="red", weight=0]; 1659[label="primMulNat xwv3000 xwv4010",fontsize=16,color="magenta"];1659 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1667[label="xwv99 <= xwv100",fontsize=16,color="blue",shape="box"];4372[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4372[label="",style="solid", color="blue", weight=9]; 4372 -> 1962[label="",style="solid", color="blue", weight=3]; 4373[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4373[label="",style="solid", color="blue", weight=9]; 4373 -> 1963[label="",style="solid", color="blue", weight=3]; 4374[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4374[label="",style="solid", color="blue", weight=9]; 4374 -> 1964[label="",style="solid", color="blue", weight=3]; 4375[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4375[label="",style="solid", color="blue", weight=9]; 4375 -> 1965[label="",style="solid", color="blue", weight=3]; 4376[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4376[label="",style="solid", color="blue", weight=9]; 4376 -> 1966[label="",style="solid", color="blue", weight=3]; 4377[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4377[label="",style="solid", color="blue", weight=9]; 4377 -> 1967[label="",style="solid", color="blue", weight=3]; 4378[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4378[label="",style="solid", color="blue", weight=9]; 4378 -> 1968[label="",style="solid", color="blue", weight=3]; 4379[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4379[label="",style="solid", color="blue", weight=9]; 4379 -> 1969[label="",style="solid", color="blue", weight=3]; 4380[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4380[label="",style="solid", color="blue", weight=9]; 4380 -> 1970[label="",style="solid", color="blue", weight=3]; 4381[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4381[label="",style="solid", color="blue", weight=9]; 4381 -> 1971[label="",style="solid", color="blue", weight=3]; 4382[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4382[label="",style="solid", color="blue", weight=9]; 4382 -> 1972[label="",style="solid", color="blue", weight=3]; 4383[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4383[label="",style="solid", color="blue", weight=9]; 4383 -> 1973[label="",style="solid", color="blue", weight=3]; 4384[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4384[label="",style="solid", color="blue", weight=9]; 4384 -> 1974[label="",style="solid", color="blue", weight=3]; 4385[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1667 -> 4385[label="",style="solid", color="blue", weight=9]; 4385 -> 1975[label="",style="solid", color="blue", weight=3]; 1668[label="compare1 (Left xwv157) (Left xwv158) False",fontsize=16,color="black",shape="box"];1668 -> 1976[label="",style="solid", color="black", weight=3]; 1669[label="compare1 (Left xwv157) (Left xwv158) True",fontsize=16,color="black",shape="box"];1669 -> 1977[label="",style="solid", color="black", weight=3]; 1670[label="GT",fontsize=16,color="green",shape="box"];1678[label="xwv106 <= xwv107",fontsize=16,color="blue",shape="box"];4386[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4386[label="",style="solid", color="blue", weight=9]; 4386 -> 1978[label="",style="solid", color="blue", weight=3]; 4387[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4387[label="",style="solid", color="blue", weight=9]; 4387 -> 1979[label="",style="solid", color="blue", weight=3]; 4388[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4388[label="",style="solid", color="blue", weight=9]; 4388 -> 1980[label="",style="solid", color="blue", weight=3]; 4389[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4389[label="",style="solid", color="blue", weight=9]; 4389 -> 1981[label="",style="solid", color="blue", weight=3]; 4390[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4390[label="",style="solid", color="blue", weight=9]; 4390 -> 1982[label="",style="solid", color="blue", weight=3]; 4391[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4391[label="",style="solid", color="blue", weight=9]; 4391 -> 1983[label="",style="solid", color="blue", weight=3]; 4392[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4392[label="",style="solid", color="blue", weight=9]; 4392 -> 1984[label="",style="solid", color="blue", weight=3]; 4393[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4393[label="",style="solid", color="blue", weight=9]; 4393 -> 1985[label="",style="solid", color="blue", weight=3]; 4394[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4394[label="",style="solid", color="blue", weight=9]; 4394 -> 1986[label="",style="solid", color="blue", weight=3]; 4395[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4395[label="",style="solid", color="blue", weight=9]; 4395 -> 1987[label="",style="solid", color="blue", weight=3]; 4396[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4396[label="",style="solid", color="blue", weight=9]; 4396 -> 1988[label="",style="solid", color="blue", weight=3]; 4397[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4397[label="",style="solid", color="blue", weight=9]; 4397 -> 1989[label="",style="solid", color="blue", weight=3]; 4398[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4398[label="",style="solid", color="blue", weight=9]; 4398 -> 1990[label="",style="solid", color="blue", weight=3]; 4399[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4399[label="",style="solid", color="blue", weight=9]; 4399 -> 1991[label="",style="solid", color="blue", weight=3]; 1679[label="compare1 (Right xwv164) (Right xwv165) False",fontsize=16,color="black",shape="box"];1679 -> 1992[label="",style="solid", color="black", weight=3]; 1680[label="compare1 (Right xwv164) (Right xwv165) True",fontsize=16,color="black",shape="box"];1680 -> 1993[label="",style="solid", color="black", weight=3]; 1681[label="primEqNat (Succ xwv2800) (Succ xwv3300)",fontsize=16,color="black",shape="box"];1681 -> 1994[label="",style="solid", color="black", weight=3]; 1682[label="primEqNat (Succ xwv2800) Zero",fontsize=16,color="black",shape="box"];1682 -> 1995[label="",style="solid", color="black", weight=3]; 1683[label="primEqNat Zero (Succ xwv3300)",fontsize=16,color="black",shape="box"];1683 -> 1996[label="",style="solid", color="black", weight=3]; 1684[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1684 -> 1997[label="",style="solid", color="black", weight=3]; 1685 -> 1072[label="",style="dashed", color="red", weight=0]; 1685[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];1685 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1685 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1686[label="False",fontsize=16,color="green",shape="box"];1687[label="False",fontsize=16,color="green",shape="box"];1688[label="True",fontsize=16,color="green",shape="box"];1689[label="False",fontsize=16,color="green",shape="box"];1690[label="True",fontsize=16,color="green",shape="box"];1691 -> 1072[label="",style="dashed", color="red", weight=0]; 1691[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];1691 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1691 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1692[label="False",fontsize=16,color="green",shape="box"];1693[label="False",fontsize=16,color="green",shape="box"];1694[label="True",fontsize=16,color="green",shape="box"];1695[label="False",fontsize=16,color="green",shape="box"];1696[label="True",fontsize=16,color="green",shape="box"];1697[label="xwv280",fontsize=16,color="green",shape="box"];1698[label="xwv330",fontsize=16,color="green",shape="box"];1699[label="xwv280",fontsize=16,color="green",shape="box"];1700[label="xwv330",fontsize=16,color="green",shape="box"];1701[label="xwv281",fontsize=16,color="green",shape="box"];1702[label="xwv331",fontsize=16,color="green",shape="box"];1703[label="xwv281",fontsize=16,color="green",shape="box"];1704[label="xwv331",fontsize=16,color="green",shape="box"];1705[label="xwv280",fontsize=16,color="green",shape="box"];1706[label="xwv331",fontsize=16,color="green",shape="box"];1707[label="xwv281",fontsize=16,color="green",shape="box"];1708[label="xwv330",fontsize=16,color="green",shape="box"];1709[label="xwv280",fontsize=16,color="green",shape="box"];1710[label="xwv331",fontsize=16,color="green",shape="box"];1711[label="xwv281",fontsize=16,color="green",shape="box"];1712[label="xwv330",fontsize=16,color="green",shape="box"];1713[label="xwv280",fontsize=16,color="green",shape="box"];1714[label="xwv330",fontsize=16,color="green",shape="box"];1715[label="xwv280",fontsize=16,color="green",shape="box"];1716[label="xwv330",fontsize=16,color="green",shape="box"];1717[label="xwv280",fontsize=16,color="green",shape="box"];1718[label="xwv330",fontsize=16,color="green",shape="box"];1719[label="xwv280",fontsize=16,color="green",shape="box"];1720[label="xwv330",fontsize=16,color="green",shape="box"];1721[label="xwv280",fontsize=16,color="green",shape="box"];1722[label="xwv330",fontsize=16,color="green",shape="box"];1723[label="xwv280",fontsize=16,color="green",shape="box"];1724[label="xwv330",fontsize=16,color="green",shape="box"];1725[label="xwv280",fontsize=16,color="green",shape="box"];1726[label="xwv330",fontsize=16,color="green",shape="box"];1727[label="xwv280",fontsize=16,color="green",shape="box"];1728[label="xwv330",fontsize=16,color="green",shape="box"];1729[label="xwv280",fontsize=16,color="green",shape="box"];1730[label="xwv330",fontsize=16,color="green",shape="box"];1731[label="xwv280",fontsize=16,color="green",shape="box"];1732[label="xwv330",fontsize=16,color="green",shape="box"];1733[label="xwv280",fontsize=16,color="green",shape="box"];1734[label="xwv330",fontsize=16,color="green",shape="box"];1735[label="xwv280",fontsize=16,color="green",shape="box"];1736[label="xwv330",fontsize=16,color="green",shape="box"];1737[label="xwv280",fontsize=16,color="green",shape="box"];1738[label="xwv330",fontsize=16,color="green",shape="box"];1739[label="xwv280",fontsize=16,color="green",shape="box"];1740[label="xwv330",fontsize=16,color="green",shape="box"];1741[label="xwv280",fontsize=16,color="green",shape="box"];1742[label="xwv330",fontsize=16,color="green",shape="box"];1743[label="xwv280",fontsize=16,color="green",shape="box"];1744[label="xwv330",fontsize=16,color="green",shape="box"];1745[label="xwv280",fontsize=16,color="green",shape="box"];1746[label="xwv330",fontsize=16,color="green",shape="box"];1747[label="xwv280",fontsize=16,color="green",shape="box"];1748[label="xwv330",fontsize=16,color="green",shape="box"];1749[label="xwv280",fontsize=16,color="green",shape="box"];1750[label="xwv330",fontsize=16,color="green",shape="box"];1751[label="xwv280",fontsize=16,color="green",shape="box"];1752[label="xwv330",fontsize=16,color="green",shape="box"];1753[label="xwv280",fontsize=16,color="green",shape="box"];1754[label="xwv330",fontsize=16,color="green",shape="box"];1755[label="xwv280",fontsize=16,color="green",shape="box"];1756[label="xwv330",fontsize=16,color="green",shape="box"];1757[label="xwv280",fontsize=16,color="green",shape="box"];1758[label="xwv330",fontsize=16,color="green",shape="box"];1759[label="xwv280",fontsize=16,color="green",shape="box"];1760[label="xwv330",fontsize=16,color="green",shape="box"];1761[label="xwv280",fontsize=16,color="green",shape="box"];1762[label="xwv330",fontsize=16,color="green",shape="box"];1763[label="xwv280",fontsize=16,color="green",shape="box"];1764[label="xwv330",fontsize=16,color="green",shape="box"];1765[label="xwv280",fontsize=16,color="green",shape="box"];1766[label="xwv330",fontsize=16,color="green",shape="box"];1767[label="xwv280",fontsize=16,color="green",shape="box"];1768[label="xwv330",fontsize=16,color="green",shape="box"];1769 -> 409[label="",style="dashed", color="red", weight=0]; 1769[label="xwv281 == xwv331",fontsize=16,color="magenta"];1769 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1769 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1770 -> 410[label="",style="dashed", color="red", weight=0]; 1770[label="xwv281 == xwv331",fontsize=16,color="magenta"];1770 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1770 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1771 -> 411[label="",style="dashed", color="red", weight=0]; 1771[label="xwv281 == xwv331",fontsize=16,color="magenta"];1771 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1771 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1772 -> 412[label="",style="dashed", color="red", weight=0]; 1772[label="xwv281 == xwv331",fontsize=16,color="magenta"];1772 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1772 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1773 -> 413[label="",style="dashed", color="red", weight=0]; 1773[label="xwv281 == xwv331",fontsize=16,color="magenta"];1773 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1773 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1774 -> 414[label="",style="dashed", color="red", weight=0]; 1774[label="xwv281 == xwv331",fontsize=16,color="magenta"];1774 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1774 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1775 -> 415[label="",style="dashed", color="red", weight=0]; 1775[label="xwv281 == xwv331",fontsize=16,color="magenta"];1775 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1775 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1776 -> 416[label="",style="dashed", color="red", weight=0]; 1776[label="xwv281 == xwv331",fontsize=16,color="magenta"];1776 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1776 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1777 -> 417[label="",style="dashed", color="red", weight=0]; 1777[label="xwv281 == xwv331",fontsize=16,color="magenta"];1777 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1777 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1778 -> 418[label="",style="dashed", color="red", weight=0]; 1778[label="xwv281 == xwv331",fontsize=16,color="magenta"];1778 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1778 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1779 -> 419[label="",style="dashed", color="red", weight=0]; 1779[label="xwv281 == xwv331",fontsize=16,color="magenta"];1779 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1779 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1780 -> 420[label="",style="dashed", color="red", weight=0]; 1780[label="xwv281 == xwv331",fontsize=16,color="magenta"];1780 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1780 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1781 -> 421[label="",style="dashed", color="red", weight=0]; 1781[label="xwv281 == xwv331",fontsize=16,color="magenta"];1781 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1781 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1782 -> 422[label="",style="dashed", color="red", weight=0]; 1782[label="xwv281 == xwv331",fontsize=16,color="magenta"];1782 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1782 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1783 -> 409[label="",style="dashed", color="red", weight=0]; 1783[label="xwv282 == xwv332",fontsize=16,color="magenta"];1783 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1783 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1784 -> 410[label="",style="dashed", color="red", weight=0]; 1784[label="xwv282 == xwv332",fontsize=16,color="magenta"];1784 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1784 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1785 -> 411[label="",style="dashed", color="red", weight=0]; 1785[label="xwv282 == xwv332",fontsize=16,color="magenta"];1785 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1785 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1786 -> 412[label="",style="dashed", color="red", weight=0]; 1786[label="xwv282 == xwv332",fontsize=16,color="magenta"];1786 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1786 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1787 -> 413[label="",style="dashed", color="red", weight=0]; 1787[label="xwv282 == xwv332",fontsize=16,color="magenta"];1787 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1787 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1788 -> 414[label="",style="dashed", color="red", weight=0]; 1788[label="xwv282 == xwv332",fontsize=16,color="magenta"];1788 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1788 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1789 -> 415[label="",style="dashed", color="red", weight=0]; 1789[label="xwv282 == xwv332",fontsize=16,color="magenta"];1789 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1789 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1790 -> 416[label="",style="dashed", color="red", weight=0]; 1790[label="xwv282 == xwv332",fontsize=16,color="magenta"];1790 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1790 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1791 -> 417[label="",style="dashed", color="red", weight=0]; 1791[label="xwv282 == xwv332",fontsize=16,color="magenta"];1791 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1791 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1792 -> 418[label="",style="dashed", color="red", weight=0]; 1792[label="xwv282 == xwv332",fontsize=16,color="magenta"];1792 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1792 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1793 -> 419[label="",style="dashed", color="red", weight=0]; 1793[label="xwv282 == xwv332",fontsize=16,color="magenta"];1793 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1793 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1794 -> 420[label="",style="dashed", color="red", weight=0]; 1794[label="xwv282 == xwv332",fontsize=16,color="magenta"];1794 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1794 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1795 -> 421[label="",style="dashed", color="red", weight=0]; 1795[label="xwv282 == xwv332",fontsize=16,color="magenta"];1795 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1795 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1796 -> 422[label="",style="dashed", color="red", weight=0]; 1796[label="xwv282 == xwv332",fontsize=16,color="magenta"];1796 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1796 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1797[label="xwv280",fontsize=16,color="green",shape="box"];1798[label="xwv330",fontsize=16,color="green",shape="box"];1799[label="xwv280",fontsize=16,color="green",shape="box"];1800[label="xwv330",fontsize=16,color="green",shape="box"];1801[label="xwv280",fontsize=16,color="green",shape="box"];1802[label="xwv330",fontsize=16,color="green",shape="box"];1803[label="xwv280",fontsize=16,color="green",shape="box"];1804[label="xwv330",fontsize=16,color="green",shape="box"];1805[label="xwv280",fontsize=16,color="green",shape="box"];1806[label="xwv330",fontsize=16,color="green",shape="box"];1807[label="xwv280",fontsize=16,color="green",shape="box"];1808[label="xwv330",fontsize=16,color="green",shape="box"];1809[label="xwv280",fontsize=16,color="green",shape="box"];1810[label="xwv330",fontsize=16,color="green",shape="box"];1811[label="xwv280",fontsize=16,color="green",shape="box"];1812[label="xwv330",fontsize=16,color="green",shape="box"];1813[label="xwv280",fontsize=16,color="green",shape="box"];1814[label="xwv330",fontsize=16,color="green",shape="box"];1815[label="xwv280",fontsize=16,color="green",shape="box"];1816[label="xwv330",fontsize=16,color="green",shape="box"];1817[label="xwv280",fontsize=16,color="green",shape="box"];1818[label="xwv330",fontsize=16,color="green",shape="box"];1819[label="xwv280",fontsize=16,color="green",shape="box"];1820[label="xwv330",fontsize=16,color="green",shape="box"];1821[label="xwv280",fontsize=16,color="green",shape="box"];1822[label="xwv330",fontsize=16,color="green",shape="box"];1823[label="xwv280",fontsize=16,color="green",shape="box"];1824[label="xwv330",fontsize=16,color="green",shape="box"];1825[label="xwv281",fontsize=16,color="green",shape="box"];1826[label="xwv331",fontsize=16,color="green",shape="box"];1827[label="xwv281",fontsize=16,color="green",shape="box"];1828[label="xwv331",fontsize=16,color="green",shape="box"];1829[label="xwv281",fontsize=16,color="green",shape="box"];1830[label="xwv331",fontsize=16,color="green",shape="box"];1831[label="xwv281",fontsize=16,color="green",shape="box"];1832[label="xwv331",fontsize=16,color="green",shape="box"];1833[label="xwv281",fontsize=16,color="green",shape="box"];1834[label="xwv331",fontsize=16,color="green",shape="box"];1835[label="xwv281",fontsize=16,color="green",shape="box"];1836[label="xwv331",fontsize=16,color="green",shape="box"];1837[label="xwv281",fontsize=16,color="green",shape="box"];1838[label="xwv331",fontsize=16,color="green",shape="box"];1839[label="xwv281",fontsize=16,color="green",shape="box"];1840[label="xwv331",fontsize=16,color="green",shape="box"];1841[label="xwv281",fontsize=16,color="green",shape="box"];1842[label="xwv331",fontsize=16,color="green",shape="box"];1843[label="xwv281",fontsize=16,color="green",shape="box"];1844[label="xwv331",fontsize=16,color="green",shape="box"];1845[label="xwv281",fontsize=16,color="green",shape="box"];1846[label="xwv331",fontsize=16,color="green",shape="box"];1847[label="xwv281",fontsize=16,color="green",shape="box"];1848[label="xwv331",fontsize=16,color="green",shape="box"];1849[label="xwv281",fontsize=16,color="green",shape="box"];1850[label="xwv331",fontsize=16,color="green",shape="box"];1851[label="xwv281",fontsize=16,color="green",shape="box"];1852[label="xwv331",fontsize=16,color="green",shape="box"];1854 -> 36[label="",style="dashed", color="red", weight=0]; 1854[label="FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) > FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="magenta"];1854 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1854 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1853[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) xwv167",fontsize=16,color="burlywood",shape="triangle"];4400[label="xwv167/False",fontsize=10,color="white",style="solid",shape="box"];1853 -> 4400[label="",style="solid", color="burlywood", weight=9]; 4400 -> 2060[label="",style="solid", color="burlywood", weight=3]; 4401[label="xwv167/True",fontsize=10,color="white",style="solid",shape="box"];1853 -> 4401[label="",style="solid", color="burlywood", weight=9]; 4401 -> 2061[label="",style="solid", color="burlywood", weight=3]; 1855[label="Pos Zero",fontsize=16,color="green",shape="box"];1856[label="xwv352",fontsize=16,color="green",shape="box"];1857[label="primPlusNat xwv1620 xwv1370",fontsize=16,color="burlywood",shape="triangle"];4402[label="xwv1620/Succ xwv16200",fontsize=10,color="white",style="solid",shape="box"];1857 -> 4402[label="",style="solid", color="burlywood", weight=9]; 4402 -> 2062[label="",style="solid", color="burlywood", weight=3]; 4403[label="xwv1620/Zero",fontsize=10,color="white",style="solid",shape="box"];1857 -> 4403[label="",style="solid", color="burlywood", weight=9]; 4403 -> 2063[label="",style="solid", color="burlywood", weight=3]; 1858[label="primMinusNat (Succ xwv16200) xwv1370",fontsize=16,color="burlywood",shape="box"];4404[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4404[label="",style="solid", color="burlywood", weight=9]; 4404 -> 2064[label="",style="solid", color="burlywood", weight=3]; 4405[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4405[label="",style="solid", color="burlywood", weight=9]; 4405 -> 2065[label="",style="solid", color="burlywood", weight=3]; 1859[label="primMinusNat Zero xwv1370",fontsize=16,color="burlywood",shape="box"];4406[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];1859 -> 4406[label="",style="solid", color="burlywood", weight=9]; 4406 -> 2066[label="",style="solid", color="burlywood", weight=3]; 4407[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];1859 -> 4407[label="",style="solid", color="burlywood", weight=9]; 4407 -> 2067[label="",style="solid", color="burlywood", weight=3]; 1860[label="xwv1370",fontsize=16,color="green",shape="box"];1861[label="xwv1620",fontsize=16,color="green",shape="box"];1862 -> 1857[label="",style="dashed", color="red", weight=0]; 1862[label="primPlusNat xwv1620 xwv1370",fontsize=16,color="magenta"];1862 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1862 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1863 -> 473[label="",style="dashed", color="red", weight=0]; 1863[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];1863 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1864 -> 1551[label="",style="dashed", color="red", weight=0]; 1864[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];1865[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];1865 -> 2072[label="",style="solid", color="black", weight=3]; 1866[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];1866 -> 2073[label="",style="solid", color="black", weight=3]; 1867[label="error []",fontsize=16,color="red",shape="box"];1868[label="FiniteMap.mkBalBranch6MkBalBranch02 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1868 -> 2074[label="",style="solid", color="black", weight=3]; 1869 -> 1549[label="",style="dashed", color="red", weight=0]; 1869[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35) (FiniteMap.mkBranchRight_size xwv16 xwv13 xwv35)",fontsize=16,color="magenta"];1869 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1869 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1870[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1870 -> 2077[label="",style="solid", color="black", weight=3]; 1871[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1871 -> 2078[label="",style="solid", color="black", weight=3]; 1872[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4408[label="xwv61/Nothing",fontsize=10,color="white",style="solid",shape="box"];1872 -> 4408[label="",style="solid", color="burlywood", weight=9]; 4408 -> 2079[label="",style="solid", color="burlywood", weight=3]; 4409[label="xwv61/Just xwv610",fontsize=10,color="white",style="solid",shape="box"];1872 -> 4409[label="",style="solid", color="burlywood", weight=9]; 4409 -> 2080[label="",style="solid", color="burlywood", weight=3]; 1873[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1873 -> 2081[label="",style="solid", color="black", weight=3]; 1874[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4410[label="xwv61/(xwv610,xwv611,xwv612)",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4410[label="",style="solid", color="burlywood", weight=9]; 4410 -> 2082[label="",style="solid", color="burlywood", weight=3]; 1875[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4411[label="xwv61/LT",fontsize=10,color="white",style="solid",shape="box"];1875 -> 4411[label="",style="solid", color="burlywood", weight=9]; 4411 -> 2083[label="",style="solid", color="burlywood", weight=3]; 4412[label="xwv61/EQ",fontsize=10,color="white",style="solid",shape="box"];1875 -> 4412[label="",style="solid", color="burlywood", weight=9]; 4412 -> 2084[label="",style="solid", color="burlywood", weight=3]; 4413[label="xwv61/GT",fontsize=10,color="white",style="solid",shape="box"];1875 -> 4413[label="",style="solid", color="burlywood", weight=9]; 4413 -> 2085[label="",style="solid", color="burlywood", weight=3]; 1876[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1876 -> 2086[label="",style="solid", color="black", weight=3]; 1877[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1877 -> 2087[label="",style="solid", color="black", weight=3]; 1878[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4414[label="xwv61/False",fontsize=10,color="white",style="solid",shape="box"];1878 -> 4414[label="",style="solid", color="burlywood", weight=9]; 4414 -> 2088[label="",style="solid", color="burlywood", weight=3]; 4415[label="xwv61/True",fontsize=10,color="white",style="solid",shape="box"];1878 -> 4415[label="",style="solid", color="burlywood", weight=9]; 4415 -> 2089[label="",style="solid", color="burlywood", weight=3]; 1879[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1879 -> 2090[label="",style="solid", color="black", weight=3]; 1880[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4416[label="xwv61/(xwv610,xwv611)",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4416[label="",style="solid", color="burlywood", weight=9]; 4416 -> 2091[label="",style="solid", color="burlywood", weight=3]; 1881[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1881 -> 2092[label="",style="solid", color="black", weight=3]; 1882[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4417[label="xwv61/Left xwv610",fontsize=10,color="white",style="solid",shape="box"];1882 -> 4417[label="",style="solid", color="burlywood", weight=9]; 4417 -> 2093[label="",style="solid", color="burlywood", weight=3]; 4418[label="xwv61/Right xwv610",fontsize=10,color="white",style="solid",shape="box"];1882 -> 4418[label="",style="solid", color="burlywood", weight=9]; 4418 -> 2094[label="",style="solid", color="burlywood", weight=3]; 1883[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1883 -> 2095[label="",style="solid", color="black", weight=3]; 1884[label="compare0 (Just xwv147) (Just xwv148) otherwise",fontsize=16,color="black",shape="box"];1884 -> 2096[label="",style="solid", color="black", weight=3]; 1885[label="LT",fontsize=16,color="green",shape="box"];1905 -> 102[label="",style="dashed", color="red", weight=0]; 1905[label="xwv77 < xwv80",fontsize=16,color="magenta"];1905 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1905 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1906 -> 103[label="",style="dashed", color="red", weight=0]; 1906[label="xwv77 < xwv80",fontsize=16,color="magenta"];1906 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1907 -> 104[label="",style="dashed", color="red", weight=0]; 1907[label="xwv77 < xwv80",fontsize=16,color="magenta"];1907 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1908 -> 105[label="",style="dashed", color="red", weight=0]; 1908[label="xwv77 < xwv80",fontsize=16,color="magenta"];1908 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1908 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1909 -> 106[label="",style="dashed", color="red", weight=0]; 1909[label="xwv77 < xwv80",fontsize=16,color="magenta"];1909 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1910 -> 107[label="",style="dashed", color="red", weight=0]; 1910[label="xwv77 < xwv80",fontsize=16,color="magenta"];1910 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1910 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1911 -> 108[label="",style="dashed", color="red", weight=0]; 1911[label="xwv77 < xwv80",fontsize=16,color="magenta"];1911 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1912 -> 109[label="",style="dashed", color="red", weight=0]; 1912[label="xwv77 < xwv80",fontsize=16,color="magenta"];1912 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1912 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1913 -> 110[label="",style="dashed", color="red", weight=0]; 1913[label="xwv77 < xwv80",fontsize=16,color="magenta"];1913 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1914 -> 111[label="",style="dashed", color="red", weight=0]; 1914[label="xwv77 < xwv80",fontsize=16,color="magenta"];1914 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1915 -> 112[label="",style="dashed", color="red", weight=0]; 1915[label="xwv77 < xwv80",fontsize=16,color="magenta"];1915 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1916 -> 113[label="",style="dashed", color="red", weight=0]; 1916[label="xwv77 < xwv80",fontsize=16,color="magenta"];1916 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1917 -> 114[label="",style="dashed", color="red", weight=0]; 1917[label="xwv77 < xwv80",fontsize=16,color="magenta"];1917 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1918 -> 115[label="",style="dashed", color="red", weight=0]; 1918[label="xwv77 < xwv80",fontsize=16,color="magenta"];1918 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1919[label="xwv77 == xwv80",fontsize=16,color="blue",shape="box"];4419[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4419[label="",style="solid", color="blue", weight=9]; 4419 -> 2125[label="",style="solid", color="blue", weight=3]; 4420[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4420[label="",style="solid", color="blue", weight=9]; 4420 -> 2126[label="",style="solid", color="blue", weight=3]; 4421[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4421[label="",style="solid", color="blue", weight=9]; 4421 -> 2127[label="",style="solid", color="blue", weight=3]; 4422[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4422[label="",style="solid", color="blue", weight=9]; 4422 -> 2128[label="",style="solid", color="blue", weight=3]; 4423[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4423[label="",style="solid", color="blue", weight=9]; 4423 -> 2129[label="",style="solid", color="blue", weight=3]; 4424[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4424[label="",style="solid", color="blue", weight=9]; 4424 -> 2130[label="",style="solid", color="blue", weight=3]; 4425[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4425[label="",style="solid", color="blue", weight=9]; 4425 -> 2131[label="",style="solid", color="blue", weight=3]; 4426[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4426[label="",style="solid", color="blue", weight=9]; 4426 -> 2132[label="",style="solid", color="blue", weight=3]; 4427[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4427[label="",style="solid", color="blue", weight=9]; 4427 -> 2133[label="",style="solid", color="blue", weight=3]; 4428[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4428[label="",style="solid", color="blue", weight=9]; 4428 -> 2134[label="",style="solid", color="blue", weight=3]; 4429[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4429[label="",style="solid", color="blue", weight=9]; 4429 -> 2135[label="",style="solid", color="blue", weight=3]; 4430[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4430[label="",style="solid", color="blue", weight=9]; 4430 -> 2136[label="",style="solid", color="blue", weight=3]; 4431[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4431[label="",style="solid", color="blue", weight=9]; 4431 -> 2137[label="",style="solid", color="blue", weight=3]; 4432[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4432[label="",style="solid", color="blue", weight=9]; 4432 -> 2138[label="",style="solid", color="blue", weight=3]; 1920 -> 2347[label="",style="dashed", color="red", weight=0]; 1920[label="xwv78 < xwv81 || xwv78 == xwv81 && xwv79 <= xwv82",fontsize=16,color="magenta"];1920 -> 2348[label="",style="dashed", color="magenta", weight=3]; 1920 -> 2349[label="",style="dashed", color="magenta", weight=3]; 1921[label="compare1 (xwv179,xwv180,xwv181) (xwv182,xwv183,xwv184) (False || xwv186)",fontsize=16,color="black",shape="box"];1921 -> 2141[label="",style="solid", color="black", weight=3]; 1922[label="compare1 (xwv179,xwv180,xwv181) (xwv182,xwv183,xwv184) (True || xwv186)",fontsize=16,color="black",shape="box"];1922 -> 2142[label="",style="solid", color="black", weight=3]; 1938[label="xwv126 == xwv128",fontsize=16,color="blue",shape="box"];4433[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 2143[label="",style="solid", color="blue", weight=3]; 4434[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4434[label="",style="solid", color="blue", weight=9]; 4434 -> 2144[label="",style="solid", color="blue", weight=3]; 4435[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4435[label="",style="solid", color="blue", weight=9]; 4435 -> 2145[label="",style="solid", color="blue", weight=3]; 4436[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4436[label="",style="solid", color="blue", weight=9]; 4436 -> 2146[label="",style="solid", color="blue", weight=3]; 4437[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4437[label="",style="solid", color="blue", weight=9]; 4437 -> 2147[label="",style="solid", color="blue", weight=3]; 4438[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4438[label="",style="solid", color="blue", weight=9]; 4438 -> 2148[label="",style="solid", color="blue", weight=3]; 4439[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4439[label="",style="solid", color="blue", weight=9]; 4439 -> 2149[label="",style="solid", color="blue", weight=3]; 4440[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4440[label="",style="solid", color="blue", weight=9]; 4440 -> 2150[label="",style="solid", color="blue", weight=3]; 4441[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4441[label="",style="solid", color="blue", weight=9]; 4441 -> 2151[label="",style="solid", color="blue", weight=3]; 4442[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4442[label="",style="solid", color="blue", weight=9]; 4442 -> 2152[label="",style="solid", color="blue", weight=3]; 4443[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4443[label="",style="solid", color="blue", weight=9]; 4443 -> 2153[label="",style="solid", color="blue", weight=3]; 4444[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4444[label="",style="solid", color="blue", weight=9]; 4444 -> 2154[label="",style="solid", color="blue", weight=3]; 4445[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4445[label="",style="solid", color="blue", weight=9]; 4445 -> 2155[label="",style="solid", color="blue", weight=3]; 4446[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4446[label="",style="solid", color="blue", weight=9]; 4446 -> 2156[label="",style="solid", color="blue", weight=3]; 1939[label="xwv127 <= xwv129",fontsize=16,color="blue",shape="box"];4447[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4447[label="",style="solid", color="blue", weight=9]; 4447 -> 2157[label="",style="solid", color="blue", weight=3]; 4448[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4448[label="",style="solid", color="blue", weight=9]; 4448 -> 2158[label="",style="solid", color="blue", weight=3]; 4449[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4449[label="",style="solid", color="blue", weight=9]; 4449 -> 2159[label="",style="solid", color="blue", weight=3]; 4450[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4450[label="",style="solid", color="blue", weight=9]; 4450 -> 2160[label="",style="solid", color="blue", weight=3]; 4451[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4451[label="",style="solid", color="blue", weight=9]; 4451 -> 2161[label="",style="solid", color="blue", weight=3]; 4452[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4452[label="",style="solid", color="blue", weight=9]; 4452 -> 2162[label="",style="solid", color="blue", weight=3]; 4453[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4453[label="",style="solid", color="blue", weight=9]; 4453 -> 2163[label="",style="solid", color="blue", weight=3]; 4454[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4454[label="",style="solid", color="blue", weight=9]; 4454 -> 2164[label="",style="solid", color="blue", weight=3]; 4455[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4455[label="",style="solid", color="blue", weight=9]; 4455 -> 2165[label="",style="solid", color="blue", weight=3]; 4456[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4456[label="",style="solid", color="blue", weight=9]; 4456 -> 2166[label="",style="solid", color="blue", weight=3]; 4457[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4457[label="",style="solid", color="blue", weight=9]; 4457 -> 2167[label="",style="solid", color="blue", weight=3]; 4458[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4458[label="",style="solid", color="blue", weight=9]; 4458 -> 2168[label="",style="solid", color="blue", weight=3]; 4459[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4459[label="",style="solid", color="blue", weight=9]; 4459 -> 2169[label="",style="solid", color="blue", weight=3]; 4460[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1939 -> 4460[label="",style="solid", color="blue", weight=9]; 4460 -> 2170[label="",style="solid", color="blue", weight=3]; 1940 -> 102[label="",style="dashed", color="red", weight=0]; 1940[label="xwv126 < xwv128",fontsize=16,color="magenta"];1940 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1940 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1941 -> 103[label="",style="dashed", color="red", weight=0]; 1941[label="xwv126 < xwv128",fontsize=16,color="magenta"];1941 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1941 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1942 -> 104[label="",style="dashed", color="red", weight=0]; 1942[label="xwv126 < xwv128",fontsize=16,color="magenta"];1942 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1942 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1943 -> 105[label="",style="dashed", color="red", weight=0]; 1943[label="xwv126 < xwv128",fontsize=16,color="magenta"];1943 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1943 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1944 -> 106[label="",style="dashed", color="red", weight=0]; 1944[label="xwv126 < xwv128",fontsize=16,color="magenta"];1944 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1944 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1945 -> 107[label="",style="dashed", color="red", weight=0]; 1945[label="xwv126 < xwv128",fontsize=16,color="magenta"];1945 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1945 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1946 -> 108[label="",style="dashed", color="red", weight=0]; 1946[label="xwv126 < xwv128",fontsize=16,color="magenta"];1946 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1947 -> 109[label="",style="dashed", color="red", weight=0]; 1947[label="xwv126 < xwv128",fontsize=16,color="magenta"];1947 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1948 -> 110[label="",style="dashed", color="red", weight=0]; 1948[label="xwv126 < xwv128",fontsize=16,color="magenta"];1948 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1948 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1949 -> 111[label="",style="dashed", color="red", weight=0]; 1949[label="xwv126 < xwv128",fontsize=16,color="magenta"];1949 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1949 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1950 -> 112[label="",style="dashed", color="red", weight=0]; 1950[label="xwv126 < xwv128",fontsize=16,color="magenta"];1950 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1951 -> 113[label="",style="dashed", color="red", weight=0]; 1951[label="xwv126 < xwv128",fontsize=16,color="magenta"];1951 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1951 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1952 -> 114[label="",style="dashed", color="red", weight=0]; 1952[label="xwv126 < xwv128",fontsize=16,color="magenta"];1952 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1953 -> 115[label="",style="dashed", color="red", weight=0]; 1953[label="xwv126 < xwv128",fontsize=16,color="magenta"];1953 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1953 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1954[label="compare1 (xwv194,xwv195) (xwv196,xwv197) (False || xwv199)",fontsize=16,color="black",shape="box"];1954 -> 2199[label="",style="solid", color="black", weight=3]; 1955[label="compare1 (xwv194,xwv195) (xwv196,xwv197) (True || xwv199)",fontsize=16,color="black",shape="box"];1955 -> 2200[label="",style="solid", color="black", weight=3]; 1956[label="primMulNat (Succ xwv30000) xwv4010",fontsize=16,color="burlywood",shape="box"];4461[label="xwv4010/Succ xwv40100",fontsize=10,color="white",style="solid",shape="box"];1956 -> 4461[label="",style="solid", color="burlywood", weight=9]; 4461 -> 2201[label="",style="solid", color="burlywood", weight=3]; 4462[label="xwv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1956 -> 4462[label="",style="solid", color="burlywood", weight=9]; 4462 -> 2202[label="",style="solid", color="burlywood", weight=3]; 1957[label="primMulNat Zero xwv4010",fontsize=16,color="burlywood",shape="box"];4463[label="xwv4010/Succ xwv40100",fontsize=10,color="white",style="solid",shape="box"];1957 -> 4463[label="",style="solid", color="burlywood", weight=9]; 4463 -> 2203[label="",style="solid", color="burlywood", weight=3]; 4464[label="xwv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1957 -> 4464[label="",style="solid", color="burlywood", weight=9]; 4464 -> 2204[label="",style="solid", color="burlywood", weight=3]; 1958[label="xwv4010",fontsize=16,color="green",shape="box"];1959[label="xwv3000",fontsize=16,color="green",shape="box"];1960[label="xwv4010",fontsize=16,color="green",shape="box"];1961[label="xwv3000",fontsize=16,color="green",shape="box"];1962 -> 1870[label="",style="dashed", color="red", weight=0]; 1962[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1962 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1963 -> 1871[label="",style="dashed", color="red", weight=0]; 1963[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1963 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1964 -> 1872[label="",style="dashed", color="red", weight=0]; 1964[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1964 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1965 -> 1873[label="",style="dashed", color="red", weight=0]; 1965[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1965 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1966 -> 1874[label="",style="dashed", color="red", weight=0]; 1966[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1966 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1967 -> 1875[label="",style="dashed", color="red", weight=0]; 1967[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1967 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1968 -> 1876[label="",style="dashed", color="red", weight=0]; 1968[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1968 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1969 -> 1877[label="",style="dashed", color="red", weight=0]; 1969[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1969 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1970 -> 1878[label="",style="dashed", color="red", weight=0]; 1970[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1970 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1971 -> 1879[label="",style="dashed", color="red", weight=0]; 1971[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1971 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1972 -> 1880[label="",style="dashed", color="red", weight=0]; 1972[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1972 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1973 -> 1881[label="",style="dashed", color="red", weight=0]; 1973[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1973 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1974 -> 1882[label="",style="dashed", color="red", weight=0]; 1974[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1974 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1975 -> 1883[label="",style="dashed", color="red", weight=0]; 1975[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1975 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1976[label="compare0 (Left xwv157) (Left xwv158) otherwise",fontsize=16,color="black",shape="box"];1976 -> 2233[label="",style="solid", color="black", weight=3]; 1977[label="LT",fontsize=16,color="green",shape="box"];1978 -> 1870[label="",style="dashed", color="red", weight=0]; 1978[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1978 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1979 -> 1871[label="",style="dashed", color="red", weight=0]; 1979[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1979 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1980 -> 1872[label="",style="dashed", color="red", weight=0]; 1980[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1980 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1981 -> 1873[label="",style="dashed", color="red", weight=0]; 1981[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1981 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1982 -> 1874[label="",style="dashed", color="red", weight=0]; 1982[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1982 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1983 -> 1875[label="",style="dashed", color="red", weight=0]; 1983[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1983 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1984 -> 1876[label="",style="dashed", color="red", weight=0]; 1984[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1984 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1985 -> 1877[label="",style="dashed", color="red", weight=0]; 1985[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1985 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2249[label="",style="dashed", color="magenta", weight=3]; 1986 -> 1878[label="",style="dashed", color="red", weight=0]; 1986[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1986 -> 2250[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2251[label="",style="dashed", color="magenta", weight=3]; 1987 -> 1879[label="",style="dashed", color="red", weight=0]; 1987[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1987 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1988 -> 1880[label="",style="dashed", color="red", weight=0]; 1988[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1988 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1989 -> 1881[label="",style="dashed", color="red", weight=0]; 1989[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1989 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2257[label="",style="dashed", color="magenta", weight=3]; 1990 -> 1882[label="",style="dashed", color="red", weight=0]; 1990[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1990 -> 2258[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2259[label="",style="dashed", color="magenta", weight=3]; 1991 -> 1883[label="",style="dashed", color="red", weight=0]; 1991[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1991 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2261[label="",style="dashed", color="magenta", weight=3]; 1992[label="compare0 (Right xwv164) (Right xwv165) otherwise",fontsize=16,color="black",shape="box"];1992 -> 2262[label="",style="solid", color="black", weight=3]; 1993[label="LT",fontsize=16,color="green",shape="box"];1994 -> 1072[label="",style="dashed", color="red", weight=0]; 1994[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];1994 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1995[label="False",fontsize=16,color="green",shape="box"];1996[label="False",fontsize=16,color="green",shape="box"];1997[label="True",fontsize=16,color="green",shape="box"];1998[label="xwv3300",fontsize=16,color="green",shape="box"];1999[label="xwv2800",fontsize=16,color="green",shape="box"];2000[label="xwv3300",fontsize=16,color="green",shape="box"];2001[label="xwv2800",fontsize=16,color="green",shape="box"];2002[label="xwv281",fontsize=16,color="green",shape="box"];2003[label="xwv331",fontsize=16,color="green",shape="box"];2004[label="xwv281",fontsize=16,color="green",shape="box"];2005[label="xwv331",fontsize=16,color="green",shape="box"];2006[label="xwv281",fontsize=16,color="green",shape="box"];2007[label="xwv331",fontsize=16,color="green",shape="box"];2008[label="xwv281",fontsize=16,color="green",shape="box"];2009[label="xwv331",fontsize=16,color="green",shape="box"];2010[label="xwv281",fontsize=16,color="green",shape="box"];2011[label="xwv331",fontsize=16,color="green",shape="box"];2012[label="xwv281",fontsize=16,color="green",shape="box"];2013[label="xwv331",fontsize=16,color="green",shape="box"];2014[label="xwv281",fontsize=16,color="green",shape="box"];2015[label="xwv331",fontsize=16,color="green",shape="box"];2016[label="xwv281",fontsize=16,color="green",shape="box"];2017[label="xwv331",fontsize=16,color="green",shape="box"];2018[label="xwv281",fontsize=16,color="green",shape="box"];2019[label="xwv331",fontsize=16,color="green",shape="box"];2020[label="xwv281",fontsize=16,color="green",shape="box"];2021[label="xwv331",fontsize=16,color="green",shape="box"];2022[label="xwv281",fontsize=16,color="green",shape="box"];2023[label="xwv331",fontsize=16,color="green",shape="box"];2024[label="xwv281",fontsize=16,color="green",shape="box"];2025[label="xwv331",fontsize=16,color="green",shape="box"];2026[label="xwv281",fontsize=16,color="green",shape="box"];2027[label="xwv331",fontsize=16,color="green",shape="box"];2028[label="xwv281",fontsize=16,color="green",shape="box"];2029[label="xwv331",fontsize=16,color="green",shape="box"];2030[label="xwv282",fontsize=16,color="green",shape="box"];2031[label="xwv332",fontsize=16,color="green",shape="box"];2032[label="xwv282",fontsize=16,color="green",shape="box"];2033[label="xwv332",fontsize=16,color="green",shape="box"];2034[label="xwv282",fontsize=16,color="green",shape="box"];2035[label="xwv332",fontsize=16,color="green",shape="box"];2036[label="xwv282",fontsize=16,color="green",shape="box"];2037[label="xwv332",fontsize=16,color="green",shape="box"];2038[label="xwv282",fontsize=16,color="green",shape="box"];2039[label="xwv332",fontsize=16,color="green",shape="box"];2040[label="xwv282",fontsize=16,color="green",shape="box"];2041[label="xwv332",fontsize=16,color="green",shape="box"];2042[label="xwv282",fontsize=16,color="green",shape="box"];2043[label="xwv332",fontsize=16,color="green",shape="box"];2044[label="xwv282",fontsize=16,color="green",shape="box"];2045[label="xwv332",fontsize=16,color="green",shape="box"];2046[label="xwv282",fontsize=16,color="green",shape="box"];2047[label="xwv332",fontsize=16,color="green",shape="box"];2048[label="xwv282",fontsize=16,color="green",shape="box"];2049[label="xwv332",fontsize=16,color="green",shape="box"];2050[label="xwv282",fontsize=16,color="green",shape="box"];2051[label="xwv332",fontsize=16,color="green",shape="box"];2052[label="xwv282",fontsize=16,color="green",shape="box"];2053[label="xwv332",fontsize=16,color="green",shape="box"];2054[label="xwv282",fontsize=16,color="green",shape="box"];2055[label="xwv332",fontsize=16,color="green",shape="box"];2056[label="xwv282",fontsize=16,color="green",shape="box"];2057[label="xwv332",fontsize=16,color="green",shape="box"];2058 -> 1127[label="",style="dashed", color="red", weight=0]; 2058[label="FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="magenta"];2058 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2059 -> 1127[label="",style="dashed", color="red", weight=0]; 2059[label="FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="magenta"];2059 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2060[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) False",fontsize=16,color="black",shape="box"];2060 -> 2267[label="",style="solid", color="black", weight=3]; 2061[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) True",fontsize=16,color="black",shape="box"];2061 -> 2268[label="",style="solid", color="black", weight=3]; 2062[label="primPlusNat (Succ xwv16200) xwv1370",fontsize=16,color="burlywood",shape="box"];4465[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4465[label="",style="solid", color="burlywood", weight=9]; 4465 -> 2269[label="",style="solid", color="burlywood", weight=3]; 4466[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4466[label="",style="solid", color="burlywood", weight=9]; 4466 -> 2270[label="",style="solid", color="burlywood", weight=3]; 2063[label="primPlusNat Zero xwv1370",fontsize=16,color="burlywood",shape="box"];4467[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];2063 -> 4467[label="",style="solid", color="burlywood", weight=9]; 4467 -> 2271[label="",style="solid", color="burlywood", weight=3]; 4468[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];2063 -> 4468[label="",style="solid", color="burlywood", weight=9]; 4468 -> 2272[label="",style="solid", color="burlywood", weight=3]; 2064[label="primMinusNat (Succ xwv16200) (Succ xwv13700)",fontsize=16,color="black",shape="box"];2064 -> 2273[label="",style="solid", color="black", weight=3]; 2065[label="primMinusNat (Succ xwv16200) Zero",fontsize=16,color="black",shape="box"];2065 -> 2274[label="",style="solid", color="black", weight=3]; 2066[label="primMinusNat Zero (Succ xwv13700)",fontsize=16,color="black",shape="box"];2066 -> 2275[label="",style="solid", color="black", weight=3]; 2067[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2067 -> 2276[label="",style="solid", color="black", weight=3]; 2068[label="xwv1620",fontsize=16,color="green",shape="box"];2069[label="xwv1370",fontsize=16,color="green",shape="box"];2070 -> 1125[label="",style="dashed", color="red", weight=0]; 2070[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2071 -> 808[label="",style="dashed", color="red", weight=0]; 2071[label="FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];2072[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 otherwise",fontsize=16,color="black",shape="box"];2072 -> 2277[label="",style="solid", color="black", weight=3]; 2073[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv16 xwv13 xwv14 xwv35 xwv16 xwv35 xwv16",fontsize=16,color="burlywood",shape="box"];4469[label="xwv16/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2073 -> 4469[label="",style="solid", color="burlywood", weight=9]; 4469 -> 2278[label="",style="solid", color="burlywood", weight=3]; 4470[label="xwv16/FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164",fontsize=10,color="white",style="solid",shape="box"];2073 -> 4470[label="",style="solid", color="burlywood", weight=9]; 4470 -> 2279[label="",style="solid", color="burlywood", weight=3]; 2074 -> 2280[label="",style="dashed", color="red", weight=0]; 2074[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 (FiniteMap.sizeFM xwv353 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354)",fontsize=16,color="magenta"];2074 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2075[label="FiniteMap.mkBranchRight_size xwv16 xwv13 xwv35",fontsize=16,color="black",shape="box"];2075 -> 2282[label="",style="solid", color="black", weight=3]; 2076[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35",fontsize=16,color="black",shape="box"];2076 -> 2283[label="",style="solid", color="black", weight=3]; 2077 -> 2284[label="",style="dashed", color="red", weight=0]; 2077[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2077 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2284[label="",style="dashed", color="red", weight=0]; 2078[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2078 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2079[label="Nothing <= xwv62",fontsize=16,color="burlywood",shape="box"];4471[label="xwv62/Nothing",fontsize=10,color="white",style="solid",shape="box"];2079 -> 4471[label="",style="solid", color="burlywood", weight=9]; 4471 -> 2293[label="",style="solid", color="burlywood", weight=3]; 4472[label="xwv62/Just xwv620",fontsize=10,color="white",style="solid",shape="box"];2079 -> 4472[label="",style="solid", color="burlywood", weight=9]; 4472 -> 2294[label="",style="solid", color="burlywood", weight=3]; 2080[label="Just xwv610 <= xwv62",fontsize=16,color="burlywood",shape="box"];4473[label="xwv62/Nothing",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4473[label="",style="solid", color="burlywood", weight=9]; 4473 -> 2295[label="",style="solid", color="burlywood", weight=3]; 4474[label="xwv62/Just xwv620",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4474[label="",style="solid", color="burlywood", weight=9]; 4474 -> 2296[label="",style="solid", color="burlywood", weight=3]; 2081 -> 2284[label="",style="dashed", color="red", weight=0]; 2081[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2081 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2082[label="(xwv610,xwv611,xwv612) <= xwv62",fontsize=16,color="burlywood",shape="box"];4475[label="xwv62/(xwv620,xwv621,xwv622)",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4475[label="",style="solid", color="burlywood", weight=9]; 4475 -> 2297[label="",style="solid", color="burlywood", weight=3]; 2083[label="LT <= xwv62",fontsize=16,color="burlywood",shape="box"];4476[label="xwv62/LT",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4476[label="",style="solid", color="burlywood", weight=9]; 4476 -> 2298[label="",style="solid", color="burlywood", weight=3]; 4477[label="xwv62/EQ",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4477[label="",style="solid", color="burlywood", weight=9]; 4477 -> 2299[label="",style="solid", color="burlywood", weight=3]; 4478[label="xwv62/GT",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4478[label="",style="solid", color="burlywood", weight=9]; 4478 -> 2300[label="",style="solid", color="burlywood", weight=3]; 2084[label="EQ <= xwv62",fontsize=16,color="burlywood",shape="box"];4479[label="xwv62/LT",fontsize=10,color="white",style="solid",shape="box"];2084 -> 4479[label="",style="solid", color="burlywood", weight=9]; 4479 -> 2301[label="",style="solid", color="burlywood", weight=3]; 4480[label="xwv62/EQ",fontsize=10,color="white",style="solid",shape="box"];2084 -> 4480[label="",style="solid", color="burlywood", weight=9]; 4480 -> 2302[label="",style="solid", color="burlywood", weight=3]; 4481[label="xwv62/GT",fontsize=10,color="white",style="solid",shape="box"];2084 -> 4481[label="",style="solid", color="burlywood", weight=9]; 4481 -> 2303[label="",style="solid", color="burlywood", weight=3]; 2085[label="GT <= xwv62",fontsize=16,color="burlywood",shape="box"];4482[label="xwv62/LT",fontsize=10,color="white",style="solid",shape="box"];2085 -> 4482[label="",style="solid", color="burlywood", weight=9]; 4482 -> 2304[label="",style="solid", color="burlywood", weight=3]; 4483[label="xwv62/EQ",fontsize=10,color="white",style="solid",shape="box"];2085 -> 4483[label="",style="solid", color="burlywood", weight=9]; 4483 -> 2305[label="",style="solid", color="burlywood", weight=3]; 4484[label="xwv62/GT",fontsize=10,color="white",style="solid",shape="box"];2085 -> 4484[label="",style="solid", color="burlywood", weight=9]; 4484 -> 2306[label="",style="solid", color="burlywood", weight=3]; 2086 -> 2284[label="",style="dashed", color="red", weight=0]; 2086[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2086 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2284[label="",style="dashed", color="red", weight=0]; 2087[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2087 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2088[label="False <= xwv62",fontsize=16,color="burlywood",shape="box"];4485[label="xwv62/False",fontsize=10,color="white",style="solid",shape="box"];2088 -> 4485[label="",style="solid", color="burlywood", weight=9]; 4485 -> 2307[label="",style="solid", color="burlywood", weight=3]; 4486[label="xwv62/True",fontsize=10,color="white",style="solid",shape="box"];2088 -> 4486[label="",style="solid", color="burlywood", weight=9]; 4486 -> 2308[label="",style="solid", color="burlywood", weight=3]; 2089[label="True <= xwv62",fontsize=16,color="burlywood",shape="box"];4487[label="xwv62/False",fontsize=10,color="white",style="solid",shape="box"];2089 -> 4487[label="",style="solid", color="burlywood", weight=9]; 4487 -> 2309[label="",style="solid", color="burlywood", weight=3]; 4488[label="xwv62/True",fontsize=10,color="white",style="solid",shape="box"];2089 -> 4488[label="",style="solid", color="burlywood", weight=9]; 4488 -> 2310[label="",style="solid", color="burlywood", weight=3]; 2090 -> 2284[label="",style="dashed", color="red", weight=0]; 2090[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2090 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2091[label="(xwv610,xwv611) <= xwv62",fontsize=16,color="burlywood",shape="box"];4489[label="xwv62/(xwv620,xwv621)",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4489[label="",style="solid", color="burlywood", weight=9]; 4489 -> 2311[label="",style="solid", color="burlywood", weight=3]; 2092 -> 2284[label="",style="dashed", color="red", weight=0]; 2092[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2092 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2093[label="Left xwv610 <= xwv62",fontsize=16,color="burlywood",shape="box"];4490[label="xwv62/Left xwv620",fontsize=10,color="white",style="solid",shape="box"];2093 -> 4490[label="",style="solid", color="burlywood", weight=9]; 4490 -> 2312[label="",style="solid", color="burlywood", weight=3]; 4491[label="xwv62/Right xwv620",fontsize=10,color="white",style="solid",shape="box"];2093 -> 4491[label="",style="solid", color="burlywood", weight=9]; 4491 -> 2313[label="",style="solid", color="burlywood", weight=3]; 2094[label="Right xwv610 <= xwv62",fontsize=16,color="burlywood",shape="box"];4492[label="xwv62/Left xwv620",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4492[label="",style="solid", color="burlywood", weight=9]; 4492 -> 2314[label="",style="solid", color="burlywood", weight=3]; 4493[label="xwv62/Right xwv620",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4493[label="",style="solid", color="burlywood", weight=9]; 4493 -> 2315[label="",style="solid", color="burlywood", weight=3]; 2095 -> 2284[label="",style="dashed", color="red", weight=0]; 2095[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2095 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2096[label="compare0 (Just xwv147) (Just xwv148) True",fontsize=16,color="black",shape="box"];2096 -> 2316[label="",style="solid", color="black", weight=3]; 2097[label="xwv80",fontsize=16,color="green",shape="box"];2098[label="xwv77",fontsize=16,color="green",shape="box"];2099[label="xwv80",fontsize=16,color="green",shape="box"];2100[label="xwv77",fontsize=16,color="green",shape="box"];2101[label="xwv80",fontsize=16,color="green",shape="box"];2102[label="xwv77",fontsize=16,color="green",shape="box"];2103[label="xwv80",fontsize=16,color="green",shape="box"];2104[label="xwv77",fontsize=16,color="green",shape="box"];2105[label="xwv80",fontsize=16,color="green",shape="box"];2106[label="xwv77",fontsize=16,color="green",shape="box"];2107[label="xwv80",fontsize=16,color="green",shape="box"];2108[label="xwv77",fontsize=16,color="green",shape="box"];2109[label="xwv80",fontsize=16,color="green",shape="box"];2110[label="xwv77",fontsize=16,color="green",shape="box"];2111[label="xwv80",fontsize=16,color="green",shape="box"];2112[label="xwv77",fontsize=16,color="green",shape="box"];2113[label="xwv80",fontsize=16,color="green",shape="box"];2114[label="xwv77",fontsize=16,color="green",shape="box"];2115[label="xwv80",fontsize=16,color="green",shape="box"];2116[label="xwv77",fontsize=16,color="green",shape="box"];2117[label="xwv80",fontsize=16,color="green",shape="box"];2118[label="xwv77",fontsize=16,color="green",shape="box"];2119[label="xwv80",fontsize=16,color="green",shape="box"];2120[label="xwv77",fontsize=16,color="green",shape="box"];2121[label="xwv80",fontsize=16,color="green",shape="box"];2122[label="xwv77",fontsize=16,color="green",shape="box"];2123[label="xwv80",fontsize=16,color="green",shape="box"];2124[label="xwv77",fontsize=16,color="green",shape="box"];2125 -> 410[label="",style="dashed", color="red", weight=0]; 2125[label="xwv77 == xwv80",fontsize=16,color="magenta"];2125 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2125 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2126 -> 416[label="",style="dashed", color="red", weight=0]; 2126[label="xwv77 == xwv80",fontsize=16,color="magenta"];2126 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2127 -> 414[label="",style="dashed", color="red", weight=0]; 2127[label="xwv77 == xwv80",fontsize=16,color="magenta"];2127 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2127 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2128 -> 419[label="",style="dashed", color="red", weight=0]; 2128[label="xwv77 == xwv80",fontsize=16,color="magenta"];2128 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2128 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2129 -> 420[label="",style="dashed", color="red", weight=0]; 2129[label="xwv77 == xwv80",fontsize=16,color="magenta"];2129 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2129 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2130 -> 421[label="",style="dashed", color="red", weight=0]; 2130[label="xwv77 == xwv80",fontsize=16,color="magenta"];2130 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2130 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2131 -> 415[label="",style="dashed", color="red", weight=0]; 2131[label="xwv77 == xwv80",fontsize=16,color="magenta"];2131 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2131 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2132 -> 411[label="",style="dashed", color="red", weight=0]; 2132[label="xwv77 == xwv80",fontsize=16,color="magenta"];2132 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2132 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2133 -> 417[label="",style="dashed", color="red", weight=0]; 2133[label="xwv77 == xwv80",fontsize=16,color="magenta"];2133 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2134 -> 412[label="",style="dashed", color="red", weight=0]; 2134[label="xwv77 == xwv80",fontsize=16,color="magenta"];2134 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2135 -> 422[label="",style="dashed", color="red", weight=0]; 2135[label="xwv77 == xwv80",fontsize=16,color="magenta"];2135 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2135 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2136 -> 413[label="",style="dashed", color="red", weight=0]; 2136[label="xwv77 == xwv80",fontsize=16,color="magenta"];2136 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2136 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2137 -> 409[label="",style="dashed", color="red", weight=0]; 2137[label="xwv77 == xwv80",fontsize=16,color="magenta"];2137 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2137 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2138 -> 418[label="",style="dashed", color="red", weight=0]; 2138[label="xwv77 == xwv80",fontsize=16,color="magenta"];2138 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2138 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2348 -> 1184[label="",style="dashed", color="red", weight=0]; 2348[label="xwv78 == xwv81 && xwv79 <= xwv82",fontsize=16,color="magenta"];2348 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2349[label="xwv78 < xwv81",fontsize=16,color="blue",shape="box"];4494[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4494[label="",style="solid", color="blue", weight=9]; 4494 -> 2354[label="",style="solid", color="blue", weight=3]; 4495[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4495[label="",style="solid", color="blue", weight=9]; 4495 -> 2355[label="",style="solid", color="blue", weight=3]; 4496[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 2356[label="",style="solid", color="blue", weight=3]; 4497[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4497[label="",style="solid", color="blue", weight=9]; 4497 -> 2357[label="",style="solid", color="blue", weight=3]; 4498[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 2358[label="",style="solid", color="blue", weight=3]; 4499[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 2359[label="",style="solid", color="blue", weight=3]; 4500[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4500[label="",style="solid", color="blue", weight=9]; 4500 -> 2360[label="",style="solid", color="blue", weight=3]; 4501[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4501[label="",style="solid", color="blue", weight=9]; 4501 -> 2361[label="",style="solid", color="blue", weight=3]; 4502[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4502[label="",style="solid", color="blue", weight=9]; 4502 -> 2362[label="",style="solid", color="blue", weight=3]; 4503[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4503[label="",style="solid", color="blue", weight=9]; 4503 -> 2363[label="",style="solid", color="blue", weight=3]; 4504[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4504[label="",style="solid", color="blue", weight=9]; 4504 -> 2364[label="",style="solid", color="blue", weight=3]; 4505[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4505[label="",style="solid", color="blue", weight=9]; 4505 -> 2365[label="",style="solid", color="blue", weight=3]; 4506[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4506[label="",style="solid", color="blue", weight=9]; 4506 -> 2366[label="",style="solid", color="blue", weight=3]; 4507[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4507[label="",style="solid", color="blue", weight=9]; 4507 -> 2367[label="",style="solid", color="blue", weight=3]; 2347[label="xwv209 || xwv210",fontsize=16,color="burlywood",shape="triangle"];4508[label="xwv209/False",fontsize=10,color="white",style="solid",shape="box"];2347 -> 4508[label="",style="solid", color="burlywood", weight=9]; 4508 -> 2368[label="",style="solid", color="burlywood", weight=3]; 4509[label="xwv209/True",fontsize=10,color="white",style="solid",shape="box"];2347 -> 4509[label="",style="solid", color="burlywood", weight=9]; 4509 -> 2369[label="",style="solid", color="burlywood", weight=3]; 2141[label="compare1 (xwv179,xwv180,xwv181) (xwv182,xwv183,xwv184) xwv186",fontsize=16,color="burlywood",shape="triangle"];4510[label="xwv186/False",fontsize=10,color="white",style="solid",shape="box"];2141 -> 4510[label="",style="solid", color="burlywood", weight=9]; 4510 -> 2370[label="",style="solid", color="burlywood", weight=3]; 4511[label="xwv186/True",fontsize=10,color="white",style="solid",shape="box"];2141 -> 4511[label="",style="solid", color="burlywood", weight=9]; 4511 -> 2371[label="",style="solid", color="burlywood", weight=3]; 2142 -> 2141[label="",style="dashed", color="red", weight=0]; 2142[label="compare1 (xwv179,xwv180,xwv181) (xwv182,xwv183,xwv184) True",fontsize=16,color="magenta"];2142 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2143 -> 410[label="",style="dashed", color="red", weight=0]; 2143[label="xwv126 == xwv128",fontsize=16,color="magenta"];2143 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2143 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2144 -> 416[label="",style="dashed", color="red", weight=0]; 2144[label="xwv126 == xwv128",fontsize=16,color="magenta"];2144 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2144 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2145 -> 414[label="",style="dashed", color="red", weight=0]; 2145[label="xwv126 == xwv128",fontsize=16,color="magenta"];2145 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2145 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2146 -> 419[label="",style="dashed", color="red", weight=0]; 2146[label="xwv126 == xwv128",fontsize=16,color="magenta"];2146 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2146 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2147 -> 420[label="",style="dashed", color="red", weight=0]; 2147[label="xwv126 == xwv128",fontsize=16,color="magenta"];2147 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2147 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2148 -> 421[label="",style="dashed", color="red", weight=0]; 2148[label="xwv126 == xwv128",fontsize=16,color="magenta"];2148 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2148 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2149 -> 415[label="",style="dashed", color="red", weight=0]; 2149[label="xwv126 == xwv128",fontsize=16,color="magenta"];2149 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2150 -> 411[label="",style="dashed", color="red", weight=0]; 2150[label="xwv126 == xwv128",fontsize=16,color="magenta"];2150 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2150 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2151 -> 417[label="",style="dashed", color="red", weight=0]; 2151[label="xwv126 == xwv128",fontsize=16,color="magenta"];2151 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2151 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2152 -> 412[label="",style="dashed", color="red", weight=0]; 2152[label="xwv126 == xwv128",fontsize=16,color="magenta"];2152 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2152 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2153 -> 422[label="",style="dashed", color="red", weight=0]; 2153[label="xwv126 == xwv128",fontsize=16,color="magenta"];2153 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2153 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2154 -> 413[label="",style="dashed", color="red", weight=0]; 2154[label="xwv126 == xwv128",fontsize=16,color="magenta"];2154 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2154 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2155 -> 409[label="",style="dashed", color="red", weight=0]; 2155[label="xwv126 == xwv128",fontsize=16,color="magenta"];2155 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2156 -> 418[label="",style="dashed", color="red", weight=0]; 2156[label="xwv126 == xwv128",fontsize=16,color="magenta"];2156 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2156 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2157 -> 1870[label="",style="dashed", color="red", weight=0]; 2157[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2157 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2158 -> 1871[label="",style="dashed", color="red", weight=0]; 2158[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2158 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2159 -> 1872[label="",style="dashed", color="red", weight=0]; 2159[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2159 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2160 -> 1873[label="",style="dashed", color="red", weight=0]; 2160[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2160 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2161 -> 1874[label="",style="dashed", color="red", weight=0]; 2161[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2161 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2162 -> 1875[label="",style="dashed", color="red", weight=0]; 2162[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2162 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2163 -> 1876[label="",style="dashed", color="red", weight=0]; 2163[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2163 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2164 -> 1877[label="",style="dashed", color="red", weight=0]; 2164[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2164 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2164 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2165 -> 1878[label="",style="dashed", color="red", weight=0]; 2165[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2165 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2166 -> 1879[label="",style="dashed", color="red", weight=0]; 2166[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2166 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2167 -> 1880[label="",style="dashed", color="red", weight=0]; 2167[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2167 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2168 -> 1881[label="",style="dashed", color="red", weight=0]; 2168[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2168 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2169 -> 1882[label="",style="dashed", color="red", weight=0]; 2169[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2169 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2170 -> 1883[label="",style="dashed", color="red", weight=0]; 2170[label="xwv127 <= xwv129",fontsize=16,color="magenta"];2170 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2171[label="xwv128",fontsize=16,color="green",shape="box"];2172[label="xwv126",fontsize=16,color="green",shape="box"];2173[label="xwv128",fontsize=16,color="green",shape="box"];2174[label="xwv126",fontsize=16,color="green",shape="box"];2175[label="xwv128",fontsize=16,color="green",shape="box"];2176[label="xwv126",fontsize=16,color="green",shape="box"];2177[label="xwv128",fontsize=16,color="green",shape="box"];2178[label="xwv126",fontsize=16,color="green",shape="box"];2179[label="xwv128",fontsize=16,color="green",shape="box"];2180[label="xwv126",fontsize=16,color="green",shape="box"];2181[label="xwv128",fontsize=16,color="green",shape="box"];2182[label="xwv126",fontsize=16,color="green",shape="box"];2183[label="xwv128",fontsize=16,color="green",shape="box"];2184[label="xwv126",fontsize=16,color="green",shape="box"];2185[label="xwv128",fontsize=16,color="green",shape="box"];2186[label="xwv126",fontsize=16,color="green",shape="box"];2187[label="xwv128",fontsize=16,color="green",shape="box"];2188[label="xwv126",fontsize=16,color="green",shape="box"];2189[label="xwv128",fontsize=16,color="green",shape="box"];2190[label="xwv126",fontsize=16,color="green",shape="box"];2191[label="xwv128",fontsize=16,color="green",shape="box"];2192[label="xwv126",fontsize=16,color="green",shape="box"];2193[label="xwv128",fontsize=16,color="green",shape="box"];2194[label="xwv126",fontsize=16,color="green",shape="box"];2195[label="xwv128",fontsize=16,color="green",shape="box"];2196[label="xwv126",fontsize=16,color="green",shape="box"];2197[label="xwv128",fontsize=16,color="green",shape="box"];2198[label="xwv126",fontsize=16,color="green",shape="box"];2199[label="compare1 (xwv194,xwv195) (xwv196,xwv197) xwv199",fontsize=16,color="burlywood",shape="triangle"];4512[label="xwv199/False",fontsize=10,color="white",style="solid",shape="box"];2199 -> 4512[label="",style="solid", color="burlywood", weight=9]; 4512 -> 2429[label="",style="solid", color="burlywood", weight=3]; 4513[label="xwv199/True",fontsize=10,color="white",style="solid",shape="box"];2199 -> 4513[label="",style="solid", color="burlywood", weight=9]; 4513 -> 2430[label="",style="solid", color="burlywood", weight=3]; 2200 -> 2199[label="",style="dashed", color="red", weight=0]; 2200[label="compare1 (xwv194,xwv195) (xwv196,xwv197) True",fontsize=16,color="magenta"];2200 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2201[label="primMulNat (Succ xwv30000) (Succ xwv40100)",fontsize=16,color="black",shape="box"];2201 -> 2432[label="",style="solid", color="black", weight=3]; 2202[label="primMulNat (Succ xwv30000) Zero",fontsize=16,color="black",shape="box"];2202 -> 2433[label="",style="solid", color="black", weight=3]; 2203[label="primMulNat Zero (Succ xwv40100)",fontsize=16,color="black",shape="box"];2203 -> 2434[label="",style="solid", color="black", weight=3]; 2204[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2204 -> 2435[label="",style="solid", color="black", weight=3]; 2205[label="xwv99",fontsize=16,color="green",shape="box"];2206[label="xwv100",fontsize=16,color="green",shape="box"];2207[label="xwv99",fontsize=16,color="green",shape="box"];2208[label="xwv100",fontsize=16,color="green",shape="box"];2209[label="xwv99",fontsize=16,color="green",shape="box"];2210[label="xwv100",fontsize=16,color="green",shape="box"];2211[label="xwv99",fontsize=16,color="green",shape="box"];2212[label="xwv100",fontsize=16,color="green",shape="box"];2213[label="xwv99",fontsize=16,color="green",shape="box"];2214[label="xwv100",fontsize=16,color="green",shape="box"];2215[label="xwv99",fontsize=16,color="green",shape="box"];2216[label="xwv100",fontsize=16,color="green",shape="box"];2217[label="xwv99",fontsize=16,color="green",shape="box"];2218[label="xwv100",fontsize=16,color="green",shape="box"];2219[label="xwv99",fontsize=16,color="green",shape="box"];2220[label="xwv100",fontsize=16,color="green",shape="box"];2221[label="xwv99",fontsize=16,color="green",shape="box"];2222[label="xwv100",fontsize=16,color="green",shape="box"];2223[label="xwv99",fontsize=16,color="green",shape="box"];2224[label="xwv100",fontsize=16,color="green",shape="box"];2225[label="xwv99",fontsize=16,color="green",shape="box"];2226[label="xwv100",fontsize=16,color="green",shape="box"];2227[label="xwv99",fontsize=16,color="green",shape="box"];2228[label="xwv100",fontsize=16,color="green",shape="box"];2229[label="xwv99",fontsize=16,color="green",shape="box"];2230[label="xwv100",fontsize=16,color="green",shape="box"];2231[label="xwv99",fontsize=16,color="green",shape="box"];2232[label="xwv100",fontsize=16,color="green",shape="box"];2233[label="compare0 (Left xwv157) (Left xwv158) True",fontsize=16,color="black",shape="box"];2233 -> 2436[label="",style="solid", color="black", weight=3]; 2234[label="xwv106",fontsize=16,color="green",shape="box"];2235[label="xwv107",fontsize=16,color="green",shape="box"];2236[label="xwv106",fontsize=16,color="green",shape="box"];2237[label="xwv107",fontsize=16,color="green",shape="box"];2238[label="xwv106",fontsize=16,color="green",shape="box"];2239[label="xwv107",fontsize=16,color="green",shape="box"];2240[label="xwv106",fontsize=16,color="green",shape="box"];2241[label="xwv107",fontsize=16,color="green",shape="box"];2242[label="xwv106",fontsize=16,color="green",shape="box"];2243[label="xwv107",fontsize=16,color="green",shape="box"];2244[label="xwv106",fontsize=16,color="green",shape="box"];2245[label="xwv107",fontsize=16,color="green",shape="box"];2246[label="xwv106",fontsize=16,color="green",shape="box"];2247[label="xwv107",fontsize=16,color="green",shape="box"];2248[label="xwv106",fontsize=16,color="green",shape="box"];2249[label="xwv107",fontsize=16,color="green",shape="box"];2250[label="xwv106",fontsize=16,color="green",shape="box"];2251[label="xwv107",fontsize=16,color="green",shape="box"];2252[label="xwv106",fontsize=16,color="green",shape="box"];2253[label="xwv107",fontsize=16,color="green",shape="box"];2254[label="xwv106",fontsize=16,color="green",shape="box"];2255[label="xwv107",fontsize=16,color="green",shape="box"];2256[label="xwv106",fontsize=16,color="green",shape="box"];2257[label="xwv107",fontsize=16,color="green",shape="box"];2258[label="xwv106",fontsize=16,color="green",shape="box"];2259[label="xwv107",fontsize=16,color="green",shape="box"];2260[label="xwv106",fontsize=16,color="green",shape="box"];2261[label="xwv107",fontsize=16,color="green",shape="box"];2262[label="compare0 (Right xwv164) (Right xwv165) True",fontsize=16,color="black",shape="box"];2262 -> 2437[label="",style="solid", color="black", weight=3]; 2263[label="xwv3300",fontsize=16,color="green",shape="box"];2264[label="xwv2800",fontsize=16,color="green",shape="box"];2265[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];2266[label="FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=16,color="green",shape="box"];2267[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) otherwise",fontsize=16,color="black",shape="box"];2267 -> 2438[label="",style="solid", color="black", weight=3]; 2268 -> 82[label="",style="dashed", color="red", weight=0]; 2268[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2268 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2269[label="primPlusNat (Succ xwv16200) (Succ xwv13700)",fontsize=16,color="black",shape="box"];2269 -> 2443[label="",style="solid", color="black", weight=3]; 2270[label="primPlusNat (Succ xwv16200) Zero",fontsize=16,color="black",shape="box"];2270 -> 2444[label="",style="solid", color="black", weight=3]; 2271[label="primPlusNat Zero (Succ xwv13700)",fontsize=16,color="black",shape="box"];2271 -> 2445[label="",style="solid", color="black", weight=3]; 2272[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2272 -> 2446[label="",style="solid", color="black", weight=3]; 2273 -> 1584[label="",style="dashed", color="red", weight=0]; 2273[label="primMinusNat xwv16200 xwv13700",fontsize=16,color="magenta"];2273 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2274[label="Pos (Succ xwv16200)",fontsize=16,color="green",shape="box"];2275[label="Neg (Succ xwv13700)",fontsize=16,color="green",shape="box"];2276[label="Pos Zero",fontsize=16,color="green",shape="box"];2277[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];2277 -> 2449[label="",style="solid", color="black", weight=3]; 2278[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM xwv13 xwv14 xwv35 FiniteMap.EmptyFM xwv35 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2278 -> 2450[label="",style="solid", color="black", weight=3]; 2279[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];2279 -> 2451[label="",style="solid", color="black", weight=3]; 2281 -> 111[label="",style="dashed", color="red", weight=0]; 2281[label="FiniteMap.sizeFM xwv353 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2281 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2280[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 xwv201",fontsize=16,color="burlywood",shape="triangle"];4514[label="xwv201/False",fontsize=10,color="white",style="solid",shape="box"];2280 -> 4514[label="",style="solid", color="burlywood", weight=9]; 4514 -> 2454[label="",style="solid", color="burlywood", weight=3]; 4515[label="xwv201/True",fontsize=10,color="white",style="solid",shape="box"];2280 -> 4515[label="",style="solid", color="burlywood", weight=9]; 4515 -> 2455[label="",style="solid", color="burlywood", weight=3]; 2282 -> 1127[label="",style="dashed", color="red", weight=0]; 2282[label="FiniteMap.sizeFM xwv35",fontsize=16,color="magenta"];2283 -> 1549[label="",style="dashed", color="red", weight=0]; 2283[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35)",fontsize=16,color="magenta"];2283 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2285 -> 202[label="",style="dashed", color="red", weight=0]; 2285[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2285 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2284[label="xwv205 /= GT",fontsize=16,color="black",shape="triangle"];2284 -> 2460[label="",style="solid", color="black", weight=3]; 2286 -> 203[label="",style="dashed", color="red", weight=0]; 2286[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2286 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2293[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2293 -> 2463[label="",style="solid", color="black", weight=3]; 2294[label="Nothing <= Just xwv620",fontsize=16,color="black",shape="box"];2294 -> 2464[label="",style="solid", color="black", weight=3]; 2295[label="Just xwv610 <= Nothing",fontsize=16,color="black",shape="box"];2295 -> 2465[label="",style="solid", color="black", weight=3]; 2296[label="Just xwv610 <= Just xwv620",fontsize=16,color="black",shape="box"];2296 -> 2466[label="",style="solid", color="black", weight=3]; 2287 -> 205[label="",style="dashed", color="red", weight=0]; 2287[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2287 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2297[label="(xwv610,xwv611,xwv612) <= (xwv620,xwv621,xwv622)",fontsize=16,color="black",shape="box"];2297 -> 2469[label="",style="solid", color="black", weight=3]; 2298[label="LT <= LT",fontsize=16,color="black",shape="box"];2298 -> 2470[label="",style="solid", color="black", weight=3]; 2299[label="LT <= EQ",fontsize=16,color="black",shape="box"];2299 -> 2471[label="",style="solid", color="black", weight=3]; 2300[label="LT <= GT",fontsize=16,color="black",shape="box"];2300 -> 2472[label="",style="solid", color="black", weight=3]; 2301[label="EQ <= LT",fontsize=16,color="black",shape="box"];2301 -> 2473[label="",style="solid", color="black", weight=3]; 2302[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2302 -> 2474[label="",style="solid", color="black", weight=3]; 2303[label="EQ <= GT",fontsize=16,color="black",shape="box"];2303 -> 2475[label="",style="solid", color="black", weight=3]; 2304[label="GT <= LT",fontsize=16,color="black",shape="box"];2304 -> 2476[label="",style="solid", color="black", weight=3]; 2305[label="GT <= EQ",fontsize=16,color="black",shape="box"];2305 -> 2477[label="",style="solid", color="black", weight=3]; 2306[label="GT <= GT",fontsize=16,color="black",shape="box"];2306 -> 2478[label="",style="solid", color="black", weight=3]; 2288 -> 208[label="",style="dashed", color="red", weight=0]; 2288[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2288 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2289 -> 209[label="",style="dashed", color="red", weight=0]; 2289[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2289 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2307[label="False <= False",fontsize=16,color="black",shape="box"];2307 -> 2483[label="",style="solid", color="black", weight=3]; 2308[label="False <= True",fontsize=16,color="black",shape="box"];2308 -> 2484[label="",style="solid", color="black", weight=3]; 2309[label="True <= False",fontsize=16,color="black",shape="box"];2309 -> 2485[label="",style="solid", color="black", weight=3]; 2310[label="True <= True",fontsize=16,color="black",shape="box"];2310 -> 2486[label="",style="solid", color="black", weight=3]; 2290 -> 211[label="",style="dashed", color="red", weight=0]; 2290[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2290 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2311[label="(xwv610,xwv611) <= (xwv620,xwv621)",fontsize=16,color="black",shape="box"];2311 -> 2489[label="",style="solid", color="black", weight=3]; 2291 -> 213[label="",style="dashed", color="red", weight=0]; 2291[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2291 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2312[label="Left xwv610 <= Left xwv620",fontsize=16,color="black",shape="box"];2312 -> 2492[label="",style="solid", color="black", weight=3]; 2313[label="Left xwv610 <= Right xwv620",fontsize=16,color="black",shape="box"];2313 -> 2493[label="",style="solid", color="black", weight=3]; 2314[label="Right xwv610 <= Left xwv620",fontsize=16,color="black",shape="box"];2314 -> 2494[label="",style="solid", color="black", weight=3]; 2315[label="Right xwv610 <= Right xwv620",fontsize=16,color="black",shape="box"];2315 -> 2495[label="",style="solid", color="black", weight=3]; 2292 -> 215[label="",style="dashed", color="red", weight=0]; 2292[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2292 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2316[label="GT",fontsize=16,color="green",shape="box"];2317[label="xwv77",fontsize=16,color="green",shape="box"];2318[label="xwv80",fontsize=16,color="green",shape="box"];2319[label="xwv77",fontsize=16,color="green",shape="box"];2320[label="xwv80",fontsize=16,color="green",shape="box"];2321[label="xwv77",fontsize=16,color="green",shape="box"];2322[label="xwv80",fontsize=16,color="green",shape="box"];2323[label="xwv77",fontsize=16,color="green",shape="box"];2324[label="xwv80",fontsize=16,color="green",shape="box"];2325[label="xwv77",fontsize=16,color="green",shape="box"];2326[label="xwv80",fontsize=16,color="green",shape="box"];2327[label="xwv77",fontsize=16,color="green",shape="box"];2328[label="xwv80",fontsize=16,color="green",shape="box"];2329[label="xwv77",fontsize=16,color="green",shape="box"];2330[label="xwv80",fontsize=16,color="green",shape="box"];2331[label="xwv77",fontsize=16,color="green",shape="box"];2332[label="xwv80",fontsize=16,color="green",shape="box"];2333[label="xwv77",fontsize=16,color="green",shape="box"];2334[label="xwv80",fontsize=16,color="green",shape="box"];2335[label="xwv77",fontsize=16,color="green",shape="box"];2336[label="xwv80",fontsize=16,color="green",shape="box"];2337[label="xwv77",fontsize=16,color="green",shape="box"];2338[label="xwv80",fontsize=16,color="green",shape="box"];2339[label="xwv77",fontsize=16,color="green",shape="box"];2340[label="xwv80",fontsize=16,color="green",shape="box"];2341[label="xwv77",fontsize=16,color="green",shape="box"];2342[label="xwv80",fontsize=16,color="green",shape="box"];2343[label="xwv77",fontsize=16,color="green",shape="box"];2344[label="xwv80",fontsize=16,color="green",shape="box"];2352[label="xwv78 == xwv81",fontsize=16,color="blue",shape="box"];4516[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4516[label="",style="solid", color="blue", weight=9]; 4516 -> 2498[label="",style="solid", color="blue", weight=3]; 4517[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4517[label="",style="solid", color="blue", weight=9]; 4517 -> 2499[label="",style="solid", color="blue", weight=3]; 4518[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4518[label="",style="solid", color="blue", weight=9]; 4518 -> 2500[label="",style="solid", color="blue", weight=3]; 4519[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4519[label="",style="solid", color="blue", weight=9]; 4519 -> 2501[label="",style="solid", color="blue", weight=3]; 4520[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4520[label="",style="solid", color="blue", weight=9]; 4520 -> 2502[label="",style="solid", color="blue", weight=3]; 4521[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4521[label="",style="solid", color="blue", weight=9]; 4521 -> 2503[label="",style="solid", color="blue", weight=3]; 4522[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 2504[label="",style="solid", color="blue", weight=3]; 4523[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 2505[label="",style="solid", color="blue", weight=3]; 4524[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4524[label="",style="solid", color="blue", weight=9]; 4524 -> 2506[label="",style="solid", color="blue", weight=3]; 4525[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4525[label="",style="solid", color="blue", weight=9]; 4525 -> 2507[label="",style="solid", color="blue", weight=3]; 4526[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4526[label="",style="solid", color="blue", weight=9]; 4526 -> 2508[label="",style="solid", color="blue", weight=3]; 4527[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4527[label="",style="solid", color="blue", weight=9]; 4527 -> 2509[label="",style="solid", color="blue", weight=3]; 4528[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4528[label="",style="solid", color="blue", weight=9]; 4528 -> 2510[label="",style="solid", color="blue", weight=3]; 4529[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2352 -> 4529[label="",style="solid", color="blue", weight=9]; 4529 -> 2511[label="",style="solid", color="blue", weight=3]; 2353[label="xwv79 <= xwv82",fontsize=16,color="blue",shape="box"];4530[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4530[label="",style="solid", color="blue", weight=9]; 4530 -> 2512[label="",style="solid", color="blue", weight=3]; 4531[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4531[label="",style="solid", color="blue", weight=9]; 4531 -> 2513[label="",style="solid", color="blue", weight=3]; 4532[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4532[label="",style="solid", color="blue", weight=9]; 4532 -> 2514[label="",style="solid", color="blue", weight=3]; 4533[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4533[label="",style="solid", color="blue", weight=9]; 4533 -> 2515[label="",style="solid", color="blue", weight=3]; 4534[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4534[label="",style="solid", color="blue", weight=9]; 4534 -> 2516[label="",style="solid", color="blue", weight=3]; 4535[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 2517[label="",style="solid", color="blue", weight=3]; 4536[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 2518[label="",style="solid", color="blue", weight=3]; 4537[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 2519[label="",style="solid", color="blue", weight=3]; 4538[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 2520[label="",style="solid", color="blue", weight=3]; 4539[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 2521[label="",style="solid", color="blue", weight=3]; 4540[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 2522[label="",style="solid", color="blue", weight=3]; 4541[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 2523[label="",style="solid", color="blue", weight=3]; 4542[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 2524[label="",style="solid", color="blue", weight=3]; 4543[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2353 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 2525[label="",style="solid", color="blue", weight=3]; 2354 -> 102[label="",style="dashed", color="red", weight=0]; 2354[label="xwv78 < xwv81",fontsize=16,color="magenta"];2354 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2354 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2355 -> 103[label="",style="dashed", color="red", weight=0]; 2355[label="xwv78 < xwv81",fontsize=16,color="magenta"];2355 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2355 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2356 -> 104[label="",style="dashed", color="red", weight=0]; 2356[label="xwv78 < xwv81",fontsize=16,color="magenta"];2356 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2356 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2357 -> 105[label="",style="dashed", color="red", weight=0]; 2357[label="xwv78 < xwv81",fontsize=16,color="magenta"];2357 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2358 -> 106[label="",style="dashed", color="red", weight=0]; 2358[label="xwv78 < xwv81",fontsize=16,color="magenta"];2358 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2359 -> 107[label="",style="dashed", color="red", weight=0]; 2359[label="xwv78 < xwv81",fontsize=16,color="magenta"];2359 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2359 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2360 -> 108[label="",style="dashed", color="red", weight=0]; 2360[label="xwv78 < xwv81",fontsize=16,color="magenta"];2360 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2361 -> 109[label="",style="dashed", color="red", weight=0]; 2361[label="xwv78 < xwv81",fontsize=16,color="magenta"];2361 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2362 -> 110[label="",style="dashed", color="red", weight=0]; 2362[label="xwv78 < xwv81",fontsize=16,color="magenta"];2362 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2363 -> 111[label="",style="dashed", color="red", weight=0]; 2363[label="xwv78 < xwv81",fontsize=16,color="magenta"];2363 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2363 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2364 -> 112[label="",style="dashed", color="red", weight=0]; 2364[label="xwv78 < xwv81",fontsize=16,color="magenta"];2364 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2365 -> 113[label="",style="dashed", color="red", weight=0]; 2365[label="xwv78 < xwv81",fontsize=16,color="magenta"];2365 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2366 -> 114[label="",style="dashed", color="red", weight=0]; 2366[label="xwv78 < xwv81",fontsize=16,color="magenta"];2366 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2367 -> 115[label="",style="dashed", color="red", weight=0]; 2367[label="xwv78 < xwv81",fontsize=16,color="magenta"];2367 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2368[label="False || xwv210",fontsize=16,color="black",shape="box"];2368 -> 2554[label="",style="solid", color="black", weight=3]; 2369[label="True || xwv210",fontsize=16,color="black",shape="box"];2369 -> 2555[label="",style="solid", color="black", weight=3]; 2370[label="compare1 (xwv179,xwv180,xwv181) (xwv182,xwv183,xwv184) False",fontsize=16,color="black",shape="box"];2370 -> 2556[label="",style="solid", color="black", weight=3]; 2371[label="compare1 (xwv179,xwv180,xwv181) (xwv182,xwv183,xwv184) True",fontsize=16,color="black",shape="box"];2371 -> 2557[label="",style="solid", color="black", weight=3]; 2372[label="True",fontsize=16,color="green",shape="box"];2373[label="xwv126",fontsize=16,color="green",shape="box"];2374[label="xwv128",fontsize=16,color="green",shape="box"];2375[label="xwv126",fontsize=16,color="green",shape="box"];2376[label="xwv128",fontsize=16,color="green",shape="box"];2377[label="xwv126",fontsize=16,color="green",shape="box"];2378[label="xwv128",fontsize=16,color="green",shape="box"];2379[label="xwv126",fontsize=16,color="green",shape="box"];2380[label="xwv128",fontsize=16,color="green",shape="box"];2381[label="xwv126",fontsize=16,color="green",shape="box"];2382[label="xwv128",fontsize=16,color="green",shape="box"];2383[label="xwv126",fontsize=16,color="green",shape="box"];2384[label="xwv128",fontsize=16,color="green",shape="box"];2385[label="xwv126",fontsize=16,color="green",shape="box"];2386[label="xwv128",fontsize=16,color="green",shape="box"];2387[label="xwv126",fontsize=16,color="green",shape="box"];2388[label="xwv128",fontsize=16,color="green",shape="box"];2389[label="xwv126",fontsize=16,color="green",shape="box"];2390[label="xwv128",fontsize=16,color="green",shape="box"];2391[label="xwv126",fontsize=16,color="green",shape="box"];2392[label="xwv128",fontsize=16,color="green",shape="box"];2393[label="xwv126",fontsize=16,color="green",shape="box"];2394[label="xwv128",fontsize=16,color="green",shape="box"];2395[label="xwv126",fontsize=16,color="green",shape="box"];2396[label="xwv128",fontsize=16,color="green",shape="box"];2397[label="xwv126",fontsize=16,color="green",shape="box"];2398[label="xwv128",fontsize=16,color="green",shape="box"];2399[label="xwv126",fontsize=16,color="green",shape="box"];2400[label="xwv128",fontsize=16,color="green",shape="box"];2401[label="xwv127",fontsize=16,color="green",shape="box"];2402[label="xwv129",fontsize=16,color="green",shape="box"];2403[label="xwv127",fontsize=16,color="green",shape="box"];2404[label="xwv129",fontsize=16,color="green",shape="box"];2405[label="xwv127",fontsize=16,color="green",shape="box"];2406[label="xwv129",fontsize=16,color="green",shape="box"];2407[label="xwv127",fontsize=16,color="green",shape="box"];2408[label="xwv129",fontsize=16,color="green",shape="box"];2409[label="xwv127",fontsize=16,color="green",shape="box"];2410[label="xwv129",fontsize=16,color="green",shape="box"];2411[label="xwv127",fontsize=16,color="green",shape="box"];2412[label="xwv129",fontsize=16,color="green",shape="box"];2413[label="xwv127",fontsize=16,color="green",shape="box"];2414[label="xwv129",fontsize=16,color="green",shape="box"];2415[label="xwv127",fontsize=16,color="green",shape="box"];2416[label="xwv129",fontsize=16,color="green",shape="box"];2417[label="xwv127",fontsize=16,color="green",shape="box"];2418[label="xwv129",fontsize=16,color="green",shape="box"];2419[label="xwv127",fontsize=16,color="green",shape="box"];2420[label="xwv129",fontsize=16,color="green",shape="box"];2421[label="xwv127",fontsize=16,color="green",shape="box"];2422[label="xwv129",fontsize=16,color="green",shape="box"];2423[label="xwv127",fontsize=16,color="green",shape="box"];2424[label="xwv129",fontsize=16,color="green",shape="box"];2425[label="xwv127",fontsize=16,color="green",shape="box"];2426[label="xwv129",fontsize=16,color="green",shape="box"];2427[label="xwv127",fontsize=16,color="green",shape="box"];2428[label="xwv129",fontsize=16,color="green",shape="box"];2429[label="compare1 (xwv194,xwv195) (xwv196,xwv197) False",fontsize=16,color="black",shape="box"];2429 -> 2558[label="",style="solid", color="black", weight=3]; 2430[label="compare1 (xwv194,xwv195) (xwv196,xwv197) True",fontsize=16,color="black",shape="box"];2430 -> 2559[label="",style="solid", color="black", weight=3]; 2431[label="True",fontsize=16,color="green",shape="box"];2432 -> 1857[label="",style="dashed", color="red", weight=0]; 2432[label="primPlusNat (primMulNat xwv30000 (Succ xwv40100)) (Succ xwv40100)",fontsize=16,color="magenta"];2432 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2433[label="Zero",fontsize=16,color="green",shape="box"];2434[label="Zero",fontsize=16,color="green",shape="box"];2435[label="Zero",fontsize=16,color="green",shape="box"];2436[label="GT",fontsize=16,color="green",shape="box"];2437[label="GT",fontsize=16,color="green",shape="box"];2438[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) True",fontsize=16,color="black",shape="box"];2438 -> 2562[label="",style="solid", color="black", weight=3]; 2439[label="FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="black",shape="box"];2439 -> 2563[label="",style="solid", color="black", weight=3]; 2440[label="FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="black",shape="box"];2440 -> 2564[label="",style="solid", color="black", weight=3]; 2441[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];2442[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="burlywood",shape="triangle"];4544[label="xwv523/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4544[label="",style="solid", color="burlywood", weight=9]; 4544 -> 2565[label="",style="solid", color="burlywood", weight=3]; 4545[label="xwv523/FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4545[label="",style="solid", color="burlywood", weight=9]; 4545 -> 2566[label="",style="solid", color="burlywood", weight=3]; 2443[label="Succ (Succ (primPlusNat xwv16200 xwv13700))",fontsize=16,color="green",shape="box"];2443 -> 2567[label="",style="dashed", color="green", weight=3]; 2444[label="Succ xwv16200",fontsize=16,color="green",shape="box"];2445[label="Succ xwv13700",fontsize=16,color="green",shape="box"];2446[label="Zero",fontsize=16,color="green",shape="box"];2447[label="xwv16200",fontsize=16,color="green",shape="box"];2448[label="xwv13700",fontsize=16,color="green",shape="box"];2449[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];2449 -> 2568[label="",style="solid", color="black", weight=3]; 2450[label="error []",fontsize=16,color="red",shape="box"];2451[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];2451 -> 2569[label="",style="solid", color="black", weight=3]; 2452 -> 473[label="",style="dashed", color="red", weight=0]; 2452[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2452 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2453 -> 1127[label="",style="dashed", color="red", weight=0]; 2453[label="FiniteMap.sizeFM xwv353",fontsize=16,color="magenta"];2453 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2454[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 False",fontsize=16,color="black",shape="box"];2454 -> 2573[label="",style="solid", color="black", weight=3]; 2455[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 True",fontsize=16,color="black",shape="box"];2455 -> 2574[label="",style="solid", color="black", weight=3]; 2456[label="FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35",fontsize=16,color="black",shape="box"];2456 -> 2575[label="",style="solid", color="black", weight=3]; 2457[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2458[label="xwv62",fontsize=16,color="green",shape="box"];2459[label="xwv61",fontsize=16,color="green",shape="box"];2460 -> 2576[label="",style="dashed", color="red", weight=0]; 2460[label="not (xwv205 == GT)",fontsize=16,color="magenta"];2460 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2461[label="xwv62",fontsize=16,color="green",shape="box"];2462[label="xwv61",fontsize=16,color="green",shape="box"];2463[label="True",fontsize=16,color="green",shape="box"];2464[label="True",fontsize=16,color="green",shape="box"];2465[label="False",fontsize=16,color="green",shape="box"];2466[label="xwv610 <= xwv620",fontsize=16,color="blue",shape="box"];4546[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4546[label="",style="solid", color="blue", weight=9]; 4546 -> 2578[label="",style="solid", color="blue", weight=3]; 4547[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4547[label="",style="solid", color="blue", weight=9]; 4547 -> 2579[label="",style="solid", color="blue", weight=3]; 4548[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4548[label="",style="solid", color="blue", weight=9]; 4548 -> 2580[label="",style="solid", color="blue", weight=3]; 4549[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4549[label="",style="solid", color="blue", weight=9]; 4549 -> 2581[label="",style="solid", color="blue", weight=3]; 4550[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4550[label="",style="solid", color="blue", weight=9]; 4550 -> 2582[label="",style="solid", color="blue", weight=3]; 4551[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4551[label="",style="solid", color="blue", weight=9]; 4551 -> 2583[label="",style="solid", color="blue", weight=3]; 4552[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4552[label="",style="solid", color="blue", weight=9]; 4552 -> 2584[label="",style="solid", color="blue", weight=3]; 4553[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4553[label="",style="solid", color="blue", weight=9]; 4553 -> 2585[label="",style="solid", color="blue", weight=3]; 4554[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4554[label="",style="solid", color="blue", weight=9]; 4554 -> 2586[label="",style="solid", color="blue", weight=3]; 4555[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4555[label="",style="solid", color="blue", weight=9]; 4555 -> 2587[label="",style="solid", color="blue", weight=3]; 4556[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4556[label="",style="solid", color="blue", weight=9]; 4556 -> 2588[label="",style="solid", color="blue", weight=3]; 4557[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4557[label="",style="solid", color="blue", weight=9]; 4557 -> 2589[label="",style="solid", color="blue", weight=3]; 4558[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4558[label="",style="solid", color="blue", weight=9]; 4558 -> 2590[label="",style="solid", color="blue", weight=3]; 4559[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2466 -> 4559[label="",style="solid", color="blue", weight=9]; 4559 -> 2591[label="",style="solid", color="blue", weight=3]; 2467[label="xwv62",fontsize=16,color="green",shape="box"];2468[label="xwv61",fontsize=16,color="green",shape="box"];2469 -> 2347[label="",style="dashed", color="red", weight=0]; 2469[label="xwv610 < xwv620 || xwv610 == xwv620 && (xwv611 < xwv621 || xwv611 == xwv621 && xwv612 <= xwv622)",fontsize=16,color="magenta"];2469 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2470[label="True",fontsize=16,color="green",shape="box"];2471[label="True",fontsize=16,color="green",shape="box"];2472[label="True",fontsize=16,color="green",shape="box"];2473[label="False",fontsize=16,color="green",shape="box"];2474[label="True",fontsize=16,color="green",shape="box"];2475[label="True",fontsize=16,color="green",shape="box"];2476[label="False",fontsize=16,color="green",shape="box"];2477[label="False",fontsize=16,color="green",shape="box"];2478[label="True",fontsize=16,color="green",shape="box"];2479[label="xwv62",fontsize=16,color="green",shape="box"];2480[label="xwv61",fontsize=16,color="green",shape="box"];2481[label="xwv62",fontsize=16,color="green",shape="box"];2482[label="xwv61",fontsize=16,color="green",shape="box"];2483[label="True",fontsize=16,color="green",shape="box"];2484[label="True",fontsize=16,color="green",shape="box"];2485[label="False",fontsize=16,color="green",shape="box"];2486[label="True",fontsize=16,color="green",shape="box"];2487[label="xwv62",fontsize=16,color="green",shape="box"];2488[label="xwv61",fontsize=16,color="green",shape="box"];2489 -> 2347[label="",style="dashed", color="red", weight=0]; 2489[label="xwv610 < xwv620 || xwv610 == xwv620 && xwv611 <= xwv621",fontsize=16,color="magenta"];2489 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2490[label="xwv62",fontsize=16,color="green",shape="box"];2491[label="xwv61",fontsize=16,color="green",shape="box"];2492[label="xwv610 <= xwv620",fontsize=16,color="blue",shape="box"];4560[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4560[label="",style="solid", color="blue", weight=9]; 4560 -> 2596[label="",style="solid", color="blue", weight=3]; 4561[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4561[label="",style="solid", color="blue", weight=9]; 4561 -> 2597[label="",style="solid", color="blue", weight=3]; 4562[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4562[label="",style="solid", color="blue", weight=9]; 4562 -> 2598[label="",style="solid", color="blue", weight=3]; 4563[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4563[label="",style="solid", color="blue", weight=9]; 4563 -> 2599[label="",style="solid", color="blue", weight=3]; 4564[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4564[label="",style="solid", color="blue", weight=9]; 4564 -> 2600[label="",style="solid", color="blue", weight=3]; 4565[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4565[label="",style="solid", color="blue", weight=9]; 4565 -> 2601[label="",style="solid", color="blue", weight=3]; 4566[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4566[label="",style="solid", color="blue", weight=9]; 4566 -> 2602[label="",style="solid", color="blue", weight=3]; 4567[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4567[label="",style="solid", color="blue", weight=9]; 4567 -> 2603[label="",style="solid", color="blue", weight=3]; 4568[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4568[label="",style="solid", color="blue", weight=9]; 4568 -> 2604[label="",style="solid", color="blue", weight=3]; 4569[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4569[label="",style="solid", color="blue", weight=9]; 4569 -> 2605[label="",style="solid", color="blue", weight=3]; 4570[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4570[label="",style="solid", color="blue", weight=9]; 4570 -> 2606[label="",style="solid", color="blue", weight=3]; 4571[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4571[label="",style="solid", color="blue", weight=9]; 4571 -> 2607[label="",style="solid", color="blue", weight=3]; 4572[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 2608[label="",style="solid", color="blue", weight=3]; 4573[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2492 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 2609[label="",style="solid", color="blue", weight=3]; 2493[label="True",fontsize=16,color="green",shape="box"];2494[label="False",fontsize=16,color="green",shape="box"];2495[label="xwv610 <= xwv620",fontsize=16,color="blue",shape="box"];4574[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 2610[label="",style="solid", color="blue", weight=3]; 4575[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4575[label="",style="solid", color="blue", weight=9]; 4575 -> 2611[label="",style="solid", color="blue", weight=3]; 4576[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4576[label="",style="solid", color="blue", weight=9]; 4576 -> 2612[label="",style="solid", color="blue", weight=3]; 4577[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 2613[label="",style="solid", color="blue", weight=3]; 4578[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 2614[label="",style="solid", color="blue", weight=3]; 4579[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 2615[label="",style="solid", color="blue", weight=3]; 4580[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 2616[label="",style="solid", color="blue", weight=3]; 4581[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 2617[label="",style="solid", color="blue", weight=3]; 4582[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 2618[label="",style="solid", color="blue", weight=3]; 4583[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 2619[label="",style="solid", color="blue", weight=3]; 4584[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 2620[label="",style="solid", color="blue", weight=3]; 4585[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 2621[label="",style="solid", color="blue", weight=3]; 4586[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 2622[label="",style="solid", color="blue", weight=3]; 4587[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 2623[label="",style="solid", color="blue", weight=3]; 2496[label="xwv62",fontsize=16,color="green",shape="box"];2497[label="xwv61",fontsize=16,color="green",shape="box"];2498 -> 410[label="",style="dashed", color="red", weight=0]; 2498[label="xwv78 == xwv81",fontsize=16,color="magenta"];2498 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2499 -> 416[label="",style="dashed", color="red", weight=0]; 2499[label="xwv78 == xwv81",fontsize=16,color="magenta"];2499 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2500 -> 414[label="",style="dashed", color="red", weight=0]; 2500[label="xwv78 == xwv81",fontsize=16,color="magenta"];2500 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2500 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2501 -> 419[label="",style="dashed", color="red", weight=0]; 2501[label="xwv78 == xwv81",fontsize=16,color="magenta"];2501 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2501 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2502 -> 420[label="",style="dashed", color="red", weight=0]; 2502[label="xwv78 == xwv81",fontsize=16,color="magenta"];2502 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2502 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2503 -> 421[label="",style="dashed", color="red", weight=0]; 2503[label="xwv78 == xwv81",fontsize=16,color="magenta"];2503 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2503 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2504 -> 415[label="",style="dashed", color="red", weight=0]; 2504[label="xwv78 == xwv81",fontsize=16,color="magenta"];2504 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2504 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2505 -> 411[label="",style="dashed", color="red", weight=0]; 2505[label="xwv78 == xwv81",fontsize=16,color="magenta"];2505 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2506 -> 417[label="",style="dashed", color="red", weight=0]; 2506[label="xwv78 == xwv81",fontsize=16,color="magenta"];2506 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2506 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2507 -> 412[label="",style="dashed", color="red", weight=0]; 2507[label="xwv78 == xwv81",fontsize=16,color="magenta"];2507 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2508 -> 422[label="",style="dashed", color="red", weight=0]; 2508[label="xwv78 == xwv81",fontsize=16,color="magenta"];2508 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2509 -> 413[label="",style="dashed", color="red", weight=0]; 2509[label="xwv78 == xwv81",fontsize=16,color="magenta"];2509 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2510 -> 409[label="",style="dashed", color="red", weight=0]; 2510[label="xwv78 == xwv81",fontsize=16,color="magenta"];2510 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2511 -> 418[label="",style="dashed", color="red", weight=0]; 2511[label="xwv78 == xwv81",fontsize=16,color="magenta"];2511 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2512 -> 1870[label="",style="dashed", color="red", weight=0]; 2512[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2512 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2513 -> 1871[label="",style="dashed", color="red", weight=0]; 2513[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2513 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2514 -> 1872[label="",style="dashed", color="red", weight=0]; 2514[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2514 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2515 -> 1873[label="",style="dashed", color="red", weight=0]; 2515[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2515 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2516 -> 1874[label="",style="dashed", color="red", weight=0]; 2516[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2516 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2517 -> 1875[label="",style="dashed", color="red", weight=0]; 2517[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2517 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2518 -> 1876[label="",style="dashed", color="red", weight=0]; 2518[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2518 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2519 -> 1877[label="",style="dashed", color="red", weight=0]; 2519[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2519 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2520 -> 1878[label="",style="dashed", color="red", weight=0]; 2520[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2520 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2521 -> 1879[label="",style="dashed", color="red", weight=0]; 2521[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2521 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2522 -> 1880[label="",style="dashed", color="red", weight=0]; 2522[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2522 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2523 -> 1881[label="",style="dashed", color="red", weight=0]; 2523[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2523 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2524 -> 1882[label="",style="dashed", color="red", weight=0]; 2524[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2524 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2525 -> 1883[label="",style="dashed", color="red", weight=0]; 2525[label="xwv79 <= xwv82",fontsize=16,color="magenta"];2525 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2526[label="xwv81",fontsize=16,color="green",shape="box"];2527[label="xwv78",fontsize=16,color="green",shape="box"];2528[label="xwv81",fontsize=16,color="green",shape="box"];2529[label="xwv78",fontsize=16,color="green",shape="box"];2530[label="xwv81",fontsize=16,color="green",shape="box"];2531[label="xwv78",fontsize=16,color="green",shape="box"];2532[label="xwv81",fontsize=16,color="green",shape="box"];2533[label="xwv78",fontsize=16,color="green",shape="box"];2534[label="xwv81",fontsize=16,color="green",shape="box"];2535[label="xwv78",fontsize=16,color="green",shape="box"];2536[label="xwv81",fontsize=16,color="green",shape="box"];2537[label="xwv78",fontsize=16,color="green",shape="box"];2538[label="xwv81",fontsize=16,color="green",shape="box"];2539[label="xwv78",fontsize=16,color="green",shape="box"];2540[label="xwv81",fontsize=16,color="green",shape="box"];2541[label="xwv78",fontsize=16,color="green",shape="box"];2542[label="xwv81",fontsize=16,color="green",shape="box"];2543[label="xwv78",fontsize=16,color="green",shape="box"];2544[label="xwv81",fontsize=16,color="green",shape="box"];2545[label="xwv78",fontsize=16,color="green",shape="box"];2546[label="xwv81",fontsize=16,color="green",shape="box"];2547[label="xwv78",fontsize=16,color="green",shape="box"];2548[label="xwv81",fontsize=16,color="green",shape="box"];2549[label="xwv78",fontsize=16,color="green",shape="box"];2550[label="xwv81",fontsize=16,color="green",shape="box"];2551[label="xwv78",fontsize=16,color="green",shape="box"];2552[label="xwv81",fontsize=16,color="green",shape="box"];2553[label="xwv78",fontsize=16,color="green",shape="box"];2554[label="xwv210",fontsize=16,color="green",shape="box"];2555[label="True",fontsize=16,color="green",shape="box"];2556[label="compare0 (xwv179,xwv180,xwv181) (xwv182,xwv183,xwv184) otherwise",fontsize=16,color="black",shape="box"];2556 -> 2680[label="",style="solid", color="black", weight=3]; 2557[label="LT",fontsize=16,color="green",shape="box"];2558[label="compare0 (xwv194,xwv195) (xwv196,xwv197) otherwise",fontsize=16,color="black",shape="box"];2558 -> 2681[label="",style="solid", color="black", weight=3]; 2559[label="LT",fontsize=16,color="green",shape="box"];2560 -> 1656[label="",style="dashed", color="red", weight=0]; 2560[label="primMulNat xwv30000 (Succ xwv40100)",fontsize=16,color="magenta"];2560 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2560 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2561[label="Succ xwv40100",fontsize=16,color="green",shape="box"];2562 -> 82[label="",style="dashed", color="red", weight=0]; 2562[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="magenta"];2562 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2562 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2562 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2562 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2563[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="black",shape="box"];2563 -> 2688[label="",style="solid", color="black", weight=3]; 2564[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="black",shape="box"];2564 -> 2689[label="",style="solid", color="black", weight=3]; 2565[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 FiniteMap.EmptyFM xwv524)",fontsize=16,color="black",shape="box"];2565 -> 2690[label="",style="solid", color="black", weight=3]; 2566[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234) xwv524)",fontsize=16,color="black",shape="box"];2566 -> 2691[label="",style="solid", color="black", weight=3]; 2567 -> 1857[label="",style="dashed", color="red", weight=0]; 2567[label="primPlusNat xwv16200 xwv13700",fontsize=16,color="magenta"];2567 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2568 -> 628[label="",style="dashed", color="red", weight=0]; 2568[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];2569 -> 2694[label="",style="dashed", color="red", weight=0]; 2569[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 (FiniteMap.sizeFM xwv164 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163)",fontsize=16,color="magenta"];2569 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2570[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2571 -> 1127[label="",style="dashed", color="red", weight=0]; 2571[label="FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2571 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2572[label="xwv353",fontsize=16,color="green",shape="box"];2573[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 otherwise",fontsize=16,color="black",shape="box"];2573 -> 2697[label="",style="solid", color="black", weight=3]; 2574[label="FiniteMap.mkBalBranch6Single_L xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];2574 -> 2698[label="",style="solid", color="black", weight=3]; 2575 -> 1127[label="",style="dashed", color="red", weight=0]; 2575[label="FiniteMap.sizeFM xwv16",fontsize=16,color="magenta"];2575 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2577 -> 421[label="",style="dashed", color="red", weight=0]; 2577[label="xwv205 == GT",fontsize=16,color="magenta"];2577 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2576[label="not xwv211",fontsize=16,color="burlywood",shape="triangle"];4588[label="xwv211/False",fontsize=10,color="white",style="solid",shape="box"];2576 -> 4588[label="",style="solid", color="burlywood", weight=9]; 4588 -> 2702[label="",style="solid", color="burlywood", weight=3]; 4589[label="xwv211/True",fontsize=10,color="white",style="solid",shape="box"];2576 -> 4589[label="",style="solid", color="burlywood", weight=9]; 4589 -> 2703[label="",style="solid", color="burlywood", weight=3]; 2578 -> 1870[label="",style="dashed", color="red", weight=0]; 2578[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2578 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2579 -> 1871[label="",style="dashed", color="red", weight=0]; 2579[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2579 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2580 -> 1872[label="",style="dashed", color="red", weight=0]; 2580[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2580 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2581 -> 1873[label="",style="dashed", color="red", weight=0]; 2581[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2581 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2582 -> 1874[label="",style="dashed", color="red", weight=0]; 2582[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2582 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2583 -> 1875[label="",style="dashed", color="red", weight=0]; 2583[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2583 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2583 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2584 -> 1876[label="",style="dashed", color="red", weight=0]; 2584[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2584 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2585 -> 1877[label="",style="dashed", color="red", weight=0]; 2585[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2585 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2585 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2586 -> 1878[label="",style="dashed", color="red", weight=0]; 2586[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2586 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2587 -> 1879[label="",style="dashed", color="red", weight=0]; 2587[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2587 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2588 -> 1880[label="",style="dashed", color="red", weight=0]; 2588[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2588 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2589 -> 1881[label="",style="dashed", color="red", weight=0]; 2589[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2589 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2590 -> 1882[label="",style="dashed", color="red", weight=0]; 2590[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2590 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2590 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2591 -> 1883[label="",style="dashed", color="red", weight=0]; 2591[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2591 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2591 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2592 -> 1184[label="",style="dashed", color="red", weight=0]; 2592[label="xwv610 == xwv620 && (xwv611 < xwv621 || xwv611 == xwv621 && xwv612 <= xwv622)",fontsize=16,color="magenta"];2592 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2592 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2593[label="xwv610 < xwv620",fontsize=16,color="blue",shape="box"];4590[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 2734[label="",style="solid", color="blue", weight=3]; 4591[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 2735[label="",style="solid", color="blue", weight=3]; 4592[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 2736[label="",style="solid", color="blue", weight=3]; 4593[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 2737[label="",style="solid", color="blue", weight=3]; 4594[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 2738[label="",style="solid", color="blue", weight=3]; 4595[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 2739[label="",style="solid", color="blue", weight=3]; 4596[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 2740[label="",style="solid", color="blue", weight=3]; 4597[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 2741[label="",style="solid", color="blue", weight=3]; 4598[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 2742[label="",style="solid", color="blue", weight=3]; 4599[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 2743[label="",style="solid", color="blue", weight=3]; 4600[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 2744[label="",style="solid", color="blue", weight=3]; 4601[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 2745[label="",style="solid", color="blue", weight=3]; 4602[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 2746[label="",style="solid", color="blue", weight=3]; 4603[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2593 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 2747[label="",style="solid", color="blue", weight=3]; 2594 -> 1184[label="",style="dashed", color="red", weight=0]; 2594[label="xwv610 == xwv620 && xwv611 <= xwv621",fontsize=16,color="magenta"];2594 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2594 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2595[label="xwv610 < xwv620",fontsize=16,color="blue",shape="box"];4604[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 2750[label="",style="solid", color="blue", weight=3]; 4605[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 2751[label="",style="solid", color="blue", weight=3]; 4606[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4606[label="",style="solid", color="blue", weight=9]; 4606 -> 2752[label="",style="solid", color="blue", weight=3]; 4607[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4607[label="",style="solid", color="blue", weight=9]; 4607 -> 2753[label="",style="solid", color="blue", weight=3]; 4608[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4608[label="",style="solid", color="blue", weight=9]; 4608 -> 2754[label="",style="solid", color="blue", weight=3]; 4609[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4609[label="",style="solid", color="blue", weight=9]; 4609 -> 2755[label="",style="solid", color="blue", weight=3]; 4610[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4610[label="",style="solid", color="blue", weight=9]; 4610 -> 2756[label="",style="solid", color="blue", weight=3]; 4611[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4611[label="",style="solid", color="blue", weight=9]; 4611 -> 2757[label="",style="solid", color="blue", weight=3]; 4612[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4612[label="",style="solid", color="blue", weight=9]; 4612 -> 2758[label="",style="solid", color="blue", weight=3]; 4613[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4613[label="",style="solid", color="blue", weight=9]; 4613 -> 2759[label="",style="solid", color="blue", weight=3]; 4614[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4614[label="",style="solid", color="blue", weight=9]; 4614 -> 2760[label="",style="solid", color="blue", weight=3]; 4615[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4615[label="",style="solid", color="blue", weight=9]; 4615 -> 2761[label="",style="solid", color="blue", weight=3]; 4616[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4616[label="",style="solid", color="blue", weight=9]; 4616 -> 2762[label="",style="solid", color="blue", weight=3]; 4617[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2595 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 2763[label="",style="solid", color="blue", weight=3]; 2596 -> 1870[label="",style="dashed", color="red", weight=0]; 2596[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2596 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2597 -> 1871[label="",style="dashed", color="red", weight=0]; 2597[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2597 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2598 -> 1872[label="",style="dashed", color="red", weight=0]; 2598[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2598 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2599 -> 1873[label="",style="dashed", color="red", weight=0]; 2599[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2599 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2600 -> 1874[label="",style="dashed", color="red", weight=0]; 2600[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2600 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2601 -> 1875[label="",style="dashed", color="red", weight=0]; 2601[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2601 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2601 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2602 -> 1876[label="",style="dashed", color="red", weight=0]; 2602[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2602 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2602 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2603 -> 1877[label="",style="dashed", color="red", weight=0]; 2603[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2603 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2603 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2604 -> 1878[label="",style="dashed", color="red", weight=0]; 2604[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2604 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2605 -> 1879[label="",style="dashed", color="red", weight=0]; 2605[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2605 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2605 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2606 -> 1880[label="",style="dashed", color="red", weight=0]; 2606[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2606 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2607 -> 1881[label="",style="dashed", color="red", weight=0]; 2607[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2607 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2607 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2608 -> 1882[label="",style="dashed", color="red", weight=0]; 2608[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2608 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2609 -> 1883[label="",style="dashed", color="red", weight=0]; 2609[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2609 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2609 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2610 -> 1870[label="",style="dashed", color="red", weight=0]; 2610[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2610 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2611 -> 1871[label="",style="dashed", color="red", weight=0]; 2611[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2611 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2612 -> 1872[label="",style="dashed", color="red", weight=0]; 2612[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2612 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2613 -> 1873[label="",style="dashed", color="red", weight=0]; 2613[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2613 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2614 -> 1874[label="",style="dashed", color="red", weight=0]; 2614[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2614 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2615 -> 1875[label="",style="dashed", color="red", weight=0]; 2615[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2615 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2616 -> 1876[label="",style="dashed", color="red", weight=0]; 2616[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2616 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2617 -> 1877[label="",style="dashed", color="red", weight=0]; 2617[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2617 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2618 -> 1878[label="",style="dashed", color="red", weight=0]; 2618[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2618 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2619 -> 1879[label="",style="dashed", color="red", weight=0]; 2619[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2619 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2620 -> 1880[label="",style="dashed", color="red", weight=0]; 2620[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2620 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2621 -> 1881[label="",style="dashed", color="red", weight=0]; 2621[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2621 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2622 -> 1882[label="",style="dashed", color="red", weight=0]; 2622[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2622 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2623 -> 1883[label="",style="dashed", color="red", weight=0]; 2623[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2623 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2624[label="xwv78",fontsize=16,color="green",shape="box"];2625[label="xwv81",fontsize=16,color="green",shape="box"];2626[label="xwv78",fontsize=16,color="green",shape="box"];2627[label="xwv81",fontsize=16,color="green",shape="box"];2628[label="xwv78",fontsize=16,color="green",shape="box"];2629[label="xwv81",fontsize=16,color="green",shape="box"];2630[label="xwv78",fontsize=16,color="green",shape="box"];2631[label="xwv81",fontsize=16,color="green",shape="box"];2632[label="xwv78",fontsize=16,color="green",shape="box"];2633[label="xwv81",fontsize=16,color="green",shape="box"];2634[label="xwv78",fontsize=16,color="green",shape="box"];2635[label="xwv81",fontsize=16,color="green",shape="box"];2636[label="xwv78",fontsize=16,color="green",shape="box"];2637[label="xwv81",fontsize=16,color="green",shape="box"];2638[label="xwv78",fontsize=16,color="green",shape="box"];2639[label="xwv81",fontsize=16,color="green",shape="box"];2640[label="xwv78",fontsize=16,color="green",shape="box"];2641[label="xwv81",fontsize=16,color="green",shape="box"];2642[label="xwv78",fontsize=16,color="green",shape="box"];2643[label="xwv81",fontsize=16,color="green",shape="box"];2644[label="xwv78",fontsize=16,color="green",shape="box"];2645[label="xwv81",fontsize=16,color="green",shape="box"];2646[label="xwv78",fontsize=16,color="green",shape="box"];2647[label="xwv81",fontsize=16,color="green",shape="box"];2648[label="xwv78",fontsize=16,color="green",shape="box"];2649[label="xwv81",fontsize=16,color="green",shape="box"];2650[label="xwv78",fontsize=16,color="green",shape="box"];2651[label="xwv81",fontsize=16,color="green",shape="box"];2652[label="xwv79",fontsize=16,color="green",shape="box"];2653[label="xwv82",fontsize=16,color="green",shape="box"];2654[label="xwv79",fontsize=16,color="green",shape="box"];2655[label="xwv82",fontsize=16,color="green",shape="box"];2656[label="xwv79",fontsize=16,color="green",shape="box"];2657[label="xwv82",fontsize=16,color="green",shape="box"];2658[label="xwv79",fontsize=16,color="green",shape="box"];2659[label="xwv82",fontsize=16,color="green",shape="box"];2660[label="xwv79",fontsize=16,color="green",shape="box"];2661[label="xwv82",fontsize=16,color="green",shape="box"];2662[label="xwv79",fontsize=16,color="green",shape="box"];2663[label="xwv82",fontsize=16,color="green",shape="box"];2664[label="xwv79",fontsize=16,color="green",shape="box"];2665[label="xwv82",fontsize=16,color="green",shape="box"];2666[label="xwv79",fontsize=16,color="green",shape="box"];2667[label="xwv82",fontsize=16,color="green",shape="box"];2668[label="xwv79",fontsize=16,color="green",shape="box"];2669[label="xwv82",fontsize=16,color="green",shape="box"];2670[label="xwv79",fontsize=16,color="green",shape="box"];2671[label="xwv82",fontsize=16,color="green",shape="box"];2672[label="xwv79",fontsize=16,color="green",shape="box"];2673[label="xwv82",fontsize=16,color="green",shape="box"];2674[label="xwv79",fontsize=16,color="green",shape="box"];2675[label="xwv82",fontsize=16,color="green",shape="box"];2676[label="xwv79",fontsize=16,color="green",shape="box"];2677[label="xwv82",fontsize=16,color="green",shape="box"];2678[label="xwv79",fontsize=16,color="green",shape="box"];2679[label="xwv82",fontsize=16,color="green",shape="box"];2680[label="compare0 (xwv179,xwv180,xwv181) (xwv182,xwv183,xwv184) True",fontsize=16,color="black",shape="box"];2680 -> 2820[label="",style="solid", color="black", weight=3]; 2681[label="compare0 (xwv194,xwv195) (xwv196,xwv197) True",fontsize=16,color="black",shape="box"];2681 -> 2821[label="",style="solid", color="black", weight=3]; 2682[label="Succ xwv40100",fontsize=16,color="green",shape="box"];2683[label="xwv30000",fontsize=16,color="green",shape="box"];2684[label="FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="black",shape="box"];2684 -> 2822[label="",style="solid", color="black", weight=3]; 2685[label="FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="black",shape="box"];2685 -> 2823[label="",style="solid", color="black", weight=3]; 2686[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="burlywood",shape="triangle"];4618[label="xwv514/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2686 -> 4618[label="",style="solid", color="burlywood", weight=9]; 4618 -> 2824[label="",style="solid", color="burlywood", weight=3]; 4619[label="xwv514/FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144",fontsize=10,color="white",style="solid",shape="box"];2686 -> 4619[label="",style="solid", color="burlywood", weight=9]; 4619 -> 2825[label="",style="solid", color="burlywood", weight=3]; 2687[label="FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=16,color="green",shape="box"];2688 -> 3368[label="",style="dashed", color="red", weight=0]; 2688[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.findMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2688 -> 3369[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3370[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3371[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3372[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3373[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3374[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3375[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3376[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3377[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3378[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3379[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3380[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3381[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3382[label="",style="dashed", color="magenta", weight=3]; 2688 -> 3383[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3462[label="",style="dashed", color="red", weight=0]; 2689[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.findMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2689 -> 3463[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3464[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3465[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3466[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3467[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3468[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3469[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3470[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3471[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3472[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3473[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3474[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3475[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3476[label="",style="dashed", color="magenta", weight=3]; 2689 -> 3477[label="",style="dashed", color="magenta", weight=3]; 2690[label="xwv524",fontsize=16,color="green",shape="box"];2691 -> 82[label="",style="dashed", color="red", weight=0]; 2691[label="FiniteMap.mkBalBranch xwv520 xwv521 (FiniteMap.deleteMin (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234)) xwv524",fontsize=16,color="magenta"];2691 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2692[label="xwv16200",fontsize=16,color="green",shape="box"];2693[label="xwv13700",fontsize=16,color="green",shape="box"];2695 -> 111[label="",style="dashed", color="red", weight=0]; 2695[label="FiniteMap.sizeFM xwv164 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2695 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2694[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 xwv212",fontsize=16,color="burlywood",shape="triangle"];4620[label="xwv212/False",fontsize=10,color="white",style="solid",shape="box"];2694 -> 4620[label="",style="solid", color="burlywood", weight=9]; 4620 -> 2836[label="",style="solid", color="burlywood", weight=3]; 4621[label="xwv212/True",fontsize=10,color="white",style="solid",shape="box"];2694 -> 4621[label="",style="solid", color="burlywood", weight=9]; 4621 -> 2837[label="",style="solid", color="burlywood", weight=3]; 2696[label="xwv354",fontsize=16,color="green",shape="box"];2697[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 True",fontsize=16,color="black",shape="box"];2697 -> 2838[label="",style="solid", color="black", weight=3]; 2698[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xwv350 xwv351 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353) xwv354",fontsize=16,color="black",shape="box"];2698 -> 2839[label="",style="solid", color="black", weight=3]; 2699[label="xwv16",fontsize=16,color="green",shape="box"];2700[label="xwv205",fontsize=16,color="green",shape="box"];2701[label="GT",fontsize=16,color="green",shape="box"];2702[label="not False",fontsize=16,color="black",shape="box"];2702 -> 2840[label="",style="solid", color="black", weight=3]; 2703[label="not True",fontsize=16,color="black",shape="box"];2703 -> 2841[label="",style="solid", color="black", weight=3]; 2704[label="xwv610",fontsize=16,color="green",shape="box"];2705[label="xwv620",fontsize=16,color="green",shape="box"];2706[label="xwv610",fontsize=16,color="green",shape="box"];2707[label="xwv620",fontsize=16,color="green",shape="box"];2708[label="xwv610",fontsize=16,color="green",shape="box"];2709[label="xwv620",fontsize=16,color="green",shape="box"];2710[label="xwv610",fontsize=16,color="green",shape="box"];2711[label="xwv620",fontsize=16,color="green",shape="box"];2712[label="xwv610",fontsize=16,color="green",shape="box"];2713[label="xwv620",fontsize=16,color="green",shape="box"];2714[label="xwv610",fontsize=16,color="green",shape="box"];2715[label="xwv620",fontsize=16,color="green",shape="box"];2716[label="xwv610",fontsize=16,color="green",shape="box"];2717[label="xwv620",fontsize=16,color="green",shape="box"];2718[label="xwv610",fontsize=16,color="green",shape="box"];2719[label="xwv620",fontsize=16,color="green",shape="box"];2720[label="xwv610",fontsize=16,color="green",shape="box"];2721[label="xwv620",fontsize=16,color="green",shape="box"];2722[label="xwv610",fontsize=16,color="green",shape="box"];2723[label="xwv620",fontsize=16,color="green",shape="box"];2724[label="xwv610",fontsize=16,color="green",shape="box"];2725[label="xwv620",fontsize=16,color="green",shape="box"];2726[label="xwv610",fontsize=16,color="green",shape="box"];2727[label="xwv620",fontsize=16,color="green",shape="box"];2728[label="xwv610",fontsize=16,color="green",shape="box"];2729[label="xwv620",fontsize=16,color="green",shape="box"];2730[label="xwv610",fontsize=16,color="green",shape="box"];2731[label="xwv620",fontsize=16,color="green",shape="box"];2732[label="xwv610 == xwv620",fontsize=16,color="blue",shape="box"];4622[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 2842[label="",style="solid", color="blue", weight=3]; 4623[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 2843[label="",style="solid", color="blue", weight=3]; 4624[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 2844[label="",style="solid", color="blue", weight=3]; 4625[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 2845[label="",style="solid", color="blue", weight=3]; 4626[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 2846[label="",style="solid", color="blue", weight=3]; 4627[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 2847[label="",style="solid", color="blue", weight=3]; 4628[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 2848[label="",style="solid", color="blue", weight=3]; 4629[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4629[label="",style="solid", color="blue", weight=9]; 4629 -> 2849[label="",style="solid", color="blue", weight=3]; 4630[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4630[label="",style="solid", color="blue", weight=9]; 4630 -> 2850[label="",style="solid", color="blue", weight=3]; 4631[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4631[label="",style="solid", color="blue", weight=9]; 4631 -> 2851[label="",style="solid", color="blue", weight=3]; 4632[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4632[label="",style="solid", color="blue", weight=9]; 4632 -> 2852[label="",style="solid", color="blue", weight=3]; 4633[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4633[label="",style="solid", color="blue", weight=9]; 4633 -> 2853[label="",style="solid", color="blue", weight=3]; 4634[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4634[label="",style="solid", color="blue", weight=9]; 4634 -> 2854[label="",style="solid", color="blue", weight=3]; 4635[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4635[label="",style="solid", color="blue", weight=9]; 4635 -> 2855[label="",style="solid", color="blue", weight=3]; 2733 -> 2347[label="",style="dashed", color="red", weight=0]; 2733[label="xwv611 < xwv621 || xwv611 == xwv621 && xwv612 <= xwv622",fontsize=16,color="magenta"];2733 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2734 -> 102[label="",style="dashed", color="red", weight=0]; 2734[label="xwv610 < xwv620",fontsize=16,color="magenta"];2734 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2735 -> 103[label="",style="dashed", color="red", weight=0]; 2735[label="xwv610 < xwv620",fontsize=16,color="magenta"];2735 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2736 -> 104[label="",style="dashed", color="red", weight=0]; 2736[label="xwv610 < xwv620",fontsize=16,color="magenta"];2736 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2737 -> 105[label="",style="dashed", color="red", weight=0]; 2737[label="xwv610 < xwv620",fontsize=16,color="magenta"];2737 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2738 -> 106[label="",style="dashed", color="red", weight=0]; 2738[label="xwv610 < xwv620",fontsize=16,color="magenta"];2738 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2738 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2739 -> 107[label="",style="dashed", color="red", weight=0]; 2739[label="xwv610 < xwv620",fontsize=16,color="magenta"];2739 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2739 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2740 -> 108[label="",style="dashed", color="red", weight=0]; 2740[label="xwv610 < xwv620",fontsize=16,color="magenta"];2740 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2740 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2741 -> 109[label="",style="dashed", color="red", weight=0]; 2741[label="xwv610 < xwv620",fontsize=16,color="magenta"];2741 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2741 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2742 -> 110[label="",style="dashed", color="red", weight=0]; 2742[label="xwv610 < xwv620",fontsize=16,color="magenta"];2742 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2742 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2743 -> 111[label="",style="dashed", color="red", weight=0]; 2743[label="xwv610 < xwv620",fontsize=16,color="magenta"];2743 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2744 -> 112[label="",style="dashed", color="red", weight=0]; 2744[label="xwv610 < xwv620",fontsize=16,color="magenta"];2744 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2745 -> 113[label="",style="dashed", color="red", weight=0]; 2745[label="xwv610 < xwv620",fontsize=16,color="magenta"];2745 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2746 -> 114[label="",style="dashed", color="red", weight=0]; 2746[label="xwv610 < xwv620",fontsize=16,color="magenta"];2746 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2747 -> 115[label="",style="dashed", color="red", weight=0]; 2747[label="xwv610 < xwv620",fontsize=16,color="magenta"];2747 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2748[label="xwv610 == xwv620",fontsize=16,color="blue",shape="box"];4636[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4636[label="",style="solid", color="blue", weight=9]; 4636 -> 2886[label="",style="solid", color="blue", weight=3]; 4637[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4637[label="",style="solid", color="blue", weight=9]; 4637 -> 2887[label="",style="solid", color="blue", weight=3]; 4638[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4638[label="",style="solid", color="blue", weight=9]; 4638 -> 2888[label="",style="solid", color="blue", weight=3]; 4639[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4639[label="",style="solid", color="blue", weight=9]; 4639 -> 2889[label="",style="solid", color="blue", weight=3]; 4640[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4640[label="",style="solid", color="blue", weight=9]; 4640 -> 2890[label="",style="solid", color="blue", weight=3]; 4641[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4641[label="",style="solid", color="blue", weight=9]; 4641 -> 2891[label="",style="solid", color="blue", weight=3]; 4642[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4642[label="",style="solid", color="blue", weight=9]; 4642 -> 2892[label="",style="solid", color="blue", weight=3]; 4643[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4643[label="",style="solid", color="blue", weight=9]; 4643 -> 2893[label="",style="solid", color="blue", weight=3]; 4644[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4644[label="",style="solid", color="blue", weight=9]; 4644 -> 2894[label="",style="solid", color="blue", weight=3]; 4645[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4645[label="",style="solid", color="blue", weight=9]; 4645 -> 2895[label="",style="solid", color="blue", weight=3]; 4646[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4646[label="",style="solid", color="blue", weight=9]; 4646 -> 2896[label="",style="solid", color="blue", weight=3]; 4647[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4647[label="",style="solid", color="blue", weight=9]; 4647 -> 2897[label="",style="solid", color="blue", weight=3]; 4648[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4648[label="",style="solid", color="blue", weight=9]; 4648 -> 2898[label="",style="solid", color="blue", weight=3]; 4649[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4649[label="",style="solid", color="blue", weight=9]; 4649 -> 2899[label="",style="solid", color="blue", weight=3]; 2749[label="xwv611 <= xwv621",fontsize=16,color="blue",shape="box"];4650[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4650[label="",style="solid", color="blue", weight=9]; 4650 -> 2900[label="",style="solid", color="blue", weight=3]; 4651[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4651[label="",style="solid", color="blue", weight=9]; 4651 -> 2901[label="",style="solid", color="blue", weight=3]; 4652[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4652[label="",style="solid", color="blue", weight=9]; 4652 -> 2902[label="",style="solid", color="blue", weight=3]; 4653[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4653[label="",style="solid", color="blue", weight=9]; 4653 -> 2903[label="",style="solid", color="blue", weight=3]; 4654[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4654[label="",style="solid", color="blue", weight=9]; 4654 -> 2904[label="",style="solid", color="blue", weight=3]; 4655[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4655[label="",style="solid", color="blue", weight=9]; 4655 -> 2905[label="",style="solid", color="blue", weight=3]; 4656[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4656[label="",style="solid", color="blue", weight=9]; 4656 -> 2906[label="",style="solid", color="blue", weight=3]; 4657[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4657[label="",style="solid", color="blue", weight=9]; 4657 -> 2907[label="",style="solid", color="blue", weight=3]; 4658[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4658[label="",style="solid", color="blue", weight=9]; 4658 -> 2908[label="",style="solid", color="blue", weight=3]; 4659[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4659[label="",style="solid", color="blue", weight=9]; 4659 -> 2909[label="",style="solid", color="blue", weight=3]; 4660[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4660[label="",style="solid", color="blue", weight=9]; 4660 -> 2910[label="",style="solid", color="blue", weight=3]; 4661[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4661[label="",style="solid", color="blue", weight=9]; 4661 -> 2911[label="",style="solid", color="blue", weight=3]; 4662[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4662[label="",style="solid", color="blue", weight=9]; 4662 -> 2912[label="",style="solid", color="blue", weight=3]; 4663[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2749 -> 4663[label="",style="solid", color="blue", weight=9]; 4663 -> 2913[label="",style="solid", color="blue", weight=3]; 2750 -> 102[label="",style="dashed", color="red", weight=0]; 2750[label="xwv610 < xwv620",fontsize=16,color="magenta"];2750 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2751 -> 103[label="",style="dashed", color="red", weight=0]; 2751[label="xwv610 < xwv620",fontsize=16,color="magenta"];2751 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2752 -> 104[label="",style="dashed", color="red", weight=0]; 2752[label="xwv610 < xwv620",fontsize=16,color="magenta"];2752 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2753 -> 105[label="",style="dashed", color="red", weight=0]; 2753[label="xwv610 < xwv620",fontsize=16,color="magenta"];2753 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2754 -> 106[label="",style="dashed", color="red", weight=0]; 2754[label="xwv610 < xwv620",fontsize=16,color="magenta"];2754 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2755 -> 107[label="",style="dashed", color="red", weight=0]; 2755[label="xwv610 < xwv620",fontsize=16,color="magenta"];2755 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2756 -> 108[label="",style="dashed", color="red", weight=0]; 2756[label="xwv610 < xwv620",fontsize=16,color="magenta"];2756 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2757 -> 109[label="",style="dashed", color="red", weight=0]; 2757[label="xwv610 < xwv620",fontsize=16,color="magenta"];2757 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2758 -> 110[label="",style="dashed", color="red", weight=0]; 2758[label="xwv610 < xwv620",fontsize=16,color="magenta"];2758 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2759 -> 111[label="",style="dashed", color="red", weight=0]; 2759[label="xwv610 < xwv620",fontsize=16,color="magenta"];2759 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2760 -> 112[label="",style="dashed", color="red", weight=0]; 2760[label="xwv610 < xwv620",fontsize=16,color="magenta"];2760 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2761 -> 113[label="",style="dashed", color="red", weight=0]; 2761[label="xwv610 < xwv620",fontsize=16,color="magenta"];2761 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2761 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2762 -> 114[label="",style="dashed", color="red", weight=0]; 2762[label="xwv610 < xwv620",fontsize=16,color="magenta"];2762 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2763 -> 115[label="",style="dashed", color="red", weight=0]; 2763[label="xwv610 < xwv620",fontsize=16,color="magenta"];2763 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2764[label="xwv610",fontsize=16,color="green",shape="box"];2765[label="xwv620",fontsize=16,color="green",shape="box"];2766[label="xwv610",fontsize=16,color="green",shape="box"];2767[label="xwv620",fontsize=16,color="green",shape="box"];2768[label="xwv610",fontsize=16,color="green",shape="box"];2769[label="xwv620",fontsize=16,color="green",shape="box"];2770[label="xwv610",fontsize=16,color="green",shape="box"];2771[label="xwv620",fontsize=16,color="green",shape="box"];2772[label="xwv610",fontsize=16,color="green",shape="box"];2773[label="xwv620",fontsize=16,color="green",shape="box"];2774[label="xwv610",fontsize=16,color="green",shape="box"];2775[label="xwv620",fontsize=16,color="green",shape="box"];2776[label="xwv610",fontsize=16,color="green",shape="box"];2777[label="xwv620",fontsize=16,color="green",shape="box"];2778[label="xwv610",fontsize=16,color="green",shape="box"];2779[label="xwv620",fontsize=16,color="green",shape="box"];2780[label="xwv610",fontsize=16,color="green",shape="box"];2781[label="xwv620",fontsize=16,color="green",shape="box"];2782[label="xwv610",fontsize=16,color="green",shape="box"];2783[label="xwv620",fontsize=16,color="green",shape="box"];2784[label="xwv610",fontsize=16,color="green",shape="box"];2785[label="xwv620",fontsize=16,color="green",shape="box"];2786[label="xwv610",fontsize=16,color="green",shape="box"];2787[label="xwv620",fontsize=16,color="green",shape="box"];2788[label="xwv610",fontsize=16,color="green",shape="box"];2789[label="xwv620",fontsize=16,color="green",shape="box"];2790[label="xwv610",fontsize=16,color="green",shape="box"];2791[label="xwv620",fontsize=16,color="green",shape="box"];2792[label="xwv610",fontsize=16,color="green",shape="box"];2793[label="xwv620",fontsize=16,color="green",shape="box"];2794[label="xwv610",fontsize=16,color="green",shape="box"];2795[label="xwv620",fontsize=16,color="green",shape="box"];2796[label="xwv610",fontsize=16,color="green",shape="box"];2797[label="xwv620",fontsize=16,color="green",shape="box"];2798[label="xwv610",fontsize=16,color="green",shape="box"];2799[label="xwv620",fontsize=16,color="green",shape="box"];2800[label="xwv610",fontsize=16,color="green",shape="box"];2801[label="xwv620",fontsize=16,color="green",shape="box"];2802[label="xwv610",fontsize=16,color="green",shape="box"];2803[label="xwv620",fontsize=16,color="green",shape="box"];2804[label="xwv610",fontsize=16,color="green",shape="box"];2805[label="xwv620",fontsize=16,color="green",shape="box"];2806[label="xwv610",fontsize=16,color="green",shape="box"];2807[label="xwv620",fontsize=16,color="green",shape="box"];2808[label="xwv610",fontsize=16,color="green",shape="box"];2809[label="xwv620",fontsize=16,color="green",shape="box"];2810[label="xwv610",fontsize=16,color="green",shape="box"];2811[label="xwv620",fontsize=16,color="green",shape="box"];2812[label="xwv610",fontsize=16,color="green",shape="box"];2813[label="xwv620",fontsize=16,color="green",shape="box"];2814[label="xwv610",fontsize=16,color="green",shape="box"];2815[label="xwv620",fontsize=16,color="green",shape="box"];2816[label="xwv610",fontsize=16,color="green",shape="box"];2817[label="xwv620",fontsize=16,color="green",shape="box"];2818[label="xwv610",fontsize=16,color="green",shape="box"];2819[label="xwv620",fontsize=16,color="green",shape="box"];2820[label="GT",fontsize=16,color="green",shape="box"];2821[label="GT",fontsize=16,color="green",shape="box"];2822[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="black",shape="box"];2822 -> 2942[label="",style="solid", color="black", weight=3]; 2823[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="black",shape="box"];2823 -> 2943[label="",style="solid", color="black", weight=3]; 2824[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2824 -> 2944[label="",style="solid", color="black", weight=3]; 2825[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144))",fontsize=16,color="black",shape="box"];2825 -> 2945[label="",style="solid", color="black", weight=3]; 3369[label="xwv521",fontsize=16,color="green",shape="box"];3370[label="xwv513",fontsize=16,color="green",shape="box"];3371[label="xwv511",fontsize=16,color="green",shape="box"];3372[label="xwv524",fontsize=16,color="green",shape="box"];3373[label="xwv520",fontsize=16,color="green",shape="box"];3374[label="xwv512",fontsize=16,color="green",shape="box"];3375[label="xwv520",fontsize=16,color="green",shape="box"];3376[label="xwv523",fontsize=16,color="green",shape="box"];3377[label="xwv521",fontsize=16,color="green",shape="box"];3378[label="xwv510",fontsize=16,color="green",shape="box"];3379[label="xwv522",fontsize=16,color="green",shape="box"];3380[label="xwv522",fontsize=16,color="green",shape="box"];3381[label="xwv523",fontsize=16,color="green",shape="box"];3382[label="xwv524",fontsize=16,color="green",shape="box"];3383[label="xwv514",fontsize=16,color="green",shape="box"];3368[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv258 xwv259 xwv260 xwv261 xwv262))",fontsize=16,color="burlywood",shape="triangle"];4664[label="xwv261/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3368 -> 4664[label="",style="solid", color="burlywood", weight=9]; 4664 -> 3459[label="",style="solid", color="burlywood", weight=3]; 4665[label="xwv261/FiniteMap.Branch xwv2610 xwv2611 xwv2612 xwv2613 xwv2614",fontsize=10,color="white",style="solid",shape="box"];3368 -> 4665[label="",style="solid", color="burlywood", weight=9]; 4665 -> 3460[label="",style="solid", color="burlywood", weight=3]; 3463[label="xwv521",fontsize=16,color="green",shape="box"];3464[label="xwv512",fontsize=16,color="green",shape="box"];3465[label="xwv513",fontsize=16,color="green",shape="box"];3466[label="xwv522",fontsize=16,color="green",shape="box"];3467[label="xwv514",fontsize=16,color="green",shape="box"];3468[label="xwv520",fontsize=16,color="green",shape="box"];3469[label="xwv524",fontsize=16,color="green",shape="box"];3470[label="xwv520",fontsize=16,color="green",shape="box"];3471[label="xwv523",fontsize=16,color="green",shape="box"];3472[label="xwv510",fontsize=16,color="green",shape="box"];3473[label="xwv524",fontsize=16,color="green",shape="box"];3474[label="xwv521",fontsize=16,color="green",shape="box"];3475[label="xwv523",fontsize=16,color="green",shape="box"];3476[label="xwv522",fontsize=16,color="green",shape="box"];3477[label="xwv511",fontsize=16,color="green",shape="box"];3462[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv274 xwv275 xwv276 xwv277 xwv278))",fontsize=16,color="burlywood",shape="triangle"];4666[label="xwv277/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3462 -> 4666[label="",style="solid", color="burlywood", weight=9]; 4666 -> 3553[label="",style="solid", color="burlywood", weight=3]; 4667[label="xwv277/FiniteMap.Branch xwv2770 xwv2771 xwv2772 xwv2773 xwv2774",fontsize=10,color="white",style="solid",shape="box"];3462 -> 4667[label="",style="solid", color="burlywood", weight=9]; 4667 -> 3554[label="",style="solid", color="burlywood", weight=3]; 2830[label="xwv521",fontsize=16,color="green",shape="box"];2831[label="xwv520",fontsize=16,color="green",shape="box"];2832 -> 2442[label="",style="dashed", color="red", weight=0]; 2832[label="FiniteMap.deleteMin (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234)",fontsize=16,color="magenta"];2832 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2833[label="xwv524",fontsize=16,color="green",shape="box"];2834 -> 473[label="",style="dashed", color="red", weight=0]; 2834[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2834 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2835 -> 1127[label="",style="dashed", color="red", weight=0]; 2835[label="FiniteMap.sizeFM xwv164",fontsize=16,color="magenta"];2835 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2836[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 False",fontsize=16,color="black",shape="box"];2836 -> 2958[label="",style="solid", color="black", weight=3]; 2837[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 True",fontsize=16,color="black",shape="box"];2837 -> 2959[label="",style="solid", color="black", weight=3]; 2838[label="FiniteMap.mkBalBranch6Double_L xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="burlywood",shape="box"];4668[label="xwv353/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2838 -> 4668[label="",style="solid", color="burlywood", weight=9]; 4668 -> 2960[label="",style="solid", color="burlywood", weight=3]; 4669[label="xwv353/FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534",fontsize=10,color="white",style="solid",shape="box"];2838 -> 4669[label="",style="solid", color="burlywood", weight=9]; 4669 -> 2961[label="",style="solid", color="burlywood", weight=3]; 2839 -> 628[label="",style="dashed", color="red", weight=0]; 2839[label="FiniteMap.mkBranchResult xwv350 xwv351 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353) xwv354",fontsize=16,color="magenta"];2839 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2840[label="True",fontsize=16,color="green",shape="box"];2841[label="False",fontsize=16,color="green",shape="box"];2842 -> 410[label="",style="dashed", color="red", weight=0]; 2842[label="xwv610 == xwv620",fontsize=16,color="magenta"];2842 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2843 -> 416[label="",style="dashed", color="red", weight=0]; 2843[label="xwv610 == xwv620",fontsize=16,color="magenta"];2843 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2844 -> 414[label="",style="dashed", color="red", weight=0]; 2844[label="xwv610 == xwv620",fontsize=16,color="magenta"];2844 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2845 -> 419[label="",style="dashed", color="red", weight=0]; 2845[label="xwv610 == xwv620",fontsize=16,color="magenta"];2845 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2846 -> 420[label="",style="dashed", color="red", weight=0]; 2846[label="xwv610 == xwv620",fontsize=16,color="magenta"];2846 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2847 -> 421[label="",style="dashed", color="red", weight=0]; 2847[label="xwv610 == xwv620",fontsize=16,color="magenta"];2847 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2847 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2848 -> 415[label="",style="dashed", color="red", weight=0]; 2848[label="xwv610 == xwv620",fontsize=16,color="magenta"];2848 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2848 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2849 -> 411[label="",style="dashed", color="red", weight=0]; 2849[label="xwv610 == xwv620",fontsize=16,color="magenta"];2849 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2849 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2850 -> 417[label="",style="dashed", color="red", weight=0]; 2850[label="xwv610 == xwv620",fontsize=16,color="magenta"];2850 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2851 -> 412[label="",style="dashed", color="red", weight=0]; 2851[label="xwv610 == xwv620",fontsize=16,color="magenta"];2851 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2851 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2852 -> 422[label="",style="dashed", color="red", weight=0]; 2852[label="xwv610 == xwv620",fontsize=16,color="magenta"];2852 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2852 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2853 -> 413[label="",style="dashed", color="red", weight=0]; 2853[label="xwv610 == xwv620",fontsize=16,color="magenta"];2853 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2853 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2854 -> 409[label="",style="dashed", color="red", weight=0]; 2854[label="xwv610 == xwv620",fontsize=16,color="magenta"];2854 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2854 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2855 -> 418[label="",style="dashed", color="red", weight=0]; 2855[label="xwv610 == xwv620",fontsize=16,color="magenta"];2855 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2855 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2856 -> 1184[label="",style="dashed", color="red", weight=0]; 2856[label="xwv611 == xwv621 && xwv612 <= xwv622",fontsize=16,color="magenta"];2856 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2856 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2857[label="xwv611 < xwv621",fontsize=16,color="blue",shape="box"];4670[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4670[label="",style="solid", color="blue", weight=9]; 4670 -> 2996[label="",style="solid", color="blue", weight=3]; 4671[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4671[label="",style="solid", color="blue", weight=9]; 4671 -> 2997[label="",style="solid", color="blue", weight=3]; 4672[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4672[label="",style="solid", color="blue", weight=9]; 4672 -> 2998[label="",style="solid", color="blue", weight=3]; 4673[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4673[label="",style="solid", color="blue", weight=9]; 4673 -> 2999[label="",style="solid", color="blue", weight=3]; 4674[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4674[label="",style="solid", color="blue", weight=9]; 4674 -> 3000[label="",style="solid", color="blue", weight=3]; 4675[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4675[label="",style="solid", color="blue", weight=9]; 4675 -> 3001[label="",style="solid", color="blue", weight=3]; 4676[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4676[label="",style="solid", color="blue", weight=9]; 4676 -> 3002[label="",style="solid", color="blue", weight=3]; 4677[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4677[label="",style="solid", color="blue", weight=9]; 4677 -> 3003[label="",style="solid", color="blue", weight=3]; 4678[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4678[label="",style="solid", color="blue", weight=9]; 4678 -> 3004[label="",style="solid", color="blue", weight=3]; 4679[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4679[label="",style="solid", color="blue", weight=9]; 4679 -> 3005[label="",style="solid", color="blue", weight=3]; 4680[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4680[label="",style="solid", color="blue", weight=9]; 4680 -> 3006[label="",style="solid", color="blue", weight=3]; 4681[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4681[label="",style="solid", color="blue", weight=9]; 4681 -> 3007[label="",style="solid", color="blue", weight=3]; 4682[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4682[label="",style="solid", color="blue", weight=9]; 4682 -> 3008[label="",style="solid", color="blue", weight=3]; 4683[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2857 -> 4683[label="",style="solid", color="blue", weight=9]; 4683 -> 3009[label="",style="solid", color="blue", weight=3]; 2858[label="xwv620",fontsize=16,color="green",shape="box"];2859[label="xwv610",fontsize=16,color="green",shape="box"];2860[label="xwv620",fontsize=16,color="green",shape="box"];2861[label="xwv610",fontsize=16,color="green",shape="box"];2862[label="xwv620",fontsize=16,color="green",shape="box"];2863[label="xwv610",fontsize=16,color="green",shape="box"];2864[label="xwv620",fontsize=16,color="green",shape="box"];2865[label="xwv610",fontsize=16,color="green",shape="box"];2866[label="xwv620",fontsize=16,color="green",shape="box"];2867[label="xwv610",fontsize=16,color="green",shape="box"];2868[label="xwv620",fontsize=16,color="green",shape="box"];2869[label="xwv610",fontsize=16,color="green",shape="box"];2870[label="xwv620",fontsize=16,color="green",shape="box"];2871[label="xwv610",fontsize=16,color="green",shape="box"];2872[label="xwv620",fontsize=16,color="green",shape="box"];2873[label="xwv610",fontsize=16,color="green",shape="box"];2874[label="xwv620",fontsize=16,color="green",shape="box"];2875[label="xwv610",fontsize=16,color="green",shape="box"];2876[label="xwv620",fontsize=16,color="green",shape="box"];2877[label="xwv610",fontsize=16,color="green",shape="box"];2878[label="xwv620",fontsize=16,color="green",shape="box"];2879[label="xwv610",fontsize=16,color="green",shape="box"];2880[label="xwv620",fontsize=16,color="green",shape="box"];2881[label="xwv610",fontsize=16,color="green",shape="box"];2882[label="xwv620",fontsize=16,color="green",shape="box"];2883[label="xwv610",fontsize=16,color="green",shape="box"];2884[label="xwv620",fontsize=16,color="green",shape="box"];2885[label="xwv610",fontsize=16,color="green",shape="box"];2886 -> 410[label="",style="dashed", color="red", weight=0]; 2886[label="xwv610 == xwv620",fontsize=16,color="magenta"];2886 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2886 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2887 -> 416[label="",style="dashed", color="red", weight=0]; 2887[label="xwv610 == xwv620",fontsize=16,color="magenta"];2887 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2887 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2888 -> 414[label="",style="dashed", color="red", weight=0]; 2888[label="xwv610 == xwv620",fontsize=16,color="magenta"];2888 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2888 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2889 -> 419[label="",style="dashed", color="red", weight=0]; 2889[label="xwv610 == xwv620",fontsize=16,color="magenta"];2889 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2889 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2890 -> 420[label="",style="dashed", color="red", weight=0]; 2890[label="xwv610 == xwv620",fontsize=16,color="magenta"];2890 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2890 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2891 -> 421[label="",style="dashed", color="red", weight=0]; 2891[label="xwv610 == xwv620",fontsize=16,color="magenta"];2891 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2891 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2892 -> 415[label="",style="dashed", color="red", weight=0]; 2892[label="xwv610 == xwv620",fontsize=16,color="magenta"];2892 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2892 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2893 -> 411[label="",style="dashed", color="red", weight=0]; 2893[label="xwv610 == xwv620",fontsize=16,color="magenta"];2893 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2893 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2894 -> 417[label="",style="dashed", color="red", weight=0]; 2894[label="xwv610 == xwv620",fontsize=16,color="magenta"];2894 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2894 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2895 -> 412[label="",style="dashed", color="red", weight=0]; 2895[label="xwv610 == xwv620",fontsize=16,color="magenta"];2895 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2895 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2896 -> 422[label="",style="dashed", color="red", weight=0]; 2896[label="xwv610 == xwv620",fontsize=16,color="magenta"];2896 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2896 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2897 -> 413[label="",style="dashed", color="red", weight=0]; 2897[label="xwv610 == xwv620",fontsize=16,color="magenta"];2897 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2897 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2898 -> 409[label="",style="dashed", color="red", weight=0]; 2898[label="xwv610 == xwv620",fontsize=16,color="magenta"];2898 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2898 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2899 -> 418[label="",style="dashed", color="red", weight=0]; 2899[label="xwv610 == xwv620",fontsize=16,color="magenta"];2899 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2899 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2900 -> 1870[label="",style="dashed", color="red", weight=0]; 2900[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2900 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2900 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2901 -> 1871[label="",style="dashed", color="red", weight=0]; 2901[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2901 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2901 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2902 -> 1872[label="",style="dashed", color="red", weight=0]; 2902[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2902 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2902 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2903 -> 1873[label="",style="dashed", color="red", weight=0]; 2903[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2903 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2903 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2904 -> 1874[label="",style="dashed", color="red", weight=0]; 2904[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2904 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2904 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2905 -> 1875[label="",style="dashed", color="red", weight=0]; 2905[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2905 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2905 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2906 -> 1876[label="",style="dashed", color="red", weight=0]; 2906[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2906 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2906 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2907 -> 1877[label="",style="dashed", color="red", weight=0]; 2907[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2907 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2907 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2908 -> 1878[label="",style="dashed", color="red", weight=0]; 2908[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2908 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2908 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2909 -> 1879[label="",style="dashed", color="red", weight=0]; 2909[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2909 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2909 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2910 -> 1880[label="",style="dashed", color="red", weight=0]; 2910[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2910 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2910 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2911 -> 1881[label="",style="dashed", color="red", weight=0]; 2911[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2911 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2912 -> 1882[label="",style="dashed", color="red", weight=0]; 2912[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2912 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2912 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2913 -> 1883[label="",style="dashed", color="red", weight=0]; 2913[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2913 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2914[label="xwv620",fontsize=16,color="green",shape="box"];2915[label="xwv610",fontsize=16,color="green",shape="box"];2916[label="xwv620",fontsize=16,color="green",shape="box"];2917[label="xwv610",fontsize=16,color="green",shape="box"];2918[label="xwv620",fontsize=16,color="green",shape="box"];2919[label="xwv610",fontsize=16,color="green",shape="box"];2920[label="xwv620",fontsize=16,color="green",shape="box"];2921[label="xwv610",fontsize=16,color="green",shape="box"];2922[label="xwv620",fontsize=16,color="green",shape="box"];2923[label="xwv610",fontsize=16,color="green",shape="box"];2924[label="xwv620",fontsize=16,color="green",shape="box"];2925[label="xwv610",fontsize=16,color="green",shape="box"];2926[label="xwv620",fontsize=16,color="green",shape="box"];2927[label="xwv610",fontsize=16,color="green",shape="box"];2928[label="xwv620",fontsize=16,color="green",shape="box"];2929[label="xwv610",fontsize=16,color="green",shape="box"];2930[label="xwv620",fontsize=16,color="green",shape="box"];2931[label="xwv610",fontsize=16,color="green",shape="box"];2932[label="xwv620",fontsize=16,color="green",shape="box"];2933[label="xwv610",fontsize=16,color="green",shape="box"];2934[label="xwv620",fontsize=16,color="green",shape="box"];2935[label="xwv610",fontsize=16,color="green",shape="box"];2936[label="xwv620",fontsize=16,color="green",shape="box"];2937[label="xwv610",fontsize=16,color="green",shape="box"];2938[label="xwv620",fontsize=16,color="green",shape="box"];2939[label="xwv610",fontsize=16,color="green",shape="box"];2940[label="xwv620",fontsize=16,color="green",shape="box"];2941[label="xwv610",fontsize=16,color="green",shape="box"];2942 -> 3570[label="",style="dashed", color="red", weight=0]; 2942[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.findMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];2942 -> 3571[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3572[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3573[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3574[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3575[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3576[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3577[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3578[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3579[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3580[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3581[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3582[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3583[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3584[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3585[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3670[label="",style="dashed", color="red", weight=0]; 2943[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.findMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];2943 -> 3671[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3672[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3673[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3674[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3675[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3676[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3677[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3678[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3679[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3680[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3681[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3682[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3683[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3684[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3685[label="",style="dashed", color="magenta", weight=3]; 2944[label="xwv513",fontsize=16,color="green",shape="box"];2945 -> 82[label="",style="dashed", color="red", weight=0]; 2945[label="FiniteMap.mkBalBranch xwv510 xwv511 xwv513 (FiniteMap.deleteMax (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144))",fontsize=16,color="magenta"];2945 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2945 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2945 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2945 -> 3073[label="",style="dashed", color="magenta", weight=3]; 3459[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv258 xwv259 xwv260 FiniteMap.EmptyFM xwv262))",fontsize=16,color="black",shape="box"];3459 -> 3555[label="",style="solid", color="black", weight=3]; 3460[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv258 xwv259 xwv260 (FiniteMap.Branch xwv2610 xwv2611 xwv2612 xwv2613 xwv2614) xwv262))",fontsize=16,color="black",shape="box"];3460 -> 3556[label="",style="solid", color="black", weight=3]; 3553[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv274 xwv275 xwv276 FiniteMap.EmptyFM xwv278))",fontsize=16,color="black",shape="box"];3553 -> 3561[label="",style="solid", color="black", weight=3]; 3554[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv274 xwv275 xwv276 (FiniteMap.Branch xwv2770 xwv2771 xwv2772 xwv2773 xwv2774) xwv278))",fontsize=16,color="black",shape="box"];3554 -> 3562[label="",style="solid", color="black", weight=3]; 2950[label="xwv5231",fontsize=16,color="green",shape="box"];2951[label="xwv5232",fontsize=16,color="green",shape="box"];2952[label="xwv5230",fontsize=16,color="green",shape="box"];2953[label="xwv5233",fontsize=16,color="green",shape="box"];2954[label="xwv5234",fontsize=16,color="green",shape="box"];2955[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2956 -> 1127[label="",style="dashed", color="red", weight=0]; 2956[label="FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2956 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2957[label="xwv164",fontsize=16,color="green",shape="box"];2958[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 otherwise",fontsize=16,color="black",shape="box"];2958 -> 3081[label="",style="solid", color="black", weight=3]; 2959[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35",fontsize=16,color="black",shape="box"];2959 -> 3082[label="",style="solid", color="black", weight=3]; 2960[label="FiniteMap.mkBalBranch6Double_L xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 FiniteMap.EmptyFM xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 FiniteMap.EmptyFM xwv354)",fontsize=16,color="black",shape="box"];2960 -> 3083[label="",style="solid", color="black", weight=3]; 2961[label="FiniteMap.mkBalBranch6Double_L xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 (FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534) xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 (FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534) xwv354)",fontsize=16,color="black",shape="box"];2961 -> 3084[label="",style="solid", color="black", weight=3]; 2962[label="xwv351",fontsize=16,color="green",shape="box"];2963[label="xwv350",fontsize=16,color="green",shape="box"];2964[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353",fontsize=16,color="black",shape="box"];2964 -> 3085[label="",style="solid", color="black", weight=3]; 2965[label="xwv354",fontsize=16,color="green",shape="box"];2966[label="xwv610",fontsize=16,color="green",shape="box"];2967[label="xwv620",fontsize=16,color="green",shape="box"];2968[label="xwv610",fontsize=16,color="green",shape="box"];2969[label="xwv620",fontsize=16,color="green",shape="box"];2970[label="xwv610",fontsize=16,color="green",shape="box"];2971[label="xwv620",fontsize=16,color="green",shape="box"];2972[label="xwv610",fontsize=16,color="green",shape="box"];2973[label="xwv620",fontsize=16,color="green",shape="box"];2974[label="xwv610",fontsize=16,color="green",shape="box"];2975[label="xwv620",fontsize=16,color="green",shape="box"];2976[label="xwv610",fontsize=16,color="green",shape="box"];2977[label="xwv620",fontsize=16,color="green",shape="box"];2978[label="xwv610",fontsize=16,color="green",shape="box"];2979[label="xwv620",fontsize=16,color="green",shape="box"];2980[label="xwv610",fontsize=16,color="green",shape="box"];2981[label="xwv620",fontsize=16,color="green",shape="box"];2982[label="xwv610",fontsize=16,color="green",shape="box"];2983[label="xwv620",fontsize=16,color="green",shape="box"];2984[label="xwv610",fontsize=16,color="green",shape="box"];2985[label="xwv620",fontsize=16,color="green",shape="box"];2986[label="xwv610",fontsize=16,color="green",shape="box"];2987[label="xwv620",fontsize=16,color="green",shape="box"];2988[label="xwv610",fontsize=16,color="green",shape="box"];2989[label="xwv620",fontsize=16,color="green",shape="box"];2990[label="xwv610",fontsize=16,color="green",shape="box"];2991[label="xwv620",fontsize=16,color="green",shape="box"];2992[label="xwv610",fontsize=16,color="green",shape="box"];2993[label="xwv620",fontsize=16,color="green",shape="box"];2994[label="xwv611 == xwv621",fontsize=16,color="blue",shape="box"];4684[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4684[label="",style="solid", color="blue", weight=9]; 4684 -> 3086[label="",style="solid", color="blue", weight=3]; 4685[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4685[label="",style="solid", color="blue", weight=9]; 4685 -> 3087[label="",style="solid", color="blue", weight=3]; 4686[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4686[label="",style="solid", color="blue", weight=9]; 4686 -> 3088[label="",style="solid", color="blue", weight=3]; 4687[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4687[label="",style="solid", color="blue", weight=9]; 4687 -> 3089[label="",style="solid", color="blue", weight=3]; 4688[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4688[label="",style="solid", color="blue", weight=9]; 4688 -> 3090[label="",style="solid", color="blue", weight=3]; 4689[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4689[label="",style="solid", color="blue", weight=9]; 4689 -> 3091[label="",style="solid", color="blue", weight=3]; 4690[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4690[label="",style="solid", color="blue", weight=9]; 4690 -> 3092[label="",style="solid", color="blue", weight=3]; 4691[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4691[label="",style="solid", color="blue", weight=9]; 4691 -> 3093[label="",style="solid", color="blue", weight=3]; 4692[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4692[label="",style="solid", color="blue", weight=9]; 4692 -> 3094[label="",style="solid", color="blue", weight=3]; 4693[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4693[label="",style="solid", color="blue", weight=9]; 4693 -> 3095[label="",style="solid", color="blue", weight=3]; 4694[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4694[label="",style="solid", color="blue", weight=9]; 4694 -> 3096[label="",style="solid", color="blue", weight=3]; 4695[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4695[label="",style="solid", color="blue", weight=9]; 4695 -> 3097[label="",style="solid", color="blue", weight=3]; 4696[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4696[label="",style="solid", color="blue", weight=9]; 4696 -> 3098[label="",style="solid", color="blue", weight=3]; 4697[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4697[label="",style="solid", color="blue", weight=9]; 4697 -> 3099[label="",style="solid", color="blue", weight=3]; 2995[label="xwv612 <= xwv622",fontsize=16,color="blue",shape="box"];4698[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4698[label="",style="solid", color="blue", weight=9]; 4698 -> 3100[label="",style="solid", color="blue", weight=3]; 4699[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4699[label="",style="solid", color="blue", weight=9]; 4699 -> 3101[label="",style="solid", color="blue", weight=3]; 4700[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4700[label="",style="solid", color="blue", weight=9]; 4700 -> 3102[label="",style="solid", color="blue", weight=3]; 4701[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4701[label="",style="solid", color="blue", weight=9]; 4701 -> 3103[label="",style="solid", color="blue", weight=3]; 4702[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4702[label="",style="solid", color="blue", weight=9]; 4702 -> 3104[label="",style="solid", color="blue", weight=3]; 4703[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4703[label="",style="solid", color="blue", weight=9]; 4703 -> 3105[label="",style="solid", color="blue", weight=3]; 4704[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4704[label="",style="solid", color="blue", weight=9]; 4704 -> 3106[label="",style="solid", color="blue", weight=3]; 4705[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4705[label="",style="solid", color="blue", weight=9]; 4705 -> 3107[label="",style="solid", color="blue", weight=3]; 4706[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4706[label="",style="solid", color="blue", weight=9]; 4706 -> 3108[label="",style="solid", color="blue", weight=3]; 4707[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4707[label="",style="solid", color="blue", weight=9]; 4707 -> 3109[label="",style="solid", color="blue", weight=3]; 4708[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4708[label="",style="solid", color="blue", weight=9]; 4708 -> 3110[label="",style="solid", color="blue", weight=3]; 4709[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4709[label="",style="solid", color="blue", weight=9]; 4709 -> 3111[label="",style="solid", color="blue", weight=3]; 4710[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4710[label="",style="solid", color="blue", weight=9]; 4710 -> 3112[label="",style="solid", color="blue", weight=3]; 4711[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4711[label="",style="solid", color="blue", weight=9]; 4711 -> 3113[label="",style="solid", color="blue", weight=3]; 2996 -> 102[label="",style="dashed", color="red", weight=0]; 2996[label="xwv611 < xwv621",fontsize=16,color="magenta"];2996 -> 3114[label="",style="dashed", color="magenta", weight=3]; 2996 -> 3115[label="",style="dashed", color="magenta", weight=3]; 2997 -> 103[label="",style="dashed", color="red", weight=0]; 2997[label="xwv611 < xwv621",fontsize=16,color="magenta"];2997 -> 3116[label="",style="dashed", color="magenta", weight=3]; 2997 -> 3117[label="",style="dashed", color="magenta", weight=3]; 2998 -> 104[label="",style="dashed", color="red", weight=0]; 2998[label="xwv611 < xwv621",fontsize=16,color="magenta"];2998 -> 3118[label="",style="dashed", color="magenta", weight=3]; 2998 -> 3119[label="",style="dashed", color="magenta", weight=3]; 2999 -> 105[label="",style="dashed", color="red", weight=0]; 2999[label="xwv611 < xwv621",fontsize=16,color="magenta"];2999 -> 3120[label="",style="dashed", color="magenta", weight=3]; 2999 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3000 -> 106[label="",style="dashed", color="red", weight=0]; 3000[label="xwv611 < xwv621",fontsize=16,color="magenta"];3000 -> 3122[label="",style="dashed", color="magenta", weight=3]; 3000 -> 3123[label="",style="dashed", color="magenta", weight=3]; 3001 -> 107[label="",style="dashed", color="red", weight=0]; 3001[label="xwv611 < xwv621",fontsize=16,color="magenta"];3001 -> 3124[label="",style="dashed", color="magenta", weight=3]; 3001 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3002 -> 108[label="",style="dashed", color="red", weight=0]; 3002[label="xwv611 < xwv621",fontsize=16,color="magenta"];3002 -> 3126[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3127[label="",style="dashed", color="magenta", weight=3]; 3003 -> 109[label="",style="dashed", color="red", weight=0]; 3003[label="xwv611 < xwv621",fontsize=16,color="magenta"];3003 -> 3128[label="",style="dashed", color="magenta", weight=3]; 3003 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3004 -> 110[label="",style="dashed", color="red", weight=0]; 3004[label="xwv611 < xwv621",fontsize=16,color="magenta"];3004 -> 3130[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3131[label="",style="dashed", color="magenta", weight=3]; 3005 -> 111[label="",style="dashed", color="red", weight=0]; 3005[label="xwv611 < xwv621",fontsize=16,color="magenta"];3005 -> 3132[label="",style="dashed", color="magenta", weight=3]; 3005 -> 3133[label="",style="dashed", color="magenta", weight=3]; 3006 -> 112[label="",style="dashed", color="red", weight=0]; 3006[label="xwv611 < xwv621",fontsize=16,color="magenta"];3006 -> 3134[label="",style="dashed", color="magenta", weight=3]; 3006 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3007 -> 113[label="",style="dashed", color="red", weight=0]; 3007[label="xwv611 < xwv621",fontsize=16,color="magenta"];3007 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3007 -> 3137[label="",style="dashed", color="magenta", weight=3]; 3008 -> 114[label="",style="dashed", color="red", weight=0]; 3008[label="xwv611 < xwv621",fontsize=16,color="magenta"];3008 -> 3138[label="",style="dashed", color="magenta", weight=3]; 3008 -> 3139[label="",style="dashed", color="magenta", weight=3]; 3009 -> 115[label="",style="dashed", color="red", weight=0]; 3009[label="xwv611 < xwv621",fontsize=16,color="magenta"];3009 -> 3140[label="",style="dashed", color="magenta", weight=3]; 3009 -> 3141[label="",style="dashed", color="magenta", weight=3]; 3010[label="xwv610",fontsize=16,color="green",shape="box"];3011[label="xwv620",fontsize=16,color="green",shape="box"];3012[label="xwv610",fontsize=16,color="green",shape="box"];3013[label="xwv620",fontsize=16,color="green",shape="box"];3014[label="xwv610",fontsize=16,color="green",shape="box"];3015[label="xwv620",fontsize=16,color="green",shape="box"];3016[label="xwv610",fontsize=16,color="green",shape="box"];3017[label="xwv620",fontsize=16,color="green",shape="box"];3018[label="xwv610",fontsize=16,color="green",shape="box"];3019[label="xwv620",fontsize=16,color="green",shape="box"];3020[label="xwv610",fontsize=16,color="green",shape="box"];3021[label="xwv620",fontsize=16,color="green",shape="box"];3022[label="xwv610",fontsize=16,color="green",shape="box"];3023[label="xwv620",fontsize=16,color="green",shape="box"];3024[label="xwv610",fontsize=16,color="green",shape="box"];3025[label="xwv620",fontsize=16,color="green",shape="box"];3026[label="xwv610",fontsize=16,color="green",shape="box"];3027[label="xwv620",fontsize=16,color="green",shape="box"];3028[label="xwv610",fontsize=16,color="green",shape="box"];3029[label="xwv620",fontsize=16,color="green",shape="box"];3030[label="xwv610",fontsize=16,color="green",shape="box"];3031[label="xwv620",fontsize=16,color="green",shape="box"];3032[label="xwv610",fontsize=16,color="green",shape="box"];3033[label="xwv620",fontsize=16,color="green",shape="box"];3034[label="xwv610",fontsize=16,color="green",shape="box"];3035[label="xwv620",fontsize=16,color="green",shape="box"];3036[label="xwv610",fontsize=16,color="green",shape="box"];3037[label="xwv620",fontsize=16,color="green",shape="box"];3038[label="xwv611",fontsize=16,color="green",shape="box"];3039[label="xwv621",fontsize=16,color="green",shape="box"];3040[label="xwv611",fontsize=16,color="green",shape="box"];3041[label="xwv621",fontsize=16,color="green",shape="box"];3042[label="xwv611",fontsize=16,color="green",shape="box"];3043[label="xwv621",fontsize=16,color="green",shape="box"];3044[label="xwv611",fontsize=16,color="green",shape="box"];3045[label="xwv621",fontsize=16,color="green",shape="box"];3046[label="xwv611",fontsize=16,color="green",shape="box"];3047[label="xwv621",fontsize=16,color="green",shape="box"];3048[label="xwv611",fontsize=16,color="green",shape="box"];3049[label="xwv621",fontsize=16,color="green",shape="box"];3050[label="xwv611",fontsize=16,color="green",shape="box"];3051[label="xwv621",fontsize=16,color="green",shape="box"];3052[label="xwv611",fontsize=16,color="green",shape="box"];3053[label="xwv621",fontsize=16,color="green",shape="box"];3054[label="xwv611",fontsize=16,color="green",shape="box"];3055[label="xwv621",fontsize=16,color="green",shape="box"];3056[label="xwv611",fontsize=16,color="green",shape="box"];3057[label="xwv621",fontsize=16,color="green",shape="box"];3058[label="xwv611",fontsize=16,color="green",shape="box"];3059[label="xwv621",fontsize=16,color="green",shape="box"];3060[label="xwv611",fontsize=16,color="green",shape="box"];3061[label="xwv621",fontsize=16,color="green",shape="box"];3062[label="xwv611",fontsize=16,color="green",shape="box"];3063[label="xwv621",fontsize=16,color="green",shape="box"];3064[label="xwv611",fontsize=16,color="green",shape="box"];3065[label="xwv621",fontsize=16,color="green",shape="box"];3571[label="xwv512",fontsize=16,color="green",shape="box"];3572[label="xwv514",fontsize=16,color="green",shape="box"];3573[label="xwv510",fontsize=16,color="green",shape="box"];3574[label="xwv512",fontsize=16,color="green",shape="box"];3575[label="xwv522",fontsize=16,color="green",shape="box"];3576[label="xwv524",fontsize=16,color="green",shape="box"];3577[label="xwv514",fontsize=16,color="green",shape="box"];3578[label="xwv513",fontsize=16,color="green",shape="box"];3579[label="xwv520",fontsize=16,color="green",shape="box"];3580[label="xwv511",fontsize=16,color="green",shape="box"];3581[label="xwv521",fontsize=16,color="green",shape="box"];3582[label="xwv513",fontsize=16,color="green",shape="box"];3583[label="xwv511",fontsize=16,color="green",shape="box"];3584[label="xwv510",fontsize=16,color="green",shape="box"];3585[label="xwv523",fontsize=16,color="green",shape="box"];3570[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv290 xwv291 xwv292 xwv293 xwv294))",fontsize=16,color="burlywood",shape="triangle"];4712[label="xwv294/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3570 -> 4712[label="",style="solid", color="burlywood", weight=9]; 4712 -> 3661[label="",style="solid", color="burlywood", weight=3]; 4713[label="xwv294/FiniteMap.Branch xwv2940 xwv2941 xwv2942 xwv2943 xwv2944",fontsize=10,color="white",style="solid",shape="box"];3570 -> 4713[label="",style="solid", color="burlywood", weight=9]; 4713 -> 3662[label="",style="solid", color="burlywood", weight=3]; 3671[label="xwv511",fontsize=16,color="green",shape="box"];3672[label="xwv511",fontsize=16,color="green",shape="box"];3673[label="xwv524",fontsize=16,color="green",shape="box"];3674[label="xwv521",fontsize=16,color="green",shape="box"];3675[label="xwv514",fontsize=16,color="green",shape="box"];3676[label="xwv512",fontsize=16,color="green",shape="box"];3677[label="xwv520",fontsize=16,color="green",shape="box"];3678[label="xwv513",fontsize=16,color="green",shape="box"];3679[label="xwv522",fontsize=16,color="green",shape="box"];3680[label="xwv510",fontsize=16,color="green",shape="box"];3681[label="xwv510",fontsize=16,color="green",shape="box"];3682[label="xwv523",fontsize=16,color="green",shape="box"];3683[label="xwv514",fontsize=16,color="green",shape="box"];3684[label="xwv512",fontsize=16,color="green",shape="box"];3685[label="xwv513",fontsize=16,color="green",shape="box"];3670[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv306 xwv307 xwv308 xwv309 xwv310))",fontsize=16,color="burlywood",shape="triangle"];4714[label="xwv310/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3670 -> 4714[label="",style="solid", color="burlywood", weight=9]; 4714 -> 3761[label="",style="solid", color="burlywood", weight=3]; 4715[label="xwv310/FiniteMap.Branch xwv3100 xwv3101 xwv3102 xwv3103 xwv3104",fontsize=10,color="white",style="solid",shape="box"];3670 -> 4715[label="",style="solid", color="burlywood", weight=9]; 4715 -> 3762[label="",style="solid", color="burlywood", weight=3]; 3070[label="xwv511",fontsize=16,color="green",shape="box"];3071[label="xwv510",fontsize=16,color="green",shape="box"];3072[label="xwv513",fontsize=16,color="green",shape="box"];3073 -> 2686[label="",style="dashed", color="red", weight=0]; 3073[label="FiniteMap.deleteMax (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144)",fontsize=16,color="magenta"];3073 -> 3146[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3147[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3148[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3555[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (xwv258,xwv259)",fontsize=16,color="black",shape="box"];3555 -> 3563[label="",style="solid", color="black", weight=3]; 3556 -> 3368[label="",style="dashed", color="red", weight=0]; 3556[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv2610 xwv2611 xwv2612 xwv2613 xwv2614))",fontsize=16,color="magenta"];3556 -> 3564[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3565[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3567[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3568[label="",style="dashed", color="magenta", weight=3]; 3561[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (xwv274,xwv275)",fontsize=16,color="black",shape="box"];3561 -> 3663[label="",style="solid", color="black", weight=3]; 3562 -> 3462[label="",style="dashed", color="red", weight=0]; 3562[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv2770 xwv2771 xwv2772 xwv2773 xwv2774))",fontsize=16,color="magenta"];3562 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3080[label="xwv163",fontsize=16,color="green",shape="box"];3081[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 True",fontsize=16,color="black",shape="box"];3081 -> 3155[label="",style="solid", color="black", weight=3]; 3082 -> 3248[label="",style="dashed", color="red", weight=0]; 3082[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xwv160 xwv161 xwv163 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv13 xwv14 xwv164 xwv35)",fontsize=16,color="magenta"];3082 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3083[label="error []",fontsize=16,color="red",shape="box"];3084 -> 3248[label="",style="dashed", color="red", weight=0]; 3084[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xwv3530 xwv3531 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv13 xwv14 xwv16 xwv3533) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv350 xwv351 xwv3534 xwv354)",fontsize=16,color="magenta"];3084 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3085 -> 628[label="",style="dashed", color="red", weight=0]; 3085[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv353",fontsize=16,color="magenta"];3085 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3086 -> 410[label="",style="dashed", color="red", weight=0]; 3086[label="xwv611 == xwv621",fontsize=16,color="magenta"];3086 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3086 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3087 -> 416[label="",style="dashed", color="red", weight=0]; 3087[label="xwv611 == xwv621",fontsize=16,color="magenta"];3087 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3087 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3088 -> 414[label="",style="dashed", color="red", weight=0]; 3088[label="xwv611 == xwv621",fontsize=16,color="magenta"];3088 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3088 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3089 -> 419[label="",style="dashed", color="red", weight=0]; 3089[label="xwv611 == xwv621",fontsize=16,color="magenta"];3089 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3090 -> 420[label="",style="dashed", color="red", weight=0]; 3090[label="xwv611 == xwv621",fontsize=16,color="magenta"];3090 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3090 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3091 -> 421[label="",style="dashed", color="red", weight=0]; 3091[label="xwv611 == xwv621",fontsize=16,color="magenta"];3091 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3091 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3092 -> 415[label="",style="dashed", color="red", weight=0]; 3092[label="xwv611 == xwv621",fontsize=16,color="magenta"];3092 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3093 -> 411[label="",style="dashed", color="red", weight=0]; 3093[label="xwv611 == xwv621",fontsize=16,color="magenta"];3093 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3093 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3094 -> 417[label="",style="dashed", color="red", weight=0]; 3094[label="xwv611 == xwv621",fontsize=16,color="magenta"];3094 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3094 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3095 -> 412[label="",style="dashed", color="red", weight=0]; 3095[label="xwv611 == xwv621",fontsize=16,color="magenta"];3095 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3095 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3096 -> 422[label="",style="dashed", color="red", weight=0]; 3096[label="xwv611 == xwv621",fontsize=16,color="magenta"];3096 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3096 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3097 -> 413[label="",style="dashed", color="red", weight=0]; 3097[label="xwv611 == xwv621",fontsize=16,color="magenta"];3097 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3097 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3098 -> 409[label="",style="dashed", color="red", weight=0]; 3098[label="xwv611 == xwv621",fontsize=16,color="magenta"];3098 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3098 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3099 -> 418[label="",style="dashed", color="red", weight=0]; 3099[label="xwv611 == xwv621",fontsize=16,color="magenta"];3099 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3099 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3100 -> 1870[label="",style="dashed", color="red", weight=0]; 3100[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3100 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3100 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3101 -> 1871[label="",style="dashed", color="red", weight=0]; 3101[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3101 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3101 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3102 -> 1872[label="",style="dashed", color="red", weight=0]; 3102[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3102 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3103 -> 1873[label="",style="dashed", color="red", weight=0]; 3103[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3103 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3103 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3104 -> 1874[label="",style="dashed", color="red", weight=0]; 3104[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3104 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3104 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3105 -> 1875[label="",style="dashed", color="red", weight=0]; 3105[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3105 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3105 -> 3217[label="",style="dashed", color="magenta", weight=3]; 3106 -> 1876[label="",style="dashed", color="red", weight=0]; 3106[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3106 -> 3218[label="",style="dashed", color="magenta", weight=3]; 3106 -> 3219[label="",style="dashed", color="magenta", weight=3]; 3107 -> 1877[label="",style="dashed", color="red", weight=0]; 3107[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3107 -> 3220[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3108 -> 1878[label="",style="dashed", color="red", weight=0]; 3108[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3108 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3108 -> 3223[label="",style="dashed", color="magenta", weight=3]; 3109 -> 1879[label="",style="dashed", color="red", weight=0]; 3109[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3109 -> 3224[label="",style="dashed", color="magenta", weight=3]; 3109 -> 3225[label="",style="dashed", color="magenta", weight=3]; 3110 -> 1880[label="",style="dashed", color="red", weight=0]; 3110[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3110 -> 3226[label="",style="dashed", color="magenta", weight=3]; 3110 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3111 -> 1881[label="",style="dashed", color="red", weight=0]; 3111[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3111 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3111 -> 3229[label="",style="dashed", color="magenta", weight=3]; 3112 -> 1882[label="",style="dashed", color="red", weight=0]; 3112[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3112 -> 3230[label="",style="dashed", color="magenta", weight=3]; 3112 -> 3231[label="",style="dashed", color="magenta", weight=3]; 3113 -> 1883[label="",style="dashed", color="red", weight=0]; 3113[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3113 -> 3232[label="",style="dashed", color="magenta", weight=3]; 3113 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3114[label="xwv621",fontsize=16,color="green",shape="box"];3115[label="xwv611",fontsize=16,color="green",shape="box"];3116[label="xwv621",fontsize=16,color="green",shape="box"];3117[label="xwv611",fontsize=16,color="green",shape="box"];3118[label="xwv621",fontsize=16,color="green",shape="box"];3119[label="xwv611",fontsize=16,color="green",shape="box"];3120[label="xwv621",fontsize=16,color="green",shape="box"];3121[label="xwv611",fontsize=16,color="green",shape="box"];3122[label="xwv621",fontsize=16,color="green",shape="box"];3123[label="xwv611",fontsize=16,color="green",shape="box"];3124[label="xwv621",fontsize=16,color="green",shape="box"];3125[label="xwv611",fontsize=16,color="green",shape="box"];3126[label="xwv621",fontsize=16,color="green",shape="box"];3127[label="xwv611",fontsize=16,color="green",shape="box"];3128[label="xwv621",fontsize=16,color="green",shape="box"];3129[label="xwv611",fontsize=16,color="green",shape="box"];3130[label="xwv621",fontsize=16,color="green",shape="box"];3131[label="xwv611",fontsize=16,color="green",shape="box"];3132[label="xwv621",fontsize=16,color="green",shape="box"];3133[label="xwv611",fontsize=16,color="green",shape="box"];3134[label="xwv621",fontsize=16,color="green",shape="box"];3135[label="xwv611",fontsize=16,color="green",shape="box"];3136[label="xwv621",fontsize=16,color="green",shape="box"];3137[label="xwv611",fontsize=16,color="green",shape="box"];3138[label="xwv621",fontsize=16,color="green",shape="box"];3139[label="xwv611",fontsize=16,color="green",shape="box"];3140[label="xwv621",fontsize=16,color="green",shape="box"];3141[label="xwv611",fontsize=16,color="green",shape="box"];3661[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv290 xwv291 xwv292 xwv293 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];3661 -> 3763[label="",style="solid", color="black", weight=3]; 3662[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv290 xwv291 xwv292 xwv293 (FiniteMap.Branch xwv2940 xwv2941 xwv2942 xwv2943 xwv2944)))",fontsize=16,color="black",shape="box"];3662 -> 3764[label="",style="solid", color="black", weight=3]; 3761[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv306 xwv307 xwv308 xwv309 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];3761 -> 3765[label="",style="solid", color="black", weight=3]; 3762[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv306 xwv307 xwv308 xwv309 (FiniteMap.Branch xwv3100 xwv3101 xwv3102 xwv3103 xwv3104)))",fontsize=16,color="black",shape="box"];3762 -> 3766[label="",style="solid", color="black", weight=3]; 3146[label="xwv5144",fontsize=16,color="green",shape="box"];3147[label="xwv5143",fontsize=16,color="green",shape="box"];3148[label="xwv5142",fontsize=16,color="green",shape="box"];3149[label="xwv5141",fontsize=16,color="green",shape="box"];3150[label="xwv5140",fontsize=16,color="green",shape="box"];3563[label="xwv259",fontsize=16,color="green",shape="box"];3564[label="xwv2611",fontsize=16,color="green",shape="box"];3565[label="xwv2614",fontsize=16,color="green",shape="box"];3566[label="xwv2610",fontsize=16,color="green",shape="box"];3567[label="xwv2613",fontsize=16,color="green",shape="box"];3568[label="xwv2612",fontsize=16,color="green",shape="box"];3663[label="xwv274",fontsize=16,color="green",shape="box"];3664[label="xwv2771",fontsize=16,color="green",shape="box"];3665[label="xwv2772",fontsize=16,color="green",shape="box"];3666[label="xwv2770",fontsize=16,color="green",shape="box"];3667[label="xwv2773",fontsize=16,color="green",shape="box"];3668[label="xwv2774",fontsize=16,color="green",shape="box"];3155[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35",fontsize=16,color="burlywood",shape="box"];4716[label="xwv164/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3155 -> 4716[label="",style="solid", color="burlywood", weight=9]; 4716 -> 3246[label="",style="solid", color="burlywood", weight=3]; 4717[label="xwv164/FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644",fontsize=10,color="white",style="solid",shape="box"];3155 -> 4717[label="",style="solid", color="burlywood", weight=9]; 4717 -> 3247[label="",style="solid", color="burlywood", weight=3]; 3249[label="xwv14",fontsize=16,color="green",shape="box"];3250[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3251[label="xwv160",fontsize=16,color="green",shape="box"];3252[label="xwv164",fontsize=16,color="green",shape="box"];3253[label="xwv163",fontsize=16,color="green",shape="box"];3254[label="xwv13",fontsize=16,color="green",shape="box"];3255[label="xwv161",fontsize=16,color="green",shape="box"];3256[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3257[label="xwv35",fontsize=16,color="green",shape="box"];3248[label="FiniteMap.mkBranch (Pos (Succ xwv238)) xwv239 xwv240 xwv241 (FiniteMap.mkBranch (Pos (Succ xwv242)) xwv243 xwv244 xwv245 xwv246)",fontsize=16,color="black",shape="triangle"];3248 -> 3285[label="",style="solid", color="black", weight=3]; 3258[label="xwv351",fontsize=16,color="green",shape="box"];3259[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3260[label="xwv3530",fontsize=16,color="green",shape="box"];3261[label="xwv3534",fontsize=16,color="green",shape="box"];3262[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv13 xwv14 xwv16 xwv3533",fontsize=16,color="black",shape="box"];3262 -> 3286[label="",style="solid", color="black", weight=3]; 3263[label="xwv350",fontsize=16,color="green",shape="box"];3264[label="xwv3531",fontsize=16,color="green",shape="box"];3265[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3266[label="xwv354",fontsize=16,color="green",shape="box"];3177[label="xwv353",fontsize=16,color="green",shape="box"];3178[label="xwv611",fontsize=16,color="green",shape="box"];3179[label="xwv621",fontsize=16,color="green",shape="box"];3180[label="xwv611",fontsize=16,color="green",shape="box"];3181[label="xwv621",fontsize=16,color="green",shape="box"];3182[label="xwv611",fontsize=16,color="green",shape="box"];3183[label="xwv621",fontsize=16,color="green",shape="box"];3184[label="xwv611",fontsize=16,color="green",shape="box"];3185[label="xwv621",fontsize=16,color="green",shape="box"];3186[label="xwv611",fontsize=16,color="green",shape="box"];3187[label="xwv621",fontsize=16,color="green",shape="box"];3188[label="xwv611",fontsize=16,color="green",shape="box"];3189[label="xwv621",fontsize=16,color="green",shape="box"];3190[label="xwv611",fontsize=16,color="green",shape="box"];3191[label="xwv621",fontsize=16,color="green",shape="box"];3192[label="xwv611",fontsize=16,color="green",shape="box"];3193[label="xwv621",fontsize=16,color="green",shape="box"];3194[label="xwv611",fontsize=16,color="green",shape="box"];3195[label="xwv621",fontsize=16,color="green",shape="box"];3196[label="xwv611",fontsize=16,color="green",shape="box"];3197[label="xwv621",fontsize=16,color="green",shape="box"];3198[label="xwv611",fontsize=16,color="green",shape="box"];3199[label="xwv621",fontsize=16,color="green",shape="box"];3200[label="xwv611",fontsize=16,color="green",shape="box"];3201[label="xwv621",fontsize=16,color="green",shape="box"];3202[label="xwv611",fontsize=16,color="green",shape="box"];3203[label="xwv621",fontsize=16,color="green",shape="box"];3204[label="xwv611",fontsize=16,color="green",shape="box"];3205[label="xwv621",fontsize=16,color="green",shape="box"];3206[label="xwv612",fontsize=16,color="green",shape="box"];3207[label="xwv622",fontsize=16,color="green",shape="box"];3208[label="xwv612",fontsize=16,color="green",shape="box"];3209[label="xwv622",fontsize=16,color="green",shape="box"];3210[label="xwv612",fontsize=16,color="green",shape="box"];3211[label="xwv622",fontsize=16,color="green",shape="box"];3212[label="xwv612",fontsize=16,color="green",shape="box"];3213[label="xwv622",fontsize=16,color="green",shape="box"];3214[label="xwv612",fontsize=16,color="green",shape="box"];3215[label="xwv622",fontsize=16,color="green",shape="box"];3216[label="xwv612",fontsize=16,color="green",shape="box"];3217[label="xwv622",fontsize=16,color="green",shape="box"];3218[label="xwv612",fontsize=16,color="green",shape="box"];3219[label="xwv622",fontsize=16,color="green",shape="box"];3220[label="xwv612",fontsize=16,color="green",shape="box"];3221[label="xwv622",fontsize=16,color="green",shape="box"];3222[label="xwv612",fontsize=16,color="green",shape="box"];3223[label="xwv622",fontsize=16,color="green",shape="box"];3224[label="xwv612",fontsize=16,color="green",shape="box"];3225[label="xwv622",fontsize=16,color="green",shape="box"];3226[label="xwv612",fontsize=16,color="green",shape="box"];3227[label="xwv622",fontsize=16,color="green",shape="box"];3228[label="xwv612",fontsize=16,color="green",shape="box"];3229[label="xwv622",fontsize=16,color="green",shape="box"];3230[label="xwv612",fontsize=16,color="green",shape="box"];3231[label="xwv622",fontsize=16,color="green",shape="box"];3232[label="xwv612",fontsize=16,color="green",shape="box"];3233[label="xwv622",fontsize=16,color="green",shape="box"];3763[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (xwv290,xwv291)",fontsize=16,color="black",shape="box"];3763 -> 3767[label="",style="solid", color="black", weight=3]; 3764 -> 3570[label="",style="dashed", color="red", weight=0]; 3764[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv2940 xwv2941 xwv2942 xwv2943 xwv2944))",fontsize=16,color="magenta"];3764 -> 3768[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3769[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3770[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3771[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3772[label="",style="dashed", color="magenta", weight=3]; 3765[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (xwv306,xwv307)",fontsize=16,color="black",shape="box"];3765 -> 3773[label="",style="solid", color="black", weight=3]; 3766 -> 3670[label="",style="dashed", color="red", weight=0]; 3766[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv3100 xwv3101 xwv3102 xwv3103 xwv3104))",fontsize=16,color="magenta"];3766 -> 3774[label="",style="dashed", color="magenta", weight=3]; 3766 -> 3775[label="",style="dashed", color="magenta", weight=3]; 3766 -> 3776[label="",style="dashed", color="magenta", weight=3]; 3766 -> 3777[label="",style="dashed", color="magenta", weight=3]; 3766 -> 3778[label="",style="dashed", color="magenta", weight=3]; 3246[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 FiniteMap.EmptyFM) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 FiniteMap.EmptyFM) xwv35",fontsize=16,color="black",shape="box"];3246 -> 3295[label="",style="solid", color="black", weight=3]; 3247[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644)) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644)) xwv35",fontsize=16,color="black",shape="box"];3247 -> 3296[label="",style="solid", color="black", weight=3]; 3285 -> 628[label="",style="dashed", color="red", weight=0]; 3285[label="FiniteMap.mkBranchResult xwv239 xwv240 xwv241 (FiniteMap.mkBranch (Pos (Succ xwv242)) xwv243 xwv244 xwv245 xwv246)",fontsize=16,color="magenta"];3285 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3286 -> 628[label="",style="dashed", color="red", weight=0]; 3286[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv3533",fontsize=16,color="magenta"];3286 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3767[label="xwv291",fontsize=16,color="green",shape="box"];3768[label="xwv2940",fontsize=16,color="green",shape="box"];3769[label="xwv2942",fontsize=16,color="green",shape="box"];3770[label="xwv2944",fontsize=16,color="green",shape="box"];3771[label="xwv2943",fontsize=16,color="green",shape="box"];3772[label="xwv2941",fontsize=16,color="green",shape="box"];3773[label="xwv306",fontsize=16,color="green",shape="box"];3774[label="xwv3101",fontsize=16,color="green",shape="box"];3775[label="xwv3104",fontsize=16,color="green",shape="box"];3776[label="xwv3102",fontsize=16,color="green",shape="box"];3777[label="xwv3100",fontsize=16,color="green",shape="box"];3778[label="xwv3103",fontsize=16,color="green",shape="box"];3295[label="error []",fontsize=16,color="red",shape="box"];3296 -> 3248[label="",style="dashed", color="red", weight=0]; 3296[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xwv1640 xwv1641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv160 xwv161 xwv163 xwv1643) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv13 xwv14 xwv1644 xwv35)",fontsize=16,color="magenta"];3296 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3297[label="xwv240",fontsize=16,color="green",shape="box"];3298[label="xwv239",fontsize=16,color="green",shape="box"];3299[label="xwv241",fontsize=16,color="green",shape="box"];3300[label="FiniteMap.mkBranch (Pos (Succ xwv242)) xwv243 xwv244 xwv245 xwv246",fontsize=16,color="black",shape="triangle"];3300 -> 3323[label="",style="solid", color="black", weight=3]; 3301[label="xwv3533",fontsize=16,color="green",shape="box"];3314[label="xwv14",fontsize=16,color="green",shape="box"];3315[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3316[label="xwv1640",fontsize=16,color="green",shape="box"];3317[label="xwv1644",fontsize=16,color="green",shape="box"];3318 -> 3300[label="",style="dashed", color="red", weight=0]; 3318[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv160 xwv161 xwv163 xwv1643",fontsize=16,color="magenta"];3318 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3334[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3335[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3336[label="",style="dashed", color="magenta", weight=3]; 3319[label="xwv13",fontsize=16,color="green",shape="box"];3320[label="xwv1641",fontsize=16,color="green",shape="box"];3321[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3322[label="xwv35",fontsize=16,color="green",shape="box"];3323 -> 628[label="",style="dashed", color="red", weight=0]; 3323[label="FiniteMap.mkBranchResult xwv243 xwv244 xwv245 xwv246",fontsize=16,color="magenta"];3323 -> 3337[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3338[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3332[label="xwv161",fontsize=16,color="green",shape="box"];3333[label="xwv163",fontsize=16,color="green",shape="box"];3334[label="xwv160",fontsize=16,color="green",shape="box"];3335[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3336[label="xwv1643",fontsize=16,color="green",shape="box"];3337[label="xwv244",fontsize=16,color="green",shape="box"];3338[label="xwv243",fontsize=16,color="green",shape="box"];3339[label="xwv245",fontsize=16,color="green",shape="box"];3340[label="xwv246",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(xwv3000)) -> new_primCmpNat(xwv4000, xwv3000) 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(xwv3000)) -> new_primCmpNat(xwv4000, xwv3000) 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_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_[], bba)), bah)) -> new_lt0(xwv610, xwv620, bba) new_ltEs3(Left(xwv610), Left(xwv620), app(ty_Maybe, bca), bcb) -> new_ltEs(xwv610, xwv620, bca) new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(app(ty_@3, bcd), bce), bcf)), bcb)) -> new_ltEs1(xwv610, xwv620, bcd, bce, bcf) new_compare22(xwv126, xwv127, xwv128, xwv129, False, cbg, app(ty_[], cca)) -> new_ltEs0(xwv127, xwv129, cca) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, app(app(ty_@2, bhf), bhg)) -> new_ltEs2(xwv79, xwv82, bhf, bhg) new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, bdc), app(app(ty_@2, bea), beb))) -> new_ltEs2(xwv610, xwv620, bea, beb) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(app(ty_@3, bbb), bbc), bbd), bah) -> new_lt1(xwv610, xwv620, bbb, bbc, bbd) new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_@2, be), bf))) -> new_ltEs2(xwv610, xwv620, be, bf) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_Either, hc), hd)), dg), fb)) -> new_lt3(xwv610, xwv620, hc, hd) new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, bdc), app(ty_[], bde))) -> new_ltEs0(xwv610, xwv620, bde) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), he, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs1(xwv611, xwv621, hh, baa, bab) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), app(app(ty_@2, fh), ga)), fb)) -> new_lt2(xwv611, xwv621, fh, ga) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, app(app(app(ty_@3, fd), ff), fg), fb) -> new_lt1(xwv611, xwv621, fd, ff, fg) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, app(app(ty_@2, fh), ga), fb) -> new_lt2(xwv611, xwv621, fh, ga) new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_Either, bda), bdb)), bcb)) -> new_ltEs3(xwv610, xwv620, bda, bdb) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), app(app(app(ty_@3, fd), ff), fg)), fb)) -> new_lt1(xwv611, xwv621, fd, ff, fg) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, app(ty_[], ea)) -> new_ltEs0(xwv612, xwv622, ea) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), dg), app(ty_[], ea))) -> new_ltEs0(xwv612, xwv622, ea) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, he), app(ty_Maybe, hf))) -> new_ltEs(xwv611, xwv621, hf) new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_Either, bg), bh)) -> new_ltEs3(xwv610, xwv620, bg, bh) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, app(app(ty_@2, bgd), bge), bff, bfg) -> new_lt2(xwv77, xwv80, bgd, bge) new_compare22(xwv126, xwv127, xwv128, xwv129, False, app(ty_Maybe, cda), cdb) -> new_lt(xwv126, xwv128, cda) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_[], ge)), dg), fb)) -> new_lt0(xwv610, xwv620, ge) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(app(ty_@3, gf), gg), gh)), dg), fb)) -> new_lt1(xwv610, xwv620, gf, gg, gh) new_compare23(xwv99, xwv100, False, app(app(ty_@2, cfe), cff), ceh) -> new_ltEs2(xwv99, xwv100, cfe, cff) new_ltEs3(Left(xwv610), Left(xwv620), app(app(ty_@2, bcg), bch), bcb) -> new_ltEs2(xwv610, xwv620, bcg, bch) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, he), app(app(app(ty_@3, hh), baa), bab))) -> new_ltEs1(xwv611, xwv621, hh, baa, bab) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, he), app(app(ty_@2, bac), bad))) -> new_ltEs2(xwv611, xwv621, bac, bad) new_compare22(xwv126, xwv127, xwv128, xwv129, False, cbg, app(app(ty_Either, ccg), cch)) -> new_ltEs3(xwv127, xwv129, ccg, cch) new_compare24(xwv106, xwv107, False, cga, app(app(ty_@2, cgg), cgh)) -> new_ltEs2(xwv106, xwv107, cgg, cgh) new_ltEs(Just(xwv610), Just(xwv620), app(ty_[], ba)) -> new_ltEs0(xwv610, xwv620, ba) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), dg), app(app(ty_@2, ee), ef))) -> new_ltEs2(xwv612, xwv622, ee, ef) new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_[], bcc)), bcb)) -> new_ltEs0(xwv610, xwv620, bcc) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, app(ty_Maybe, fa), fb) -> new_lt(xwv611, xwv621, fa) new_compare1(Just(xwv400), Just(xwv300), de) -> new_compare20(xwv400, xwv300, new_esEs4(xwv400, xwv300, de), de) new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(app(ty_@3, bb), bc), bd))) -> new_ltEs1(xwv610, xwv620, bb, bc, bd) new_lt(xwv18, xwv13, bee) -> new_compare1(xwv18, xwv13, bee) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(app(ty_@3, bbb), bbc), bbd)), bah)) -> new_lt1(xwv610, xwv620, bbb, bbc, bbd) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_ltEs1(xwv79, xwv82, bhc, bhd, bhe) new_primCompAux(xwv400, xwv300, xwv56, app(app(ty_@2, da), db)) -> new_compare3(xwv400, xwv300, da, db) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_@2, bbe), bbf)), bah)) -> new_lt2(xwv610, xwv620, bbe, bbf) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, app(ty_[], fc), fb) -> new_lt0(xwv611, xwv621, fc) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, app(app(ty_Either, gb), gc), fb) -> new_lt3(xwv611, xwv621, gb, gc) new_compare20(xwv61, xwv62, False, app(ty_[], ca)) -> new_compare(xwv61, xwv62, ca) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_[], ge), dg, fb) -> new_lt0(xwv610, xwv620, ge) new_compare22(xwv126, xwv127, xwv128, xwv129, False, app(app(ty_@2, cdg), cdh), cdb) -> new_lt2(xwv126, xwv128, cdg, cdh) new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_Either, bg), bh))) -> new_ltEs3(xwv610, xwv620, bg, bh) new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(xwv610, xwv620, h) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), dg), app(ty_Maybe, dh))) -> new_ltEs(xwv612, xwv622, dh) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, app(ty_Maybe, cab), bfg) -> new_lt(xwv78, xwv81, cab) new_compare3(@2(xwv400, xwv401), @2(xwv300, xwv301), cbe, cbf) -> new_compare22(xwv400, xwv401, xwv300, xwv301, new_asAs(new_esEs8(xwv400, xwv300, cbe), new_esEs9(xwv401, xwv301, cbf)), cbe, cbf) new_ltEs(Just(xwv610), Just(xwv620), app(app(app(ty_@3, bb), bc), bd)) -> new_ltEs1(xwv610, xwv620, bb, bc, bd) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_Maybe, bag)), bah)) -> new_lt(xwv610, xwv620, bag) new_compare24(xwv106, xwv107, False, cga, app(ty_[], cgc)) -> new_ltEs0(xwv106, xwv107, cgc) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), dg), app(app(ty_Either, eg), eh))) -> new_ltEs3(xwv612, xwv622, eg, eh) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), he, app(ty_Maybe, hf)) -> new_ltEs(xwv611, xwv621, hf) new_compare22(xwv126, xwv127, xwv128, xwv129, False, cbg, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs1(xwv127, xwv129, ccb, ccc, ccd) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, app(app(ty_@2, cag), cah), bfg) -> new_lt2(xwv78, xwv81, cag, cah) new_compare23(xwv99, xwv100, False, app(ty_[], cfa), ceh) -> new_ltEs0(xwv99, xwv100, cfa) new_ltEs0(xwv61, xwv62, ca) -> new_compare(xwv61, xwv62, ca) new_ltEs3(Left(xwv610), Left(xwv620), app(ty_[], bcc), bcb) -> new_ltEs0(xwv610, xwv620, bcc) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(app(ty_@3, gf), gg), gh), dg, fb) -> new_lt1(xwv610, xwv620, gf, gg, gh) new_lt0(xwv18, xwv13, bef) -> new_compare(xwv18, xwv13, bef) new_compare2(@3(xwv400, xwv401, xwv402), @3(xwv300, xwv301, xwv302), bfb, bfc, bfd) -> new_compare21(xwv400, xwv401, xwv402, xwv300, xwv301, xwv302, new_asAs(new_esEs5(xwv400, xwv300, bfb), new_asAs(new_esEs6(xwv401, xwv301, bfc), new_esEs7(xwv402, xwv302, bfd))), bfb, bfc, bfd) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, app(app(app(ty_@3, bga), bgb), bgc), bff, bfg) -> new_lt1(xwv77, xwv80, bga, bgb, bgc) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, app(ty_[], cac), bfg) -> new_lt0(xwv78, xwv81, cac) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), he, app(app(ty_Either, bae), baf)) -> new_ltEs3(xwv611, xwv621, bae, baf) new_compare22(xwv126, xwv127, xwv128, xwv129, False, app(ty_[], cdc), cdb) -> new_lt0(xwv126, xwv128, cdc) new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_@2, be), bf)) -> new_ltEs2(xwv610, xwv620, be, bf) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, app(ty_[], bhb)) -> new_ltEs0(xwv79, xwv82, bhb) new_compare24(xwv106, xwv107, False, cga, app(app(app(ty_@3, cgd), cge), cgf)) -> new_ltEs1(xwv106, xwv107, cgd, cge, cgf) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_Either, hc), hd), dg, fb) -> new_lt3(xwv610, xwv620, hc, hd) new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_[], ba))) -> new_ltEs0(xwv610, xwv620, ba) new_compare24(xwv106, xwv107, False, cga, app(app(ty_Either, cha), chb)) -> new_ltEs3(xwv106, xwv107, cha, chb) new_ltEs3(Left(xwv610), Left(xwv620), app(app(ty_Either, bda), bdb), bcb) -> new_ltEs3(xwv610, xwv620, bda, bdb) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_Maybe, gd)), dg), fb)) -> new_lt(xwv610, xwv620, gd) new_primCompAux(xwv400, xwv300, xwv56, app(ty_Maybe, cc)) -> new_compare1(xwv400, xwv300, cc) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, app(app(ty_Either, bgf), bgg), bff, bfg) -> new_lt3(xwv77, xwv80, bgf, bgg) new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_Maybe, bca)), bcb)) -> new_ltEs(xwv610, xwv620, bca) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, app(ty_Maybe, bha)) -> new_ltEs(xwv79, xwv82, bha) new_ltEs3(Right(xwv610), Right(xwv620), bdc, app(ty_[], bde)) -> new_ltEs0(xwv610, xwv620, bde) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), app(app(ty_Either, gb), gc)), fb)) -> new_lt3(xwv611, xwv621, gb, gc) new_ltEs3(Right(xwv610), Right(xwv620), bdc, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs1(xwv610, xwv620, bdf, bdg, bdh) new_compare23(xwv99, xwv100, False, app(app(app(ty_@3, cfb), cfc), cfd), ceh) -> new_ltEs1(xwv99, xwv100, cfb, cfc, cfd) new_compare22(xwv126, xwv127, xwv128, xwv129, False, app(app(app(ty_@3, cdd), cde), cdf), cdb) -> new_lt1(xwv126, xwv128, cdd, cde, cdf) new_compare22(xwv126, xwv127, xwv128, xwv129, False, app(app(ty_Either, cea), ceb), cdb) -> new_lt3(xwv126, xwv128, cea, ceb) new_primCompAux(xwv400, xwv300, xwv56, app(app(ty_Either, dc), dd)) -> new_compare4(xwv400, xwv300, dc, dd) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_[], bba), bah) -> new_lt0(xwv610, xwv620, bba) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, app(app(ty_Either, bhh), caa)) -> new_ltEs3(xwv79, xwv82, bhh, caa) new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, bdc), app(app(ty_Either, bec), bed))) -> new_ltEs3(xwv610, xwv620, bec, bed) new_ltEs3(Right(xwv610), Right(xwv620), bdc, app(app(ty_Either, bec), bed)) -> new_ltEs3(xwv610, xwv620, bec, bed) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, app(ty_[], bfh), bff, bfg) -> new_lt0(xwv77, xwv80, bfh) new_lt2(xwv18, xwv13, cbc, cbd) -> new_compare3(xwv18, xwv13, cbc, cbd) new_compare22(xwv126, xwv127, xwv128, xwv129, False, cbg, app(ty_Maybe, cbh)) -> new_ltEs(xwv127, xwv129, cbh) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_@2, ha), hb)), dg), fb)) -> new_lt2(xwv610, xwv620, ha, hb) new_primCompAux(xwv400, xwv300, xwv56, app(app(app(ty_@3, ce), cf), cg)) -> new_compare2(xwv400, xwv300, ce, cf, cg) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, app(app(ty_Either, eg), eh)) -> new_ltEs3(xwv612, xwv622, eg, eh) new_compare(:(xwv400, xwv401), :(xwv300, xwv301), cb) -> new_primCompAux(xwv400, xwv300, new_compare0(xwv401, xwv301, cb), cb) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_@2, bbe), bbf), bah) -> new_lt2(xwv610, xwv620, bbe, bbf) new_compare4(Right(xwv400), Right(xwv300), cee, cef) -> new_compare24(xwv400, xwv300, new_esEs11(xwv400, xwv300, cef), cee, cef) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_Maybe, gd), dg, fb) -> new_lt(xwv610, xwv620, gd) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), he, app(app(ty_@2, bac), bad)) -> new_ltEs2(xwv611, xwv621, bac, bad) new_ltEs3(Left(xwv610), Left(xwv620), app(app(app(ty_@3, bcd), bce), bcf), bcb) -> new_ltEs1(xwv610, xwv620, bcd, bce, bcf) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), app(ty_Maybe, fa)), fb)) -> new_lt(xwv611, xwv621, fa) new_compare23(xwv99, xwv100, False, app(ty_Maybe, ceg), ceh) -> new_ltEs(xwv99, xwv100, ceg) new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, bdc), app(ty_Maybe, bdd))) -> new_ltEs(xwv610, xwv620, bdd) new_primCompAux(xwv400, xwv300, xwv56, app(ty_[], cd)) -> new_compare(xwv400, xwv300, cd) new_compare23(xwv99, xwv100, False, app(app(ty_Either, cfg), cfh), ceh) -> new_ltEs3(xwv99, xwv100, cfg, cfh) new_compare24(xwv106, xwv107, False, cga, app(ty_Maybe, cgb)) -> new_ltEs(xwv106, xwv107, cgb) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), he, app(ty_[], hg)) -> new_ltEs0(xwv611, xwv621, hg) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, app(app(ty_Either, cba), cbb), bfg) -> new_lt3(xwv78, xwv81, cba, cbb) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), app(ty_[], fc)), fb)) -> new_lt0(xwv611, xwv621, fc) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_@2, ha), hb), dg, fb) -> new_lt2(xwv610, xwv620, ha, hb) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, he), app(ty_[], hg))) -> new_ltEs0(xwv611, xwv621, hg) new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_@2, bcg), bch)), bcb)) -> new_ltEs2(xwv610, xwv620, bcg, bch) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs1(xwv612, xwv622, eb, ec, ed) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), dg), app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs1(xwv612, xwv622, eb, ec, ed) new_lt3(xwv18, xwv13, cec, ced) -> new_compare4(xwv18, xwv13, cec, ced) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, app(ty_Maybe, bfe), bff, bfg) -> new_lt(xwv77, xwv80, bfe) new_ltEs(Just(xwv610), Just(xwv620), app(ty_Maybe, h)) -> new_ltEs(xwv610, xwv620, h) new_compare(:(xwv400, xwv401), :(xwv300, xwv301), cb) -> new_compare(xwv401, xwv301, cb) new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, bdc), app(app(app(ty_@3, bdf), bdg), bdh))) -> new_ltEs1(xwv610, xwv620, bdf, bdg, bdh) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, he), app(app(ty_Either, bae), baf))) -> new_ltEs3(xwv611, xwv621, bae, baf) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_Maybe, bag), bah) -> new_lt(xwv610, xwv620, bag) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, app(app(ty_@2, ee), ef)) -> new_ltEs2(xwv612, xwv622, ee, ef) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_Either, bbg), bbh)), bah)) -> new_lt3(xwv610, xwv620, bbg, bbh) new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, app(app(app(ty_@3, cad), cae), caf), bfg) -> new_lt1(xwv78, xwv81, cad, cae, caf) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_Either, bbg), bbh), bah) -> new_lt3(xwv610, xwv620, bbg, bbh) new_ltEs3(Right(xwv610), Right(xwv620), bdc, app(app(ty_@2, bea), beb)) -> new_ltEs2(xwv610, xwv620, bea, beb) new_compare22(xwv126, xwv127, xwv128, xwv129, False, cbg, app(app(ty_@2, cce), ccf)) -> new_ltEs2(xwv127, xwv129, cce, ccf) new_ltEs3(Right(xwv610), Right(xwv620), bdc, app(ty_Maybe, bdd)) -> new_ltEs(xwv610, xwv620, bdd) new_compare4(Left(xwv400), Left(xwv300), cee, cef) -> new_compare23(xwv400, xwv300, new_esEs10(xwv400, xwv300, cee), cee, cef) new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, app(ty_Maybe, dh)) -> new_ltEs(xwv612, xwv622, dh) new_lt1(xwv18, xwv13, beg, beh, bfa) -> new_compare2(xwv18, xwv13, beg, beh, bfa) The TRS R consists of the following rules: new_esEs10(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_ltEs24(xwv612, xwv622, ty_Float) -> new_ltEs12(xwv612, xwv622) new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv300)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs35(xwv611, xwv621, app(ty_[], fc)) -> new_esEs22(xwv611, xwv621, fc) new_esEs4(xwv400, xwv300, app(ty_Maybe, fac)) -> new_esEs17(xwv400, xwv300, fac) new_primPlusNat0(Zero, Zero) -> Zero new_lt22(xwv611, xwv621, ty_Char) -> new_lt6(xwv611, xwv621) new_compare9(EQ, LT) -> GT new_ltEs5(Right(xwv610), Right(xwv620), bdc, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs10(xwv610, xwv620, bdf, bdg, bdh) new_pePe(True, xwv210) -> True new_esEs29(xwv610, xwv620, ty_Integer) -> new_esEs19(xwv610, xwv620) new_esEs31(xwv77, xwv80, app(ty_Maybe, bfe)) -> new_esEs17(xwv77, xwv80, bfe) new_compare9(GT, LT) -> GT new_esEs8(xwv400, xwv300, app(ty_[], edg)) -> new_esEs22(xwv400, xwv300, edg) new_esEs27(xwv281, xwv331, ty_Float) -> new_esEs18(xwv281, xwv331) new_esEs31(xwv77, xwv80, ty_Char) -> new_esEs13(xwv77, xwv80) new_esEs33(xwv126, xwv128, ty_Bool) -> new_esEs20(xwv126, xwv128) new_esEs10(xwv400, xwv300, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs23(xwv400, xwv300, ecf, ecg, ech) new_esEs5(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_lt5(xwv610, xwv620, ty_Char) -> new_lt6(xwv610, xwv620) new_esEs6(xwv401, xwv301, ty_Bool) -> new_esEs20(xwv401, xwv301) new_esEs27(xwv281, xwv331, ty_Bool) -> new_esEs20(xwv281, xwv331) new_esEs27(xwv281, xwv331, app(app(ty_Either, dee), def)) -> new_esEs12(xwv281, xwv331, dee, def) new_compare19(Just(xwv400), Just(xwv300), de) -> new_compare27(xwv400, xwv300, new_esEs4(xwv400, xwv300, de), de) new_compare33(xwv400, xwv300, app(ty_Maybe, cc)) -> new_compare19(xwv400, xwv300, cc) new_compare33(xwv400, xwv300, app(app(ty_@2, da), db)) -> new_compare15(xwv400, xwv300, da, db) new_esEs12(Left(xwv280), Left(xwv330), ty_Double, dgb) -> new_esEs21(xwv280, xwv330) new_esEs34(xwv610, xwv620, ty_Ordering) -> new_esEs24(xwv610, xwv620) new_esEs4(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_compare33(xwv400, xwv300, ty_@0) -> new_compare7(xwv400, xwv300) new_esEs7(xwv402, xwv302, ty_Ordering) -> new_esEs24(xwv402, xwv302) new_ltEs18(xwv611, xwv621, ty_Float) -> new_ltEs12(xwv611, xwv621) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs8(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_compare14(xwv157, xwv158, True, fdd, fde) -> LT new_primCmpInt(Pos(Zero), Neg(Succ(xwv3000))) -> GT new_compare26(xwv106, xwv107, True, cga, ebb) -> EQ new_esEs35(xwv611, xwv621, ty_Double) -> new_esEs21(xwv611, xwv621) new_esEs33(xwv126, xwv128, ty_Float) -> new_esEs18(xwv126, xwv128) new_ltEs19(xwv106, xwv107, app(ty_Ratio, ebc)) -> new_ltEs16(xwv106, xwv107, ebc) new_esEs6(xwv401, xwv301, ty_Float) -> new_esEs18(xwv401, xwv301) new_esEs29(xwv610, xwv620, app(ty_[], bba)) -> new_esEs22(xwv610, xwv620, bba) new_esEs30(xwv280, xwv330, app(ty_Ratio, egb)) -> new_esEs16(xwv280, xwv330, egb) new_ltEs24(xwv612, xwv622, app(ty_Maybe, dh)) -> new_ltEs8(xwv612, xwv622, dh) new_esEs32(xwv78, xwv81, ty_Int) -> new_esEs15(xwv78, xwv81) new_lt20(xwv78, xwv81, ty_@0) -> new_lt13(xwv78, xwv81) new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv300)) -> new_primCmpNat0(xwv300, Succ(xwv4000)) new_compare26(xwv106, xwv107, False, cga, ebb) -> new_compare13(xwv106, xwv107, new_ltEs19(xwv106, xwv107, ebb), cga, ebb) new_esEs12(Right(xwv280), Right(xwv330), dhc, ty_Bool) -> new_esEs20(xwv280, xwv330) new_ltEs21(xwv99, xwv100, ty_Char) -> new_ltEs6(xwv99, xwv100) new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, True, ehe, ehf, ehg) -> LT new_ltEs11(GT, EQ) -> False new_esEs11(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_compare111(xwv194, xwv195, xwv196, xwv197, False, fbh, fca) -> GT new_lt5(xwv610, xwv620, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt10(xwv610, xwv620, bbb, bbc, bbd) new_esEs36(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) new_lt19(xwv77, xwv80, app(app(ty_Either, bgf), bgg)) -> new_lt18(xwv77, xwv80, bgf, bgg) new_esEs12(Left(xwv280), Left(xwv330), app(app(ty_@2, dha), dhb), dgb) -> new_esEs25(xwv280, xwv330, dha, dhb) new_ltEs22(xwv79, xwv82, ty_Integer) -> new_ltEs7(xwv79, xwv82) new_esEs35(xwv611, xwv621, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs23(xwv611, xwv621, fd, ff, fg) new_ltEs4(xwv61, xwv62) -> new_fsEs(new_compare7(xwv61, xwv62)) new_esEs24(EQ, EQ) -> True new_esEs29(xwv610, xwv620, ty_Double) -> new_esEs21(xwv610, xwv620) new_esEs8(xwv400, xwv300, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs23(xwv400, xwv300, edh, eea, eeb) new_esEs9(xwv401, xwv301, ty_@0) -> new_esEs14(xwv401, xwv301) new_lt19(xwv77, xwv80, ty_@0) -> new_lt13(xwv77, xwv80) new_ltEs5(Left(xwv610), Right(xwv620), bdc, bcb) -> True new_esEs12(Left(xwv280), Left(xwv330), app(app(app(ty_@3, dgf), dgg), dgh), dgb) -> new_esEs23(xwv280, xwv330, dgf, dgg, dgh) new_ltEs8(Just(xwv610), Just(xwv620), ty_Char) -> new_ltEs6(xwv610, xwv620) new_esEs33(xwv126, xwv128, app(app(ty_Either, cea), ceb)) -> new_esEs12(xwv126, xwv128, cea, ceb) new_esEs21(Double(xwv280, xwv281), Double(xwv330, xwv331)) -> new_esEs15(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) new_esEs6(xwv401, xwv301, app(app(ty_Either, dae), daf)) -> new_esEs12(xwv401, xwv301, dae, daf) new_primEqInt(Pos(Succ(xwv2800)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xwv3300))) -> False new_compare110(xwv194, xwv195, xwv196, xwv197, False, xwv199, fbh, fca) -> new_compare111(xwv194, xwv195, xwv196, xwv197, xwv199, fbh, fca) new_lt23(xwv610, xwv620, ty_Integer) -> new_lt7(xwv610, xwv620) new_ltEs20(xwv61, xwv62, ty_@0) -> new_ltEs4(xwv61, xwv62) new_esEs10(xwv400, xwv300, app(ty_[], ece)) -> new_esEs22(xwv400, xwv300, ece) new_lt21(xwv126, xwv128, ty_Ordering) -> new_lt11(xwv126, xwv128) new_compare31(True, False) -> GT new_ltEs13(True, True) -> True new_ltEs23(xwv127, xwv129, app(app(ty_Either, ccg), cch)) -> new_ltEs5(xwv127, xwv129, ccg, cch) new_esEs15(xwv28, xwv33) -> new_primEqInt(xwv28, xwv33) new_primEqNat0(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat0(xwv2800, xwv3300) new_esEs37(xwv281, xwv331, ty_Bool) -> new_esEs20(xwv281, xwv331) new_esEs12(Right(xwv280), Right(xwv330), dhc, ty_Float) -> new_esEs18(xwv280, xwv330) new_esEs17(Nothing, Nothing, fdf) -> True new_esEs36(xwv280, xwv330, ty_Char) -> new_esEs13(xwv280, xwv330) new_esEs9(xwv401, xwv301, ty_Char) -> new_esEs13(xwv401, xwv301) new_compare25(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, True, bgh, bff, bfg) -> EQ new_esEs17(Nothing, Just(xwv330), fdf) -> False new_esEs17(Just(xwv280), Nothing, fdf) -> False new_compare5(@3(xwv400, xwv401, xwv402), @3(xwv300, xwv301, xwv302), bfb, bfc, bfd) -> new_compare25(xwv400, xwv401, xwv402, xwv300, xwv301, xwv302, new_asAs(new_esEs5(xwv400, xwv300, bfb), new_asAs(new_esEs6(xwv401, xwv301, bfc), new_esEs7(xwv402, xwv302, bfd))), bfb, bfc, bfd) new_ltEs22(xwv79, xwv82, ty_Ordering) -> new_ltEs11(xwv79, xwv82) new_lt21(xwv126, xwv128, ty_Int) -> new_lt15(xwv126, xwv128) new_esEs11(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_esEs39(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs24(GT, GT) -> True new_not(True) -> False new_ltEs24(xwv612, xwv622, ty_Double) -> new_ltEs17(xwv612, xwv622) new_ltEs18(xwv611, xwv621, ty_Double) -> new_ltEs17(xwv611, xwv621) new_lt21(xwv126, xwv128, app(ty_Maybe, cda)) -> new_lt8(xwv126, xwv128, cda) new_lt22(xwv611, xwv621, ty_Double) -> new_lt4(xwv611, xwv621) new_ltEs22(xwv79, xwv82, app(ty_[], bhb)) -> new_ltEs9(xwv79, xwv82, bhb) new_ltEs5(Left(xwv610), Left(xwv620), app(app(ty_@2, bcg), bch), bcb) -> new_ltEs15(xwv610, xwv620, bcg, bch) new_primCompAux00(xwv67, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs23(xwv127, xwv129, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs10(xwv127, xwv129, ccb, ccc, ccd) new_esEs7(xwv402, xwv302, app(ty_Ratio, dca)) -> new_esEs16(xwv402, xwv302, dca) new_esEs35(xwv611, xwv621, ty_Char) -> new_esEs13(xwv611, xwv621) new_esEs9(xwv401, xwv301, ty_Int) -> new_esEs15(xwv401, xwv301) new_esEs9(xwv401, xwv301, app(ty_Maybe, eeh)) -> new_esEs17(xwv401, xwv301, eeh) new_lt20(xwv78, xwv81, ty_Bool) -> new_lt14(xwv78, xwv81) new_lt18(xwv18, xwv13, cec, ced) -> new_esEs28(new_compare32(xwv18, xwv13, cec, ced)) new_ltEs8(Just(xwv610), Just(xwv620), ty_Integer) -> new_ltEs7(xwv610, xwv620) new_esEs11(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_compare27(xwv61, xwv62, False, ebd) -> new_compare10(xwv61, xwv62, new_ltEs20(xwv61, xwv62, ebd), ebd) new_esEs10(xwv400, xwv300, app(ty_Ratio, ecc)) -> new_esEs16(xwv400, xwv300, ecc) new_compare27(xwv61, xwv62, True, ebd) -> EQ new_ltEs18(xwv611, xwv621, ty_@0) -> new_ltEs4(xwv611, xwv621) new_ltEs19(xwv106, xwv107, ty_Double) -> new_ltEs17(xwv106, xwv107) new_esEs12(Left(xwv280), Left(xwv330), ty_Char, dgb) -> new_esEs13(xwv280, xwv330) new_esEs8(xwv400, xwv300, app(ty_Ratio, ede)) -> new_esEs16(xwv400, xwv300, ede) new_esEs37(xwv281, xwv331, ty_Int) -> new_esEs15(xwv281, xwv331) new_esEs38(xwv282, xwv332, ty_Float) -> new_esEs18(xwv282, xwv332) new_ltEs5(Left(xwv610), Left(xwv620), ty_Char, bcb) -> new_ltEs6(xwv610, xwv620) new_esEs22(:(xwv280, xwv281), :(xwv330, xwv331), efg) -> new_asAs(new_esEs30(xwv280, xwv330, efg), new_esEs22(xwv281, xwv331, efg)) new_lt15(xwv18, xwv13) -> new_esEs28(new_compare30(xwv18, xwv13)) new_esEs40(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_compare9(GT, EQ) -> GT new_primEqNat0(Succ(xwv2800), Zero) -> False new_primEqNat0(Zero, Succ(xwv3300)) -> False new_esEs14(@0, @0) -> True new_esEs17(Just(xwv280), Just(xwv330), ty_Float) -> new_esEs18(xwv280, xwv330) new_ltEs24(xwv612, xwv622, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs10(xwv612, xwv622, eb, ec, ed) new_esEs8(xwv400, xwv300, app(ty_Maybe, edf)) -> new_esEs17(xwv400, xwv300, edf) new_esEs26(xwv280, xwv330, app(app(ty_@2, dec), ded)) -> new_esEs25(xwv280, xwv330, dec, ded) new_esEs31(xwv77, xwv80, app(ty_[], bfh)) -> new_esEs22(xwv77, xwv80, bfh) new_esEs30(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_lt22(xwv611, xwv621, ty_Float) -> new_lt12(xwv611, xwv621) new_ltEs20(xwv61, xwv62, app(ty_Maybe, ebe)) -> new_ltEs8(xwv61, xwv62, ebe) new_ltEs19(xwv106, xwv107, ty_Char) -> new_ltEs6(xwv106, xwv107) new_lt23(xwv610, xwv620, app(app(app(ty_@3, gf), gg), gh)) -> new_lt10(xwv610, xwv620, gf, gg, gh) new_ltEs18(xwv611, xwv621, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs10(xwv611, xwv621, hh, baa, bab) new_esEs4(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_compare9(LT, EQ) -> LT new_ltEs21(xwv99, xwv100, ty_Integer) -> new_ltEs7(xwv99, xwv100) new_ltEs5(Left(xwv610), Left(xwv620), ty_@0, bcb) -> new_ltEs4(xwv610, xwv620) new_esEs37(xwv281, xwv331, ty_Float) -> new_esEs18(xwv281, xwv331) new_ltEs19(xwv106, xwv107, ty_@0) -> new_ltEs4(xwv106, xwv107) new_primCompAux00(xwv67, GT) -> GT new_ltEs22(xwv79, xwv82, ty_Int) -> new_ltEs14(xwv79, xwv82) new_esEs32(xwv78, xwv81, ty_Float) -> new_esEs18(xwv78, xwv81) new_esEs12(Left(xwv280), Left(xwv330), ty_Integer, dgb) -> new_esEs19(xwv280, xwv330) new_ltEs5(Left(xwv610), Left(xwv620), app(app(ty_Either, bda), bdb), bcb) -> new_ltEs5(xwv610, xwv620, bda, bdb) new_lt20(xwv78, xwv81, app(ty_[], cac)) -> new_lt9(xwv78, xwv81, cac) new_esEs10(xwv400, xwv300, app(ty_Maybe, ecd)) -> new_esEs17(xwv400, xwv300, ecd) new_compare8(Double(xwv400, Neg(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_fsEs(xwv205) -> new_not(new_esEs24(xwv205, GT)) new_esEs12(Left(xwv280), Left(xwv330), app(app(ty_Either, dfh), dga), dgb) -> new_esEs12(xwv280, xwv330, dfh, dga) new_esEs32(xwv78, xwv81, app(app(ty_@2, cag), cah)) -> new_esEs25(xwv78, xwv81, cag, cah) new_esEs20(False, True) -> False new_esEs20(True, False) -> False new_esEs4(xwv400, xwv300, app(app(app(ty_@3, fae), faf), fag)) -> new_esEs23(xwv400, xwv300, fae, faf, fag) new_ltEs20(xwv61, xwv62, ty_Bool) -> new_ltEs13(xwv61, xwv62) new_lt19(xwv77, xwv80, ty_Bool) -> new_lt14(xwv77, xwv80) new_esEs27(xwv281, xwv331, ty_Int) -> new_esEs15(xwv281, xwv331) new_esEs9(xwv401, xwv301, ty_Double) -> new_esEs21(xwv401, xwv301) new_lt23(xwv610, xwv620, ty_Float) -> new_lt12(xwv610, xwv620) new_esEs9(xwv401, xwv301, app(app(app(ty_@3, efb), efc), efd)) -> new_esEs23(xwv401, xwv301, efb, efc, efd) new_esEs32(xwv78, xwv81, ty_@0) -> new_esEs14(xwv78, xwv81) new_esEs33(xwv126, xwv128, ty_Int) -> new_esEs15(xwv126, xwv128) new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv300)) -> GT new_esEs26(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_ltEs24(xwv612, xwv622, ty_@0) -> new_ltEs4(xwv612, xwv622) new_esEs38(xwv282, xwv332, ty_Ordering) -> new_esEs24(xwv282, xwv332) new_lt22(xwv611, xwv621, app(app(app(ty_@3, fd), ff), fg)) -> new_lt10(xwv611, xwv621, fd, ff, fg) new_esEs37(xwv281, xwv331, ty_@0) -> new_esEs14(xwv281, xwv331) new_ltEs11(GT, LT) -> False new_lt20(xwv78, xwv81, app(ty_Maybe, cab)) -> new_lt8(xwv78, xwv81, cab) new_ltEs23(xwv127, xwv129, ty_Ordering) -> new_ltEs11(xwv127, xwv129) new_compare16(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Integer) -> new_compare11(new_sr0(xwv400, xwv301), new_sr0(xwv300, xwv401)) new_esEs29(xwv610, xwv620, ty_Char) -> new_esEs13(xwv610, xwv620) new_ltEs5(Left(xwv610), Left(xwv620), ty_Double, bcb) -> new_ltEs17(xwv610, xwv620) new_ltEs19(xwv106, xwv107, ty_Bool) -> new_ltEs13(xwv106, xwv107) new_esEs35(xwv611, xwv621, ty_Integer) -> new_esEs19(xwv611, xwv621) new_ltEs5(Right(xwv610), Right(xwv620), bdc, ty_Integer) -> new_ltEs7(xwv610, xwv620) new_esEs26(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) new_lt21(xwv126, xwv128, ty_@0) -> new_lt13(xwv126, xwv128) new_compare32(Left(xwv400), Right(xwv300), cee, cef) -> LT new_esEs7(xwv402, xwv302, app(ty_[], dcc)) -> new_esEs22(xwv402, xwv302, dcc) new_esEs26(xwv280, xwv330, ty_Float) -> new_esEs18(xwv280, xwv330) new_ltEs11(LT, LT) -> True new_primCmpNat0(Zero, Succ(xwv3000)) -> LT new_esEs5(xwv400, xwv300, app(app(ty_Either, chc), chd)) -> new_esEs12(xwv400, xwv300, chc, chd) new_esEs37(xwv281, xwv331, app(app(ty_@2, gaa), gab)) -> new_esEs25(xwv281, xwv331, gaa, gab) new_ltEs5(Left(xwv610), Left(xwv620), ty_Bool, bcb) -> new_ltEs13(xwv610, xwv620) new_compare15(@2(xwv400, xwv401), @2(xwv300, xwv301), cbe, cbf) -> new_compare29(xwv400, xwv401, xwv300, xwv301, new_asAs(new_esEs8(xwv400, xwv300, cbe), new_esEs9(xwv401, xwv301, cbf)), cbe, cbf) new_esEs24(LT, LT) -> True new_ltEs20(xwv61, xwv62, ty_Double) -> new_ltEs17(xwv61, xwv62) new_esEs5(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_esEs17(Just(xwv280), Just(xwv330), ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs33(xwv126, xwv128, ty_Ordering) -> new_esEs24(xwv126, xwv128) new_lt19(xwv77, xwv80, app(ty_Maybe, bfe)) -> new_lt8(xwv77, xwv80, bfe) new_esEs27(xwv281, xwv331, ty_Ordering) -> new_esEs24(xwv281, xwv331) new_esEs12(Left(xwv280), Left(xwv330), ty_@0, dgb) -> new_esEs14(xwv280, xwv330) new_primCmpNat0(Succ(xwv4000), Zero) -> GT new_esEs27(xwv281, xwv331, ty_@0) -> new_esEs14(xwv281, xwv331) new_pePe(False, xwv210) -> xwv210 new_esEs34(xwv610, xwv620, ty_Float) -> new_esEs18(xwv610, xwv620) new_esEs7(xwv402, xwv302, ty_Double) -> new_esEs21(xwv402, xwv302) new_esEs9(xwv401, xwv301, ty_Integer) -> new_esEs19(xwv401, xwv301) new_compare12(Float(xwv400, Pos(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_esEs20(False, False) -> True new_lt22(xwv611, xwv621, ty_Ordering) -> new_lt11(xwv611, xwv621) new_lt5(xwv610, xwv620, ty_Ordering) -> new_lt11(xwv610, xwv620) new_lt22(xwv611, xwv621, ty_Int) -> new_lt15(xwv611, xwv621) new_lt13(xwv18, xwv13) -> new_esEs28(new_compare7(xwv18, xwv13)) new_lt7(xwv18, xwv13) -> new_esEs28(new_compare11(xwv18, xwv13)) new_ltEs23(xwv127, xwv129, ty_Double) -> new_ltEs17(xwv127, xwv129) new_compare31(False, False) -> EQ new_ltEs21(xwv99, xwv100, ty_Double) -> new_ltEs17(xwv99, xwv100) new_esEs11(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_esEs29(xwv610, xwv620, ty_Ordering) -> new_esEs24(xwv610, xwv620) new_lt23(xwv610, xwv620, ty_Bool) -> new_lt14(xwv610, xwv620) new_lt20(xwv78, xwv81, ty_Int) -> new_lt15(xwv78, xwv81) new_esEs32(xwv78, xwv81, app(ty_Maybe, cab)) -> new_esEs17(xwv78, xwv81, cab) new_compare110(xwv194, xwv195, xwv196, xwv197, True, xwv199, fbh, fca) -> new_compare111(xwv194, xwv195, xwv196, xwv197, True, fbh, fca) new_compare10(xwv147, xwv148, False, dfg) -> GT new_esEs7(xwv402, xwv302, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs23(xwv402, xwv302, dcd, dce, dcf) new_esEs26(xwv280, xwv330, app(ty_[], ddg)) -> new_esEs22(xwv280, xwv330, ddg) new_esEs17(Just(xwv280), Just(xwv330), ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs5(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_primEqInt(Pos(Zero), Neg(Succ(xwv3300))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xwv3300))) -> False new_esEs5(xwv400, xwv300, app(ty_Maybe, chf)) -> new_esEs17(xwv400, xwv300, chf) new_ltEs18(xwv611, xwv621, app(ty_[], hg)) -> new_ltEs9(xwv611, xwv621, hg) new_esEs26(xwv280, xwv330, ty_Bool) -> new_esEs20(xwv280, xwv330) new_ltEs21(xwv99, xwv100, app(app(ty_@2, cfe), cff)) -> new_ltEs15(xwv99, xwv100, cfe, cff) new_esEs28(GT) -> False new_ltEs23(xwv127, xwv129, ty_Float) -> new_ltEs12(xwv127, xwv129) new_esEs12(Left(xwv280), Left(xwv330), app(ty_Ratio, dgc), dgb) -> new_esEs16(xwv280, xwv330, dgc) new_lt5(xwv610, xwv620, ty_Int) -> new_lt15(xwv610, xwv620) new_esEs8(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_esEs36(xwv280, xwv330, app(ty_Ratio, fga)) -> new_esEs16(xwv280, xwv330, fga) new_ltEs18(xwv611, xwv621, ty_Bool) -> new_ltEs13(xwv611, xwv621) new_compare9(EQ, GT) -> LT new_esEs34(xwv610, xwv620, ty_Integer) -> new_esEs19(xwv610, xwv620) new_esEs7(xwv402, xwv302, app(ty_Maybe, dcb)) -> new_esEs17(xwv402, xwv302, dcb) new_ltEs5(Left(xwv610), Left(xwv620), app(ty_[], bcc), bcb) -> new_ltEs9(xwv610, xwv620, bcc) new_ltEs19(xwv106, xwv107, ty_Integer) -> new_ltEs7(xwv106, xwv107) new_ltEs8(Just(xwv610), Just(xwv620), ty_Bool) -> new_ltEs13(xwv610, xwv620) new_lt21(xwv126, xwv128, app(ty_Ratio, fbf)) -> new_lt17(xwv126, xwv128, fbf) new_esEs9(xwv401, xwv301, app(ty_Ratio, eeg)) -> new_esEs16(xwv401, xwv301, eeg) new_primEqInt(Neg(Succ(xwv2800)), Neg(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) new_esEs31(xwv77, xwv80, ty_@0) -> new_esEs14(xwv77, xwv80) new_esEs7(xwv402, xwv302, ty_Integer) -> new_esEs19(xwv402, xwv302) new_lt6(xwv18, xwv13) -> new_esEs28(new_compare6(xwv18, xwv13)) new_primCmpInt(Neg(Zero), Pos(Succ(xwv3000))) -> LT new_ltEs24(xwv612, xwv622, app(ty_Ratio, ffc)) -> new_ltEs16(xwv612, xwv622, ffc) new_esEs36(xwv280, xwv330, app(app(ty_@2, fgg), fgh)) -> new_esEs25(xwv280, xwv330, fgg, fgh) new_esEs9(xwv401, xwv301, app(app(ty_@2, efe), eff)) -> new_esEs25(xwv401, xwv301, efe, eff) new_esEs5(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_primMulInt(Pos(xwv3000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) new_esEs36(xwv280, xwv330, ty_Float) -> new_esEs18(xwv280, xwv330) new_esEs38(xwv282, xwv332, app(ty_[], gag)) -> new_esEs22(xwv282, xwv332, gag) new_esEs11(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_esEs5(xwv400, xwv300, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs23(xwv400, xwv300, chh, daa, dab) new_ltEs8(Just(xwv610), Just(xwv620), ty_@0) -> new_ltEs4(xwv610, xwv620) new_esEs6(xwv401, xwv301, ty_@0) -> new_esEs14(xwv401, xwv301) new_esEs17(Just(xwv280), Just(xwv330), app(app(ty_@2, feg), feh)) -> new_esEs25(xwv280, xwv330, feg, feh) new_ltEs5(Right(xwv610), Right(xwv620), bdc, app(ty_Ratio, eag)) -> new_ltEs16(xwv610, xwv620, eag) new_esEs33(xwv126, xwv128, app(app(ty_@2, cdg), cdh)) -> new_esEs25(xwv126, xwv128, cdg, cdh) new_compare10(xwv147, xwv148, True, dfg) -> LT new_lt16(xwv18, xwv13, cbc, cbd) -> new_esEs28(new_compare15(xwv18, xwv13, cbc, cbd)) new_esEs9(xwv401, xwv301, ty_Float) -> new_esEs18(xwv401, xwv301) new_esEs17(Just(xwv280), Just(xwv330), app(ty_Ratio, fea)) -> new_esEs16(xwv280, xwv330, fea) new_ltEs19(xwv106, xwv107, app(ty_Maybe, cgb)) -> new_ltEs8(xwv106, xwv107, cgb) new_ltEs9(xwv61, xwv62, ca) -> new_fsEs(new_compare0(xwv61, xwv62, ca)) new_esEs32(xwv78, xwv81, ty_Double) -> new_esEs21(xwv78, xwv81) new_lt21(xwv126, xwv128, ty_Bool) -> new_lt14(xwv126, xwv128) new_primMulNat0(Succ(xwv30000), Zero) -> Zero new_primMulNat0(Zero, Succ(xwv40100)) -> Zero new_compare33(xwv400, xwv300, ty_Ordering) -> new_compare9(xwv400, xwv300) new_esEs32(xwv78, xwv81, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs23(xwv78, xwv81, cad, cae, caf) new_compare33(xwv400, xwv300, ty_Float) -> new_compare12(xwv400, xwv300) new_esEs10(xwv400, xwv300, app(app(ty_@2, eda), edb)) -> new_esEs25(xwv400, xwv300, eda, edb) new_esEs31(xwv77, xwv80, ty_Integer) -> new_esEs19(xwv77, xwv80) new_ltEs5(Left(xwv610), Left(xwv620), app(ty_Maybe, bca), bcb) -> new_ltEs8(xwv610, xwv620, bca) new_compare8(Double(xwv400, Pos(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_esEs12(Right(xwv280), Right(xwv330), dhc, ty_Char) -> new_esEs13(xwv280, xwv330) new_lt21(xwv126, xwv128, app(app(app(ty_@3, cdd), cde), cdf)) -> new_lt10(xwv126, xwv128, cdd, cde, cdf) new_ltEs23(xwv127, xwv129, app(app(ty_@2, cce), ccf)) -> new_ltEs15(xwv127, xwv129, cce, ccf) new_ltEs19(xwv106, xwv107, ty_Float) -> new_ltEs12(xwv106, xwv107) new_ltEs14(xwv61, xwv62) -> new_fsEs(new_compare30(xwv61, xwv62)) new_esEs36(xwv280, xwv330, app(app(ty_Either, ffg), ffh)) -> new_esEs12(xwv280, xwv330, ffg, ffh) new_esEs36(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_lt19(xwv77, xwv80, ty_Int) -> new_lt15(xwv77, xwv80) new_esEs18(Float(xwv280, xwv281), Float(xwv330, xwv331)) -> new_esEs15(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) new_esEs34(xwv610, xwv620, app(app(ty_@2, ha), hb)) -> new_esEs25(xwv610, xwv620, ha, hb) new_primPlusNat0(Succ(xwv16200), Zero) -> Succ(xwv16200) new_primPlusNat0(Zero, Succ(xwv13700)) -> Succ(xwv13700) new_esEs29(xwv610, xwv620, app(ty_Maybe, bag)) -> new_esEs17(xwv610, xwv620, bag) new_esEs34(xwv610, xwv620, app(ty_Ratio, ffa)) -> new_esEs16(xwv610, xwv620, ffa) new_compare33(xwv400, xwv300, ty_Char) -> new_compare6(xwv400, xwv300) new_compare33(xwv400, xwv300, app(app(app(ty_@3, ce), cf), cg)) -> new_compare5(xwv400, xwv300, ce, cf, cg) new_ltEs5(Left(xwv610), Left(xwv620), ty_Ordering, bcb) -> new_ltEs11(xwv610, xwv620) new_esEs38(xwv282, xwv332, ty_Bool) -> new_esEs20(xwv282, xwv332) new_esEs12(Right(xwv280), Right(xwv330), dhc, ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs32(xwv78, xwv81, ty_Integer) -> new_esEs19(xwv78, xwv81) new_esEs30(xwv280, xwv330, app(ty_[], egd)) -> new_esEs22(xwv280, xwv330, egd) new_compare33(xwv400, xwv300, ty_Int) -> new_compare30(xwv400, xwv300) new_esEs4(xwv400, xwv300, app(ty_[], fad)) -> new_esEs22(xwv400, xwv300, fad) new_ltEs20(xwv61, xwv62, ty_Float) -> new_ltEs12(xwv61, xwv62) new_esEs11(xwv400, xwv300, app(app(ty_@2, fdb), fdc)) -> new_esEs25(xwv400, xwv300, fdb, fdc) new_esEs30(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs17(Just(xwv280), Just(xwv330), ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs30(xwv280, xwv330, ty_Double) -> new_esEs21(xwv280, xwv330) new_esEs27(xwv281, xwv331, ty_Char) -> new_esEs13(xwv281, xwv331) new_lt12(xwv18, xwv13) -> new_esEs28(new_compare12(xwv18, xwv13)) new_esEs35(xwv611, xwv621, app(ty_Ratio, ffb)) -> new_esEs16(xwv611, xwv621, ffb) new_esEs30(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) new_ltEs8(Just(xwv610), Just(xwv620), app(app(ty_Either, bg), bh)) -> new_ltEs5(xwv610, xwv620, bg, bh) new_esEs33(xwv126, xwv128, ty_Integer) -> new_esEs19(xwv126, xwv128) new_lt23(xwv610, xwv620, ty_@0) -> new_lt13(xwv610, xwv620) new_esEs29(xwv610, xwv620, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs23(xwv610, xwv620, bbb, bbc, bbd) new_lt10(xwv18, xwv13, beg, beh, bfa) -> new_esEs28(new_compare5(xwv18, xwv13, beg, beh, bfa)) new_esEs5(xwv400, xwv300, app(ty_[], chg)) -> new_esEs22(xwv400, xwv300, chg) new_compare32(Right(xwv400), Left(xwv300), cee, cef) -> GT new_compare31(True, True) -> EQ new_esEs4(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_esEs22(:(xwv280, xwv281), [], efg) -> False new_esEs22([], :(xwv330, xwv331), efg) -> False new_esEs10(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_esEs35(xwv611, xwv621, app(app(ty_@2, fh), ga)) -> new_esEs25(xwv611, xwv621, fh, ga) new_esEs12(Right(xwv280), Right(xwv330), dhc, app(ty_[], dhh)) -> new_esEs22(xwv280, xwv330, dhh) new_esEs38(xwv282, xwv332, app(app(ty_Either, gac), gad)) -> new_esEs12(xwv282, xwv332, gac, gad) new_esEs31(xwv77, xwv80, ty_Ordering) -> new_esEs24(xwv77, xwv80) new_ltEs5(Right(xwv610), Right(xwv620), bdc, ty_Float) -> new_ltEs12(xwv610, xwv620) new_ltEs8(Just(xwv610), Just(xwv620), ty_Int) -> new_ltEs14(xwv610, xwv620) new_esEs11(xwv400, xwv300, app(ty_Ratio, fcd)) -> new_esEs16(xwv400, xwv300, fcd) new_esEs37(xwv281, xwv331, app(app(ty_Either, fha), fhb)) -> new_esEs12(xwv281, xwv331, fha, fhb) new_esEs5(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_compare9(GT, GT) -> EQ new_ltEs18(xwv611, xwv621, app(ty_Maybe, hf)) -> new_ltEs8(xwv611, xwv621, hf) new_ltEs8(Just(xwv610), Just(xwv620), app(ty_Ratio, fbb)) -> new_ltEs16(xwv610, xwv620, fbb) new_compare9(LT, GT) -> LT new_compare12(Float(xwv400, Neg(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_esEs31(xwv77, xwv80, ty_Double) -> new_esEs21(xwv77, xwv80) new_lt20(xwv78, xwv81, ty_Ordering) -> new_lt11(xwv78, xwv81) new_lt22(xwv611, xwv621, ty_Bool) -> new_lt14(xwv611, xwv621) new_esEs37(xwv281, xwv331, ty_Char) -> new_esEs13(xwv281, xwv331) new_lt19(xwv77, xwv80, app(ty_Ratio, fbc)) -> new_lt17(xwv77, xwv80, fbc) new_esEs31(xwv77, xwv80, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs23(xwv77, xwv80, bga, bgb, bgc) new_esEs29(xwv610, xwv620, ty_@0) -> new_esEs14(xwv610, xwv620) new_esEs30(xwv280, xwv330, app(app(app(ty_@3, ege), egf), egg)) -> new_esEs23(xwv280, xwv330, ege, egf, egg) new_primMulInt(Neg(xwv3000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) new_esEs38(xwv282, xwv332, ty_Char) -> new_esEs13(xwv282, xwv332) new_lt5(xwv610, xwv620, app(ty_Ratio, eah)) -> new_lt17(xwv610, xwv620, eah) new_primCmpInt(Pos(Zero), Pos(Succ(xwv3000))) -> new_primCmpNat0(Zero, Succ(xwv3000)) new_esEs6(xwv401, xwv301, app(ty_Maybe, dah)) -> new_esEs17(xwv401, xwv301, dah) new_ltEs22(xwv79, xwv82, app(app(ty_@2, bhf), bhg)) -> new_ltEs15(xwv79, xwv82, bhf, bhg) new_esEs19(Integer(xwv280), Integer(xwv330)) -> new_primEqInt(xwv280, xwv330) new_esEs30(xwv280, xwv330, app(ty_Maybe, egc)) -> new_esEs17(xwv280, xwv330, egc) new_lt20(xwv78, xwv81, app(ty_Ratio, fbd)) -> new_lt17(xwv78, xwv81, fbd) new_esEs12(Left(xwv280), Left(xwv330), ty_Ordering, dgb) -> new_esEs24(xwv280, xwv330) new_lt19(xwv77, xwv80, app(app(app(ty_@3, bga), bgb), bgc)) -> new_lt10(xwv77, xwv80, bga, bgb, bgc) new_esEs8(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_ltEs5(Left(xwv610), Left(xwv620), ty_Int, bcb) -> new_ltEs14(xwv610, xwv620) new_esEs35(xwv611, xwv621, ty_Int) -> new_esEs15(xwv611, xwv621) new_lt19(xwv77, xwv80, ty_Ordering) -> new_lt11(xwv77, xwv80) new_ltEs21(xwv99, xwv100, ty_Float) -> new_ltEs12(xwv99, xwv100) new_ltEs8(Just(xwv610), Just(xwv620), app(app(app(ty_@3, bb), bc), bd)) -> new_ltEs10(xwv610, xwv620, bb, bc, bd) new_esEs6(xwv401, xwv301, ty_Double) -> new_esEs21(xwv401, xwv301) new_esEs26(xwv280, xwv330, app(app(ty_Either, ddc), ddd)) -> new_esEs12(xwv280, xwv330, ddc, ddd) new_esEs26(xwv280, xwv330, ty_Char) -> new_esEs13(xwv280, xwv330) new_esEs35(xwv611, xwv621, ty_Float) -> new_esEs18(xwv611, xwv621) new_ltEs8(Just(xwv610), Just(xwv620), ty_Ordering) -> new_ltEs11(xwv610, xwv620) new_esEs6(xwv401, xwv301, ty_Ordering) -> new_esEs24(xwv401, xwv301) new_ltEs24(xwv612, xwv622, ty_Integer) -> new_ltEs7(xwv612, xwv622) new_esEs7(xwv402, xwv302, ty_@0) -> new_esEs14(xwv402, xwv302) new_esEs10(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_esEs17(Just(xwv280), Just(xwv330), ty_Char) -> new_esEs13(xwv280, xwv330) new_ltEs19(xwv106, xwv107, app(app(ty_Either, cha), chb)) -> new_ltEs5(xwv106, xwv107, cha, chb) new_esEs6(xwv401, xwv301, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs23(xwv401, xwv301, dbb, dbc, dbd) new_esEs8(xwv400, xwv300, app(app(ty_Either, edc), edd)) -> new_esEs12(xwv400, xwv300, edc, edd) new_ltEs5(Right(xwv610), Right(xwv620), bdc, ty_Bool) -> new_ltEs13(xwv610, xwv620) new_lt20(xwv78, xwv81, app(app(app(ty_@3, cad), cae), caf)) -> new_lt10(xwv78, xwv81, cad, cae, caf) new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, False, ehe, ehf, ehg) -> GT new_esEs34(xwv610, xwv620, ty_@0) -> new_esEs14(xwv610, xwv620) new_esEs8(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_primMulInt(Pos(xwv3000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) new_primMulInt(Neg(xwv3000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) new_esEs33(xwv126, xwv128, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs23(xwv126, xwv128, cdd, cde, cdf) new_esEs11(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_lt19(xwv77, xwv80, ty_Float) -> new_lt12(xwv77, xwv80) new_esEs33(xwv126, xwv128, ty_Double) -> new_esEs21(xwv126, xwv128) new_ltEs11(EQ, GT) -> True new_ltEs19(xwv106, xwv107, app(ty_[], cgc)) -> new_ltEs9(xwv106, xwv107, cgc) new_esEs30(xwv280, xwv330, app(app(ty_@2, egh), eha)) -> new_esEs25(xwv280, xwv330, egh, eha) new_lt23(xwv610, xwv620, app(app(ty_Either, hc), hd)) -> new_lt18(xwv610, xwv620, hc, hd) new_esEs9(xwv401, xwv301, ty_Ordering) -> new_esEs24(xwv401, xwv301) new_ltEs22(xwv79, xwv82, ty_@0) -> new_ltEs4(xwv79, xwv82) new_esEs35(xwv611, xwv621, app(app(ty_Either, gb), gc)) -> new_esEs12(xwv611, xwv621, gb, gc) new_compare33(xwv400, xwv300, app(ty_Ratio, gbf)) -> new_compare16(xwv400, xwv300, gbf) new_esEs8(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_esEs10(xwv400, xwv300, app(app(ty_Either, eca), ecb)) -> new_esEs12(xwv400, xwv300, eca, ecb) new_ltEs18(xwv611, xwv621, ty_Integer) -> new_ltEs7(xwv611, xwv621) new_lt23(xwv610, xwv620, ty_Ordering) -> new_lt11(xwv610, xwv620) new_sr0(Integer(xwv3000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv3000, xwv4010)) new_ltEs10(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, fb) -> new_pePe(new_lt23(xwv610, xwv620, df), new_asAs(new_esEs34(xwv610, xwv620, df), new_pePe(new_lt22(xwv611, xwv621, dg), new_asAs(new_esEs35(xwv611, xwv621, dg), new_ltEs24(xwv612, xwv622, fb))))) new_compare8(Double(xwv400, Pos(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_compare8(Double(xwv400, Neg(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_lt22(xwv611, xwv621, app(ty_Ratio, ffb)) -> new_lt17(xwv611, xwv621, ffb) new_compare29(xwv126, xwv127, xwv128, xwv129, False, cbg, cdb) -> new_compare110(xwv126, xwv127, xwv128, xwv129, new_lt21(xwv126, xwv128, cbg), new_asAs(new_esEs33(xwv126, xwv128, cbg), new_ltEs23(xwv127, xwv129, cdb)), cbg, cdb) new_esEs35(xwv611, xwv621, ty_Bool) -> new_esEs20(xwv611, xwv621) new_ltEs20(xwv61, xwv62, ty_Ordering) -> new_ltEs11(xwv61, xwv62) new_ltEs11(EQ, EQ) -> True new_esEs12(Left(xwv280), Left(xwv330), ty_Float, dgb) -> new_esEs18(xwv280, xwv330) new_esEs37(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_esEs12(Right(xwv280), Right(xwv330), dhc, app(ty_Maybe, dhg)) -> new_esEs17(xwv280, xwv330, dhg) new_esEs10(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_lt23(xwv610, xwv620, app(ty_Maybe, gd)) -> new_lt8(xwv610, xwv620, gd) new_lt23(xwv610, xwv620, ty_Int) -> new_lt15(xwv610, xwv620) new_ltEs22(xwv79, xwv82, ty_Double) -> new_ltEs17(xwv79, xwv82) new_esEs6(xwv401, xwv301, ty_Char) -> new_esEs13(xwv401, xwv301) new_lt5(xwv610, xwv620, ty_Bool) -> new_lt14(xwv610, xwv620) new_ltEs19(xwv106, xwv107, app(app(ty_@2, cgg), cgh)) -> new_ltEs15(xwv106, xwv107, cgg, cgh) new_compare111(xwv194, xwv195, xwv196, xwv197, True, fbh, fca) -> LT new_compare0([], :(xwv300, xwv301), cb) -> LT new_esEs31(xwv77, xwv80, ty_Bool) -> new_esEs20(xwv77, xwv80) new_asAs(True, xwv135) -> xwv135 new_esEs34(xwv610, xwv620, ty_Int) -> new_esEs15(xwv610, xwv620) new_ltEs5(Right(xwv610), Left(xwv620), bdc, bcb) -> False new_esEs33(xwv126, xwv128, ty_Char) -> new_esEs13(xwv126, xwv128) new_esEs7(xwv402, xwv302, ty_Int) -> new_esEs15(xwv402, xwv302) new_esEs6(xwv401, xwv301, app(ty_[], dba)) -> new_esEs22(xwv401, xwv301, dba) new_esEs27(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_lt22(xwv611, xwv621, ty_@0) -> new_lt13(xwv611, xwv621) new_esEs32(xwv78, xwv81, ty_Ordering) -> new_esEs24(xwv78, xwv81) new_esEs4(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_esEs39(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs5(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_ltEs22(xwv79, xwv82, ty_Float) -> new_ltEs12(xwv79, xwv82) new_esEs26(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs28(LT) -> True new_ltEs23(xwv127, xwv129, ty_Char) -> new_ltEs6(xwv127, xwv129) new_esEs37(xwv281, xwv331, ty_Double) -> new_esEs21(xwv281, xwv331) new_esEs4(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_lt21(xwv126, xwv128, app(ty_[], cdc)) -> new_lt9(xwv126, xwv128, cdc) new_ltEs20(xwv61, xwv62, app(app(ty_Either, bdc), bcb)) -> new_ltEs5(xwv61, xwv62, bdc, bcb) new_ltEs20(xwv61, xwv62, app(app(ty_@2, he), bah)) -> new_ltEs15(xwv61, xwv62, he, bah) new_ltEs22(xwv79, xwv82, app(ty_Maybe, bha)) -> new_ltEs8(xwv79, xwv82, bha) new_esEs31(xwv77, xwv80, ty_Float) -> new_esEs18(xwv77, xwv80) new_esEs27(xwv281, xwv331, app(ty_[], dfa)) -> new_esEs22(xwv281, xwv331, dfa) new_esEs12(Right(xwv280), Right(xwv330), dhc, ty_Integer) -> new_esEs19(xwv280, xwv330) new_ltEs24(xwv612, xwv622, ty_Int) -> new_ltEs14(xwv612, xwv622) new_esEs12(Right(xwv280), Right(xwv330), dhc, app(app(ty_Either, dhd), dhe)) -> new_esEs12(xwv280, xwv330, dhd, dhe) new_esEs33(xwv126, xwv128, app(ty_[], cdc)) -> new_esEs22(xwv126, xwv128, cdc) new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv300)) -> new_primCmpNat0(Succ(xwv4000), xwv300) new_esEs40(xwv281, xwv331, ty_Int) -> new_esEs15(xwv281, xwv331) new_ltEs5(Right(xwv610), Right(xwv620), bdc, app(app(ty_Either, bec), bed)) -> new_ltEs5(xwv610, xwv620, bec, bed) new_esEs23(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), ffd, ffe, fff) -> new_asAs(new_esEs36(xwv280, xwv330, ffd), new_asAs(new_esEs37(xwv281, xwv331, ffe), new_esEs38(xwv282, xwv332, fff))) new_ltEs11(GT, GT) -> True new_primCompAux00(xwv67, EQ) -> xwv67 new_ltEs5(Right(xwv610), Right(xwv620), bdc, ty_@0) -> new_ltEs4(xwv610, xwv620) new_compare0([], [], cb) -> EQ new_compare30(xwv40, xwv30) -> new_primCmpInt(xwv40, xwv30) new_ltEs18(xwv611, xwv621, ty_Int) -> new_ltEs14(xwv611, xwv621) new_sr(xwv300, xwv401) -> new_primMulInt(xwv300, xwv401) new_ltEs18(xwv611, xwv621, ty_Ordering) -> new_ltEs11(xwv611, xwv621) new_compare25(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, bfg) -> new_compare17(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, new_lt19(xwv77, xwv80, bgh), new_asAs(new_esEs31(xwv77, xwv80, bgh), new_pePe(new_lt20(xwv78, xwv81, bff), new_asAs(new_esEs32(xwv78, xwv81, bff), new_ltEs22(xwv79, xwv82, bfg)))), bgh, bff, bfg) new_compare32(Left(xwv400), Left(xwv300), cee, cef) -> new_compare28(xwv400, xwv300, new_esEs10(xwv400, xwv300, cee), cee, cef) new_esEs30(xwv280, xwv330, app(app(ty_Either, efh), ega)) -> new_esEs12(xwv280, xwv330, efh, ega) new_primMulNat0(Zero, Zero) -> Zero new_esEs38(xwv282, xwv332, ty_Double) -> new_esEs21(xwv282, xwv332) new_esEs5(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_esEs7(xwv402, xwv302, app(app(ty_@2, dcg), dch)) -> new_esEs25(xwv402, xwv302, dcg, dch) new_esEs27(xwv281, xwv331, app(ty_Ratio, deg)) -> new_esEs16(xwv281, xwv331, deg) new_ltEs22(xwv79, xwv82, app(ty_Ratio, fbe)) -> new_ltEs16(xwv79, xwv82, fbe) new_esEs33(xwv126, xwv128, app(ty_Ratio, fbf)) -> new_esEs16(xwv126, xwv128, fbf) new_ltEs20(xwv61, xwv62, ty_Integer) -> new_ltEs7(xwv61, xwv62) new_primMulNat0(Succ(xwv30000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv30000, Succ(xwv40100)), Succ(xwv40100)) new_compare11(Integer(xwv400), Integer(xwv300)) -> new_primCmpInt(xwv400, xwv300) new_ltEs24(xwv612, xwv622, app(app(ty_@2, ee), ef)) -> new_ltEs15(xwv612, xwv622, ee, ef) new_ltEs5(Right(xwv610), Right(xwv620), bdc, ty_Double) -> new_ltEs17(xwv610, xwv620) new_ltEs16(xwv61, xwv62, ebf) -> new_fsEs(new_compare16(xwv61, xwv62, ebf)) new_lt23(xwv610, xwv620, ty_Double) -> new_lt4(xwv610, xwv620) new_ltEs24(xwv612, xwv622, ty_Ordering) -> new_ltEs11(xwv612, xwv622) new_esEs34(xwv610, xwv620, ty_Char) -> new_esEs13(xwv610, xwv620) new_esEs12(Left(xwv280), Right(xwv330), dhc, dgb) -> False new_esEs12(Right(xwv280), Left(xwv330), dhc, dgb) -> False new_compare17(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, True, xwv186, ehe, ehf, ehg) -> new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, True, ehe, ehf, ehg) new_ltEs13(False, True) -> True new_ltEs13(False, False) -> True new_esEs4(xwv400, xwv300, app(app(ty_Either, ehh), faa)) -> new_esEs12(xwv400, xwv300, ehh, faa) new_compare9(LT, LT) -> EQ new_esEs6(xwv401, xwv301, ty_Integer) -> new_esEs19(xwv401, xwv301) new_lt5(xwv610, xwv620, app(ty_[], bba)) -> new_lt9(xwv610, xwv620, bba) new_esEs8(xwv400, xwv300, app(app(ty_@2, eec), eed)) -> new_esEs25(xwv400, xwv300, eec, eed) new_esEs4(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_esEs38(xwv282, xwv332, ty_@0) -> new_esEs14(xwv282, xwv332) new_esEs38(xwv282, xwv332, app(app(app(ty_@3, gah), gba), gbb)) -> new_esEs23(xwv282, xwv332, gah, gba, gbb) new_ltEs20(xwv61, xwv62, app(ty_[], ca)) -> new_ltEs9(xwv61, xwv62, ca) new_lt20(xwv78, xwv81, ty_Integer) -> new_lt7(xwv78, xwv81) new_esEs24(EQ, GT) -> False new_esEs24(GT, EQ) -> False new_esEs10(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_lt5(xwv610, xwv620, ty_@0) -> new_lt13(xwv610, xwv620) new_esEs29(xwv610, xwv620, ty_Bool) -> new_esEs20(xwv610, xwv620) new_esEs38(xwv282, xwv332, app(ty_Maybe, gaf)) -> new_esEs17(xwv282, xwv332, gaf) new_ltEs24(xwv612, xwv622, app(app(ty_Either, eg), eh)) -> new_ltEs5(xwv612, xwv622, eg, eh) new_esEs37(xwv281, xwv331, app(ty_[], fhe)) -> new_esEs22(xwv281, xwv331, fhe) new_ltEs21(xwv99, xwv100, app(ty_Maybe, ceg)) -> new_ltEs8(xwv99, xwv100, ceg) new_esEs32(xwv78, xwv81, app(ty_[], cac)) -> new_esEs22(xwv78, xwv81, cac) new_esEs33(xwv126, xwv128, app(ty_Maybe, cda)) -> new_esEs17(xwv126, xwv128, cda) new_esEs36(xwv280, xwv330, ty_Bool) -> new_esEs20(xwv280, xwv330) new_ltEs8(Just(xwv610), Just(xwv620), app(ty_Maybe, h)) -> new_ltEs8(xwv610, xwv620, h) new_esEs17(Just(xwv280), Just(xwv330), app(app(app(ty_@3, fed), fee), fef)) -> new_esEs23(xwv280, xwv330, fed, fee, fef) new_esEs27(xwv281, xwv331, app(ty_Maybe, deh)) -> new_esEs17(xwv281, xwv331, deh) new_compare33(xwv400, xwv300, ty_Integer) -> new_compare11(xwv400, xwv300) new_esEs12(Right(xwv280), Right(xwv330), dhc, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs23(xwv280, xwv330, eaa, eab, eac) new_esEs24(LT, GT) -> False new_esEs24(GT, LT) -> False new_primEqInt(Neg(Succ(xwv2800)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xwv3300))) -> False new_lt19(xwv77, xwv80, ty_Integer) -> new_lt7(xwv77, xwv80) new_ltEs8(Nothing, Just(xwv620), ebe) -> True new_esEs29(xwv610, xwv620, app(app(ty_Either, bbg), bbh)) -> new_esEs12(xwv610, xwv620, bbg, bbh) new_primEqInt(Pos(Succ(xwv2800)), Pos(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) new_ltEs18(xwv611, xwv621, ty_Char) -> new_ltEs6(xwv611, xwv621) new_ltEs24(xwv612, xwv622, ty_Char) -> new_ltEs6(xwv612, xwv622) new_esEs37(xwv281, xwv331, app(ty_Ratio, fhc)) -> new_esEs16(xwv281, xwv331, fhc) new_ltEs23(xwv127, xwv129, ty_Int) -> new_ltEs14(xwv127, xwv129) new_compare33(xwv400, xwv300, ty_Bool) -> new_compare31(xwv400, xwv300) new_esEs27(xwv281, xwv331, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs23(xwv281, xwv331, dfb, dfc, dfd) new_esEs8(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_ltEs21(xwv99, xwv100, app(ty_[], cfa)) -> new_ltEs9(xwv99, xwv100, cfa) new_ltEs18(xwv611, xwv621, app(app(ty_@2, bac), bad)) -> new_ltEs15(xwv611, xwv621, bac, bad) new_esEs30(xwv280, xwv330, ty_Bool) -> new_esEs20(xwv280, xwv330) new_lt19(xwv77, xwv80, app(ty_[], bfh)) -> new_lt9(xwv77, xwv80, bfh) new_ltEs23(xwv127, xwv129, app(ty_Ratio, fbg)) -> new_ltEs16(xwv127, xwv129, fbg) new_ltEs17(xwv61, xwv62) -> new_fsEs(new_compare8(xwv61, xwv62)) new_ltEs18(xwv611, xwv621, app(app(ty_Either, bae), baf)) -> new_ltEs5(xwv611, xwv621, bae, baf) new_esEs10(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_esEs17(Just(xwv280), Just(xwv330), ty_Double) -> new_esEs21(xwv280, xwv330) new_esEs17(Just(xwv280), Just(xwv330), app(ty_Maybe, feb)) -> new_esEs17(xwv280, xwv330, feb) new_primEqInt(Pos(Succ(xwv2800)), Neg(xwv330)) -> False new_primEqInt(Neg(Succ(xwv2800)), Pos(xwv330)) -> False new_esEs26(xwv280, xwv330, app(ty_Ratio, dde)) -> new_esEs16(xwv280, xwv330, dde) new_esEs27(xwv281, xwv331, ty_Double) -> new_esEs21(xwv281, xwv331) new_esEs32(xwv78, xwv81, app(ty_Ratio, fbd)) -> new_esEs16(xwv78, xwv81, fbd) new_primCmpInt(Neg(Zero), Neg(Succ(xwv3000))) -> new_primCmpNat0(Succ(xwv3000), Zero) new_ltEs8(Just(xwv610), Just(xwv620), app(ty_[], ba)) -> new_ltEs9(xwv610, xwv620, ba) new_esEs38(xwv282, xwv332, ty_Int) -> new_esEs15(xwv282, xwv332) new_esEs12(Left(xwv280), Left(xwv330), ty_Bool, dgb) -> new_esEs20(xwv280, xwv330) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs6(xwv61, xwv62) -> new_fsEs(new_compare6(xwv61, xwv62)) new_ltEs23(xwv127, xwv129, app(ty_Maybe, cbh)) -> new_ltEs8(xwv127, xwv129, cbh) new_esEs12(Right(xwv280), Right(xwv330), dhc, app(ty_Ratio, dhf)) -> new_esEs16(xwv280, xwv330, dhf) new_ltEs22(xwv79, xwv82, ty_Char) -> new_ltEs6(xwv79, xwv82) new_esEs11(xwv400, xwv300, app(app(ty_Either, fcb), fcc)) -> new_esEs12(xwv400, xwv300, fcb, fcc) new_esEs35(xwv611, xwv621, ty_Ordering) -> new_esEs24(xwv611, xwv621) new_esEs7(xwv402, xwv302, ty_Bool) -> new_esEs20(xwv402, xwv302) new_esEs36(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs31(xwv77, xwv80, ty_Int) -> new_esEs15(xwv77, xwv80) new_compare13(xwv164, xwv165, True, ehb, ehc) -> LT new_esEs26(xwv280, xwv330, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs23(xwv280, xwv330, ddh, dea, deb) new_compare19(Nothing, Just(xwv300), de) -> LT new_esEs34(xwv610, xwv620, ty_Double) -> new_esEs21(xwv610, xwv620) new_esEs34(xwv610, xwv620, ty_Bool) -> new_esEs20(xwv610, xwv620) new_esEs13(Char(xwv280), Char(xwv330)) -> new_primEqNat0(xwv280, xwv330) new_esEs7(xwv402, xwv302, ty_Float) -> new_esEs18(xwv402, xwv302) new_lt23(xwv610, xwv620, app(ty_Ratio, ffa)) -> new_lt17(xwv610, xwv620, ffa) new_lt19(xwv77, xwv80, ty_Double) -> new_lt4(xwv77, xwv80) new_ltEs21(xwv99, xwv100, ty_Ordering) -> new_ltEs11(xwv99, xwv100) new_esEs34(xwv610, xwv620, app(ty_[], ge)) -> new_esEs22(xwv610, xwv620, ge) new_lt23(xwv610, xwv620, ty_Char) -> new_lt6(xwv610, xwv620) new_esEs26(xwv280, xwv330, ty_Double) -> new_esEs21(xwv280, xwv330) new_ltEs5(Left(xwv610), Left(xwv620), app(app(app(ty_@3, bcd), bce), bcf), bcb) -> new_ltEs10(xwv610, xwv620, bcd, bce, bcf) new_esEs10(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_esEs38(xwv282, xwv332, app(app(ty_@2, gbc), gbd)) -> new_esEs25(xwv282, xwv332, gbc, gbd) new_esEs11(xwv400, xwv300, app(ty_[], fcf)) -> new_esEs22(xwv400, xwv300, fcf) new_esEs12(Right(xwv280), Right(xwv330), dhc, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs35(xwv611, xwv621, ty_@0) -> new_esEs14(xwv611, xwv621) new_lt21(xwv126, xwv128, ty_Char) -> new_lt6(xwv126, xwv128) new_esEs28(EQ) -> False new_esEs11(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_ltEs8(Just(xwv610), Just(xwv620), app(app(ty_@2, be), bf)) -> new_ltEs15(xwv610, xwv620, be, bf) new_not(False) -> True new_esEs36(xwv280, xwv330, app(ty_[], fgc)) -> new_esEs22(xwv280, xwv330, fgc) new_esEs31(xwv77, xwv80, app(app(ty_@2, bgd), bge)) -> new_esEs25(xwv77, xwv80, bgd, bge) new_esEs6(xwv401, xwv301, ty_Int) -> new_esEs15(xwv401, xwv301) new_esEs32(xwv78, xwv81, ty_Bool) -> new_esEs20(xwv78, xwv81) new_esEs4(xwv400, xwv300, app(app(ty_@2, fah), fba)) -> new_esEs25(xwv400, xwv300, fah, fba) new_esEs25(@2(xwv280, xwv281), @2(xwv330, xwv331), dda, ddb) -> new_asAs(new_esEs26(xwv280, xwv330, dda), new_esEs27(xwv281, xwv331, ddb)) new_esEs9(xwv401, xwv301, app(ty_[], efa)) -> new_esEs22(xwv401, xwv301, efa) new_esEs34(xwv610, xwv620, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs23(xwv610, xwv620, gf, gg, gh) new_esEs8(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_esEs4(xwv400, xwv300, app(ty_Ratio, fab)) -> new_esEs16(xwv400, xwv300, fab) new_esEs34(xwv610, xwv620, app(app(ty_Either, hc), hd)) -> new_esEs12(xwv610, xwv620, hc, hd) new_compare33(xwv400, xwv300, ty_Double) -> new_compare8(xwv400, xwv300) new_lt5(xwv610, xwv620, app(ty_Maybe, bag)) -> new_lt8(xwv610, xwv620, bag) new_esEs11(xwv400, xwv300, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs23(xwv400, xwv300, fcg, fch, fda) new_compare0(:(xwv400, xwv401), [], cb) -> GT new_compare31(False, True) -> LT new_lt22(xwv611, xwv621, app(app(ty_Either, gb), gc)) -> new_lt18(xwv611, xwv621, gb, gc) new_esEs7(xwv402, xwv302, app(app(ty_Either, dbg), dbh)) -> new_esEs12(xwv402, xwv302, dbg, dbh) new_ltEs20(xwv61, xwv62, app(app(app(ty_@3, df), dg), fb)) -> new_ltEs10(xwv61, xwv62, df, dg, fb) new_esEs30(xwv280, xwv330, ty_Char) -> new_esEs13(xwv280, xwv330) new_primPlusNat0(Succ(xwv16200), Succ(xwv13700)) -> Succ(Succ(new_primPlusNat0(xwv16200, xwv13700))) new_esEs38(xwv282, xwv332, app(ty_Ratio, gae)) -> new_esEs16(xwv282, xwv332, gae) new_ltEs21(xwv99, xwv100, ty_@0) -> new_ltEs4(xwv99, xwv100) new_ltEs8(Just(xwv610), Just(xwv620), ty_Double) -> new_ltEs17(xwv610, xwv620) new_ltEs5(Left(xwv610), Left(xwv620), ty_Integer, bcb) -> new_ltEs7(xwv610, xwv620) new_ltEs5(Right(xwv610), Right(xwv620), bdc, app(ty_Maybe, bdd)) -> new_ltEs8(xwv610, xwv620, bdd) new_lt23(xwv610, xwv620, app(app(ty_@2, ha), hb)) -> new_lt16(xwv610, xwv620, ha, hb) new_esEs37(xwv281, xwv331, ty_Ordering) -> new_esEs24(xwv281, xwv331) new_esEs26(xwv280, xwv330, app(ty_Maybe, ddf)) -> new_esEs17(xwv280, xwv330, ddf) new_esEs31(xwv77, xwv80, app(ty_Ratio, fbc)) -> new_esEs16(xwv77, xwv80, fbc) new_ltEs15(@2(xwv610, xwv611), @2(xwv620, xwv621), he, bah) -> new_pePe(new_lt5(xwv610, xwv620, he), new_asAs(new_esEs29(xwv610, xwv620, he), new_ltEs18(xwv611, xwv621, bah))) new_esEs12(Left(xwv280), Left(xwv330), app(ty_[], dge), dgb) -> new_esEs22(xwv280, xwv330, dge) new_lt5(xwv610, xwv620, app(app(ty_Either, bbg), bbh)) -> new_lt18(xwv610, xwv620, bbg, bbh) new_ltEs19(xwv106, xwv107, app(app(app(ty_@3, cgd), cge), cgf)) -> new_ltEs10(xwv106, xwv107, cgd, cge, cgf) new_compare32(Right(xwv400), Right(xwv300), cee, cef) -> new_compare26(xwv400, xwv300, new_esEs11(xwv400, xwv300, cef), cee, cef) new_esEs12(Right(xwv280), Right(xwv330), dhc, ty_@0) -> new_esEs14(xwv280, xwv330) new_lt4(xwv18, xwv13) -> new_esEs28(new_compare8(xwv18, xwv13)) new_ltEs21(xwv99, xwv100, ty_Bool) -> new_ltEs13(xwv99, xwv100) new_esEs34(xwv610, xwv620, app(ty_Maybe, gd)) -> new_esEs17(xwv610, xwv620, gd) new_ltEs20(xwv61, xwv62, ty_Char) -> new_ltEs6(xwv61, xwv62) new_ltEs11(LT, EQ) -> True new_lt5(xwv610, xwv620, ty_Integer) -> new_lt7(xwv610, xwv620) new_esEs9(xwv401, xwv301, app(app(ty_Either, eee), eef)) -> new_esEs12(xwv401, xwv301, eee, eef) new_ltEs22(xwv79, xwv82, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_ltEs10(xwv79, xwv82, bhc, bhd, bhe) new_lt20(xwv78, xwv81, app(app(ty_Either, cba), cbb)) -> new_lt18(xwv78, xwv81, cba, cbb) new_esEs37(xwv281, xwv331, app(ty_Maybe, fhd)) -> new_esEs17(xwv281, xwv331, fhd) new_esEs11(xwv400, xwv300, app(ty_Maybe, fce)) -> new_esEs17(xwv400, xwv300, fce) new_ltEs5(Right(xwv610), Right(xwv620), bdc, app(ty_[], bde)) -> new_ltEs9(xwv610, xwv620, bde) new_ltEs24(xwv612, xwv622, ty_Bool) -> new_ltEs13(xwv612, xwv622) new_esEs11(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_esEs12(Right(xwv280), Right(xwv330), dhc, app(app(ty_@2, ead), eae)) -> new_esEs25(xwv280, xwv330, ead, eae) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare13(xwv164, xwv165, False, ehb, ehc) -> GT new_lt19(xwv77, xwv80, app(app(ty_@2, bgd), bge)) -> new_lt16(xwv77, xwv80, bgd, bge) new_esEs33(xwv126, xwv128, ty_@0) -> new_esEs14(xwv126, xwv128) new_esEs4(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_compare0(:(xwv400, xwv401), :(xwv300, xwv301), cb) -> new_primCompAux0(xwv400, xwv300, new_compare0(xwv401, xwv301, cb), cb) new_esEs17(Just(xwv280), Just(xwv330), ty_@0) -> new_esEs14(xwv280, xwv330) new_esEs6(xwv401, xwv301, app(app(ty_@2, dbe), dbf)) -> new_esEs25(xwv401, xwv301, dbe, dbf) new_ltEs5(Right(xwv610), Right(xwv620), bdc, app(app(ty_@2, bea), beb)) -> new_ltEs15(xwv610, xwv620, bea, beb) new_esEs6(xwv401, xwv301, app(ty_Ratio, dag)) -> new_esEs16(xwv401, xwv301, dag) new_ltEs18(xwv611, xwv621, app(ty_Ratio, eba)) -> new_ltEs16(xwv611, xwv621, eba) new_lt20(xwv78, xwv81, app(app(ty_@2, cag), cah)) -> new_lt16(xwv78, xwv81, cag, cah) new_ltEs23(xwv127, xwv129, ty_@0) -> new_ltEs4(xwv127, xwv129) new_ltEs5(Right(xwv610), Right(xwv620), bdc, ty_Char) -> new_ltEs6(xwv610, xwv620) new_ltEs5(Left(xwv610), Left(xwv620), ty_Float, bcb) -> new_ltEs12(xwv610, xwv620) new_esEs4(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_ltEs13(True, False) -> False new_esEs27(xwv281, xwv331, app(app(ty_@2, dfe), dff)) -> new_esEs25(xwv281, xwv331, dfe, dff) new_lt17(xwv18, xwv13, ehd) -> new_esEs28(new_compare16(xwv18, xwv13, ehd)) new_esEs36(xwv280, xwv330, app(ty_Maybe, fgb)) -> new_esEs17(xwv280, xwv330, fgb) new_esEs8(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_ltEs23(xwv127, xwv129, ty_Bool) -> new_ltEs13(xwv127, xwv129) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt21(xwv126, xwv128, app(app(ty_@2, cdg), cdh)) -> new_lt16(xwv126, xwv128, cdg, cdh) new_ltEs21(xwv99, xwv100, app(app(ty_Either, cfg), cfh)) -> new_ltEs5(xwv99, xwv100, cfg, cfh) new_lt21(xwv126, xwv128, ty_Float) -> new_lt12(xwv126, xwv128) new_esEs17(Just(xwv280), Just(xwv330), app(ty_[], fec)) -> new_esEs22(xwv280, xwv330, fec) new_esEs29(xwv610, xwv620, ty_Int) -> new_esEs15(xwv610, xwv620) new_esEs30(xwv280, xwv330, ty_Float) -> new_esEs18(xwv280, xwv330) new_esEs37(xwv281, xwv331, app(app(app(ty_@3, fhf), fhg), fhh)) -> new_esEs23(xwv281, xwv331, fhf, fhg, fhh) new_esEs17(Just(xwv280), Just(xwv330), app(app(ty_Either, fdg), fdh)) -> new_esEs12(xwv280, xwv330, fdg, fdh) new_primCompAux0(xwv400, xwv300, xwv56, cb) -> new_primCompAux00(xwv56, new_compare33(xwv400, xwv300, cb)) new_ltEs22(xwv79, xwv82, app(app(ty_Either, bhh), caa)) -> new_ltEs5(xwv79, xwv82, bhh, caa) new_lt14(xwv18, xwv13) -> new_esEs28(new_compare31(xwv18, xwv13)) new_esEs20(True, True) -> True new_lt22(xwv611, xwv621, app(ty_[], fc)) -> new_lt9(xwv611, xwv621, fc) new_compare19(Nothing, Nothing, de) -> EQ new_ltEs8(Just(xwv610), Just(xwv620), ty_Float) -> new_ltEs12(xwv610, xwv620) new_ltEs19(xwv106, xwv107, ty_Ordering) -> new_ltEs11(xwv106, xwv107) new_lt5(xwv610, xwv620, ty_Double) -> new_lt4(xwv610, xwv620) new_primCmpNat0(Succ(xwv4000), Succ(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) new_compare16(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Int) -> new_compare30(new_sr(xwv400, xwv301), new_sr(xwv300, xwv401)) new_compare12(Float(xwv400, Pos(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_compare12(Float(xwv400, Neg(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_lt21(xwv126, xwv128, ty_Double) -> new_lt4(xwv126, xwv128) new_ltEs21(xwv99, xwv100, ty_Int) -> new_ltEs14(xwv99, xwv100) new_lt5(xwv610, xwv620, app(app(ty_@2, bbe), bbf)) -> new_lt16(xwv610, xwv620, bbe, bbf) new_esEs22([], [], efg) -> True new_ltEs8(Nothing, Nothing, ebe) -> True new_ltEs11(LT, GT) -> True new_ltEs8(Just(xwv610), Nothing, ebe) -> False new_lt21(xwv126, xwv128, ty_Integer) -> new_lt7(xwv126, xwv128) new_esEs31(xwv77, xwv80, app(app(ty_Either, bgf), bgg)) -> new_esEs12(xwv77, xwv80, bgf, bgg) new_ltEs23(xwv127, xwv129, app(ty_[], cca)) -> new_ltEs9(xwv127, xwv129, cca) new_esEs7(xwv402, xwv302, ty_Char) -> new_esEs13(xwv402, xwv302) new_compare17(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, False, xwv186, ehe, ehf, ehg) -> new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, xwv186, ehe, ehf, ehg) new_lt19(xwv77, xwv80, ty_Char) -> new_lt6(xwv77, xwv80) new_compare29(xwv126, xwv127, xwv128, xwv129, True, cbg, cdb) -> EQ new_lt22(xwv611, xwv621, app(app(ty_@2, fh), ga)) -> new_lt16(xwv611, xwv621, fh, ga) new_ltEs12(xwv61, xwv62) -> new_fsEs(new_compare12(xwv61, xwv62)) new_esEs10(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_esEs35(xwv611, xwv621, app(ty_Maybe, fa)) -> new_esEs17(xwv611, xwv621, fa) new_lt5(xwv610, xwv620, ty_Float) -> new_lt12(xwv610, xwv620) new_compare19(Just(xwv400), Nothing, de) -> GT new_ltEs21(xwv99, xwv100, app(ty_Ratio, ebh)) -> new_ltEs16(xwv99, xwv100, ebh) new_compare6(Char(xwv400), Char(xwv300)) -> new_primCmpNat0(xwv400, xwv300) new_lt23(xwv610, xwv620, app(ty_[], ge)) -> new_lt9(xwv610, xwv620, ge) new_lt9(xwv18, xwv13, bef) -> new_esEs28(new_compare0(xwv18, xwv13, bef)) new_esEs29(xwv610, xwv620, app(app(ty_@2, bbe), bbf)) -> new_esEs25(xwv610, xwv620, bbe, bbf) new_ltEs22(xwv79, xwv82, ty_Bool) -> new_ltEs13(xwv79, xwv82) new_ltEs24(xwv612, xwv622, app(ty_[], ea)) -> new_ltEs9(xwv612, xwv622, ea) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt20(xwv78, xwv81, ty_Double) -> new_lt4(xwv78, xwv81) new_ltEs5(Left(xwv610), Left(xwv620), app(ty_Ratio, eaf), bcb) -> new_ltEs16(xwv610, xwv620, eaf) new_compare9(EQ, EQ) -> EQ new_lt20(xwv78, xwv81, ty_Char) -> new_lt6(xwv78, xwv81) new_esEs29(xwv610, xwv620, app(ty_Ratio, eah)) -> new_esEs16(xwv610, xwv620, eah) new_lt22(xwv611, xwv621, ty_Integer) -> new_lt7(xwv611, xwv621) new_esEs36(xwv280, xwv330, ty_Double) -> new_esEs21(xwv280, xwv330) new_ltEs21(xwv99, xwv100, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs10(xwv99, xwv100, cfb, cfc, cfd) new_esEs9(xwv401, xwv301, ty_Bool) -> new_esEs20(xwv401, xwv301) new_lt21(xwv126, xwv128, app(app(ty_Either, cea), ceb)) -> new_lt18(xwv126, xwv128, cea, ceb) new_primEqNat0(Zero, Zero) -> True new_esEs5(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_esEs12(Right(xwv280), Right(xwv330), dhc, ty_Double) -> new_esEs21(xwv280, xwv330) new_esEs5(xwv400, xwv300, app(ty_Ratio, che)) -> new_esEs16(xwv400, xwv300, che) new_ltEs20(xwv61, xwv62, app(ty_Ratio, ebf)) -> new_ltEs16(xwv61, xwv62, ebf) new_esEs5(xwv400, xwv300, app(app(ty_@2, dac), dad)) -> new_esEs25(xwv400, xwv300, dac, dad) new_esEs38(xwv282, xwv332, ty_Integer) -> new_esEs19(xwv282, xwv332) new_compare14(xwv157, xwv158, False, fdd, fde) -> GT new_esEs12(Left(xwv280), Left(xwv330), app(ty_Maybe, dgd), dgb) -> new_esEs17(xwv280, xwv330, dgd) new_ltEs5(Right(xwv610), Right(xwv620), bdc, ty_Ordering) -> new_ltEs11(xwv610, xwv620) new_esEs12(Left(xwv280), Left(xwv330), ty_Int, dgb) -> new_esEs15(xwv280, xwv330) new_compare33(xwv400, xwv300, app(app(ty_Either, dc), dd)) -> new_compare32(xwv400, xwv300, dc, dd) new_asAs(False, xwv135) -> False new_compare33(xwv400, xwv300, app(ty_[], cd)) -> new_compare0(xwv400, xwv300, cd) new_lt22(xwv611, xwv621, app(ty_Maybe, fa)) -> new_lt8(xwv611, xwv621, fa) new_compare7(@0, @0) -> EQ new_ltEs5(Right(xwv610), Right(xwv620), bdc, ty_Int) -> new_ltEs14(xwv610, xwv620) new_ltEs19(xwv106, xwv107, ty_Int) -> new_ltEs14(xwv106, xwv107) new_ltEs23(xwv127, xwv129, ty_Integer) -> new_ltEs7(xwv127, xwv129) new_compare28(xwv99, xwv100, True, ebg, ceh) -> EQ new_esEs36(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_lt20(xwv78, xwv81, ty_Float) -> new_lt12(xwv78, xwv81) new_esEs16(:%(xwv280, xwv281), :%(xwv330, xwv331), gbe) -> new_asAs(new_esEs39(xwv280, xwv330, gbe), new_esEs40(xwv281, xwv331, gbe)) new_esEs17(Just(xwv280), Just(xwv330), ty_Bool) -> new_esEs20(xwv280, xwv330) new_esEs30(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs26(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs29(xwv610, xwv620, ty_Float) -> new_esEs18(xwv610, xwv620) new_compare28(xwv99, xwv100, False, ebg, ceh) -> new_compare14(xwv99, xwv100, new_ltEs21(xwv99, xwv100, ebg), ebg, ceh) new_ltEs7(xwv61, xwv62) -> new_fsEs(new_compare11(xwv61, xwv62)) new_esEs32(xwv78, xwv81, ty_Char) -> new_esEs13(xwv78, xwv81) new_esEs36(xwv280, xwv330, app(app(app(ty_@3, fgd), fge), fgf)) -> new_esEs23(xwv280, xwv330, fgd, fge, fgf) new_esEs24(LT, EQ) -> False new_esEs24(EQ, LT) -> False new_lt11(xwv18, xwv13) -> new_esEs28(new_compare9(xwv18, xwv13)) new_esEs32(xwv78, xwv81, app(app(ty_Either, cba), cbb)) -> new_esEs12(xwv78, xwv81, cba, cbb) new_ltEs20(xwv61, xwv62, ty_Int) -> new_ltEs14(xwv61, xwv62) new_ltEs11(EQ, LT) -> False new_lt8(xwv18, xwv13, bee) -> new_esEs28(new_compare19(xwv18, xwv13, bee)) The set Q consists of the following terms: new_lt5(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Nothing, Just(x0), x1) new_esEs12(Right(x0), Right(x1), x2, ty_Char) new_esEs30(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Ordering) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Bool) new_compare33(x0, x1, ty_Bool) new_lt19(x0, x1, app(ty_Maybe, x2)) new_pePe(False, x0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Double) new_esEs19(Integer(x0), Integer(x1)) new_lt16(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs8(Just(x0), Nothing, x1) new_lt22(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Float) new_lt15(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs12(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs39(x0, x1, ty_Integer) new_esEs12(Left(x0), Left(x1), ty_Int, x2) new_lt23(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_compare33(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs13(Char(x0), Char(x1)) new_compare5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs20(False, True) new_esEs20(True, False) new_primCompAux00(x0, LT) new_ltEs20(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_lt5(x0, x1, ty_Bool) new_compare17(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare0(:(x0, x1), [], x2) new_esEs12(Left(x0), Left(x1), ty_Char, x2) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primEqInt(Neg(Zero), Neg(Zero)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Float) new_esEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_esEs12(Right(x0), Right(x1), x2, ty_Double) new_lt23(x0, x1, app(ty_[], x2)) new_esEs24(EQ, EQ) new_esEs6(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Double) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_ltEs13(False, True) new_ltEs13(True, False) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_esEs36(x0, x1, ty_Int) new_esEs12(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_@0) new_esEs17(Just(x0), Just(x1), ty_Double) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Integer) new_esEs17(Just(x0), Just(x1), app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Int) new_esEs22(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_primPlusNat0(Succ(x0), Zero) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare14(x0, x1, True, x2, x3) new_compare27(x0, x1, False, x2) new_lt7(x0, x1) new_esEs17(Just(x0), Just(x1), ty_Int) new_esEs29(x0, x1, ty_Char) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs12(Left(x0), Left(x1), ty_@0, x2) new_ltEs19(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_compare18(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, ty_Int) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs4(x0, x1, ty_Double) new_compare9(LT, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Float) new_compare8(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare8(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs10(x0, x1, ty_Double) new_compare10(x0, x1, False, x2) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_Char) new_compare31(False, False) new_compare26(x0, x1, False, x2, x3) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Double) new_esEs20(False, False) new_ltEs19(x0, x1, ty_Char) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt13(x0, x1) new_esEs22([], :(x0, x1), x2) new_esEs5(x0, x1, ty_Integer) new_compare33(x0, x1, app(ty_[], x2)) new_esEs12(Right(x0), Right(x1), x2, ty_Bool) new_esEs36(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs35(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Ordering) new_ltEs11(GT, GT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(ty_[], x2)) new_compare0([], [], x0) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, ty_@0) new_pePe(True, x0) new_esEs26(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs24(EQ, GT) new_esEs24(GT, EQ) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs17(Nothing, Nothing, x0) new_esEs28(EQ) new_esEs17(Just(x0), Just(x1), ty_Char) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Int) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Bool) new_ltEs7(x0, x1) new_esEs8(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs9(x0, x1, x2) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt23(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs32(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_@0) new_compare18(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs4(x0, x1, ty_Float) new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(x0, x1) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Ordering) new_compare8(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs6(x0, x1) new_primMulNat0(Succ(x0), Succ(x1)) new_compare29(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, ty_Float) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Int) new_lt5(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Double) new_esEs12(Right(x0), Right(x1), x2, ty_Integer) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs27(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Float) new_esEs22([], [], x0) new_esEs31(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt20(x0, x1, ty_Integer) new_compare19(Just(x0), Nothing, x1) new_ltEs20(x0, x1, ty_@0) new_compare9(GT, GT) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(EQ, LT) new_compare9(LT, EQ) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Succ(x0)) new_esEs29(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Double(x0, x1), Double(x2, x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Left(x0), Left(x1), ty_Bool, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Nothing, Just(x0), x1) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_@0) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt23(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs12(Left(x0), Left(x1), ty_Ordering, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Nothing, Nothing, x0) new_esEs27(x0, x1, ty_Bool) new_lt14(x0, x1) new_esEs32(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_lt19(x0, x1, ty_Float) new_lt5(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Ordering) new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare33(x0, x1, ty_@0) new_ltEs11(EQ, EQ) new_ltEs21(x0, x1, ty_Integer) new_compare9(EQ, EQ) new_esEs11(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Double) new_esEs12(Left(x0), Left(x1), ty_Integer, x2) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_compare33(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_@0) new_compare27(x0, x1, True, x2) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Char) new_esEs28(LT) new_primCmpNat0(Succ(x0), Zero) new_esEs8(x0, x1, ty_@0) new_compare33(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_asAs(False, x0) new_esEs35(x0, x1, ty_@0) new_ltEs13(True, True) new_ltEs18(x0, x1, ty_Double) new_ltEs8(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs24(LT, GT) new_esEs24(GT, LT) new_esEs37(x0, x1, ty_Float) new_lt22(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Bool) new_compare6(Char(x0), Char(x1)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, x2) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs9(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Double) new_asAs(True, x0) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt19(x0, x1, ty_Char) new_lt22(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(GT, LT) new_compare9(LT, GT) new_esEs27(x0, x1, ty_Integer) new_primMulNat0(Zero, Zero) new_primCompAux00(x0, GT) new_lt20(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Double) new_compare33(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, False, x2, x3) new_esEs24(LT, LT) new_compare7(@0, @0) new_esEs4(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1, x2) new_esEs33(x0, x1, ty_Char) new_compare12(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare12(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare13(x0, x1, True, x2, x3) new_esEs4(x0, x1, ty_Bool) new_ltEs5(Left(x0), Right(x1), x2, x3) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs31(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Int) new_ltEs11(LT, LT) new_esEs10(x0, x1, ty_@0) new_esEs26(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Double) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt23(x0, x1, ty_Double) new_esEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Float) new_compare12(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_compare33(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Int) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(True, False) new_compare31(False, True) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, ty_@0) new_lt23(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Char) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, Zero) new_esEs17(Just(x0), Just(x1), ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Int) new_esEs17(Just(x0), Nothing, x1) new_esEs17(Just(x0), Just(x1), ty_Float) new_lt19(x0, x1, ty_Bool) new_lt6(x0, x1) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs12(Left(x0), Left(x1), ty_Float, x2) new_esEs6(x0, x1, ty_Double) new_not(True) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_fsEs(x0) new_esEs31(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Integer) new_esEs17(Just(x0), Just(x1), ty_Bool) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Float) new_compare19(Just(x0), Just(x1), x2) new_compare33(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Float) new_compare0([], :(x0, x1), x2) new_esEs31(x0, x1, ty_@0) new_lt19(x0, x1, ty_Ordering) new_ltEs13(False, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt19(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs27(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_lt21(x0, x1, ty_@0) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs40(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_esEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Ordering) new_lt17(x0, x1, x2) new_esEs27(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs34(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Char) new_esEs34(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1) new_lt5(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs36(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Char) new_esEs4(x0, x1, ty_@0) new_compare11(Integer(x0), Integer(x1)) new_compare19(Nothing, Nothing, x0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Integer) new_compare12(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Float) new_lt18(x0, x1, x2, x3) new_esEs35(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Float) new_lt21(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Ordering) new_esEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs18(Float(x0, x1), Float(x2, x3)) new_esEs8(x0, x1, ty_Float) new_lt21(x0, x1, ty_Int) new_esEs29(x0, x1, ty_@0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs4(x0, x1) new_lt22(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(@0, @0) new_compare33(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs25(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs35(x0, x1, ty_Float) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Bool) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs21(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Ordering) new_compare9(GT, EQ) new_compare9(EQ, GT) new_esEs20(True, True) new_esEs10(x0, x1, ty_Ordering) new_compare33(x0, x1, ty_Float) new_compare13(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_Float) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(:(x0, x1), [], x2) new_lt5(x0, x1, ty_Int) new_lt19(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Double) new_esEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_compare8(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, x2, x3, x4) new_esEs37(x0, x1, ty_Bool) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare28(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs24(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Int) new_lt9(x0, x1, x2) new_compare10(x0, x1, True, x2) new_lt23(x0, x1, ty_@0) new_esEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primEqNat0(Zero, Succ(x0)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Just(x0), Just(x1), ty_@0) new_esEs7(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_compare26(x0, x1, True, x2, x3) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Float) new_esEs12(Left(x0), Right(x1), x2, x3) new_esEs12(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Char) new_ltEs17(x0, x1) new_esEs33(x0, x1, ty_@0) new_esEs12(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs17(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, ty_Int) new_primEqNat0(Zero, Zero) new_compare32(Left(x0), Right(x1), x2, x3) new_compare32(Right(x0), Left(x1), x2, x3) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, ty_Float) new_not(False) new_esEs6(x0, x1, ty_Bool) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_ltEs11(GT, LT) new_esEs28(GT) new_ltEs11(LT, GT) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_compare31(True, True) new_esEs36(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Ordering) new_esEs24(GT, GT) new_lt12(x0, x1) new_esEs34(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_primMulNat0(Zero, Succ(x0)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Integer) new_compare15(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Char) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs24(LT, EQ) new_esEs24(EQ, LT) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Char) new_compare111(x0, x1, x2, x3, False, x4, x5) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(Right(x0), Right(x1), x2, x3) new_esEs5(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_@0) new_compare32(Left(x0), Left(x1), x2, x3) new_compare19(Nothing, Just(x0), x1) new_ltEs18(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, ty_Double) new_esEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs35(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Int) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_ltEs18(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Bool) new_compare33(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt5(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_lt22(x0, x1, ty_Int) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(x0, x1) new_esEs15(x0, x1) new_esEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare33(x0, x1, ty_Char) new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primCmpNat0(Zero, Zero) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, x2, x3, True, x4, x5) new_esEs34(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Integer) new_esEs8(x0, x1, app(ty_Maybe, x2)) 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_lt0(xwv18, xwv13, bef) -> new_compare(xwv18, xwv13, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare1(Just(xwv400), Just(xwv300), de) -> new_compare20(xwv400, xwv300, new_esEs4(xwv400, xwv300, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_Either, bg), bh)) -> new_ltEs3(xwv610, xwv620, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, app(app(ty_Either, eg), eh)) -> new_ltEs3(xwv612, xwv622, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(xwv61, xwv62, ca) -> new_compare(xwv61, xwv62, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare3(@2(xwv400, xwv401), @2(xwv300, xwv301), cbe, cbf) -> new_compare22(xwv400, xwv401, xwv300, xwv301, new_asAs(new_esEs8(xwv400, xwv300, cbe), new_esEs9(xwv401, xwv301, cbf)), cbe, cbf) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), he, app(app(ty_Either, bae), baf)) -> new_ltEs3(xwv611, xwv621, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(xwv400, xwv401, xwv402), @3(xwv300, xwv301, xwv302), bfb, bfc, bfd) -> new_compare21(xwv400, xwv401, xwv402, xwv300, xwv301, xwv302, new_asAs(new_esEs5(xwv400, xwv300, bfb), new_asAs(new_esEs6(xwv401, xwv301, bfc), new_esEs7(xwv402, xwv302, bfd))), bfb, bfc, bfd) 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_ltEs(Just(xwv610), Just(xwv620), app(app(ty_@2, be), bf)) -> new_ltEs2(xwv610, xwv620, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, app(app(ty_@2, ee), ef)) -> new_ltEs2(xwv612, xwv622, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), he, app(app(ty_@2, bac), bad)) -> new_ltEs2(xwv611, xwv621, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt1(xwv18, xwv13, beg, beh, bfa) -> new_compare2(xwv18, xwv13, beg, beh, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_lt3(xwv18, xwv13, cec, ced) -> new_compare4(xwv18, xwv13, cec, ced) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt2(xwv18, xwv13, cbc, cbd) -> new_compare3(xwv18, xwv13, cbc, cbd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_ltEs(Just(xwv610), Just(xwv620), app(app(app(ty_@3, bb), bc), bd)) -> new_ltEs1(xwv610, xwv620, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs1(xwv612, xwv622, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), he, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs1(xwv611, xwv621, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Just(xwv610), Just(xwv620), app(ty_Maybe, h)) -> new_ltEs(xwv610, xwv620, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Just(xwv610), Just(xwv620), app(ty_[], ba)) -> new_ltEs0(xwv610, xwv620, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, app(ty_Maybe, dh)) -> new_ltEs(xwv612, xwv622, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), he, app(ty_Maybe, hf)) -> new_ltEs(xwv611, xwv621, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_lt(xwv18, xwv13, bee) -> new_compare1(xwv18, xwv13, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare4(Left(xwv400), Left(xwv300), cee, cef) -> new_compare23(xwv400, xwv300, new_esEs10(xwv400, xwv300, cee), cee, cef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare4(Right(xwv400), Right(xwv300), cee, cef) -> new_compare24(xwv400, xwv300, new_esEs11(xwv400, xwv300, cef), cee, cef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(xwv400, xwv300, xwv56, app(ty_Maybe, cc)) -> new_compare1(xwv400, xwv300, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_Maybe, bag), bah) -> new_lt(xwv610, xwv620, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare(:(xwv400, xwv401), :(xwv300, xwv301), cb) -> new_primCompAux(xwv400, xwv300, new_compare0(xwv401, xwv301, cb), cb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(xwv400, xwv401), :(xwv300, xwv301), cb) -> new_compare(xwv401, xwv301, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare22(xwv126, xwv127, xwv128, xwv129, False, cbg, app(app(ty_Either, ccg), cch)) -> new_ltEs3(xwv127, xwv129, ccg, cch) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare22(xwv126, xwv127, xwv128, xwv129, False, cbg, app(app(ty_@2, cce), ccf)) -> new_ltEs2(xwv127, xwv129, cce, ccf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare22(xwv126, xwv127, xwv128, xwv129, False, cbg, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs1(xwv127, xwv129, ccb, ccc, ccd) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare22(xwv126, xwv127, xwv128, xwv129, False, cbg, app(ty_Maybe, cbh)) -> new_ltEs(xwv127, xwv129, cbh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare22(xwv126, xwv127, xwv128, xwv129, False, app(ty_Maybe, cda), cdb) -> new_lt(xwv126, xwv128, cda) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_primCompAux(xwv400, xwv300, xwv56, app(app(ty_@2, da), db)) -> new_compare3(xwv400, xwv300, da, db) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, dg, app(ty_[], ea)) -> new_ltEs0(xwv612, xwv622, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), he, app(ty_[], hg)) -> new_ltEs0(xwv611, xwv621, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(xwv126, xwv127, xwv128, xwv129, False, cbg, app(ty_[], cca)) -> new_ltEs0(xwv127, xwv129, cca) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_[], bba), bah) -> new_lt0(xwv610, xwv620, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(xwv126, xwv127, xwv128, xwv129, False, app(ty_[], cdc), cdb) -> new_lt0(xwv126, xwv128, cdc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, app(app(ty_Either, bhh), caa)) -> new_ltEs3(xwv79, xwv82, bhh, caa) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, app(app(ty_@2, bhf), bhg)) -> new_ltEs2(xwv79, xwv82, bhf, bhg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_ltEs1(xwv79, xwv82, bhc, bhd, bhe) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, app(ty_Maybe, bha)) -> new_ltEs(xwv79, xwv82, bha) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, bff, app(ty_[], bhb)) -> new_ltEs0(xwv79, xwv82, bhb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_primCompAux(xwv400, xwv300, xwv56, app(app(app(ty_@3, ce), cf), cg)) -> new_compare2(xwv400, xwv300, ce, cf, cg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_@2, bbe), bbf), bah) -> new_lt2(xwv610, xwv620, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare22(xwv126, xwv127, xwv128, xwv129, False, app(app(ty_@2, cdg), cdh), cdb) -> new_lt2(xwv126, xwv128, cdg, cdh) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare20(xwv61, xwv62, False, app(ty_[], ca)) -> new_compare(xwv61, xwv62, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xwv400, xwv300, xwv56, app(ty_[], cd)) -> new_compare(xwv400, xwv300, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xwv400, xwv300, xwv56, app(app(ty_Either, dc), dd)) -> new_compare4(xwv400, xwv300, dc, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(xwv106, xwv107, False, cga, app(app(ty_Either, cha), chb)) -> new_ltEs3(xwv106, xwv107, cha, chb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(xwv99, xwv100, False, app(app(ty_Either, cfg), cfh), ceh) -> new_ltEs3(xwv99, xwv100, cfg, cfh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(xwv106, xwv107, False, cga, app(app(ty_@2, cgg), cgh)) -> new_ltEs2(xwv106, xwv107, cgg, cgh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(xwv99, xwv100, False, app(app(ty_@2, cfe), cff), ceh) -> new_ltEs2(xwv99, xwv100, cfe, cff) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(xwv106, xwv107, False, cga, app(app(app(ty_@3, cgd), cge), cgf)) -> new_ltEs1(xwv106, xwv107, cgd, cge, cgf) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(xwv99, xwv100, False, app(app(app(ty_@3, cfb), cfc), cfd), ceh) -> new_ltEs1(xwv99, xwv100, cfb, cfc, cfd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare24(xwv106, xwv107, False, cga, app(ty_Maybe, cgb)) -> new_ltEs(xwv106, xwv107, cgb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(xwv99, xwv100, False, app(ty_Maybe, ceg), ceh) -> new_ltEs(xwv99, xwv100, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare24(xwv106, xwv107, False, cga, app(ty_[], cgc)) -> new_ltEs0(xwv106, xwv107, cgc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(xwv99, xwv100, False, app(ty_[], cfa), ceh) -> new_ltEs0(xwv99, xwv100, cfa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_Either, bbg), bbh), bah) -> new_lt3(xwv610, xwv620, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(app(ty_@3, bbb), bbc), bbd), bah) -> new_lt1(xwv610, xwv620, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare22(xwv126, xwv127, xwv128, xwv129, False, app(app(ty_Either, cea), ceb), cdb) -> new_lt3(xwv126, xwv128, cea, ceb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare22(xwv126, xwv127, xwv128, xwv129, False, app(app(app(ty_@3, cdd), cde), cdf), cdb) -> new_lt1(xwv126, xwv128, cdd, cde, cdf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_ltEs3(Left(xwv610), Left(xwv620), app(app(ty_Either, bda), bdb), bcb) -> new_ltEs3(xwv610, xwv620, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(xwv610), Right(xwv620), bdc, app(app(ty_Either, bec), bed)) -> new_ltEs3(xwv610, xwv620, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_Either, bda), bdb)), bcb)) -> new_ltEs3(xwv610, xwv620, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_Either, bg), bh))) -> new_ltEs3(xwv610, xwv620, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), dg), app(app(ty_Either, eg), eh))) -> new_ltEs3(xwv612, xwv622, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, bdc), app(app(ty_Either, bec), bed))) -> new_ltEs3(xwv610, xwv620, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, he), app(app(ty_Either, bae), baf))) -> new_ltEs3(xwv611, xwv621, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, app(ty_Maybe, fa), fb) -> new_lt(xwv611, xwv621, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_Maybe, gd), dg, fb) -> new_lt(xwv610, xwv620, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, app(ty_[], fc), fb) -> new_lt0(xwv611, xwv621, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_[], ge), dg, fb) -> new_lt0(xwv610, xwv620, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, app(app(ty_@2, fh), ga), fb) -> new_lt2(xwv611, xwv621, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_@2, ha), hb), dg, fb) -> new_lt2(xwv610, xwv620, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, app(app(ty_Either, gb), gc), fb) -> new_lt3(xwv611, xwv621, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_Either, hc), hd), dg, fb) -> new_lt3(xwv610, xwv620, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), df, app(app(app(ty_@3, fd), ff), fg), fb) -> new_lt1(xwv611, xwv621, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(app(ty_@3, gf), gg), gh), dg, fb) -> new_lt1(xwv610, xwv620, gf, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(Left(xwv610), Left(xwv620), app(app(ty_@2, bcg), bch), bcb) -> new_ltEs2(xwv610, xwv620, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(xwv610), Right(xwv620), bdc, app(app(ty_@2, bea), beb)) -> new_ltEs2(xwv610, xwv620, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, bdc), app(app(ty_@2, bea), beb))) -> new_ltEs2(xwv610, xwv620, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_@2, be), bf))) -> new_ltEs2(xwv610, xwv620, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, he), app(app(ty_@2, bac), bad))) -> new_ltEs2(xwv611, xwv621, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), dg), app(app(ty_@2, ee), ef))) -> new_ltEs2(xwv612, xwv622, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_@2, bcg), bch)), bcb)) -> new_ltEs2(xwv610, xwv620, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Right(xwv610), Right(xwv620), bdc, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs1(xwv610, xwv620, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Left(xwv610), Left(xwv620), app(app(app(ty_@3, bcd), bce), bcf), bcb) -> new_ltEs1(xwv610, xwv620, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(app(ty_@3, bcd), bce), bcf)), bcb)) -> new_ltEs1(xwv610, xwv620, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, he), app(app(app(ty_@3, hh), baa), bab))) -> new_ltEs1(xwv611, xwv621, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(app(ty_@3, bb), bc), bd))) -> new_ltEs1(xwv610, xwv620, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), dg), app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs1(xwv612, xwv622, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, bdc), app(app(app(ty_@3, bdf), bdg), bdh))) -> new_ltEs1(xwv610, xwv620, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Left(xwv610), Left(xwv620), app(ty_Maybe, bca), bcb) -> new_ltEs(xwv610, xwv620, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Right(xwv610), Right(xwv620), bdc, app(ty_Maybe, bdd)) -> new_ltEs(xwv610, xwv620, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(xwv610), Left(xwv620), app(ty_[], bcc), bcb) -> new_ltEs0(xwv610, xwv620, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Right(xwv610), Right(xwv620), bdc, app(ty_[], bde)) -> new_ltEs0(xwv610, xwv620, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, he), app(ty_Maybe, hf))) -> new_ltEs(xwv611, xwv621, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(xwv610, xwv620, h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), dg), app(ty_Maybe, dh))) -> new_ltEs(xwv612, xwv622, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_Maybe, bca)), bcb)) -> new_ltEs(xwv610, xwv620, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, bdc), app(ty_Maybe, bdd))) -> new_ltEs(xwv610, xwv620, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_Maybe, bag)), bah)) -> new_lt(xwv610, xwv620, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_Maybe, gd)), dg), fb)) -> new_lt(xwv610, xwv620, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), app(ty_Maybe, fa)), fb)) -> new_lt(xwv611, xwv621, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, bdc), app(ty_[], bde))) -> new_ltEs0(xwv610, xwv620, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), dg), app(ty_[], ea))) -> new_ltEs0(xwv612, xwv622, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_[], bcc)), bcb)) -> new_ltEs0(xwv610, xwv620, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_[], ba))) -> new_ltEs0(xwv610, xwv620, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, he), app(ty_[], hg))) -> new_ltEs0(xwv611, xwv621, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_[], bba)), bah)) -> new_lt0(xwv610, xwv620, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_[], ge)), dg), fb)) -> new_lt0(xwv610, xwv620, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), app(ty_[], fc)), fb)) -> new_lt0(xwv611, xwv621, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), app(app(ty_@2, fh), ga)), fb)) -> new_lt2(xwv611, xwv621, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_@2, bbe), bbf)), bah)) -> new_lt2(xwv610, xwv620, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_@2, ha), hb)), dg), fb)) -> new_lt2(xwv610, xwv620, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_Either, hc), hd)), dg), fb)) -> new_lt3(xwv610, xwv620, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), app(app(ty_Either, gb), gc)), fb)) -> new_lt3(xwv611, xwv621, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_Either, bbg), bbh)), bah)) -> new_lt3(xwv610, xwv620, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, df), app(app(app(ty_@3, fd), ff), fg)), fb)) -> new_lt1(xwv611, xwv621, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(app(ty_@3, gf), gg), gh)), dg), fb)) -> new_lt1(xwv610, xwv620, gf, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(app(ty_@3, bbb), bbc), bbd)), bah)) -> new_lt1(xwv610, xwv620, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, app(ty_Maybe, cab), bfg) -> new_lt(xwv78, xwv81, cab) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, app(ty_Maybe, bfe), bff, bfg) -> new_lt(xwv77, xwv80, bfe) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, app(ty_[], cac), bfg) -> new_lt0(xwv78, xwv81, cac) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, app(ty_[], bfh), bff, bfg) -> new_lt0(xwv77, xwv80, bfh) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, app(app(ty_@2, bgd), bge), bff, bfg) -> new_lt2(xwv77, xwv80, bgd, bge) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, app(app(ty_@2, cag), cah), bfg) -> new_lt2(xwv78, xwv81, cag, cah) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, app(app(ty_Either, bgf), bgg), bff, bfg) -> new_lt3(xwv77, xwv80, bgf, bgg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, app(app(ty_Either, cba), cbb), bfg) -> new_lt3(xwv78, xwv81, cba, cbb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, app(app(app(ty_@3, bga), bgb), bgc), bff, bfg) -> new_lt1(xwv77, xwv80, bga, bgb, bgc) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare21(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, bgh, app(app(app(ty_@3, cad), cae), caf), bfg) -> new_lt1(xwv78, xwv81, cad, cae, caf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xwv30000), Succ(xwv40100)) -> new_primMulNat(xwv30000, 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(xwv30000), Succ(xwv40100)) -> new_primMulNat(xwv30000, 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_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_lt24(xwv18, xwv13, h), h, ba) new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba) -> new_delFromFM(xwv17, xwv18, h, ba) new_delFromFM1(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bb, bc) -> new_delFromFM(xwv31, xwv33, bb, bc) new_delFromFM(Branch(xwv30, xwv31, xwv32, xwv33, xwv34), xwv40, bd, be) -> new_delFromFM2(xwv30, xwv31, xwv32, xwv33, xwv34, xwv40, new_gt(xwv40, xwv30, bd), bd, be) The TRS R consists of the following rules: new_ltEs24(xwv612, xwv622, ty_Float) -> new_ltEs12(xwv612, xwv622) new_lt24(xwv18, xwv13, ty_Bool) -> new_lt14(xwv18, xwv13) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt22(xwv611, xwv621, ty_Char) -> new_lt6(xwv611, xwv621) new_ltEs5(Right(xwv610), Right(xwv620), bfa, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs10(xwv610, xwv620, bfd, bfe, bff) new_pePe(True, xwv210) -> True new_esEs29(xwv610, xwv620, ty_Integer) -> new_esEs19(xwv610, xwv620) new_esEs31(xwv77, xwv80, app(ty_Maybe, dgb)) -> new_esEs17(xwv77, xwv80, dgb) new_esEs8(xwv400, xwv300, app(ty_[], cfg)) -> new_esEs22(xwv400, xwv300, cfg) new_esEs27(xwv281, xwv331, ty_Float) -> new_esEs18(xwv281, xwv331) new_esEs10(xwv400, xwv300, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_esEs23(xwv400, xwv300, fdb, fdc, fdd) new_esEs6(xwv401, xwv301, ty_Bool) -> new_esEs20(xwv401, xwv301) new_esEs27(xwv281, xwv331, ty_Bool) -> new_esEs20(xwv281, xwv331) new_compare19(Just(xwv400), Just(xwv300), dca) -> new_compare27(xwv400, xwv300, new_esEs4(xwv400, xwv300, dca), dca) new_compare33(xwv400, xwv300, app(ty_Maybe, gbc)) -> new_compare19(xwv400, xwv300, gbc) new_compare33(xwv400, xwv300, app(app(ty_@2, gbh), gca)) -> new_compare15(xwv400, xwv300, gbh, gca) new_esEs34(xwv610, xwv620, ty_Ordering) -> new_esEs24(xwv610, xwv620) new_esEs4(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs8(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_compare26(xwv106, xwv107, True, cbb, cbc) -> EQ new_ltEs19(xwv106, xwv107, app(ty_Ratio, ccc)) -> new_ltEs16(xwv106, xwv107, ccc) new_esEs6(xwv401, xwv301, ty_Float) -> new_esEs18(xwv401, xwv301) new_esEs29(xwv610, xwv620, app(ty_[], bgg)) -> new_esEs22(xwv610, xwv620, bgg) new_esEs30(xwv280, xwv330, app(ty_Ratio, dab)) -> new_esEs16(xwv280, xwv330, dab) new_ltEs24(xwv612, xwv622, app(ty_Maybe, fba)) -> new_ltEs8(xwv612, xwv622, fba) new_esEs32(xwv78, xwv81, ty_Int) -> new_esEs15(xwv78, xwv81) new_esEs12(Right(xwv280), Right(xwv330), bcc, ty_Bool) -> new_esEs20(xwv280, xwv330) new_esEs11(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_compare111(xwv194, xwv195, xwv196, xwv197, False, eef, eeg) -> GT new_esEs36(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) new_lt19(xwv77, xwv80, app(app(ty_Either, dhb), dhc)) -> new_lt18(xwv77, xwv80, dhb, dhc) new_esEs35(xwv611, xwv621, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs23(xwv611, xwv621, faa, fab, fac) new_esEs29(xwv610, xwv620, ty_Double) -> new_esEs21(xwv610, xwv620) new_lt19(xwv77, xwv80, ty_@0) -> new_lt13(xwv77, xwv80) new_ltEs5(Left(xwv610), Right(xwv620), bfa, bdf) -> True new_esEs12(Left(xwv280), Left(xwv330), app(app(app(ty_@3, bbf), bbg), bbh), bbb) -> new_esEs23(xwv280, xwv330, bbf, bbg, bbh) new_esEs33(xwv126, xwv128, app(app(ty_Either, edb), edc)) -> new_esEs12(xwv126, xwv128, edb, edc) new_lt24(xwv18, xwv13, app(ty_[], dbd)) -> new_lt9(xwv18, xwv13, dbd) new_lt23(xwv610, xwv620, ty_Integer) -> new_lt7(xwv610, xwv620) new_ltEs20(xwv61, xwv62, ty_@0) -> new_ltEs4(xwv61, xwv62) new_lt21(xwv126, xwv128, ty_Ordering) -> new_lt11(xwv126, xwv128) new_compare31(True, False) -> GT new_ltEs23(xwv127, xwv129, app(app(ty_Either, eed), eee)) -> new_ltEs5(xwv127, xwv129, eed, eee) new_esEs15(xwv28, xwv33) -> new_primEqInt(xwv28, xwv33) new_primEqNat0(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat0(xwv2800, xwv3300) new_esEs37(xwv281, xwv331, ty_Bool) -> new_esEs20(xwv281, xwv331) new_esEs12(Right(xwv280), Right(xwv330), bcc, ty_Float) -> new_esEs18(xwv280, xwv330) new_esEs17(Nothing, Nothing, efb) -> True new_esEs9(xwv401, xwv301, ty_Char) -> new_esEs13(xwv401, xwv301) new_compare25(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, True, dfg, dfh, dga) -> EQ new_esEs17(Nothing, Just(xwv330), efb) -> False new_esEs17(Just(xwv280), Nothing, efb) -> False new_compare5(@3(xwv400, xwv401, xwv402), @3(xwv300, xwv301, xwv302), bf, bg, bh) -> new_compare25(xwv400, xwv401, xwv402, xwv300, xwv301, xwv302, new_asAs(new_esEs5(xwv400, xwv300, bf), new_asAs(new_esEs6(xwv401, xwv301, bg), new_esEs7(xwv402, xwv302, bh))), bf, bg, bh) new_lt21(xwv126, xwv128, ty_Int) -> new_lt15(xwv126, xwv128) new_esEs39(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_not(True) -> False new_ltEs18(xwv611, xwv621, ty_Double) -> new_ltEs17(xwv611, xwv621) new_gt(xwv40, xwv30, ty_Float) -> new_esEs41(new_compare12(xwv40, xwv30)) new_lt21(xwv126, xwv128, app(ty_Maybe, ecb)) -> new_lt8(xwv126, xwv128, ecb) new_lt22(xwv611, xwv621, ty_Double) -> new_lt4(xwv611, xwv621) new_ltEs22(xwv79, xwv82, app(ty_[], eag)) -> new_ltEs9(xwv79, xwv82, eag) new_primCompAux00(xwv67, LT) -> LT new_esEs7(xwv402, xwv302, app(ty_Ratio, eh)) -> new_esEs16(xwv402, xwv302, eh) new_esEs35(xwv611, xwv621, ty_Char) -> new_esEs13(xwv611, xwv621) new_esEs9(xwv401, xwv301, ty_Int) -> new_esEs15(xwv401, xwv301) new_ltEs8(Just(xwv610), Just(xwv620), ty_Integer) -> new_ltEs7(xwv610, xwv620) new_esEs10(xwv400, xwv300, app(ty_Ratio, fcg)) -> new_esEs16(xwv400, xwv300, fcg) new_ltEs18(xwv611, xwv621, ty_@0) -> new_ltEs4(xwv611, xwv621) new_esEs12(Left(xwv280), Left(xwv330), ty_Char, bbb) -> new_esEs13(xwv280, xwv330) new_esEs37(xwv281, xwv331, ty_Int) -> new_esEs15(xwv281, xwv331) new_ltEs5(Left(xwv610), Left(xwv620), ty_Char, bdf) -> new_ltEs6(xwv610, xwv620) new_esEs22(:(xwv280, xwv281), :(xwv330, xwv331), chg) -> new_asAs(new_esEs30(xwv280, xwv330, chg), new_esEs22(xwv281, xwv331, chg)) new_lt15(xwv18, xwv13) -> new_esEs28(new_compare30(xwv18, xwv13)) new_primEqNat0(Succ(xwv2800), Zero) -> False new_primEqNat0(Zero, Succ(xwv3300)) -> False new_esEs14(@0, @0) -> True new_ltEs24(xwv612, xwv622, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_ltEs10(xwv612, xwv622, fbc, fbd, fbe) new_esEs8(xwv400, xwv300, app(ty_Maybe, cff)) -> new_esEs17(xwv400, xwv300, cff) new_esEs31(xwv77, xwv80, app(ty_[], dgc)) -> new_esEs22(xwv77, xwv80, dgc) new_lt22(xwv611, xwv621, ty_Float) -> new_lt12(xwv611, xwv621) new_gt(xwv40, xwv30, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs41(new_compare5(xwv40, xwv30, bf, bg, bh)) new_compare9(LT, EQ) -> LT new_ltEs21(xwv99, xwv100, ty_Integer) -> new_ltEs7(xwv99, xwv100) new_ltEs5(Left(xwv610), Left(xwv620), ty_@0, bdf) -> new_ltEs4(xwv610, xwv620) new_esEs37(xwv281, xwv331, ty_Float) -> new_esEs18(xwv281, xwv331) new_ltEs22(xwv79, xwv82, ty_Int) -> new_ltEs14(xwv79, xwv82) new_esEs32(xwv78, xwv81, ty_Float) -> new_esEs18(xwv78, xwv81) new_ltEs5(Left(xwv610), Left(xwv620), app(app(ty_Either, beg), beh), bdf) -> new_ltEs5(xwv610, xwv620, beg, beh) new_esEs12(Left(xwv280), Left(xwv330), app(app(ty_Either, bah), bba), bbb) -> new_esEs12(xwv280, xwv330, bah, bba) new_esEs32(xwv78, xwv81, app(app(ty_@2, eaa), eab)) -> new_esEs25(xwv78, xwv81, eaa, eab) new_esEs4(xwv400, xwv300, app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs23(xwv400, xwv300, dcg, dch, dda) new_ltEs20(xwv61, xwv62, ty_Bool) -> new_ltEs13(xwv61, xwv62) new_lt19(xwv77, xwv80, ty_Bool) -> new_lt14(xwv77, xwv80) new_esEs27(xwv281, xwv331, ty_Int) -> new_esEs15(xwv281, xwv331) new_esEs9(xwv401, xwv301, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs23(xwv401, xwv301, chb, chc, chd) new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv300)) -> GT new_lt22(xwv611, xwv621, app(app(app(ty_@3, faa), fab), fac)) -> new_lt10(xwv611, xwv621, faa, fab, fac) new_ltEs23(xwv127, xwv129, ty_Ordering) -> new_ltEs11(xwv127, xwv129) new_ltEs5(Left(xwv610), Left(xwv620), ty_Double, bdf) -> new_ltEs17(xwv610, xwv620) new_esEs26(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) new_lt21(xwv126, xwv128, ty_@0) -> new_lt13(xwv126, xwv128) new_compare32(Left(xwv400), Right(xwv300), fcc, fcd) -> LT new_primCmpNat0(Zero, Succ(xwv3000)) -> LT new_esEs5(xwv400, xwv300, app(app(ty_Either, ca), cb)) -> new_esEs12(xwv400, xwv300, ca, cb) new_esEs37(xwv281, xwv331, app(app(ty_@2, fhf), fhg)) -> new_esEs25(xwv281, xwv331, fhf, fhg) new_ltEs5(Left(xwv610), Left(xwv620), ty_Bool, bdf) -> new_ltEs13(xwv610, xwv620) new_ltEs20(xwv61, xwv62, ty_Double) -> new_ltEs17(xwv61, xwv62) new_lt19(xwv77, xwv80, app(ty_Maybe, dgb)) -> new_lt8(xwv77, xwv80, dgb) new_esEs27(xwv281, xwv331, ty_Ordering) -> new_esEs24(xwv281, xwv331) new_esEs34(xwv610, xwv620, ty_Float) -> new_esEs18(xwv610, xwv620) new_compare12(Float(xwv400, Pos(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_lt5(xwv610, xwv620, ty_Ordering) -> new_lt11(xwv610, xwv620) new_gt(xwv40, xwv30, ty_Bool) -> new_esEs41(new_compare31(xwv40, xwv30)) new_ltEs23(xwv127, xwv129, ty_Double) -> new_ltEs17(xwv127, xwv129) new_compare31(False, False) -> EQ new_esEs29(xwv610, xwv620, ty_Ordering) -> new_esEs24(xwv610, xwv620) new_esEs7(xwv402, xwv302, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs23(xwv402, xwv302, fc, fd, ff) new_esEs26(xwv280, xwv330, app(ty_[], gg)) -> new_esEs22(xwv280, xwv330, gg) new_esEs5(xwv400, xwv300, app(ty_Maybe, cd)) -> new_esEs17(xwv400, xwv300, cd) new_esEs28(GT) -> False new_lt5(xwv610, xwv620, ty_Int) -> new_lt15(xwv610, xwv620) new_esEs8(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_ltEs18(xwv611, xwv621, ty_Bool) -> new_ltEs13(xwv611, xwv621) new_compare9(EQ, GT) -> LT new_esEs34(xwv610, xwv620, ty_Integer) -> new_esEs19(xwv610, xwv620) new_ltEs5(Left(xwv610), Left(xwv620), app(ty_[], bdh), bdf) -> new_ltEs9(xwv610, xwv620, bdh) new_ltEs19(xwv106, xwv107, ty_Integer) -> new_ltEs7(xwv106, xwv107) new_esEs9(xwv401, xwv301, app(ty_Ratio, cgg)) -> new_esEs16(xwv401, xwv301, cgg) new_primEqInt(Neg(Succ(xwv2800)), Neg(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) new_esEs31(xwv77, xwv80, ty_@0) -> new_esEs14(xwv77, xwv80) new_primCmpInt(Neg(Zero), Pos(Succ(xwv3000))) -> LT new_ltEs24(xwv612, xwv622, app(ty_Ratio, fbh)) -> new_ltEs16(xwv612, xwv622, fbh) new_esEs9(xwv401, xwv301, app(app(ty_@2, che), chf)) -> new_esEs25(xwv401, xwv301, che, chf) new_esEs5(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_primMulInt(Pos(xwv3000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) new_esEs11(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_gt(xwv40, xwv30, ty_Integer) -> new_esEs41(new_compare11(xwv40, xwv30)) new_compare10(xwv147, xwv148, True, bag) -> LT new_lt16(xwv18, xwv13, ddh, dea) -> new_esEs28(new_compare15(xwv18, xwv13, ddh, dea)) new_esEs9(xwv401, xwv301, ty_Float) -> new_esEs18(xwv401, xwv301) new_lt24(xwv18, xwv13, ty_Float) -> new_lt12(xwv18, xwv13) new_esEs17(Just(xwv280), Just(xwv330), app(ty_Ratio, efe)) -> new_esEs16(xwv280, xwv330, efe) new_ltEs19(xwv106, xwv107, app(ty_Maybe, cbd)) -> new_ltEs8(xwv106, xwv107, cbd) new_ltEs9(xwv61, xwv62, cch) -> new_fsEs(new_compare0(xwv61, xwv62, cch)) new_lt21(xwv126, xwv128, ty_Bool) -> new_lt14(xwv126, xwv128) new_primMulNat0(Succ(xwv30000), Zero) -> Zero new_primMulNat0(Zero, Succ(xwv40100)) -> Zero new_compare33(xwv400, xwv300, ty_Ordering) -> new_compare9(xwv400, xwv300) new_esEs32(xwv78, xwv81, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_esEs23(xwv78, xwv81, dhf, dhg, dhh) new_compare33(xwv400, xwv300, ty_Float) -> new_compare12(xwv400, xwv300) new_esEs10(xwv400, xwv300, app(app(ty_@2, fde), fdf)) -> new_esEs25(xwv400, xwv300, fde, fdf) new_esEs31(xwv77, xwv80, ty_Integer) -> new_esEs19(xwv77, xwv80) new_ltEs5(Left(xwv610), Left(xwv620), app(ty_Maybe, bdg), bdf) -> new_ltEs8(xwv610, xwv620, bdg) new_compare8(Double(xwv400, Pos(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_esEs12(Right(xwv280), Right(xwv330), bcc, ty_Char) -> new_esEs13(xwv280, xwv330) new_ltEs19(xwv106, xwv107, ty_Float) -> new_ltEs12(xwv106, xwv107) new_esEs36(xwv280, xwv330, app(app(ty_Either, ffd), ffe)) -> new_esEs12(xwv280, xwv330, ffd, ffe) new_lt24(xwv18, xwv13, ty_@0) -> new_lt13(xwv18, xwv13) new_lt19(xwv77, xwv80, ty_Int) -> new_lt15(xwv77, xwv80) new_esEs18(Float(xwv280, xwv281), Float(xwv330, xwv331)) -> new_esEs15(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) new_esEs34(xwv610, xwv620, app(app(ty_@2, ehb), ehc)) -> new_esEs25(xwv610, xwv620, ehb, ehc) new_primPlusNat0(Succ(xwv16200), Zero) -> Succ(xwv16200) new_primPlusNat0(Zero, Succ(xwv13700)) -> Succ(xwv13700) new_esEs29(xwv610, xwv620, app(ty_Maybe, bgf)) -> new_esEs17(xwv610, xwv620, bgf) new_compare33(xwv400, xwv300, ty_Char) -> new_compare6(xwv400, xwv300) new_compare33(xwv400, xwv300, app(app(app(ty_@3, gbe), gbf), gbg)) -> new_compare5(xwv400, xwv300, gbe, gbf, gbg) new_esEs12(Right(xwv280), Right(xwv330), bcc, ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs27(xwv281, xwv331, ty_Char) -> new_esEs13(xwv281, xwv331) new_esEs35(xwv611, xwv621, app(ty_Ratio, faf)) -> new_esEs16(xwv611, xwv621, faf) new_ltEs8(Just(xwv610), Just(xwv620), app(app(ty_Either, dfe), dff)) -> new_ltEs5(xwv610, xwv620, dfe, dff) new_lt10(xwv18, xwv13, dde, ddf, ddg) -> new_esEs28(new_compare5(xwv18, xwv13, dde, ddf, ddg)) new_esEs5(xwv400, xwv300, app(ty_[], ce)) -> new_esEs22(xwv400, xwv300, ce) new_esEs35(xwv611, xwv621, app(app(ty_@2, fad), fae)) -> new_esEs25(xwv611, xwv621, fad, fae) new_esEs38(xwv282, xwv332, app(app(ty_Either, fhh), gaa)) -> new_esEs12(xwv282, xwv332, fhh, gaa) new_esEs31(xwv77, xwv80, ty_Ordering) -> new_esEs24(xwv77, xwv80) new_ltEs5(Right(xwv610), Right(xwv620), bfa, ty_Float) -> new_ltEs12(xwv610, xwv620) new_esEs5(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_compare9(GT, GT) -> EQ new_ltEs8(Just(xwv610), Just(xwv620), app(ty_Ratio, dfd)) -> new_ltEs16(xwv610, xwv620, dfd) new_compare9(LT, GT) -> LT new_esEs31(xwv77, xwv80, ty_Double) -> new_esEs21(xwv77, xwv80) new_lt22(xwv611, xwv621, ty_Bool) -> new_lt14(xwv611, xwv621) new_gt(xwv40, xwv30, app(app(ty_Either, fcc), fcd)) -> new_esEs41(new_compare32(xwv40, xwv30, fcc, fcd)) new_esEs37(xwv281, xwv331, ty_Char) -> new_esEs13(xwv281, xwv331) new_esEs29(xwv610, xwv620, ty_@0) -> new_esEs14(xwv610, xwv620) new_esEs30(xwv280, xwv330, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs23(xwv280, xwv330, dae, daf, dag) new_esEs38(xwv282, xwv332, ty_Char) -> new_esEs13(xwv282, xwv332) new_lt5(xwv610, xwv620, app(ty_Ratio, bhe)) -> new_lt17(xwv610, xwv620, bhe) new_ltEs22(xwv79, xwv82, app(app(ty_@2, ebc), ebd)) -> new_ltEs15(xwv79, xwv82, ebc, ebd) new_esEs19(Integer(xwv280), Integer(xwv330)) -> new_primEqInt(xwv280, xwv330) new_lt20(xwv78, xwv81, app(ty_Ratio, eac)) -> new_lt17(xwv78, xwv81, eac) new_esEs8(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_ltEs5(Left(xwv610), Left(xwv620), ty_Int, bdf) -> new_ltEs14(xwv610, xwv620) new_esEs35(xwv611, xwv621, ty_Int) -> new_esEs15(xwv611, xwv621) new_lt19(xwv77, xwv80, ty_Ordering) -> new_lt11(xwv77, xwv80) new_ltEs21(xwv99, xwv100, ty_Float) -> new_ltEs12(xwv99, xwv100) new_ltEs8(Just(xwv610), Just(xwv620), app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs10(xwv610, xwv620, deg, deh, dfa) new_esEs6(xwv401, xwv301, ty_Double) -> new_esEs21(xwv401, xwv301) new_esEs26(xwv280, xwv330, app(app(ty_Either, gc), gd)) -> new_esEs12(xwv280, xwv330, gc, gd) new_ltEs8(Just(xwv610), Just(xwv620), ty_Ordering) -> new_ltEs11(xwv610, xwv620) new_esEs6(xwv401, xwv301, ty_Ordering) -> new_esEs24(xwv401, xwv301) new_esEs10(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_esEs17(Just(xwv280), Just(xwv330), ty_Char) -> new_esEs13(xwv280, xwv330) new_esEs6(xwv401, xwv301, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs23(xwv401, xwv301, ea, eb, ec) new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, False, dbf, dbg, dbh) -> GT new_esEs34(xwv610, xwv620, ty_@0) -> new_esEs14(xwv610, xwv620) new_esEs8(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_esEs33(xwv126, xwv128, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs23(xwv126, xwv128, ecd, ece, ecf) new_esEs11(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_lt19(xwv77, xwv80, ty_Float) -> new_lt12(xwv77, xwv80) new_ltEs11(EQ, GT) -> True new_ltEs19(xwv106, xwv107, app(ty_[], cbe)) -> new_ltEs9(xwv106, xwv107, cbe) new_esEs30(xwv280, xwv330, app(app(ty_@2, dah), dba)) -> new_esEs25(xwv280, xwv330, dah, dba) new_lt23(xwv610, xwv620, app(app(ty_Either, ehe), ehf)) -> new_lt18(xwv610, xwv620, ehe, ehf) new_esEs35(xwv611, xwv621, app(app(ty_Either, fag), fah)) -> new_esEs12(xwv611, xwv621, fag, fah) new_esEs10(xwv400, xwv300, app(app(ty_Either, fce), fcf)) -> new_esEs12(xwv400, xwv300, fce, fcf) new_compare29(xwv126, xwv127, xwv128, xwv129, False, ebh, eca) -> new_compare110(xwv126, xwv127, xwv128, xwv129, new_lt21(xwv126, xwv128, ebh), new_asAs(new_esEs33(xwv126, xwv128, ebh), new_ltEs23(xwv127, xwv129, eca)), ebh, eca) new_esEs35(xwv611, xwv621, ty_Bool) -> new_esEs20(xwv611, xwv621) new_lt24(xwv18, xwv13, ty_Char) -> new_lt6(xwv18, xwv13) new_ltEs11(EQ, EQ) -> True new_esEs37(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_esEs12(Right(xwv280), Right(xwv330), bcc, app(ty_Maybe, bcg)) -> new_esEs17(xwv280, xwv330, bcg) new_lt23(xwv610, xwv620, app(ty_Maybe, ege)) -> new_lt8(xwv610, xwv620, ege) new_lt5(xwv610, xwv620, ty_Bool) -> new_lt14(xwv610, xwv620) new_compare111(xwv194, xwv195, xwv196, xwv197, True, eef, eeg) -> LT new_compare0([], :(xwv300, xwv301), ded) -> LT new_esEs31(xwv77, xwv80, ty_Bool) -> new_esEs20(xwv77, xwv80) new_esEs34(xwv610, xwv620, ty_Int) -> new_esEs15(xwv610, xwv620) new_ltEs5(Right(xwv610), Left(xwv620), bfa, bdf) -> False new_esEs33(xwv126, xwv128, ty_Char) -> new_esEs13(xwv126, xwv128) new_esEs6(xwv401, xwv301, app(ty_[], dh)) -> new_esEs22(xwv401, xwv301, dh) new_lt22(xwv611, xwv621, ty_@0) -> new_lt13(xwv611, xwv621) new_esEs32(xwv78, xwv81, ty_Ordering) -> new_esEs24(xwv78, xwv81) new_esEs5(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_esEs28(LT) -> True new_esEs4(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_esEs27(xwv281, xwv331, app(ty_[], baa)) -> new_esEs22(xwv281, xwv331, baa) new_esEs12(Right(xwv280), Right(xwv330), bcc, ty_Integer) -> new_esEs19(xwv280, xwv330) new_gt(xwv40, xwv30, app(app(ty_@2, cfa), cfb)) -> new_esEs41(new_compare15(xwv40, xwv30, cfa, cfb)) new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv300)) -> new_primCmpNat0(Succ(xwv4000), xwv300) new_esEs23(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), ffa, ffb, ffc) -> new_asAs(new_esEs36(xwv280, xwv330, ffa), new_asAs(new_esEs37(xwv281, xwv331, ffb), new_esEs38(xwv282, xwv332, ffc))) new_ltEs11(GT, GT) -> True new_primCompAux00(xwv67, EQ) -> xwv67 new_compare30(xwv40, xwv30) -> new_primCmpInt(xwv40, xwv30) new_compare25(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, dfg, dfh, dga) -> new_compare17(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, new_lt19(xwv77, xwv80, dfg), new_asAs(new_esEs31(xwv77, xwv80, dfg), new_pePe(new_lt20(xwv78, xwv81, dfh), new_asAs(new_esEs32(xwv78, xwv81, dfh), new_ltEs22(xwv79, xwv82, dga)))), dfg, dfh, dga) new_esEs30(xwv280, xwv330, app(app(ty_Either, chh), daa)) -> new_esEs12(xwv280, xwv330, chh, daa) new_esEs5(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_gt(xwv40, xwv30, app(ty_[], ded)) -> new_esEs41(new_compare0(xwv40, xwv30, ded)) new_esEs27(xwv281, xwv331, app(ty_Ratio, hg)) -> new_esEs16(xwv281, xwv331, hg) new_esEs33(xwv126, xwv128, app(ty_Ratio, eda)) -> new_esEs16(xwv126, xwv128, eda) new_primMulNat0(Succ(xwv30000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv30000, Succ(xwv40100)), Succ(xwv40100)) new_compare11(Integer(xwv400), Integer(xwv300)) -> new_primCmpInt(xwv400, xwv300) new_ltEs24(xwv612, xwv622, app(app(ty_@2, fbf), fbg)) -> new_ltEs15(xwv612, xwv622, fbf, fbg) new_ltEs16(xwv61, xwv62, cdd) -> new_fsEs(new_compare16(xwv61, xwv62, cdd)) new_esEs34(xwv610, xwv620, ty_Char) -> new_esEs13(xwv610, xwv620) new_ltEs13(False, True) -> True new_ltEs13(False, False) -> True new_esEs6(xwv401, xwv301, ty_Integer) -> new_esEs19(xwv401, xwv301) new_esEs4(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_esEs38(xwv282, xwv332, ty_@0) -> new_esEs14(xwv282, xwv332) new_esEs38(xwv282, xwv332, app(app(app(ty_@3, gae), gaf), gag)) -> new_esEs23(xwv282, xwv332, gae, gaf, gag) new_ltEs20(xwv61, xwv62, app(ty_[], cch)) -> new_ltEs9(xwv61, xwv62, cch) new_lt20(xwv78, xwv81, ty_Integer) -> new_lt7(xwv78, xwv81) new_gt(xwv40, xwv30, app(ty_Ratio, gcf)) -> new_esEs41(new_compare16(xwv40, xwv30, gcf)) new_esEs10(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_lt5(xwv610, xwv620, ty_@0) -> new_lt13(xwv610, xwv620) new_esEs29(xwv610, xwv620, ty_Bool) -> new_esEs20(xwv610, xwv620) new_esEs38(xwv282, xwv332, app(ty_Maybe, gac)) -> new_esEs17(xwv282, xwv332, gac) new_esEs33(xwv126, xwv128, app(ty_Maybe, ecb)) -> new_esEs17(xwv126, xwv128, ecb) new_esEs36(xwv280, xwv330, ty_Bool) -> new_esEs20(xwv280, xwv330) new_ltEs8(Just(xwv610), Just(xwv620), app(ty_Maybe, dee)) -> new_ltEs8(xwv610, xwv620, dee) new_esEs17(Just(xwv280), Just(xwv330), app(app(app(ty_@3, efh), ega), egb)) -> new_esEs23(xwv280, xwv330, efh, ega, egb) new_esEs12(Right(xwv280), Right(xwv330), bcc, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs23(xwv280, xwv330, bda, bdb, bdc) new_esEs24(LT, GT) -> False new_esEs24(GT, LT) -> False new_lt19(xwv77, xwv80, ty_Integer) -> new_lt7(xwv77, xwv80) new_esEs29(xwv610, xwv620, app(app(ty_Either, bhf), bhg)) -> new_esEs12(xwv610, xwv620, bhf, bhg) new_compare33(xwv400, xwv300, ty_Bool) -> new_compare31(xwv400, xwv300) new_ltEs21(xwv99, xwv100, app(ty_[], cdh)) -> new_ltEs9(xwv99, xwv100, cdh) new_esEs30(xwv280, xwv330, ty_Bool) -> new_esEs20(xwv280, xwv330) new_ltEs17(xwv61, xwv62) -> new_fsEs(new_compare8(xwv61, xwv62)) new_esEs10(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_esEs17(Just(xwv280), Just(xwv330), app(ty_Maybe, eff)) -> new_esEs17(xwv280, xwv330, eff) new_esEs26(xwv280, xwv330, app(ty_Ratio, ge)) -> new_esEs16(xwv280, xwv330, ge) new_esEs41(GT) -> True new_esEs27(xwv281, xwv331, ty_Double) -> new_esEs21(xwv281, xwv331) new_esEs32(xwv78, xwv81, app(ty_Ratio, eac)) -> new_esEs16(xwv78, xwv81, eac) new_lt24(xwv18, xwv13, app(app(ty_Either, deb), dec)) -> new_lt18(xwv18, xwv13, deb, dec) new_esEs12(Left(xwv280), Left(xwv330), ty_Bool, bbb) -> new_esEs20(xwv280, xwv330) new_esEs35(xwv611, xwv621, ty_Ordering) -> new_esEs24(xwv611, xwv621) new_esEs11(xwv400, xwv300, app(app(ty_Either, fdg), fdh)) -> new_esEs12(xwv400, xwv300, fdg, fdh) new_esEs36(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs31(xwv77, xwv80, ty_Int) -> new_esEs15(xwv77, xwv80) new_compare13(xwv164, xwv165, True, dbb, dbc) -> LT new_esEs34(xwv610, xwv620, ty_Bool) -> new_esEs20(xwv610, xwv620) new_esEs13(Char(xwv280), Char(xwv330)) -> new_primEqNat0(xwv280, xwv330) new_esEs7(xwv402, xwv302, ty_Float) -> new_esEs18(xwv402, xwv302) new_lt24(xwv18, xwv13, app(ty_Maybe, ddd)) -> new_lt8(xwv18, xwv13, ddd) new_lt23(xwv610, xwv620, ty_Char) -> new_lt6(xwv610, xwv620) new_esEs26(xwv280, xwv330, ty_Double) -> new_esEs21(xwv280, xwv330) new_esEs10(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_gt(xwv40, xwv30, ty_Double) -> new_esEs41(new_compare8(xwv40, xwv30)) new_esEs12(Right(xwv280), Right(xwv330), bcc, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs35(xwv611, xwv621, ty_@0) -> new_esEs14(xwv611, xwv621) new_lt21(xwv126, xwv128, ty_Char) -> new_lt6(xwv126, xwv128) new_esEs31(xwv77, xwv80, app(app(ty_@2, dgg), dgh)) -> new_esEs25(xwv77, xwv80, dgg, dgh) new_esEs32(xwv78, xwv81, ty_Bool) -> new_esEs20(xwv78, xwv81) new_esEs25(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, gb) -> new_asAs(new_esEs26(xwv280, xwv330, ga), new_esEs27(xwv281, xwv331, gb)) new_esEs9(xwv401, xwv301, app(ty_[], cha)) -> new_esEs22(xwv401, xwv301, cha) new_esEs34(xwv610, xwv620, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs23(xwv610, xwv620, egg, egh, eha) new_esEs34(xwv610, xwv620, app(app(ty_Either, ehe), ehf)) -> new_esEs12(xwv610, xwv620, ehe, ehf) new_lt5(xwv610, xwv620, app(ty_Maybe, bgf)) -> new_lt8(xwv610, xwv620, bgf) new_esEs11(xwv400, xwv300, app(app(app(ty_@3, fed), fee), fef)) -> new_esEs23(xwv400, xwv300, fed, fee, fef) new_compare0(:(xwv400, xwv401), [], ded) -> GT new_compare31(False, True) -> LT new_lt22(xwv611, xwv621, app(app(ty_Either, fag), fah)) -> new_lt18(xwv611, xwv621, fag, fah) new_esEs30(xwv280, xwv330, ty_Char) -> new_esEs13(xwv280, xwv330) new_primPlusNat0(Succ(xwv16200), Succ(xwv13700)) -> Succ(Succ(new_primPlusNat0(xwv16200, xwv13700))) new_lt24(xwv18, xwv13, ty_Integer) -> new_lt7(xwv18, xwv13) new_ltEs5(Left(xwv610), Left(xwv620), ty_Integer, bdf) -> new_ltEs7(xwv610, xwv620) new_esEs37(xwv281, xwv331, ty_Ordering) -> new_esEs24(xwv281, xwv331) new_esEs31(xwv77, xwv80, app(ty_Ratio, dha)) -> new_esEs16(xwv77, xwv80, dha) new_esEs12(Left(xwv280), Left(xwv330), app(ty_[], bbe), bbb) -> new_esEs22(xwv280, xwv330, bbe) new_lt5(xwv610, xwv620, app(app(ty_Either, bhf), bhg)) -> new_lt18(xwv610, xwv620, bhf, bhg) new_esEs12(Right(xwv280), Right(xwv330), bcc, ty_@0) -> new_esEs14(xwv280, xwv330) new_lt4(xwv18, xwv13) -> new_esEs28(new_compare8(xwv18, xwv13)) new_esEs34(xwv610, xwv620, app(ty_Maybe, ege)) -> new_esEs17(xwv610, xwv620, ege) new_lt5(xwv610, xwv620, ty_Integer) -> new_lt7(xwv610, xwv620) new_lt20(xwv78, xwv81, app(app(ty_Either, ead), eae)) -> new_lt18(xwv78, xwv81, ead, eae) new_esEs37(xwv281, xwv331, app(ty_Maybe, fha)) -> new_esEs17(xwv281, xwv331, fha) new_esEs11(xwv400, xwv300, app(ty_Maybe, feb)) -> new_esEs17(xwv400, xwv300, feb) new_ltEs5(Right(xwv610), Right(xwv620), bfa, app(ty_[], bfc)) -> new_ltEs9(xwv610, xwv620, bfc) new_esEs11(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_compare13(xwv164, xwv165, False, dbb, dbc) -> GT new_esEs33(xwv126, xwv128, ty_@0) -> new_esEs14(xwv126, xwv128) new_esEs4(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_compare0(:(xwv400, xwv401), :(xwv300, xwv301), ded) -> new_primCompAux0(xwv400, xwv300, new_compare0(xwv401, xwv301, ded), ded) new_esEs17(Just(xwv280), Just(xwv330), ty_@0) -> new_esEs14(xwv280, xwv330) new_ltEs5(Right(xwv610), Right(xwv620), bfa, app(app(ty_@2, bfg), bfh)) -> new_ltEs15(xwv610, xwv620, bfg, bfh) new_ltEs5(Left(xwv610), Left(xwv620), ty_Float, bdf) -> new_ltEs12(xwv610, xwv620) new_ltEs13(True, False) -> False new_esEs27(xwv281, xwv331, app(app(ty_@2, bae), baf)) -> new_esEs25(xwv281, xwv331, bae, baf) new_lt17(xwv18, xwv13, dbe) -> new_esEs28(new_compare16(xwv18, xwv13, dbe)) new_esEs36(xwv280, xwv330, app(ty_Maybe, ffg)) -> new_esEs17(xwv280, xwv330, ffg) new_lt21(xwv126, xwv128, ty_Float) -> new_lt12(xwv126, xwv128) new_esEs29(xwv610, xwv620, ty_Int) -> new_esEs15(xwv610, xwv620) new_esEs37(xwv281, xwv331, app(app(app(ty_@3, fhc), fhd), fhe)) -> new_esEs23(xwv281, xwv331, fhc, fhd, fhe) new_esEs17(Just(xwv280), Just(xwv330), app(app(ty_Either, efc), efd)) -> new_esEs12(xwv280, xwv330, efc, efd) new_primCompAux0(xwv400, xwv300, xwv56, ded) -> new_primCompAux00(xwv56, new_compare33(xwv400, xwv300, ded)) new_esEs20(True, True) -> True new_compare19(Nothing, Nothing, dca) -> EQ new_ltEs8(Just(xwv610), Just(xwv620), ty_Float) -> new_ltEs12(xwv610, xwv620) new_primCmpNat0(Succ(xwv4000), Succ(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) new_compare16(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Int) -> new_compare30(new_sr(xwv400, xwv301), new_sr(xwv300, xwv401)) new_compare12(Float(xwv400, Pos(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_compare12(Float(xwv400, Neg(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_esEs22([], [], chg) -> True new_lt21(xwv126, xwv128, ty_Integer) -> new_lt7(xwv126, xwv128) new_esEs31(xwv77, xwv80, app(app(ty_Either, dhb), dhc)) -> new_esEs12(xwv77, xwv80, dhb, dhc) new_ltEs23(xwv127, xwv129, app(ty_[], ede)) -> new_ltEs9(xwv127, xwv129, ede) new_lt19(xwv77, xwv80, ty_Char) -> new_lt6(xwv77, xwv80) new_ltEs12(xwv61, xwv62) -> new_fsEs(new_compare12(xwv61, xwv62)) new_esEs35(xwv611, xwv621, app(ty_Maybe, ehg)) -> new_esEs17(xwv611, xwv621, ehg) new_esEs10(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_lt5(xwv610, xwv620, ty_Float) -> new_lt12(xwv610, xwv620) new_lt9(xwv18, xwv13, dbd) -> new_esEs28(new_compare0(xwv18, xwv13, dbd)) new_esEs29(xwv610, xwv620, app(app(ty_@2, bhc), bhd)) -> new_esEs25(xwv610, xwv620, bhc, bhd) new_ltEs24(xwv612, xwv622, app(ty_[], fbb)) -> new_ltEs9(xwv612, xwv622, fbb) new_ltEs5(Left(xwv610), Left(xwv620), app(ty_Ratio, bef), bdf) -> new_ltEs16(xwv610, xwv620, bef) new_lt20(xwv78, xwv81, ty_Char) -> new_lt6(xwv78, xwv81) new_esEs29(xwv610, xwv620, app(ty_Ratio, bhe)) -> new_esEs16(xwv610, xwv620, bhe) new_lt22(xwv611, xwv621, ty_Integer) -> new_lt7(xwv611, xwv621) new_lt21(xwv126, xwv128, app(app(ty_Either, edb), edc)) -> new_lt18(xwv126, xwv128, edb, edc) new_esEs5(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_esEs38(xwv282, xwv332, ty_Integer) -> new_esEs19(xwv282, xwv332) new_compare14(xwv157, xwv158, False, eeh, efa) -> GT new_esEs12(Left(xwv280), Left(xwv330), ty_Int, bbb) -> new_esEs15(xwv280, xwv330) new_compare33(xwv400, xwv300, app(app(ty_Either, gcc), gce)) -> new_compare32(xwv400, xwv300, gcc, gce) new_compare33(xwv400, xwv300, app(ty_[], gbd)) -> new_compare0(xwv400, xwv300, gbd) new_lt22(xwv611, xwv621, app(ty_Maybe, ehg)) -> new_lt8(xwv611, xwv621, ehg) new_compare28(xwv99, xwv100, True, cde, cdf) -> EQ new_esEs36(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_lt20(xwv78, xwv81, ty_Float) -> new_lt12(xwv78, xwv81) new_esEs17(Just(xwv280), Just(xwv330), ty_Bool) -> new_esEs20(xwv280, xwv330) new_esEs30(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs32(xwv78, xwv81, ty_Char) -> new_esEs13(xwv78, xwv81) new_esEs36(xwv280, xwv330, app(app(app(ty_@3, fga), fgb), fgc)) -> new_esEs23(xwv280, xwv330, fga, fgb, fgc) new_esEs24(LT, EQ) -> False new_esEs24(EQ, LT) -> False new_esEs32(xwv78, xwv81, app(app(ty_Either, ead), eae)) -> new_esEs12(xwv78, xwv81, ead, eae) new_lt8(xwv18, xwv13, ddd) -> new_esEs28(new_compare19(xwv18, xwv13, ddd)) new_esEs10(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv300)) -> LT new_esEs35(xwv611, xwv621, app(ty_[], ehh)) -> new_esEs22(xwv611, xwv621, ehh) new_esEs4(xwv400, xwv300, app(ty_Maybe, dce)) -> new_esEs17(xwv400, xwv300, dce) new_compare9(EQ, LT) -> GT new_lt24(xwv18, xwv13, app(ty_Ratio, dbe)) -> new_lt17(xwv18, xwv13, dbe) new_compare9(GT, LT) -> GT new_esEs31(xwv77, xwv80, ty_Char) -> new_esEs13(xwv77, xwv80) new_esEs33(xwv126, xwv128, ty_Bool) -> new_esEs20(xwv126, xwv128) new_esEs5(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_lt5(xwv610, xwv620, ty_Char) -> new_lt6(xwv610, xwv620) new_esEs27(xwv281, xwv331, app(app(ty_Either, he), hf)) -> new_esEs12(xwv281, xwv331, he, hf) new_esEs12(Left(xwv280), Left(xwv330), ty_Double, bbb) -> new_esEs21(xwv280, xwv330) new_compare33(xwv400, xwv300, ty_@0) -> new_compare7(xwv400, xwv300) new_esEs7(xwv402, xwv302, ty_Ordering) -> new_esEs24(xwv402, xwv302) new_ltEs18(xwv611, xwv621, ty_Float) -> new_ltEs12(xwv611, xwv621) new_compare14(xwv157, xwv158, True, eeh, efa) -> LT new_primCmpInt(Pos(Zero), Neg(Succ(xwv3000))) -> GT new_esEs35(xwv611, xwv621, ty_Double) -> new_esEs21(xwv611, xwv621) new_esEs33(xwv126, xwv128, ty_Float) -> new_esEs18(xwv126, xwv128) new_lt20(xwv78, xwv81, ty_@0) -> new_lt13(xwv78, xwv81) new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv300)) -> new_primCmpNat0(xwv300, Succ(xwv4000)) new_compare26(xwv106, xwv107, False, cbb, cbc) -> new_compare13(xwv106, xwv107, new_ltEs19(xwv106, xwv107, cbc), cbb, cbc) new_ltEs21(xwv99, xwv100, ty_Char) -> new_ltEs6(xwv99, xwv100) new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, True, dbf, dbg, dbh) -> LT new_ltEs11(GT, EQ) -> False new_lt5(xwv610, xwv620, app(app(app(ty_@3, bgh), bha), bhb)) -> new_lt10(xwv610, xwv620, bgh, bha, bhb) new_esEs12(Left(xwv280), Left(xwv330), app(app(ty_@2, bca), bcb), bbb) -> new_esEs25(xwv280, xwv330, bca, bcb) new_ltEs22(xwv79, xwv82, ty_Integer) -> new_ltEs7(xwv79, xwv82) new_ltEs4(xwv61, xwv62) -> new_fsEs(new_compare7(xwv61, xwv62)) new_esEs41(EQ) -> False new_esEs24(EQ, EQ) -> True new_esEs8(xwv400, xwv300, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs23(xwv400, xwv300, cfh, cga, cgb) new_esEs9(xwv401, xwv301, ty_@0) -> new_esEs14(xwv401, xwv301) new_ltEs8(Just(xwv610), Just(xwv620), ty_Char) -> new_ltEs6(xwv610, xwv620) new_esEs21(Double(xwv280, xwv281), Double(xwv330, xwv331)) -> new_esEs15(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) new_esEs6(xwv401, xwv301, app(app(ty_Either, dd), de)) -> new_esEs12(xwv401, xwv301, dd, de) new_primEqInt(Pos(Succ(xwv2800)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xwv3300))) -> False new_compare110(xwv194, xwv195, xwv196, xwv197, False, xwv199, eef, eeg) -> new_compare111(xwv194, xwv195, xwv196, xwv197, xwv199, eef, eeg) new_esEs10(xwv400, xwv300, app(ty_[], fda)) -> new_esEs22(xwv400, xwv300, fda) new_ltEs13(True, True) -> True new_esEs36(xwv280, xwv330, ty_Char) -> new_esEs13(xwv280, xwv330) new_gt(xwv40, xwv30, ty_Ordering) -> new_esEs41(new_compare9(xwv40, xwv30)) new_ltEs22(xwv79, xwv82, ty_Ordering) -> new_ltEs11(xwv79, xwv82) new_esEs11(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_esEs24(GT, GT) -> True new_ltEs24(xwv612, xwv622, ty_Double) -> new_ltEs17(xwv612, xwv622) new_ltEs5(Left(xwv610), Left(xwv620), app(app(ty_@2, bed), bee), bdf) -> new_ltEs15(xwv610, xwv620, bed, bee) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs23(xwv127, xwv129, app(app(app(ty_@3, edf), edg), edh)) -> new_ltEs10(xwv127, xwv129, edf, edg, edh) new_esEs9(xwv401, xwv301, app(ty_Maybe, cgh)) -> new_esEs17(xwv401, xwv301, cgh) new_lt20(xwv78, xwv81, ty_Bool) -> new_lt14(xwv78, xwv81) new_lt18(xwv18, xwv13, deb, dec) -> new_esEs28(new_compare32(xwv18, xwv13, deb, dec)) new_esEs11(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_compare27(xwv61, xwv62, False, ccf) -> new_compare10(xwv61, xwv62, new_ltEs20(xwv61, xwv62, ccf), ccf) new_compare27(xwv61, xwv62, True, ccf) -> EQ new_ltEs19(xwv106, xwv107, ty_Double) -> new_ltEs17(xwv106, xwv107) new_esEs8(xwv400, xwv300, app(ty_Ratio, cfe)) -> new_esEs16(xwv400, xwv300, cfe) new_esEs38(xwv282, xwv332, ty_Float) -> new_esEs18(xwv282, xwv332) new_esEs40(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_compare9(GT, EQ) -> GT new_esEs17(Just(xwv280), Just(xwv330), ty_Float) -> new_esEs18(xwv280, xwv330) new_esEs26(xwv280, xwv330, app(app(ty_@2, hc), hd)) -> new_esEs25(xwv280, xwv330, hc, hd) new_esEs30(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_ltEs20(xwv61, xwv62, app(ty_Maybe, ccg)) -> new_ltEs8(xwv61, xwv62, ccg) new_ltEs19(xwv106, xwv107, ty_Char) -> new_ltEs6(xwv106, xwv107) new_gt0(xwv40, xwv30) -> new_esEs41(new_compare30(xwv40, xwv30)) new_lt23(xwv610, xwv620, app(app(app(ty_@3, egg), egh), eha)) -> new_lt10(xwv610, xwv620, egg, egh, eha) new_ltEs18(xwv611, xwv621, app(app(app(ty_@3, cab), cac), cad)) -> new_ltEs10(xwv611, xwv621, cab, cac, cad) new_esEs4(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_ltEs19(xwv106, xwv107, ty_@0) -> new_ltEs4(xwv106, xwv107) new_primCompAux00(xwv67, GT) -> GT new_esEs12(Left(xwv280), Left(xwv330), ty_Integer, bbb) -> new_esEs19(xwv280, xwv330) new_lt20(xwv78, xwv81, app(ty_[], dhe)) -> new_lt9(xwv78, xwv81, dhe) new_compare8(Double(xwv400, Neg(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_esEs10(xwv400, xwv300, app(ty_Maybe, fch)) -> new_esEs17(xwv400, xwv300, fch) new_fsEs(xwv205) -> new_not(new_esEs24(xwv205, GT)) new_esEs20(False, True) -> False new_esEs20(True, False) -> False new_esEs9(xwv401, xwv301, ty_Double) -> new_esEs21(xwv401, xwv301) new_lt23(xwv610, xwv620, ty_Float) -> new_lt12(xwv610, xwv620) new_esEs32(xwv78, xwv81, ty_@0) -> new_esEs14(xwv78, xwv81) new_esEs33(xwv126, xwv128, ty_Int) -> new_esEs15(xwv126, xwv128) new_esEs26(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_ltEs24(xwv612, xwv622, ty_@0) -> new_ltEs4(xwv612, xwv622) new_esEs38(xwv282, xwv332, ty_Ordering) -> new_esEs24(xwv282, xwv332) new_esEs37(xwv281, xwv331, ty_@0) -> new_esEs14(xwv281, xwv331) new_ltEs11(GT, LT) -> False new_lt20(xwv78, xwv81, app(ty_Maybe, dhd)) -> new_lt8(xwv78, xwv81, dhd) new_compare16(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Integer) -> new_compare11(new_sr0(xwv400, xwv301), new_sr0(xwv300, xwv401)) new_esEs29(xwv610, xwv620, ty_Char) -> new_esEs13(xwv610, xwv620) new_ltEs19(xwv106, xwv107, ty_Bool) -> new_ltEs13(xwv106, xwv107) new_esEs35(xwv611, xwv621, ty_Integer) -> new_esEs19(xwv611, xwv621) new_ltEs5(Right(xwv610), Right(xwv620), bfa, ty_Integer) -> new_ltEs7(xwv610, xwv620) new_esEs7(xwv402, xwv302, app(ty_[], fb)) -> new_esEs22(xwv402, xwv302, fb) new_esEs26(xwv280, xwv330, ty_Float) -> new_esEs18(xwv280, xwv330) new_ltEs11(LT, LT) -> True new_compare15(@2(xwv400, xwv401), @2(xwv300, xwv301), cfa, cfb) -> new_compare29(xwv400, xwv401, xwv300, xwv301, new_asAs(new_esEs8(xwv400, xwv300, cfa), new_esEs9(xwv401, xwv301, cfb)), cfa, cfb) new_esEs24(LT, LT) -> True new_esEs5(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_esEs17(Just(xwv280), Just(xwv330), ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs33(xwv126, xwv128, ty_Ordering) -> new_esEs24(xwv126, xwv128) new_esEs12(Left(xwv280), Left(xwv330), ty_@0, bbb) -> new_esEs14(xwv280, xwv330) new_primCmpNat0(Succ(xwv4000), Zero) -> GT new_esEs27(xwv281, xwv331, ty_@0) -> new_esEs14(xwv281, xwv331) new_pePe(False, xwv210) -> xwv210 new_esEs7(xwv402, xwv302, ty_Double) -> new_esEs21(xwv402, xwv302) new_esEs9(xwv401, xwv301, ty_Integer) -> new_esEs19(xwv401, xwv301) new_esEs20(False, False) -> True new_lt22(xwv611, xwv621, ty_Ordering) -> new_lt11(xwv611, xwv621) new_lt22(xwv611, xwv621, ty_Int) -> new_lt15(xwv611, xwv621) new_lt13(xwv18, xwv13) -> new_esEs28(new_compare7(xwv18, xwv13)) new_lt7(xwv18, xwv13) -> new_esEs28(new_compare11(xwv18, xwv13)) new_ltEs21(xwv99, xwv100, ty_Double) -> new_ltEs17(xwv99, xwv100) new_esEs11(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_lt23(xwv610, xwv620, ty_Bool) -> new_lt14(xwv610, xwv620) new_lt20(xwv78, xwv81, ty_Int) -> new_lt15(xwv78, xwv81) new_esEs32(xwv78, xwv81, app(ty_Maybe, dhd)) -> new_esEs17(xwv78, xwv81, dhd) new_compare110(xwv194, xwv195, xwv196, xwv197, True, xwv199, eef, eeg) -> new_compare111(xwv194, xwv195, xwv196, xwv197, True, eef, eeg) new_compare10(xwv147, xwv148, False, bag) -> GT new_esEs17(Just(xwv280), Just(xwv330), ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs5(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_primEqInt(Pos(Zero), Neg(Succ(xwv3300))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xwv3300))) -> False new_ltEs18(xwv611, xwv621, app(ty_[], caa)) -> new_ltEs9(xwv611, xwv621, caa) new_esEs26(xwv280, xwv330, ty_Bool) -> new_esEs20(xwv280, xwv330) new_ltEs21(xwv99, xwv100, app(app(ty_@2, ced), cee)) -> new_ltEs15(xwv99, xwv100, ced, cee) new_ltEs23(xwv127, xwv129, ty_Float) -> new_ltEs12(xwv127, xwv129) new_esEs12(Left(xwv280), Left(xwv330), app(ty_Ratio, bbc), bbb) -> new_esEs16(xwv280, xwv330, bbc) new_esEs36(xwv280, xwv330, app(ty_Ratio, fff)) -> new_esEs16(xwv280, xwv330, fff) new_esEs7(xwv402, xwv302, app(ty_Maybe, fa)) -> new_esEs17(xwv402, xwv302, fa) new_ltEs8(Just(xwv610), Just(xwv620), ty_Bool) -> new_ltEs13(xwv610, xwv620) new_lt21(xwv126, xwv128, app(ty_Ratio, eda)) -> new_lt17(xwv126, xwv128, eda) new_esEs7(xwv402, xwv302, ty_Integer) -> new_esEs19(xwv402, xwv302) new_lt6(xwv18, xwv13) -> new_esEs28(new_compare6(xwv18, xwv13)) new_esEs36(xwv280, xwv330, app(app(ty_@2, fgd), fge)) -> new_esEs25(xwv280, xwv330, fgd, fge) new_esEs36(xwv280, xwv330, ty_Float) -> new_esEs18(xwv280, xwv330) new_esEs38(xwv282, xwv332, app(ty_[], gad)) -> new_esEs22(xwv282, xwv332, gad) new_esEs5(xwv400, xwv300, app(app(app(ty_@3, cf), cg), da)) -> new_esEs23(xwv400, xwv300, cf, cg, da) new_ltEs8(Just(xwv610), Just(xwv620), ty_@0) -> new_ltEs4(xwv610, xwv620) new_esEs6(xwv401, xwv301, ty_@0) -> new_esEs14(xwv401, xwv301) new_esEs17(Just(xwv280), Just(xwv330), app(app(ty_@2, egc), egd)) -> new_esEs25(xwv280, xwv330, egc, egd) new_ltEs5(Right(xwv610), Right(xwv620), bfa, app(ty_Ratio, bga)) -> new_ltEs16(xwv610, xwv620, bga) new_esEs33(xwv126, xwv128, app(app(ty_@2, ecg), ech)) -> new_esEs25(xwv126, xwv128, ecg, ech) new_esEs32(xwv78, xwv81, ty_Double) -> new_esEs21(xwv78, xwv81) new_lt21(xwv126, xwv128, app(app(app(ty_@3, ecd), ece), ecf)) -> new_lt10(xwv126, xwv128, ecd, ece, ecf) new_ltEs23(xwv127, xwv129, app(app(ty_@2, eea), eeb)) -> new_ltEs15(xwv127, xwv129, eea, eeb) new_ltEs14(xwv61, xwv62) -> new_fsEs(new_compare30(xwv61, xwv62)) new_esEs36(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs34(xwv610, xwv620, app(ty_Ratio, ehd)) -> new_esEs16(xwv610, xwv620, ehd) new_ltEs5(Left(xwv610), Left(xwv620), ty_Ordering, bdf) -> new_ltEs11(xwv610, xwv620) new_esEs38(xwv282, xwv332, ty_Bool) -> new_esEs20(xwv282, xwv332) new_esEs32(xwv78, xwv81, ty_Integer) -> new_esEs19(xwv78, xwv81) new_esEs30(xwv280, xwv330, app(ty_[], dad)) -> new_esEs22(xwv280, xwv330, dad) new_compare33(xwv400, xwv300, ty_Int) -> new_compare30(xwv400, xwv300) new_esEs4(xwv400, xwv300, app(ty_[], dcf)) -> new_esEs22(xwv400, xwv300, dcf) new_ltEs20(xwv61, xwv62, ty_Float) -> new_ltEs12(xwv61, xwv62) new_esEs11(xwv400, xwv300, app(app(ty_@2, feg), feh)) -> new_esEs25(xwv400, xwv300, feg, feh) new_esEs30(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs17(Just(xwv280), Just(xwv330), ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs30(xwv280, xwv330, ty_Double) -> new_esEs21(xwv280, xwv330) new_lt12(xwv18, xwv13) -> new_esEs28(new_compare12(xwv18, xwv13)) new_esEs30(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) new_esEs33(xwv126, xwv128, ty_Integer) -> new_esEs19(xwv126, xwv128) new_lt23(xwv610, xwv620, ty_@0) -> new_lt13(xwv610, xwv620) new_esEs29(xwv610, xwv620, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs23(xwv610, xwv620, bgh, bha, bhb) new_compare32(Right(xwv400), Left(xwv300), fcc, fcd) -> GT new_compare31(True, True) -> EQ new_esEs4(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_esEs22(:(xwv280, xwv281), [], chg) -> False new_esEs22([], :(xwv330, xwv331), chg) -> False new_esEs10(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_esEs12(Right(xwv280), Right(xwv330), bcc, app(ty_[], bch)) -> new_esEs22(xwv280, xwv330, bch) new_ltEs8(Just(xwv610), Just(xwv620), ty_Int) -> new_ltEs14(xwv610, xwv620) new_esEs11(xwv400, xwv300, app(ty_Ratio, fea)) -> new_esEs16(xwv400, xwv300, fea) new_esEs37(xwv281, xwv331, app(app(ty_Either, fgf), fgg)) -> new_esEs12(xwv281, xwv331, fgf, fgg) new_ltEs18(xwv611, xwv621, app(ty_Maybe, bhh)) -> new_ltEs8(xwv611, xwv621, bhh) new_compare12(Float(xwv400, Neg(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_lt20(xwv78, xwv81, ty_Ordering) -> new_lt11(xwv78, xwv81) new_lt19(xwv77, xwv80, app(ty_Ratio, dha)) -> new_lt17(xwv77, xwv80, dha) new_esEs31(xwv77, xwv80, app(app(app(ty_@3, dgd), dge), dgf)) -> new_esEs23(xwv77, xwv80, dgd, dge, dgf) new_primMulInt(Neg(xwv3000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) new_primCmpInt(Pos(Zero), Pos(Succ(xwv3000))) -> new_primCmpNat0(Zero, Succ(xwv3000)) new_esEs6(xwv401, xwv301, app(ty_Maybe, dg)) -> new_esEs17(xwv401, xwv301, dg) new_esEs30(xwv280, xwv330, app(ty_Maybe, dac)) -> new_esEs17(xwv280, xwv330, dac) new_esEs12(Left(xwv280), Left(xwv330), ty_Ordering, bbb) -> new_esEs24(xwv280, xwv330) new_lt19(xwv77, xwv80, app(app(app(ty_@3, dgd), dge), dgf)) -> new_lt10(xwv77, xwv80, dgd, dge, dgf) new_esEs26(xwv280, xwv330, ty_Char) -> new_esEs13(xwv280, xwv330) new_esEs35(xwv611, xwv621, ty_Float) -> new_esEs18(xwv611, xwv621) new_ltEs24(xwv612, xwv622, ty_Integer) -> new_ltEs7(xwv612, xwv622) new_esEs7(xwv402, xwv302, ty_@0) -> new_esEs14(xwv402, xwv302) new_ltEs19(xwv106, xwv107, app(app(ty_Either, ccd), cce)) -> new_ltEs5(xwv106, xwv107, ccd, cce) new_esEs8(xwv400, xwv300, app(app(ty_Either, cfc), cfd)) -> new_esEs12(xwv400, xwv300, cfc, cfd) new_ltEs5(Right(xwv610), Right(xwv620), bfa, ty_Bool) -> new_ltEs13(xwv610, xwv620) new_lt20(xwv78, xwv81, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_lt10(xwv78, xwv81, dhf, dhg, dhh) new_primMulInt(Pos(xwv3000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) new_primMulInt(Neg(xwv3000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) new_esEs33(xwv126, xwv128, ty_Double) -> new_esEs21(xwv126, xwv128) new_esEs9(xwv401, xwv301, ty_Ordering) -> new_esEs24(xwv401, xwv301) new_ltEs22(xwv79, xwv82, ty_@0) -> new_ltEs4(xwv79, xwv82) new_compare33(xwv400, xwv300, app(ty_Ratio, gcb)) -> new_compare16(xwv400, xwv300, gcb) new_esEs8(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_ltEs18(xwv611, xwv621, ty_Integer) -> new_ltEs7(xwv611, xwv621) new_lt23(xwv610, xwv620, ty_Ordering) -> new_lt11(xwv610, xwv620) new_sr0(Integer(xwv3000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv3000, xwv4010)) new_ltEs10(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), cda, cdb, cdc) -> new_pePe(new_lt23(xwv610, xwv620, cda), new_asAs(new_esEs34(xwv610, xwv620, cda), new_pePe(new_lt22(xwv611, xwv621, cdb), new_asAs(new_esEs35(xwv611, xwv621, cdb), new_ltEs24(xwv612, xwv622, cdc))))) new_compare8(Double(xwv400, Pos(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_compare8(Double(xwv400, Neg(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_lt22(xwv611, xwv621, app(ty_Ratio, faf)) -> new_lt17(xwv611, xwv621, faf) new_ltEs20(xwv61, xwv62, ty_Ordering) -> new_ltEs11(xwv61, xwv62) new_esEs12(Left(xwv280), Left(xwv330), ty_Float, bbb) -> new_esEs18(xwv280, xwv330) new_esEs10(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_lt23(xwv610, xwv620, ty_Int) -> new_lt15(xwv610, xwv620) new_ltEs22(xwv79, xwv82, ty_Double) -> new_ltEs17(xwv79, xwv82) new_esEs6(xwv401, xwv301, ty_Char) -> new_esEs13(xwv401, xwv301) new_ltEs19(xwv106, xwv107, app(app(ty_@2, cca), ccb)) -> new_ltEs15(xwv106, xwv107, cca, ccb) new_asAs(True, xwv135) -> xwv135 new_esEs7(xwv402, xwv302, ty_Int) -> new_esEs15(xwv402, xwv302) new_esEs27(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_esEs4(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_esEs39(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_ltEs22(xwv79, xwv82, ty_Float) -> new_ltEs12(xwv79, xwv82) new_esEs26(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_ltEs23(xwv127, xwv129, ty_Char) -> new_ltEs6(xwv127, xwv129) new_esEs37(xwv281, xwv331, ty_Double) -> new_esEs21(xwv281, xwv331) new_lt21(xwv126, xwv128, app(ty_[], ecc)) -> new_lt9(xwv126, xwv128, ecc) new_ltEs20(xwv61, xwv62, app(app(ty_Either, bfa), bdf)) -> new_ltEs5(xwv61, xwv62, bfa, bdf) new_ltEs20(xwv61, xwv62, app(app(ty_@2, bgd), bge)) -> new_ltEs15(xwv61, xwv62, bgd, bge) new_ltEs22(xwv79, xwv82, app(ty_Maybe, eaf)) -> new_ltEs8(xwv79, xwv82, eaf) new_esEs31(xwv77, xwv80, ty_Float) -> new_esEs18(xwv77, xwv80) new_ltEs24(xwv612, xwv622, ty_Int) -> new_ltEs14(xwv612, xwv622) new_esEs12(Right(xwv280), Right(xwv330), bcc, app(app(ty_Either, bcd), bce)) -> new_esEs12(xwv280, xwv330, bcd, bce) new_esEs33(xwv126, xwv128, app(ty_[], ecc)) -> new_esEs22(xwv126, xwv128, ecc) new_esEs40(xwv281, xwv331, ty_Int) -> new_esEs15(xwv281, xwv331) new_ltEs5(Right(xwv610), Right(xwv620), bfa, app(app(ty_Either, bgb), bgc)) -> new_ltEs5(xwv610, xwv620, bgb, bgc) new_ltEs5(Right(xwv610), Right(xwv620), bfa, ty_@0) -> new_ltEs4(xwv610, xwv620) new_compare0([], [], ded) -> EQ new_ltEs18(xwv611, xwv621, ty_Int) -> new_ltEs14(xwv611, xwv621) new_sr(xwv300, xwv401) -> new_primMulInt(xwv300, xwv401) new_ltEs18(xwv611, xwv621, ty_Ordering) -> new_ltEs11(xwv611, xwv621) new_compare32(Left(xwv400), Left(xwv300), fcc, fcd) -> new_compare28(xwv400, xwv300, new_esEs10(xwv400, xwv300, fcc), fcc, fcd) new_primMulNat0(Zero, Zero) -> Zero new_esEs38(xwv282, xwv332, ty_Double) -> new_esEs21(xwv282, xwv332) new_esEs7(xwv402, xwv302, app(app(ty_@2, fg), fh)) -> new_esEs25(xwv402, xwv302, fg, fh) new_ltEs22(xwv79, xwv82, app(ty_Ratio, ebe)) -> new_ltEs16(xwv79, xwv82, ebe) new_gt(xwv40, xwv30, ty_Char) -> new_esEs41(new_compare6(xwv40, xwv30)) new_ltEs20(xwv61, xwv62, ty_Integer) -> new_ltEs7(xwv61, xwv62) new_ltEs5(Right(xwv610), Right(xwv620), bfa, ty_Double) -> new_ltEs17(xwv610, xwv620) new_lt23(xwv610, xwv620, ty_Double) -> new_lt4(xwv610, xwv620) new_ltEs24(xwv612, xwv622, ty_Ordering) -> new_ltEs11(xwv612, xwv622) new_esEs12(Left(xwv280), Right(xwv330), bcc, bbb) -> False new_esEs12(Right(xwv280), Left(xwv330), bcc, bbb) -> False new_compare17(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, True, xwv186, dbf, dbg, dbh) -> new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, True, dbf, dbg, dbh) new_esEs4(xwv400, xwv300, app(app(ty_Either, dcb), dcc)) -> new_esEs12(xwv400, xwv300, dcb, dcc) new_compare9(LT, LT) -> EQ new_lt5(xwv610, xwv620, app(ty_[], bgg)) -> new_lt9(xwv610, xwv620, bgg) new_esEs8(xwv400, xwv300, app(app(ty_@2, cgc), cgd)) -> new_esEs25(xwv400, xwv300, cgc, cgd) new_lt24(xwv18, xwv13, ty_Double) -> new_lt4(xwv18, xwv13) new_esEs24(EQ, GT) -> False new_esEs24(GT, EQ) -> False new_ltEs24(xwv612, xwv622, app(app(ty_Either, fca), fcb)) -> new_ltEs5(xwv612, xwv622, fca, fcb) new_esEs37(xwv281, xwv331, app(ty_[], fhb)) -> new_esEs22(xwv281, xwv331, fhb) new_ltEs21(xwv99, xwv100, app(ty_Maybe, cdg)) -> new_ltEs8(xwv99, xwv100, cdg) new_esEs32(xwv78, xwv81, app(ty_[], dhe)) -> new_esEs22(xwv78, xwv81, dhe) new_esEs27(xwv281, xwv331, app(ty_Maybe, hh)) -> new_esEs17(xwv281, xwv331, hh) new_compare33(xwv400, xwv300, ty_Integer) -> new_compare11(xwv400, xwv300) new_primEqInt(Neg(Succ(xwv2800)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xwv3300))) -> False new_ltEs8(Nothing, Just(xwv620), ccg) -> True new_primEqInt(Pos(Succ(xwv2800)), Pos(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) new_ltEs18(xwv611, xwv621, ty_Char) -> new_ltEs6(xwv611, xwv621) new_ltEs24(xwv612, xwv622, ty_Char) -> new_ltEs6(xwv612, xwv622) new_esEs37(xwv281, xwv331, app(ty_Ratio, fgh)) -> new_esEs16(xwv281, xwv331, fgh) new_ltEs23(xwv127, xwv129, ty_Int) -> new_ltEs14(xwv127, xwv129) new_esEs27(xwv281, xwv331, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs23(xwv281, xwv331, bab, bac, bad) new_esEs8(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_ltEs18(xwv611, xwv621, app(app(ty_@2, cae), caf)) -> new_ltEs15(xwv611, xwv621, cae, caf) new_lt24(xwv18, xwv13, app(app(ty_@2, ddh), dea)) -> new_lt16(xwv18, xwv13, ddh, dea) new_lt19(xwv77, xwv80, app(ty_[], dgc)) -> new_lt9(xwv77, xwv80, dgc) new_ltEs23(xwv127, xwv129, app(ty_Ratio, eec)) -> new_ltEs16(xwv127, xwv129, eec) new_ltEs18(xwv611, xwv621, app(app(ty_Either, cah), cba)) -> new_ltEs5(xwv611, xwv621, cah, cba) new_esEs17(Just(xwv280), Just(xwv330), ty_Double) -> new_esEs21(xwv280, xwv330) new_primEqInt(Pos(Succ(xwv2800)), Neg(xwv330)) -> False new_primEqInt(Neg(Succ(xwv2800)), Pos(xwv330)) -> False new_gt(xwv40, xwv30, ty_Int) -> new_gt0(xwv40, xwv30) new_primCmpInt(Neg(Zero), Neg(Succ(xwv3000))) -> new_primCmpNat0(Succ(xwv3000), Zero) new_ltEs8(Just(xwv610), Just(xwv620), app(ty_[], def)) -> new_ltEs9(xwv610, xwv620, def) new_esEs38(xwv282, xwv332, ty_Int) -> new_esEs15(xwv282, xwv332) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs6(xwv61, xwv62) -> new_fsEs(new_compare6(xwv61, xwv62)) new_ltEs23(xwv127, xwv129, app(ty_Maybe, edd)) -> new_ltEs8(xwv127, xwv129, edd) new_esEs12(Right(xwv280), Right(xwv330), bcc, app(ty_Ratio, bcf)) -> new_esEs16(xwv280, xwv330, bcf) new_ltEs22(xwv79, xwv82, ty_Char) -> new_ltEs6(xwv79, xwv82) new_esEs7(xwv402, xwv302, ty_Bool) -> new_esEs20(xwv402, xwv302) new_esEs26(xwv280, xwv330, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs23(xwv280, xwv330, gh, ha, hb) new_compare19(Nothing, Just(xwv300), dca) -> LT new_esEs34(xwv610, xwv620, ty_Double) -> new_esEs21(xwv610, xwv620) new_lt23(xwv610, xwv620, app(ty_Ratio, ehd)) -> new_lt17(xwv610, xwv620, ehd) new_lt19(xwv77, xwv80, ty_Double) -> new_lt4(xwv77, xwv80) new_ltEs21(xwv99, xwv100, ty_Ordering) -> new_ltEs11(xwv99, xwv100) new_esEs34(xwv610, xwv620, app(ty_[], egf)) -> new_esEs22(xwv610, xwv620, egf) new_ltEs5(Left(xwv610), Left(xwv620), app(app(app(ty_@3, bea), beb), bec), bdf) -> new_ltEs10(xwv610, xwv620, bea, beb, bec) new_esEs38(xwv282, xwv332, app(app(ty_@2, gah), gba)) -> new_esEs25(xwv282, xwv332, gah, gba) new_esEs11(xwv400, xwv300, app(ty_[], fec)) -> new_esEs22(xwv400, xwv300, fec) new_esEs28(EQ) -> False new_esEs11(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_ltEs8(Just(xwv610), Just(xwv620), app(app(ty_@2, dfb), dfc)) -> new_ltEs15(xwv610, xwv620, dfb, dfc) new_not(False) -> True new_esEs36(xwv280, xwv330, app(ty_[], ffh)) -> new_esEs22(xwv280, xwv330, ffh) new_esEs6(xwv401, xwv301, ty_Int) -> new_esEs15(xwv401, xwv301) new_esEs4(xwv400, xwv300, app(app(ty_@2, ddb), ddc)) -> new_esEs25(xwv400, xwv300, ddb, ddc) new_esEs8(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_esEs4(xwv400, xwv300, app(ty_Ratio, dcd)) -> new_esEs16(xwv400, xwv300, dcd) new_compare33(xwv400, xwv300, ty_Double) -> new_compare8(xwv400, xwv300) new_esEs7(xwv402, xwv302, app(app(ty_Either, ef), eg)) -> new_esEs12(xwv402, xwv302, ef, eg) new_ltEs20(xwv61, xwv62, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs10(xwv61, xwv62, cda, cdb, cdc) new_esEs38(xwv282, xwv332, app(ty_Ratio, gab)) -> new_esEs16(xwv282, xwv332, gab) new_ltEs21(xwv99, xwv100, ty_@0) -> new_ltEs4(xwv99, xwv100) new_ltEs8(Just(xwv610), Just(xwv620), ty_Double) -> new_ltEs17(xwv610, xwv620) new_ltEs5(Right(xwv610), Right(xwv620), bfa, app(ty_Maybe, bfb)) -> new_ltEs8(xwv610, xwv620, bfb) new_lt23(xwv610, xwv620, app(app(ty_@2, ehb), ehc)) -> new_lt16(xwv610, xwv620, ehb, ehc) new_gt(xwv40, xwv30, app(ty_Maybe, dca)) -> new_esEs41(new_compare19(xwv40, xwv30, dca)) new_esEs26(xwv280, xwv330, app(ty_Maybe, gf)) -> new_esEs17(xwv280, xwv330, gf) new_esEs41(LT) -> False new_ltEs15(@2(xwv610, xwv611), @2(xwv620, xwv621), bgd, bge) -> new_pePe(new_lt5(xwv610, xwv620, bgd), new_asAs(new_esEs29(xwv610, xwv620, bgd), new_ltEs18(xwv611, xwv621, bge))) new_lt24(xwv18, xwv13, ty_Ordering) -> new_lt11(xwv18, xwv13) new_ltEs19(xwv106, xwv107, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs10(xwv106, xwv107, cbf, cbg, cbh) new_compare32(Right(xwv400), Right(xwv300), fcc, fcd) -> new_compare26(xwv400, xwv300, new_esEs11(xwv400, xwv300, fcd), fcc, fcd) new_ltEs21(xwv99, xwv100, ty_Bool) -> new_ltEs13(xwv99, xwv100) new_ltEs20(xwv61, xwv62, ty_Char) -> new_ltEs6(xwv61, xwv62) new_ltEs11(LT, EQ) -> True new_lt24(xwv18, xwv13, ty_Int) -> new_lt15(xwv18, xwv13) new_esEs9(xwv401, xwv301, app(app(ty_Either, cge), cgf)) -> new_esEs12(xwv401, xwv301, cge, cgf) new_ltEs22(xwv79, xwv82, app(app(app(ty_@3, eah), eba), ebb)) -> new_ltEs10(xwv79, xwv82, eah, eba, ebb) new_ltEs24(xwv612, xwv622, ty_Bool) -> new_ltEs13(xwv612, xwv622) new_esEs12(Right(xwv280), Right(xwv330), bcc, app(app(ty_@2, bdd), bde)) -> new_esEs25(xwv280, xwv330, bdd, bde) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt19(xwv77, xwv80, app(app(ty_@2, dgg), dgh)) -> new_lt16(xwv77, xwv80, dgg, dgh) new_esEs6(xwv401, xwv301, app(app(ty_@2, ed), ee)) -> new_esEs25(xwv401, xwv301, ed, ee) new_esEs6(xwv401, xwv301, app(ty_Ratio, df)) -> new_esEs16(xwv401, xwv301, df) new_ltEs18(xwv611, xwv621, app(ty_Ratio, cag)) -> new_ltEs16(xwv611, xwv621, cag) new_lt20(xwv78, xwv81, app(app(ty_@2, eaa), eab)) -> new_lt16(xwv78, xwv81, eaa, eab) new_ltEs23(xwv127, xwv129, ty_@0) -> new_ltEs4(xwv127, xwv129) new_ltEs5(Right(xwv610), Right(xwv620), bfa, ty_Char) -> new_ltEs6(xwv610, xwv620) new_esEs4(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_esEs8(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_ltEs23(xwv127, xwv129, ty_Bool) -> new_ltEs13(xwv127, xwv129) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt21(xwv126, xwv128, app(app(ty_@2, ecg), ech)) -> new_lt16(xwv126, xwv128, ecg, ech) new_ltEs21(xwv99, xwv100, app(app(ty_Either, ceg), ceh)) -> new_ltEs5(xwv99, xwv100, ceg, ceh) new_esEs17(Just(xwv280), Just(xwv330), app(ty_[], efg)) -> new_esEs22(xwv280, xwv330, efg) new_esEs30(xwv280, xwv330, ty_Float) -> new_esEs18(xwv280, xwv330) new_ltEs22(xwv79, xwv82, app(app(ty_Either, ebf), ebg)) -> new_ltEs5(xwv79, xwv82, ebf, ebg) new_lt14(xwv18, xwv13) -> new_esEs28(new_compare31(xwv18, xwv13)) new_lt22(xwv611, xwv621, app(ty_[], ehh)) -> new_lt9(xwv611, xwv621, ehh) new_ltEs19(xwv106, xwv107, ty_Ordering) -> new_ltEs11(xwv106, xwv107) new_lt5(xwv610, xwv620, ty_Double) -> new_lt4(xwv610, xwv620) new_lt24(xwv18, xwv13, app(app(app(ty_@3, dde), ddf), ddg)) -> new_lt10(xwv18, xwv13, dde, ddf, ddg) new_lt21(xwv126, xwv128, ty_Double) -> new_lt4(xwv126, xwv128) new_ltEs21(xwv99, xwv100, ty_Int) -> new_ltEs14(xwv99, xwv100) new_lt5(xwv610, xwv620, app(app(ty_@2, bhc), bhd)) -> new_lt16(xwv610, xwv620, bhc, bhd) new_ltEs8(Nothing, Nothing, ccg) -> True new_ltEs11(LT, GT) -> True new_ltEs8(Just(xwv610), Nothing, ccg) -> False new_esEs7(xwv402, xwv302, ty_Char) -> new_esEs13(xwv402, xwv302) new_compare17(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, False, xwv186, dbf, dbg, dbh) -> new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, xwv186, dbf, dbg, dbh) new_compare29(xwv126, xwv127, xwv128, xwv129, True, ebh, eca) -> EQ new_lt22(xwv611, xwv621, app(app(ty_@2, fad), fae)) -> new_lt16(xwv611, xwv621, fad, fae) new_compare19(Just(xwv400), Nothing, dca) -> GT new_ltEs21(xwv99, xwv100, app(ty_Ratio, cef)) -> new_ltEs16(xwv99, xwv100, cef) new_compare6(Char(xwv400), Char(xwv300)) -> new_primCmpNat0(xwv400, xwv300) new_lt23(xwv610, xwv620, app(ty_[], egf)) -> new_lt9(xwv610, xwv620, egf) new_ltEs22(xwv79, xwv82, ty_Bool) -> new_ltEs13(xwv79, xwv82) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_gt(xwv40, xwv30, ty_@0) -> new_esEs41(new_compare7(xwv40, xwv30)) new_lt20(xwv78, xwv81, ty_Double) -> new_lt4(xwv78, xwv81) new_compare9(EQ, EQ) -> EQ new_esEs36(xwv280, xwv330, ty_Double) -> new_esEs21(xwv280, xwv330) new_ltEs21(xwv99, xwv100, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs10(xwv99, xwv100, cea, ceb, cec) new_esEs9(xwv401, xwv301, ty_Bool) -> new_esEs20(xwv401, xwv301) new_primEqNat0(Zero, Zero) -> True new_esEs12(Right(xwv280), Right(xwv330), bcc, ty_Double) -> new_esEs21(xwv280, xwv330) new_esEs5(xwv400, xwv300, app(ty_Ratio, cc)) -> new_esEs16(xwv400, xwv300, cc) new_ltEs20(xwv61, xwv62, app(ty_Ratio, cdd)) -> new_ltEs16(xwv61, xwv62, cdd) new_esEs5(xwv400, xwv300, app(app(ty_@2, db), dc)) -> new_esEs25(xwv400, xwv300, db, dc) new_esEs12(Left(xwv280), Left(xwv330), app(ty_Maybe, bbd), bbb) -> new_esEs17(xwv280, xwv330, bbd) new_ltEs5(Right(xwv610), Right(xwv620), bfa, ty_Ordering) -> new_ltEs11(xwv610, xwv620) new_asAs(False, xwv135) -> False new_compare7(@0, @0) -> EQ new_ltEs5(Right(xwv610), Right(xwv620), bfa, ty_Int) -> new_ltEs14(xwv610, xwv620) new_ltEs19(xwv106, xwv107, ty_Int) -> new_ltEs14(xwv106, xwv107) new_ltEs23(xwv127, xwv129, ty_Integer) -> new_ltEs7(xwv127, xwv129) new_esEs16(:%(xwv280, xwv281), :%(xwv330, xwv331), gbb) -> new_asAs(new_esEs39(xwv280, xwv330, gbb), new_esEs40(xwv281, xwv331, gbb)) new_esEs26(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs29(xwv610, xwv620, ty_Float) -> new_esEs18(xwv610, xwv620) new_compare28(xwv99, xwv100, False, cde, cdf) -> new_compare14(xwv99, xwv100, new_ltEs21(xwv99, xwv100, cde), cde, cdf) new_ltEs7(xwv61, xwv62) -> new_fsEs(new_compare11(xwv61, xwv62)) new_lt11(xwv18, xwv13) -> new_esEs28(new_compare9(xwv18, xwv13)) new_ltEs20(xwv61, xwv62, ty_Int) -> new_ltEs14(xwv61, xwv62) new_ltEs11(EQ, LT) -> False The set Q consists of the following terms: new_lt5(x0, x1, ty_Integer) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Just(x0), Nothing, x1) new_compare33(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Float) new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs24(x0, x1, ty_Bool) new_esEs37(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs12(Left(x0), Right(x1), x2, x3) new_esEs12(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs39(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, True, x2) new_esEs20(False, True) new_esEs20(True, False) new_primCompAux00(x0, LT) new_ltEs20(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_lt5(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Bool) new_lt19(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, x2) new_compare32(Right(x0), Right(x1), x2, x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCompAux00(x0, EQ) new_lt24(x0, x1, ty_Integer) new_compare27(x0, x1, True, x2) new_lt5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_compare19(Just(x0), Just(x1), x2) new_esEs17(Just(x0), Just(x1), ty_Double) new_ltEs18(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), Zero) new_esEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs9(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_esEs22(:(x0, x1), :(x2, x3), x4) new_lt7(x0, x1) new_esEs29(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt24(x0, x1, ty_Bool) new_esEs38(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Double) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Char) new_ltEs11(GT, GT) new_lt20(x0, x1, ty_@0) new_pePe(True, x0) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Int) new_esEs24(EQ, GT) new_esEs24(GT, EQ) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(EQ) new_esEs17(Just(x0), Just(x1), ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Int) new_esEs7(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Integer) new_esEs25(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, ty_Bool) new_ltEs7(x0, x1) new_compare26(x0, x1, False, x2, x3) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Ordering) new_compare8(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt18(x0, x1, x2, x3) new_ltEs24(x0, x1, ty_Float) new_lt24(x0, x1, ty_@0) new_esEs12(Left(x0), Left(x1), ty_Float, x2) new_esEs10(x0, x1, ty_Float) new_esEs22([], :(x0, x1), x2) new_compare19(Just(x0), Nothing, x1) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, False, x2, x3) new_gt(x0, x1, ty_@0) new_lt20(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_compare9(GT, GT) new_esEs10(x0, x1, app(ty_[], x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_gt(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, x2, x3, x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1) new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt19(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Ordering) new_esEs17(Just(x0), Just(x1), app(ty_[], x2)) new_esEs32(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, x2, x3, False, x4, x5) new_esEs11(x0, x1, ty_Char) new_esEs12(Right(x0), Right(x1), x2, ty_Int) new_ltEs22(x0, x1, ty_Double) new_lt9(x0, x1, x2) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_esEs17(Nothing, Nothing, x0) new_esEs28(LT) new_primCmpNat0(Succ(x0), Zero) new_esEs8(x0, x1, ty_@0) new_compare33(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_asAs(False, x0) new_ltEs13(True, True) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Float) new_esEs24(LT, GT) new_esEs24(GT, LT) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, False, x2, x3) new_esEs37(x0, x1, ty_Float) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_gt(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs21(x0, x1, ty_Double) new_asAs(True, x0) new_lt19(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_lt24(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Double) new_compare7(@0, @0) new_esEs4(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Bool) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs12(Left(x0), Left(x1), ty_Integer, x2) new_ltEs21(x0, x1, ty_Int) new_esEs10(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), ty_@0, x2) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Char) new_lt24(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, Zero) new_esEs10(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare13(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Bool) new_lt6(x0, x1) new_compare14(x0, x1, True, x2, x3) new_esEs6(x0, x1, ty_Double) new_not(True) new_fsEs(x0) new_esEs32(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_compare33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_esEs31(x0, x1, ty_@0) new_ltEs13(False, False) new_lt4(x0, x1) new_lt21(x0, x1, ty_@0) new_esEs40(x0, x1, ty_Int) new_esEs12(Left(x0), Left(x1), ty_Char, x2) new_lt24(x0, x1, ty_Char) new_lt24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Char) new_compare11(Integer(x0), Integer(x1)) new_esEs4(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_compare12(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Char) new_gt(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Ordering) new_compare13(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Right(x0), Right(x1), x2, ty_Ordering) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs8(Nothing, Just(x0), x1) new_compare9(EQ, GT) new_esEs20(True, True) new_compare9(GT, EQ) new_compare33(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Float) new_lt19(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Double) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare8(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs12(Right(x0), Right(x1), x2, ty_Double) new_esEs37(x0, x1, ty_Bool) new_compare32(Left(x0), Right(x1), x2, x3) new_compare32(Right(x0), Left(x1), x2, x3) new_esEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_esEs26(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(x0, x1) new_esEs33(x0, x1, ty_@0) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs17(Just(x0), Just(x1), ty_Ordering) new_primEqNat0(Zero, Zero) new_not(False) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Integer) new_esEs24(GT, GT) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt17(x0, x1, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_compare33(x0, x1, app(ty_Ratio, x2)) new_esEs24(LT, EQ) new_esEs24(EQ, LT) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs37(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Bool) new_gt0(x0, x1) new_esEs41(LT) new_lt22(x0, x1, ty_Char) new_ltEs11(EQ, GT) new_ltEs11(GT, EQ) new_ltEs18(x0, x1, ty_Char) new_compare33(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Char) new_ltEs12(x0, x1) new_esEs15(x0, x1) new_compare33(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs30(x0, x1, ty_Double) new_compare0([], [], x0) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs11(x0, x1, ty_Bool) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare33(x0, x1, ty_Bool) new_pePe(False, x0) new_esEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs19(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt22(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, x2, x3, True, x4, x5) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(Nothing, Nothing, x0) new_lt23(x0, x1, ty_Float) new_compare33(x0, x1, ty_Integer) new_compare19(Nothing, Just(x0), x1) new_esEs13(Char(x0), Char(x1)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Ordering) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1, x2, x3) new_compare33(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs24(EQ, EQ) new_esEs6(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Char) new_ltEs13(False, True) new_ltEs13(True, False) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs17(Just(x0), Just(x1), ty_Int) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Double) new_compare9(LT, LT) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Float) new_compare8(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare8(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_Char) new_compare31(False, False) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Double) new_esEs20(False, False) new_ltEs19(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Float) new_lt13(x0, x1) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs12(Right(x0), Right(x1), x2, ty_Float) new_esEs41(GT) new_esEs8(x0, x1, ty_Ordering) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs9(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs33(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpNat0(Zero, Succ(x0)) new_ltEs9(x0, x1, x2) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt24(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Float) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), ty_Int, x2) new_compare33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Float) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs14(x0, x1) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Just(x0), Nothing, x1) new_compare0(:(x0, x1), [], x2) new_ltEs6(x0, x1) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Int) new_lt5(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Double) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt19(x0, x1, app(ty_[], x2)) new_compare5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare0([], :(x0, x1), x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(LT, EQ) new_compare9(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs21(Double(x0, x1), Double(x2, x3)) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, ty_Char) new_lt23(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_ltEs11(EQ, EQ) new_compare33(x0, x1, ty_@0) new_esEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(ty_[], x2)) new_compare9(EQ, EQ) new_lt23(x0, x1, ty_Bool) new_gt(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_lt22(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Bool) new_compare6(Char(x0), Char(x1)) new_esEs12(Right(x0), Right(x1), x2, ty_Bool) new_gt(x0, x1, ty_Char) new_esEs22([], [], x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Integer) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Char) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_compare9(LT, GT) new_compare9(GT, LT) new_esEs27(x0, x1, ty_Integer) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, ty_Float) new_primCompAux00(x0, GT) new_esEs24(LT, LT) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Char) new_compare12(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare12(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs31(x0, x1, ty_Int) new_sr(x0, x1) new_ltEs22(x0, x1, ty_@0) new_ltEs11(LT, LT) new_esEs26(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Double) new_compare19(Nothing, Nothing, x0) new_lt23(x0, x1, ty_Double) new_lt24(x0, x1, ty_Ordering) new_compare33(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs34(x0, x1, ty_Bool) new_compare26(x0, x1, True, x2, x3) new_ltEs23(x0, x1, ty_Int) new_compare31(True, False) new_compare31(False, True) new_lt23(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs17(Just(x0), Just(x1), ty_Integer) new_esEs9(x0, x1, ty_Bool) new_esEs17(Just(x0), Just(x1), ty_Float) new_compare27(x0, x1, False, x2) new_esEs31(x0, x1, ty_Bool) new_esEs17(Just(x0), Just(x1), ty_Bool) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_lt19(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt19(x0, x1, ty_Double) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs17(Nothing, Just(x0), x1) new_esEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs34(x0, x1, ty_Char) new_esEs34(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_compare30(x0, x1) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs5(Left(x0), Right(x1), x2, x3) new_ltEs5(Right(x0), Left(x1), x2, x3) new_lt24(x0, x1, app(ty_Maybe, x2)) new_esEs12(Right(x0), Right(x1), x2, ty_Integer) new_esEs8(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Integer) new_esEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Float) new_lt21(x0, x1, ty_Char) new_esEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs18(Float(x0, x1), Float(x2, x3)) new_esEs8(x0, x1, ty_Float) new_lt21(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs4(x0, x1) new_esEs14(@0, @0) new_compare33(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Float) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Left(x0), Left(x1), ty_Double, x2) new_esEs6(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Bool) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_gt(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, ty_Int) new_compare10(x0, x1, False, x2) new_ltEs24(x0, x1, ty_Ordering) new_esEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Int) new_compare15(@2(x0, x1), @2(x2, x3), x4, x5) new_lt21(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Just(x0), Just(x1), ty_@0) new_esEs7(x0, x1, ty_Bool) new_compare28(x0, x1, True, x2, x3) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Float) new_ltEs16(x0, x1, x2) new_esEs7(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs41(EQ) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(GT) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_gt(x0, x1, ty_Bool) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_compare31(True, True) new_esEs36(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs34(x0, x1, ty_Integer) new_esEs22(:(x0, x1), [], x2) new_ltEs22(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Char) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_esEs8(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Char) new_esEs5(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Double) new_esEs11(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Double) new_compare17(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs35(x0, x1, ty_Int) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Int) new_gt(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Bool) new_esEs12(Right(x0), Right(x1), x2, ty_@0) new_lt23(x0, x1, app(ty_[], x2)) new_esEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs6(x0, x1, ty_Integer) new_gt(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_esEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt5(x0, x1, ty_Float) new_compare32(Left(x0), Left(x1), x2, x3) new_ltEs8(Just(x0), Just(x1), ty_Char) new_primCmpNat0(Zero, Zero) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 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_delFromFM1(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bb, bc) -> new_delFromFM(xwv31, xwv33, bb, bc) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 *new_delFromFM(Branch(xwv30, xwv31, xwv32, xwv33, xwv34), xwv40, bd, be) -> new_delFromFM2(xwv30, xwv31, xwv32, xwv33, xwv34, xwv40, new_gt(xwv40, xwv30, bd), bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 8, 4 >= 9 *new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_lt24(xwv18, xwv13, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba) -> new_delFromFM(xwv17, xwv18, h, ba) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primMinusNat(xwv16200, xwv13700) 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_primMinusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primMinusNat(xwv16200, xwv13700) 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_primPlusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primPlusNat(xwv16200, xwv13700) 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_primPlusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primPlusNat(xwv16200, xwv13700) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_key10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv306, xwv307, xwv308, xwv309, Branch(xwv3100, xwv3101, xwv3102, xwv3103, xwv3104), h, ba) -> new_glueBal2Mid_key10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv3100, xwv3101, xwv3102, xwv3103, xwv3104, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) 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(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv306, xwv307, xwv308, xwv309, Branch(xwv3100, xwv3101, xwv3102, xwv3103, xwv3104), h, ba) -> new_glueBal2Mid_key10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv3100, xwv3101, xwv3102, xwv3103, xwv3104, 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 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldl(xwv3, :(xwv40, xwv41), h, ba) -> new_foldl(new_delFromFM0(xwv3, xwv40, h, ba), xwv41, h, ba) The TRS R consists of the following rules: new_ltEs24(xwv612, xwv622, ty_Float) -> new_ltEs12(xwv612, xwv622) new_lt24(xwv18, xwv13, ty_Bool) -> new_lt14(xwv18, xwv13) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_lt22(xwv611, xwv621, ty_Char) -> new_lt6(xwv611, xwv621) new_ltEs5(Right(xwv610), Right(xwv620), bbg, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs10(xwv610, xwv620, bcb, bcc, bcd) new_pePe(True, xwv210) -> True new_esEs29(xwv610, xwv620, ty_Integer) -> new_esEs19(xwv610, xwv620) new_esEs31(xwv77, xwv80, app(ty_Maybe, daa)) -> new_esEs17(xwv77, xwv80, daa) new_esEs8(xwv400, xwv300, app(ty_[], ccg)) -> new_esEs22(xwv400, xwv300, ccg) new_esEs27(xwv281, xwv331, ty_Float) -> new_esEs18(xwv281, xwv331) new_esEs10(xwv400, xwv300, app(app(app(ty_@3, gba), gbb), gbc)) -> new_esEs23(xwv400, xwv300, gba, gbb, gbc) new_esEs6(xwv401, xwv301, ty_Bool) -> new_esEs20(xwv401, xwv301) new_esEs27(xwv281, xwv331, ty_Bool) -> new_esEs20(xwv281, xwv331) new_compare19(Just(xwv400), Just(xwv300), cgc) -> new_compare27(xwv400, xwv300, new_esEs4(xwv400, xwv300, cgc), cgc) new_compare33(xwv400, xwv300, app(ty_Maybe, gda)) -> new_compare19(xwv400, xwv300, gda) new_compare33(xwv400, xwv300, app(app(ty_@2, gdf), gdg)) -> new_compare15(xwv400, xwv300, gdf, gdg) new_esEs34(xwv610, xwv620, ty_Ordering) -> new_esEs24(xwv610, xwv620) new_esEs4(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs8(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_mkBalBranch6MkBalBranch3(xwv16, xwv13, xwv14, xwv35, False, bdb, bdc) -> new_mkBranchResult(xwv13, xwv14, xwv16, xwv35, bdb, bdc) new_compare26(xwv106, xwv107, True, bgb, bgc) -> EQ new_ltEs19(xwv106, xwv107, app(ty_Ratio, bhc)) -> new_ltEs16(xwv106, xwv107, bhc) new_esEs6(xwv401, xwv301, ty_Float) -> new_esEs18(xwv401, xwv301) new_esEs29(xwv610, xwv620, app(ty_[], bdg)) -> new_esEs22(xwv610, xwv620, bdg) new_esEs30(xwv280, xwv330, app(ty_Ratio, cfb)) -> new_esEs16(xwv280, xwv330, cfb) new_ltEs24(xwv612, xwv622, app(ty_Maybe, dhh)) -> new_ltEs8(xwv612, xwv622, dhh) new_esEs32(xwv78, xwv81, ty_Int) -> new_esEs15(xwv78, xwv81) new_deleteMax0(xwv510, xwv511, xwv512, xwv513, Branch(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144), fcc, fcd) -> new_mkBalBranch(xwv510, xwv511, xwv513, new_deleteMax0(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144, fcc, fcd), fcc, fcd) new_esEs12(Right(xwv280), Right(xwv330), gh, ty_Bool) -> new_esEs20(xwv280, xwv330) new_compare111(xwv194, xwv195, xwv196, xwv197, False, ehe, ehf) -> GT new_esEs11(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_esEs36(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) new_lt19(xwv77, xwv80, app(app(ty_Either, dba), dbb)) -> new_lt18(xwv77, xwv80, dba, dbb) new_esEs35(xwv611, xwv621, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs23(xwv611, xwv621, dgh, dha, dhb) new_esEs29(xwv610, xwv620, ty_Double) -> new_esEs21(xwv610, xwv620) new_lt19(xwv77, xwv80, ty_@0) -> new_lt13(xwv77, xwv80) new_ltEs5(Left(xwv610), Right(xwv620), bbg, bad) -> True new_esEs12(Left(xwv280), Left(xwv330), app(app(app(ty_@3, gc), gd), ge), fg) -> new_esEs23(xwv280, xwv330, gc, gd, ge) new_esEs33(xwv126, xwv128, app(app(ty_Either, fff), ffg)) -> new_esEs12(xwv126, xwv128, fff, ffg) new_lt24(xwv18, xwv13, app(ty_[], cgb)) -> new_lt9(xwv18, xwv13, cgb) new_lt23(xwv610, xwv620, ty_Integer) -> new_lt7(xwv610, xwv620) new_ltEs20(xwv61, xwv62, ty_@0) -> new_ltEs4(xwv61, xwv62) new_lt21(xwv126, xwv128, ty_Ordering) -> new_lt11(xwv126, xwv128) new_compare31(True, False) -> GT new_esEs15(xwv28, xwv33) -> new_primEqInt(xwv28, xwv33) new_ltEs23(xwv127, xwv129, app(app(ty_Either, fgh), fha)) -> new_ltEs5(xwv127, xwv129, fgh, fha) new_primEqNat0(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat0(xwv2800, xwv3300) new_esEs37(xwv281, xwv331, ty_Bool) -> new_esEs20(xwv281, xwv331) new_esEs12(Right(xwv280), Right(xwv330), gh, ty_Float) -> new_esEs18(xwv280, xwv330) new_esEs17(Nothing, Nothing, ehb) -> True new_esEs9(xwv401, xwv301, ty_Char) -> new_esEs13(xwv401, xwv301) new_compare25(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, True, chf, chg, chh) -> EQ new_esEs17(Nothing, Just(xwv330), ehb) -> False new_esEs17(Just(xwv280), Nothing, ehb) -> False new_compare5(@3(xwv400, xwv401, xwv402), @3(xwv300, xwv301, xwv302), bb, bc, bd) -> new_compare25(xwv400, xwv401, xwv402, xwv300, xwv301, xwv302, new_asAs(new_esEs5(xwv400, xwv300, bb), new_asAs(new_esEs6(xwv401, xwv301, bc), new_esEs7(xwv402, xwv302, bd))), bb, bc, bd) new_esEs39(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_lt21(xwv126, xwv128, ty_Int) -> new_lt15(xwv126, xwv128) new_not(True) -> False new_ltEs18(xwv611, xwv621, ty_Double) -> new_ltEs17(xwv611, xwv621) new_gt(xwv40, xwv30, ty_Float) -> new_esEs41(new_compare12(xwv40, xwv30)) new_lt21(xwv126, xwv128, app(ty_Maybe, fef)) -> new_lt8(xwv126, xwv128, fef) new_lt22(xwv611, xwv621, ty_Double) -> new_lt4(xwv611, xwv621) new_ltEs22(xwv79, xwv82, app(ty_[], dcf)) -> new_ltEs9(xwv79, xwv82, dcf) new_primCompAux00(xwv67, LT) -> LT new_esEs42(xwv28, xwv33, ty_Char) -> new_esEs13(xwv28, xwv33) new_esEs7(xwv402, xwv302, app(ty_Ratio, ed)) -> new_esEs16(xwv402, xwv302, ed) new_esEs35(xwv611, xwv621, ty_Char) -> new_esEs13(xwv611, xwv621) new_esEs9(xwv401, xwv301, ty_Int) -> new_esEs15(xwv401, xwv301) new_ltEs8(Just(xwv610), Just(xwv620), ty_Integer) -> new_ltEs7(xwv610, xwv620) new_esEs10(xwv400, xwv300, app(ty_Ratio, gaf)) -> new_esEs16(xwv400, xwv300, gaf) new_ltEs18(xwv611, xwv621, ty_@0) -> new_ltEs4(xwv611, xwv621) new_esEs42(xwv28, xwv33, app(app(ty_@2, ehc), ehd)) -> new_esEs25(xwv28, xwv33, ehc, ehd) new_esEs12(Left(xwv280), Left(xwv330), ty_Char, fg) -> new_esEs13(xwv280, xwv330) new_esEs37(xwv281, xwv331, ty_Int) -> new_esEs15(xwv281, xwv331) new_ltEs5(Left(xwv610), Left(xwv620), ty_Char, bad) -> new_ltEs6(xwv610, xwv620) new_esEs22(:(xwv280, xwv281), :(xwv330, xwv331), ceg) -> new_asAs(new_esEs30(xwv280, xwv330, ceg), new_esEs22(xwv281, xwv331, ceg)) new_lt15(xwv18, xwv13) -> new_esEs28(new_compare30(xwv18, xwv13)) new_primEqNat0(Succ(xwv2800), Zero) -> False new_primEqNat0(Zero, Succ(xwv3300)) -> False new_ltEs24(xwv612, xwv622, app(app(app(ty_@3, eab), eac), ead)) -> new_ltEs10(xwv612, xwv622, eab, eac, ead) new_esEs14(@0, @0) -> True new_esEs8(xwv400, xwv300, app(ty_Maybe, ccf)) -> new_esEs17(xwv400, xwv300, ccf) new_esEs31(xwv77, xwv80, app(ty_[], dab)) -> new_esEs22(xwv77, xwv80, dab) new_gt(xwv40, xwv30, app(app(app(ty_@3, bb), bc), bd)) -> new_esEs41(new_compare5(xwv40, xwv30, bb, bc, bd)) new_lt22(xwv611, xwv621, ty_Float) -> new_lt12(xwv611, xwv621) new_compare9(LT, EQ) -> LT new_ltEs21(xwv99, xwv100, ty_Integer) -> new_ltEs7(xwv99, xwv100) new_ltEs5(Left(xwv610), Left(xwv620), ty_@0, bad) -> new_ltEs4(xwv610, xwv620) new_esEs37(xwv281, xwv331, ty_Float) -> new_esEs18(xwv281, xwv331) new_ltEs22(xwv79, xwv82, ty_Int) -> new_ltEs14(xwv79, xwv82) new_esEs32(xwv78, xwv81, ty_Float) -> new_esEs18(xwv78, xwv81) new_ltEs5(Left(xwv610), Left(xwv620), app(app(ty_Either, bbe), bbf), bad) -> new_ltEs5(xwv610, xwv620, bbe, bbf) new_esEs12(Left(xwv280), Left(xwv330), app(app(ty_Either, fd), ff), fg) -> new_esEs12(xwv280, xwv330, fd, ff) new_esEs32(xwv78, xwv81, app(app(ty_@2, dbh), dca)) -> new_esEs25(xwv78, xwv81, dbh, dca) new_mkBalBranch6MkBalBranch3(Branch(xwv160, xwv161, xwv162, xwv163, xwv164), xwv13, xwv14, xwv35, True, bdb, bdc) -> new_mkBalBranch6MkBalBranch11(xwv160, xwv161, xwv162, xwv163, xwv164, xwv13, xwv14, xwv35, new_lt15(new_sizeFM(xwv164, bdb, bdc), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xwv163, bdb, bdc))), bdb, bdc) new_esEs4(xwv400, xwv300, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs23(xwv400, xwv300, cha, chb, chc) new_ltEs20(xwv61, xwv62, ty_Bool) -> new_ltEs13(xwv61, xwv62) new_lt19(xwv77, xwv80, ty_Bool) -> new_lt14(xwv77, xwv80) new_primPlusInt(Pos(xwv1620), Pos(xwv1370)) -> Pos(new_primPlusNat0(xwv1620, xwv1370)) new_esEs27(xwv281, xwv331, ty_Int) -> new_esEs15(xwv281, xwv331) new_esEs9(xwv401, xwv301, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs23(xwv401, xwv301, ceb, cec, ced) new_deleteMin0(xwv520, xwv521, xwv522, EmptyFM, xwv524, fcc, fcd) -> xwv524 new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv300)) -> GT new_lt22(xwv611, xwv621, app(app(app(ty_@3, dgh), dha), dhb)) -> new_lt10(xwv611, xwv621, dgh, dha, dhb) new_mkBalBranch6Size_l(xwv16, xwv13, xwv14, xwv35, bdb, bdc) -> new_sizeFM(xwv16, bdb, bdc) new_ltEs23(xwv127, xwv129, ty_Ordering) -> new_ltEs11(xwv127, xwv129) new_mkBalBranch6MkBalBranch5(xwv16, xwv13, xwv14, xwv35, True, bdb, bdc) -> new_mkBranchResult(xwv13, xwv14, xwv16, xwv35, bdb, bdc) new_ltEs5(Left(xwv610), Left(xwv620), ty_Double, bad) -> new_ltEs17(xwv610, xwv620) new_esEs26(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) new_lt21(xwv126, xwv128, ty_@0) -> new_lt13(xwv126, xwv128) new_compare32(Left(xwv400), Right(xwv300), dee, def) -> LT new_primCmpNat0(Zero, Succ(xwv3000)) -> LT new_esEs5(xwv400, xwv300, app(app(ty_Either, be), bf)) -> new_esEs12(xwv400, xwv300, be, bf) new_esEs37(xwv281, xwv331, app(app(ty_@2, eec), eed)) -> new_esEs25(xwv281, xwv331, eec, eed) new_ltEs5(Left(xwv610), Left(xwv620), ty_Bool, bad) -> new_ltEs13(xwv610, xwv620) new_ltEs20(xwv61, xwv62, ty_Double) -> new_ltEs17(xwv61, xwv62) new_sizeFM(EmptyFM, bdb, bdc) -> Pos(Zero) new_lt19(xwv77, xwv80, app(ty_Maybe, daa)) -> new_lt8(xwv77, xwv80, daa) new_esEs27(xwv281, xwv331, ty_Ordering) -> new_esEs24(xwv281, xwv331) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_esEs34(xwv610, xwv620, ty_Float) -> new_esEs18(xwv610, xwv620) new_compare12(Float(xwv400, Pos(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_lt5(xwv610, xwv620, ty_Ordering) -> new_lt11(xwv610, xwv620) new_gt(xwv40, xwv30, ty_Bool) -> new_esEs41(new_compare31(xwv40, xwv30)) new_ltEs23(xwv127, xwv129, ty_Double) -> new_ltEs17(xwv127, xwv129) new_compare31(False, False) -> EQ new_esEs29(xwv610, xwv620, ty_Ordering) -> new_esEs24(xwv610, xwv620) new_esEs7(xwv402, xwv302, app(app(app(ty_@3, eg), eh), fa)) -> new_esEs23(xwv402, xwv302, eg, eh, fa) new_esEs26(xwv280, xwv330, app(ty_[], fac)) -> new_esEs22(xwv280, xwv330, fac) new_esEs5(xwv400, xwv300, app(ty_Maybe, bh)) -> new_esEs17(xwv400, xwv300, bh) new_esEs28(GT) -> False new_lt5(xwv610, xwv620, ty_Int) -> new_lt15(xwv610, xwv620) new_esEs8(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_ltEs18(xwv611, xwv621, ty_Bool) -> new_ltEs13(xwv611, xwv621) new_compare9(EQ, GT) -> LT new_mkBalBranch6MkBalBranch01(xwv16, xwv13, xwv14, xwv350, xwv351, xwv352, EmptyFM, xwv354, False, bdb, bdc) -> error([]) new_esEs34(xwv610, xwv620, ty_Integer) -> new_esEs19(xwv610, xwv620) new_ltEs5(Left(xwv610), Left(xwv620), app(ty_[], baf), bad) -> new_ltEs9(xwv610, xwv620, baf) new_ltEs19(xwv106, xwv107, ty_Integer) -> new_ltEs7(xwv106, xwv107) new_esEs9(xwv401, xwv301, app(ty_Ratio, cdg)) -> new_esEs16(xwv401, xwv301, cdg) new_primEqInt(Neg(Succ(xwv2800)), Neg(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) new_esEs31(xwv77, xwv80, ty_@0) -> new_esEs14(xwv77, xwv80) new_primCmpInt(Neg(Zero), Pos(Succ(xwv3000))) -> LT new_ltEs24(xwv612, xwv622, app(ty_Ratio, eag)) -> new_ltEs16(xwv612, xwv622, eag) new_esEs9(xwv401, xwv301, app(app(ty_@2, cee), cef)) -> new_esEs25(xwv401, xwv301, cee, cef) new_esEs5(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_primMulInt(Pos(xwv3000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) new_gt(xwv40, xwv30, ty_Integer) -> new_esEs41(new_compare11(xwv40, xwv30)) new_esEs11(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_compare10(xwv147, xwv148, True, bac) -> LT new_lt16(xwv18, xwv13, ega, egb) -> new_esEs28(new_compare15(xwv18, xwv13, ega, egb)) new_esEs9(xwv401, xwv301, ty_Float) -> new_esEs18(xwv401, xwv301) new_lt24(xwv18, xwv13, ty_Float) -> new_lt12(xwv18, xwv13) new_esEs17(Just(xwv280), Just(xwv330), app(ty_Ratio, fhd)) -> new_esEs16(xwv280, xwv330, fhd) new_ltEs19(xwv106, xwv107, app(ty_Maybe, bgd)) -> new_ltEs8(xwv106, xwv107, bgd) new_ltEs9(xwv61, xwv62, bhh) -> new_fsEs(new_compare0(xwv61, xwv62, bhh)) new_primMulNat0(Succ(xwv30000), Zero) -> Zero new_primMulNat0(Zero, Succ(xwv40100)) -> Zero new_lt21(xwv126, xwv128, ty_Bool) -> new_lt14(xwv126, xwv128) new_compare33(xwv400, xwv300, ty_Ordering) -> new_compare9(xwv400, xwv300) new_esEs32(xwv78, xwv81, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs23(xwv78, xwv81, dbe, dbf, dbg) new_compare33(xwv400, xwv300, ty_Float) -> new_compare12(xwv400, xwv300) new_esEs10(xwv400, xwv300, app(app(ty_@2, gbd), gbe)) -> new_esEs25(xwv400, xwv300, gbd, gbe) new_esEs31(xwv77, xwv80, ty_Integer) -> new_esEs19(xwv77, xwv80) new_ltEs5(Left(xwv610), Left(xwv620), app(ty_Maybe, bae), bad) -> new_ltEs8(xwv610, xwv620, bae) new_compare8(Double(xwv400, Pos(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_esEs12(Right(xwv280), Right(xwv330), gh, ty_Char) -> new_esEs13(xwv280, xwv330) new_ltEs19(xwv106, xwv107, ty_Float) -> new_ltEs12(xwv106, xwv107) new_esEs36(xwv280, xwv330, app(app(ty_Either, eca), ecb)) -> new_esEs12(xwv280, xwv330, eca, ecb) new_lt19(xwv77, xwv80, ty_Int) -> new_lt15(xwv77, xwv80) new_lt24(xwv18, xwv13, ty_@0) -> new_lt13(xwv18, xwv13) new_esEs18(Float(xwv280, xwv281), Float(xwv330, xwv331)) -> new_esEs15(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) new_esEs34(xwv610, xwv620, app(app(ty_@2, dga), dgb)) -> new_esEs25(xwv610, xwv620, dga, dgb) new_primPlusNat0(Succ(xwv16200), Zero) -> Succ(xwv16200) new_primPlusNat0(Zero, Succ(xwv13700)) -> Succ(xwv13700) new_esEs29(xwv610, xwv620, app(ty_Maybe, bdf)) -> new_esEs17(xwv610, xwv620, bdf) new_compare33(xwv400, xwv300, ty_Char) -> new_compare6(xwv400, xwv300) new_compare33(xwv400, xwv300, app(app(app(ty_@3, gdc), gdd), gde)) -> new_compare5(xwv400, xwv300, gdc, gdd, gde) new_esEs12(Right(xwv280), Right(xwv330), gh, ty_Int) -> new_esEs15(xwv280, xwv330) new_deleteMin0(xwv520, xwv521, xwv522, Branch(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234), xwv524, fcc, fcd) -> new_mkBalBranch(xwv520, xwv521, new_deleteMin0(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234, fcc, fcd), xwv524, fcc, fcd) new_esEs35(xwv611, xwv621, app(ty_Ratio, dhe)) -> new_esEs16(xwv611, xwv621, dhe) new_esEs27(xwv281, xwv331, ty_Char) -> new_esEs13(xwv281, xwv331) new_glueBal2GlueBal1(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, False, fcc, fcd) -> new_mkBalBranch(new_glueBal2Mid_key100(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, xwv510, xwv511, xwv512, xwv513, xwv514, fcc, fcd), new_glueBal2Mid_elt100(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, xwv510, xwv511, xwv512, xwv513, xwv514, fcd, fcc), new_deleteMax0(xwv510, xwv511, xwv512, xwv513, xwv514, fcc, fcd), Branch(xwv520, xwv521, xwv522, xwv523, xwv524), fcc, fcd) new_ltEs8(Just(xwv610), Just(xwv620), app(app(ty_Either, feb), fec)) -> new_ltEs5(xwv610, xwv620, feb, fec) new_glueBal2Mid_key200(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, Branch(xwv2770, xwv2771, xwv2772, xwv2773, xwv2774), xwv278, ebd, ebe) -> new_glueBal2Mid_key200(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv2770, xwv2771, xwv2772, xwv2773, xwv2774, ebd, ebe) new_delFromFM0(Branch(xwv30, xwv31, xwv32, xwv33, xwv34), xwv40, h, ba) -> new_delFromFM20(xwv30, xwv31, xwv32, xwv33, xwv34, xwv40, new_gt(xwv40, xwv30, h), h, ba) new_lt10(xwv18, xwv13, dfa, dfb, dfc) -> new_esEs28(new_compare5(xwv18, xwv13, dfa, dfb, dfc)) new_esEs5(xwv400, xwv300, app(ty_[], ca)) -> new_esEs22(xwv400, xwv300, ca) new_esEs35(xwv611, xwv621, app(app(ty_@2, dhc), dhd)) -> new_esEs25(xwv611, xwv621, dhc, dhd) new_esEs38(xwv282, xwv332, app(app(ty_Either, eee), eef)) -> new_esEs12(xwv282, xwv332, eee, eef) new_esEs31(xwv77, xwv80, ty_Ordering) -> new_esEs24(xwv77, xwv80) new_ltEs5(Right(xwv610), Right(xwv620), bbg, ty_Float) -> new_ltEs12(xwv610, xwv620) new_esEs5(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_compare9(GT, GT) -> EQ new_ltEs8(Just(xwv610), Just(xwv620), app(ty_Ratio, fea)) -> new_ltEs16(xwv610, xwv620, fea) new_compare9(LT, GT) -> LT new_esEs31(xwv77, xwv80, ty_Double) -> new_esEs21(xwv77, xwv80) new_gt(xwv40, xwv30, app(app(ty_Either, dee), def)) -> new_esEs41(new_compare32(xwv40, xwv30, dee, def)) new_lt22(xwv611, xwv621, ty_Bool) -> new_lt14(xwv611, xwv621) new_esEs37(xwv281, xwv331, ty_Char) -> new_esEs13(xwv281, xwv331) new_esEs29(xwv610, xwv620, ty_@0) -> new_esEs14(xwv610, xwv620) new_esEs30(xwv280, xwv330, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs23(xwv280, xwv330, cfe, cff, cfg) new_esEs38(xwv282, xwv332, ty_Char) -> new_esEs13(xwv282, xwv332) new_lt5(xwv610, xwv620, app(ty_Ratio, bee)) -> new_lt17(xwv610, xwv620, bee) new_ltEs22(xwv79, xwv82, app(app(ty_@2, ddb), ddc)) -> new_ltEs15(xwv79, xwv82, ddb, ddc) new_esEs19(Integer(xwv280), Integer(xwv330)) -> new_primEqInt(xwv280, xwv330) new_lt20(xwv78, xwv81, app(ty_Ratio, dcb)) -> new_lt17(xwv78, xwv81, dcb) new_esEs8(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_ltEs5(Left(xwv610), Left(xwv620), ty_Int, bad) -> new_ltEs14(xwv610, xwv620) new_esEs35(xwv611, xwv621, ty_Int) -> new_esEs15(xwv611, xwv621) new_lt19(xwv77, xwv80, ty_Ordering) -> new_lt11(xwv77, xwv80) new_ltEs21(xwv99, xwv100, ty_Float) -> new_ltEs12(xwv99, xwv100) new_mkBalBranch6MkBalBranch11(xwv160, xwv161, xwv162, xwv163, EmptyFM, xwv13, xwv14, xwv35, False, bdb, bdc) -> error([]) new_ltEs8(Just(xwv610), Just(xwv620), app(app(app(ty_@3, fdd), fde), fdf)) -> new_ltEs10(xwv610, xwv620, fdd, fde, fdf) new_esEs6(xwv401, xwv301, ty_Double) -> new_esEs21(xwv401, xwv301) new_esEs42(xwv28, xwv33, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs23(xwv28, xwv33, ebf, ebg, ebh) new_esEs26(xwv280, xwv330, app(app(ty_Either, ehg), ehh)) -> new_esEs12(xwv280, xwv330, ehg, ehh) new_ltEs8(Just(xwv610), Just(xwv620), ty_Ordering) -> new_ltEs11(xwv610, xwv620) new_esEs6(xwv401, xwv301, ty_Ordering) -> new_esEs24(xwv401, xwv301) new_esEs10(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_esEs17(Just(xwv280), Just(xwv330), ty_Char) -> new_esEs13(xwv280, xwv330) new_esEs6(xwv401, xwv301, app(app(app(ty_@3, de), df), dg)) -> new_esEs23(xwv401, xwv301, de, df, dg) new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, False, fcg, fch, fda) -> GT new_esEs34(xwv610, xwv620, ty_@0) -> new_esEs14(xwv610, xwv620) new_esEs8(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_esEs33(xwv126, xwv128, app(app(app(ty_@3, feh), ffa), ffb)) -> new_esEs23(xwv126, xwv128, feh, ffa, ffb) new_esEs11(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_lt19(xwv77, xwv80, ty_Float) -> new_lt12(xwv77, xwv80) new_ltEs11(EQ, GT) -> True new_ltEs19(xwv106, xwv107, app(ty_[], bge)) -> new_ltEs9(xwv106, xwv107, bge) new_esEs30(xwv280, xwv330, app(app(ty_@2, cfh), cga)) -> new_esEs25(xwv280, xwv330, cfh, cga) new_lt23(xwv610, xwv620, app(app(ty_Either, dgd), dge)) -> new_lt18(xwv610, xwv620, dgd, dge) new_esEs35(xwv611, xwv621, app(app(ty_Either, dhf), dhg)) -> new_esEs12(xwv611, xwv621, dhf, dhg) new_esEs10(xwv400, xwv300, app(app(ty_Either, gad), gae)) -> new_esEs12(xwv400, xwv300, gad, gae) new_primPlusInt(Neg(xwv1620), Neg(xwv1370)) -> Neg(new_primPlusNat0(xwv1620, xwv1370)) new_compare29(xwv126, xwv127, xwv128, xwv129, False, fed, fee) -> new_compare110(xwv126, xwv127, xwv128, xwv129, new_lt21(xwv126, xwv128, fed), new_asAs(new_esEs33(xwv126, xwv128, fed), new_ltEs23(xwv127, xwv129, fee)), fed, fee) new_esEs35(xwv611, xwv621, ty_Bool) -> new_esEs20(xwv611, xwv621) new_lt24(xwv18, xwv13, ty_Char) -> new_lt6(xwv18, xwv13) new_ltEs11(EQ, EQ) -> True new_esEs37(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_esEs12(Right(xwv280), Right(xwv330), gh, app(ty_Maybe, hd)) -> new_esEs17(xwv280, xwv330, hd) new_lt23(xwv610, xwv620, app(ty_Maybe, dfd)) -> new_lt8(xwv610, xwv620, dfd) new_lt5(xwv610, xwv620, ty_Bool) -> new_lt14(xwv610, xwv620) new_mkBranch(xwv238, xwv239, xwv240, xwv241, xwv242, xwv243, xwv244, xwv245, xwv246, deg, deh) -> new_mkBranchResult(xwv239, xwv240, xwv241, new_mkBranch0(xwv242, xwv243, xwv244, xwv245, xwv246, deg, deh), deg, deh) new_compare111(xwv194, xwv195, xwv196, xwv197, True, ehe, ehf) -> LT new_glueBal2Mid_elt200(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv258, xwv259, xwv260, EmptyFM, xwv262, ebb, ebc) -> xwv259 new_esEs31(xwv77, xwv80, ty_Bool) -> new_esEs20(xwv77, xwv80) new_compare0([], :(xwv300, xwv301), dec) -> LT new_esEs34(xwv610, xwv620, ty_Int) -> new_esEs15(xwv610, xwv620) new_ltEs5(Right(xwv610), Left(xwv620), bbg, bad) -> False new_esEs33(xwv126, xwv128, ty_Char) -> new_esEs13(xwv126, xwv128) new_esEs6(xwv401, xwv301, app(ty_[], dd)) -> new_esEs22(xwv401, xwv301, dd) new_lt22(xwv611, xwv621, ty_@0) -> new_lt13(xwv611, xwv621) new_esEs32(xwv78, xwv81, ty_Ordering) -> new_esEs24(xwv78, xwv81) new_esEs5(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_esEs28(LT) -> True new_delFromFM20(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bdb, bdc) -> new_delFromFM10(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_lt24(xwv18, xwv13, bdb), bdb, bdc) new_esEs4(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_esEs12(Right(xwv280), Right(xwv330), gh, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs27(xwv281, xwv331, app(ty_[], fbe)) -> new_esEs22(xwv281, xwv331, fbe) new_gt(xwv40, xwv30, app(app(ty_@2, cca), ccb)) -> new_esEs41(new_compare15(xwv40, xwv30, cca, ccb)) new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv300)) -> new_primCmpNat0(Succ(xwv4000), xwv300) new_esEs23(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), ebf, ebg, ebh) -> new_asAs(new_esEs36(xwv280, xwv330, ebf), new_asAs(new_esEs37(xwv281, xwv331, ebg), new_esEs38(xwv282, xwv332, ebh))) new_ltEs11(GT, GT) -> True new_primCompAux00(xwv67, EQ) -> xwv67 new_compare30(xwv40, xwv30) -> new_primCmpInt(xwv40, xwv30) new_mkBalBranch6MkBalBranch4(xwv16, xwv13, xwv14, EmptyFM, True, bdb, bdc) -> error([]) new_compare25(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, False, chf, chg, chh) -> new_compare17(xwv77, xwv78, xwv79, xwv80, xwv81, xwv82, new_lt19(xwv77, xwv80, chf), new_asAs(new_esEs31(xwv77, xwv80, chf), new_pePe(new_lt20(xwv78, xwv81, chg), new_asAs(new_esEs32(xwv78, xwv81, chg), new_ltEs22(xwv79, xwv82, chh)))), chf, chg, chh) new_esEs30(xwv280, xwv330, app(app(ty_Either, ceh), cfa)) -> new_esEs12(xwv280, xwv330, ceh, cfa) new_esEs5(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_gt(xwv40, xwv30, app(ty_[], dec)) -> new_esEs41(new_compare0(xwv40, xwv30, dec)) new_mkBranchResult(xwv13, xwv14, xwv16, xwv35, bdb, bdc) -> Branch(xwv13, xwv14, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xwv16, bdb, bdc)), new_sizeFM(xwv35, bdb, bdc)), xwv16, xwv35) new_esEs27(xwv281, xwv331, app(ty_Ratio, fbc)) -> new_esEs16(xwv281, xwv331, fbc) new_esEs33(xwv126, xwv128, app(ty_Ratio, ffe)) -> new_esEs16(xwv126, xwv128, ffe) new_primMulNat0(Succ(xwv30000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv30000, Succ(xwv40100)), Succ(xwv40100)) new_compare11(Integer(xwv400), Integer(xwv300)) -> new_primCmpInt(xwv400, xwv300) new_ltEs24(xwv612, xwv622, app(app(ty_@2, eae), eaf)) -> new_ltEs15(xwv612, xwv622, eae, eaf) new_ltEs16(xwv61, xwv62, cad) -> new_fsEs(new_compare16(xwv61, xwv62, cad)) new_esEs34(xwv610, xwv620, ty_Char) -> new_esEs13(xwv610, xwv620) new_ltEs13(False, True) -> True new_deleteMax0(xwv510, xwv511, xwv512, xwv513, EmptyFM, fcc, fcd) -> xwv513 new_ltEs13(False, False) -> True new_esEs6(xwv401, xwv301, ty_Integer) -> new_esEs19(xwv401, xwv301) new_esEs4(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_esEs38(xwv282, xwv332, ty_@0) -> new_esEs14(xwv282, xwv332) new_esEs38(xwv282, xwv332, app(app(app(ty_@3, efb), efc), efd)) -> new_esEs23(xwv282, xwv332, efb, efc, efd) new_ltEs20(xwv61, xwv62, app(ty_[], bhh)) -> new_ltEs9(xwv61, xwv62, bhh) new_lt20(xwv78, xwv81, ty_Integer) -> new_lt7(xwv78, xwv81) new_gt(xwv40, xwv30, app(ty_Ratio, ded)) -> new_esEs41(new_compare16(xwv40, xwv30, ded)) new_glueBal2Mid_key100(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv306, xwv307, xwv308, xwv309, EmptyFM, ddg, ddh) -> xwv306 new_delFromFM10(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, False, egh, eha) -> new_delFromFM00(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, new_esEs42(xwv28, xwv33, egh), egh, eha) new_esEs10(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_lt5(xwv610, xwv620, ty_@0) -> new_lt13(xwv610, xwv620) new_esEs29(xwv610, xwv620, ty_Bool) -> new_esEs20(xwv610, xwv620) new_esEs38(xwv282, xwv332, app(ty_Maybe, eeh)) -> new_esEs17(xwv282, xwv332, eeh) new_delFromFM00(xwv48, xwv49, xwv50, xwv51, xwv52, xwv53, False, fcc, fcd) -> error([]) new_esEs33(xwv126, xwv128, app(ty_Maybe, fef)) -> new_esEs17(xwv126, xwv128, fef) new_esEs36(xwv280, xwv330, ty_Bool) -> new_esEs20(xwv280, xwv330) new_ltEs8(Just(xwv610), Just(xwv620), app(ty_Maybe, fdb)) -> new_ltEs8(xwv610, xwv620, fdb) new_esEs17(Just(xwv280), Just(xwv330), app(app(app(ty_@3, fhg), fhh), gaa)) -> new_esEs23(xwv280, xwv330, fhg, fhh, gaa) new_mkBalBranch6MkBalBranch3(EmptyFM, xwv13, xwv14, xwv35, True, bdb, bdc) -> error([]) new_esEs12(Right(xwv280), Right(xwv330), gh, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs23(xwv280, xwv330, hf, hg, hh) new_esEs24(LT, GT) -> False new_esEs24(GT, LT) -> False new_lt19(xwv77, xwv80, ty_Integer) -> new_lt7(xwv77, xwv80) new_esEs29(xwv610, xwv620, app(app(ty_Either, bef), beg)) -> new_esEs12(xwv610, xwv620, bef, beg) new_compare33(xwv400, xwv300, ty_Bool) -> new_compare31(xwv400, xwv300) new_ltEs21(xwv99, xwv100, app(ty_[], cah)) -> new_ltEs9(xwv99, xwv100, cah) new_esEs30(xwv280, xwv330, ty_Bool) -> new_esEs20(xwv280, xwv330) new_delFromFM00(xwv48, xwv49, xwv50, Branch(xwv510, xwv511, xwv512, xwv513, xwv514), EmptyFM, xwv53, True, fcc, fcd) -> Branch(xwv510, xwv511, xwv512, xwv513, xwv514) new_ltEs17(xwv61, xwv62) -> new_fsEs(new_compare8(xwv61, xwv62)) new_esEs10(xwv400, xwv300, ty_Ordering) -> new_esEs24(xwv400, xwv300) new_esEs17(Just(xwv280), Just(xwv330), app(ty_Maybe, fhe)) -> new_esEs17(xwv280, xwv330, fhe) new_esEs26(xwv280, xwv330, app(ty_Ratio, faa)) -> new_esEs16(xwv280, xwv330, faa) new_esEs41(GT) -> True new_mkBranch0(xwv242, xwv243, xwv244, xwv245, xwv246, deg, deh) -> new_mkBranchResult(xwv243, xwv244, xwv245, xwv246, deg, deh) new_esEs32(xwv78, xwv81, app(ty_Ratio, dcb)) -> new_esEs16(xwv78, xwv81, dcb) new_esEs27(xwv281, xwv331, ty_Double) -> new_esEs21(xwv281, xwv331) new_lt24(xwv18, xwv13, app(app(ty_Either, egd), ege)) -> new_lt18(xwv18, xwv13, egd, ege) new_esEs12(Left(xwv280), Left(xwv330), ty_Bool, fg) -> new_esEs20(xwv280, xwv330) new_esEs35(xwv611, xwv621, ty_Ordering) -> new_esEs24(xwv611, xwv621) new_esEs11(xwv400, xwv300, app(app(ty_Either, gbf), gbg)) -> new_esEs12(xwv400, xwv300, gbf, gbg) new_esEs36(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs31(xwv77, xwv80, ty_Int) -> new_esEs15(xwv77, xwv80) new_compare13(xwv164, xwv165, True, fce, fcf) -> LT new_esEs34(xwv610, xwv620, ty_Bool) -> new_esEs20(xwv610, xwv620) new_esEs13(Char(xwv280), Char(xwv330)) -> new_primEqNat0(xwv280, xwv330) new_esEs7(xwv402, xwv302, ty_Float) -> new_esEs18(xwv402, xwv302) new_lt24(xwv18, xwv13, app(ty_Maybe, efh)) -> new_lt8(xwv18, xwv13, efh) new_esEs42(xwv28, xwv33, ty_Float) -> new_esEs18(xwv28, xwv33) new_lt23(xwv610, xwv620, ty_Char) -> new_lt6(xwv610, xwv620) new_delFromFM20(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bdb, bdc) -> new_mkBalBranch(xwv13, xwv14, xwv16, new_delFromFM0(xwv17, xwv18, bdb, bdc), bdb, bdc) new_sizeFM(Branch(xwv350, xwv351, xwv352, xwv353, xwv354), bdb, bdc) -> xwv352 new_esEs26(xwv280, xwv330, ty_Double) -> new_esEs21(xwv280, xwv330) new_gt(xwv40, xwv30, ty_Double) -> new_esEs41(new_compare8(xwv40, xwv30)) new_esEs10(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_esEs12(Right(xwv280), Right(xwv330), gh, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs35(xwv611, xwv621, ty_@0) -> new_esEs14(xwv611, xwv621) new_lt21(xwv126, xwv128, ty_Char) -> new_lt6(xwv126, xwv128) new_esEs31(xwv77, xwv80, app(app(ty_@2, daf), dag)) -> new_esEs25(xwv77, xwv80, daf, dag) new_esEs32(xwv78, xwv81, ty_Bool) -> new_esEs20(xwv78, xwv81) new_esEs9(xwv401, xwv301, app(ty_[], cea)) -> new_esEs22(xwv401, xwv301, cea) new_esEs34(xwv610, xwv620, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs23(xwv610, xwv620, dff, dfg, dfh) new_esEs25(@2(xwv280, xwv281), @2(xwv330, xwv331), ehc, ehd) -> new_asAs(new_esEs26(xwv280, xwv330, ehc), new_esEs27(xwv281, xwv331, ehd)) new_esEs34(xwv610, xwv620, app(app(ty_Either, dgd), dge)) -> new_esEs12(xwv610, xwv620, dgd, dge) new_lt5(xwv610, xwv620, app(ty_Maybe, bdf)) -> new_lt8(xwv610, xwv620, bdf) new_esEs11(xwv400, xwv300, app(app(app(ty_@3, gcc), gce), gcf)) -> new_esEs23(xwv400, xwv300, gcc, gce, gcf) new_lt22(xwv611, xwv621, app(app(ty_Either, dhf), dhg)) -> new_lt18(xwv611, xwv621, dhf, dhg) new_compare0(:(xwv400, xwv401), [], dec) -> GT new_compare31(False, True) -> LT new_esEs30(xwv280, xwv330, ty_Char) -> new_esEs13(xwv280, xwv330) new_primPlusNat0(Succ(xwv16200), Succ(xwv13700)) -> Succ(Succ(new_primPlusNat0(xwv16200, xwv13700))) new_lt24(xwv18, xwv13, ty_Integer) -> new_lt7(xwv18, xwv13) new_ltEs5(Left(xwv610), Left(xwv620), ty_Integer, bad) -> new_ltEs7(xwv610, xwv620) new_esEs37(xwv281, xwv331, ty_Ordering) -> new_esEs24(xwv281, xwv331) new_esEs31(xwv77, xwv80, app(ty_Ratio, dah)) -> new_esEs16(xwv77, xwv80, dah) new_esEs12(Left(xwv280), Left(xwv330), app(ty_[], gb), fg) -> new_esEs22(xwv280, xwv330, gb) new_lt5(xwv610, xwv620, app(app(ty_Either, bef), beg)) -> new_lt18(xwv610, xwv620, bef, beg) new_esEs12(Right(xwv280), Right(xwv330), gh, ty_@0) -> new_esEs14(xwv280, xwv330) new_lt4(xwv18, xwv13) -> new_esEs28(new_compare8(xwv18, xwv13)) new_esEs34(xwv610, xwv620, app(ty_Maybe, dfd)) -> new_esEs17(xwv610, xwv620, dfd) new_lt5(xwv610, xwv620, ty_Integer) -> new_lt7(xwv610, xwv620) new_lt20(xwv78, xwv81, app(app(ty_Either, dcc), dcd)) -> new_lt18(xwv78, xwv81, dcc, dcd) new_esEs37(xwv281, xwv331, app(ty_Maybe, edf)) -> new_esEs17(xwv281, xwv331, edf) new_esEs11(xwv400, xwv300, app(ty_Maybe, gca)) -> new_esEs17(xwv400, xwv300, gca) new_ltEs5(Right(xwv610), Right(xwv620), bbg, app(ty_[], bca)) -> new_ltEs9(xwv610, xwv620, bca) new_esEs11(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_compare13(xwv164, xwv165, False, fce, fcf) -> GT new_esEs33(xwv126, xwv128, ty_@0) -> new_esEs14(xwv126, xwv128) new_esEs4(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_compare0(:(xwv400, xwv401), :(xwv300, xwv301), dec) -> new_primCompAux0(xwv400, xwv300, new_compare0(xwv401, xwv301, dec), dec) new_esEs17(Just(xwv280), Just(xwv330), ty_@0) -> new_esEs14(xwv280, xwv330) new_ltEs5(Right(xwv610), Right(xwv620), bbg, app(app(ty_@2, bce), bcf)) -> new_ltEs15(xwv610, xwv620, bce, bcf) new_ltEs5(Left(xwv610), Left(xwv620), ty_Float, bad) -> new_ltEs12(xwv610, xwv620) new_ltEs13(True, False) -> False new_esEs27(xwv281, xwv331, app(app(ty_@2, fca), fcb)) -> new_esEs25(xwv281, xwv331, fca, fcb) new_lt17(xwv18, xwv13, egc) -> new_esEs28(new_compare16(xwv18, xwv13, egc)) new_esEs36(xwv280, xwv330, app(ty_Maybe, ecd)) -> new_esEs17(xwv280, xwv330, ecd) new_lt21(xwv126, xwv128, ty_Float) -> new_lt12(xwv126, xwv128) new_esEs29(xwv610, xwv620, ty_Int) -> new_esEs15(xwv610, xwv620) new_esEs37(xwv281, xwv331, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs23(xwv281, xwv331, edh, eea, eeb) new_esEs17(Just(xwv280), Just(xwv330), app(app(ty_Either, fhb), fhc)) -> new_esEs12(xwv280, xwv330, fhb, fhc) new_primCompAux0(xwv400, xwv300, xwv56, dec) -> new_primCompAux00(xwv56, new_compare33(xwv400, xwv300, dec)) new_esEs20(True, True) -> True new_compare19(Nothing, Nothing, cgc) -> EQ new_ltEs8(Just(xwv610), Just(xwv620), ty_Float) -> new_ltEs12(xwv610, xwv620) new_primCmpNat0(Succ(xwv4000), Succ(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) new_compare16(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Int) -> new_compare30(new_sr(xwv400, xwv301), new_sr(xwv300, xwv401)) new_compare12(Float(xwv400, Pos(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_compare12(Float(xwv400, Neg(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_esEs22([], [], ceg) -> True new_delFromFM10(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, egh, eha) -> new_mkBalBranch(xwv28, xwv29, new_delFromFM0(xwv31, xwv33, egh, eha), xwv32, egh, eha) new_lt21(xwv126, xwv128, ty_Integer) -> new_lt7(xwv126, xwv128) new_esEs31(xwv77, xwv80, app(app(ty_Either, dba), dbb)) -> new_esEs12(xwv77, xwv80, dba, dbb) new_ltEs23(xwv127, xwv129, app(ty_[], fga)) -> new_ltEs9(xwv127, xwv129, fga) new_lt19(xwv77, xwv80, ty_Char) -> new_lt6(xwv77, xwv80) new_ltEs12(xwv61, xwv62) -> new_fsEs(new_compare12(xwv61, xwv62)) new_esEs35(xwv611, xwv621, app(ty_Maybe, dgf)) -> new_esEs17(xwv611, xwv621, dgf) new_esEs10(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_lt5(xwv610, xwv620, ty_Float) -> new_lt12(xwv610, xwv620) new_delFromFM00(xwv48, xwv49, xwv50, Branch(xwv510, xwv511, xwv512, xwv513, xwv514), Branch(xwv520, xwv521, xwv522, xwv523, xwv524), xwv53, True, fcc, fcd) -> new_glueBal2GlueBal1(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, new_gt0(new_sizeFM(Branch(xwv520, xwv521, xwv522, xwv523, xwv524), fcc, fcd), new_sizeFM(Branch(xwv510, xwv511, xwv512, xwv513, xwv514), fcc, fcd)), fcc, fcd) new_primMinusNat0(Zero, Succ(xwv13700)) -> Neg(Succ(xwv13700)) new_lt9(xwv18, xwv13, cgb) -> new_esEs28(new_compare0(xwv18, xwv13, cgb)) new_esEs29(xwv610, xwv620, app(app(ty_@2, bec), bed)) -> new_esEs25(xwv610, xwv620, bec, bed) new_ltEs24(xwv612, xwv622, app(ty_[], eaa)) -> new_ltEs9(xwv612, xwv622, eaa) new_ltEs5(Left(xwv610), Left(xwv620), app(ty_Ratio, bbd), bad) -> new_ltEs16(xwv610, xwv620, bbd) new_lt20(xwv78, xwv81, ty_Char) -> new_lt6(xwv78, xwv81) new_esEs29(xwv610, xwv620, app(ty_Ratio, bee)) -> new_esEs16(xwv610, xwv620, bee) new_lt22(xwv611, xwv621, ty_Integer) -> new_lt7(xwv611, xwv621) new_lt21(xwv126, xwv128, app(app(ty_Either, fff), ffg)) -> new_lt18(xwv126, xwv128, fff, ffg) new_esEs5(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_esEs38(xwv282, xwv332, ty_Integer) -> new_esEs19(xwv282, xwv332) new_compare14(xwv157, xwv158, False, dea, deb) -> GT new_esEs12(Left(xwv280), Left(xwv330), ty_Int, fg) -> new_esEs15(xwv280, xwv330) new_compare33(xwv400, xwv300, app(app(ty_Either, gea), geb)) -> new_compare32(xwv400, xwv300, gea, geb) new_compare33(xwv400, xwv300, app(ty_[], gdb)) -> new_compare0(xwv400, xwv300, gdb) new_lt22(xwv611, xwv621, app(ty_Maybe, dgf)) -> new_lt8(xwv611, xwv621, dgf) new_compare28(xwv99, xwv100, True, cae, caf) -> EQ new_esEs36(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_lt20(xwv78, xwv81, ty_Float) -> new_lt12(xwv78, xwv81) new_esEs17(Just(xwv280), Just(xwv330), ty_Bool) -> new_esEs20(xwv280, xwv330) new_esEs30(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs32(xwv78, xwv81, ty_Char) -> new_esEs13(xwv78, xwv81) new_esEs36(xwv280, xwv330, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs23(xwv280, xwv330, ecf, ecg, ech) new_esEs24(LT, EQ) -> False new_esEs24(EQ, LT) -> False new_esEs32(xwv78, xwv81, app(app(ty_Either, dcc), dcd)) -> new_esEs12(xwv78, xwv81, dcc, dcd) new_lt8(xwv18, xwv13, efh) -> new_esEs28(new_compare19(xwv18, xwv13, efh)) new_esEs10(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv300)) -> LT new_esEs35(xwv611, xwv621, app(ty_[], dgg)) -> new_esEs22(xwv611, xwv621, dgg) new_esEs4(xwv400, xwv300, app(ty_Maybe, cgg)) -> new_esEs17(xwv400, xwv300, cgg) new_compare9(EQ, LT) -> GT new_lt24(xwv18, xwv13, app(ty_Ratio, egc)) -> new_lt17(xwv18, xwv13, egc) new_compare9(GT, LT) -> GT new_esEs31(xwv77, xwv80, ty_Char) -> new_esEs13(xwv77, xwv80) new_esEs33(xwv126, xwv128, ty_Bool) -> new_esEs20(xwv126, xwv128) new_esEs5(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_lt5(xwv610, xwv620, ty_Char) -> new_lt6(xwv610, xwv620) new_esEs27(xwv281, xwv331, app(app(ty_Either, fba), fbb)) -> new_esEs12(xwv281, xwv331, fba, fbb) new_esEs12(Left(xwv280), Left(xwv330), ty_Double, fg) -> new_esEs21(xwv280, xwv330) new_compare33(xwv400, xwv300, ty_@0) -> new_compare7(xwv400, xwv300) new_esEs7(xwv402, xwv302, ty_Ordering) -> new_esEs24(xwv402, xwv302) new_ltEs18(xwv611, xwv621, ty_Float) -> new_ltEs12(xwv611, xwv621) new_compare14(xwv157, xwv158, True, dea, deb) -> LT new_primCmpInt(Pos(Zero), Neg(Succ(xwv3000))) -> GT new_mkBalBranch6MkBalBranch4(xwv16, xwv13, xwv14, Branch(xwv350, xwv351, xwv352, xwv353, xwv354), True, bdb, bdc) -> new_mkBalBranch6MkBalBranch01(xwv16, xwv13, xwv14, xwv350, xwv351, xwv352, xwv353, xwv354, new_lt15(new_sizeFM(xwv353, bdb, bdc), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xwv354, bdb, bdc))), bdb, bdc) new_esEs35(xwv611, xwv621, ty_Double) -> new_esEs21(xwv611, xwv621) new_esEs33(xwv126, xwv128, ty_Float) -> new_esEs18(xwv126, xwv128) new_lt20(xwv78, xwv81, ty_@0) -> new_lt13(xwv78, xwv81) new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv300)) -> new_primCmpNat0(xwv300, Succ(xwv4000)) new_compare26(xwv106, xwv107, False, bgb, bgc) -> new_compare13(xwv106, xwv107, new_ltEs19(xwv106, xwv107, bgc), bgb, bgc) new_ltEs21(xwv99, xwv100, ty_Char) -> new_ltEs6(xwv99, xwv100) new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, True, fcg, fch, fda) -> LT new_ltEs11(GT, EQ) -> False new_lt5(xwv610, xwv620, app(app(app(ty_@3, bdh), bea), beb)) -> new_lt10(xwv610, xwv620, bdh, bea, beb) new_esEs12(Left(xwv280), Left(xwv330), app(app(ty_@2, gf), gg), fg) -> new_esEs25(xwv280, xwv330, gf, gg) new_ltEs22(xwv79, xwv82, ty_Integer) -> new_ltEs7(xwv79, xwv82) new_ltEs4(xwv61, xwv62) -> new_fsEs(new_compare7(xwv61, xwv62)) new_esEs41(EQ) -> False new_esEs24(EQ, EQ) -> True new_esEs8(xwv400, xwv300, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs23(xwv400, xwv300, cch, cda, cdb) new_esEs9(xwv401, xwv301, ty_@0) -> new_esEs14(xwv401, xwv301) new_ltEs8(Just(xwv610), Just(xwv620), ty_Char) -> new_ltEs6(xwv610, xwv620) new_esEs21(Double(xwv280, xwv281), Double(xwv330, xwv331)) -> new_esEs15(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) new_esEs6(xwv401, xwv301, app(app(ty_Either, cg), da)) -> new_esEs12(xwv401, xwv301, cg, da) new_primEqInt(Pos(Succ(xwv2800)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xwv3300))) -> False new_compare110(xwv194, xwv195, xwv196, xwv197, False, xwv199, ehe, ehf) -> new_compare111(xwv194, xwv195, xwv196, xwv197, xwv199, ehe, ehf) new_esEs10(xwv400, xwv300, app(ty_[], gah)) -> new_esEs22(xwv400, xwv300, gah) new_esEs42(xwv28, xwv33, ty_@0) -> new_esEs14(xwv28, xwv33) new_ltEs13(True, True) -> True new_esEs36(xwv280, xwv330, ty_Char) -> new_esEs13(xwv280, xwv330) new_gt(xwv40, xwv30, ty_Ordering) -> new_esEs41(new_compare9(xwv40, xwv30)) new_ltEs22(xwv79, xwv82, ty_Ordering) -> new_ltEs11(xwv79, xwv82) new_esEs11(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_esEs24(GT, GT) -> True new_ltEs24(xwv612, xwv622, ty_Double) -> new_ltEs17(xwv612, xwv622) new_ltEs5(Left(xwv610), Left(xwv620), app(app(ty_@2, bbb), bbc), bad) -> new_ltEs15(xwv610, xwv620, bbb, bbc) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs23(xwv127, xwv129, app(app(app(ty_@3, fgb), fgc), fgd)) -> new_ltEs10(xwv127, xwv129, fgb, fgc, fgd) new_esEs9(xwv401, xwv301, app(ty_Maybe, cdh)) -> new_esEs17(xwv401, xwv301, cdh) new_lt20(xwv78, xwv81, ty_Bool) -> new_lt14(xwv78, xwv81) new_lt18(xwv18, xwv13, egd, ege) -> new_esEs28(new_compare32(xwv18, xwv13, egd, ege)) new_esEs11(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_compare27(xwv61, xwv62, False, bhf) -> new_compare10(xwv61, xwv62, new_ltEs20(xwv61, xwv62, bhf), bhf) new_compare27(xwv61, xwv62, True, bhf) -> EQ new_ltEs19(xwv106, xwv107, ty_Double) -> new_ltEs17(xwv106, xwv107) new_esEs8(xwv400, xwv300, app(ty_Ratio, cce)) -> new_esEs16(xwv400, xwv300, cce) new_esEs38(xwv282, xwv332, ty_Float) -> new_esEs18(xwv282, xwv332) new_esEs40(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_compare9(GT, EQ) -> GT new_esEs17(Just(xwv280), Just(xwv330), ty_Float) -> new_esEs18(xwv280, xwv330) new_esEs26(xwv280, xwv330, app(app(ty_@2, fag), fah)) -> new_esEs25(xwv280, xwv330, fag, fah) new_esEs30(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_ltEs20(xwv61, xwv62, app(ty_Maybe, bhg)) -> new_ltEs8(xwv61, xwv62, bhg) new_ltEs19(xwv106, xwv107, ty_Char) -> new_ltEs6(xwv106, xwv107) new_lt23(xwv610, xwv620, app(app(app(ty_@3, dff), dfg), dfh)) -> new_lt10(xwv610, xwv620, dff, dfg, dfh) new_gt0(xwv40, xwv30) -> new_esEs41(new_compare30(xwv40, xwv30)) new_ltEs18(xwv611, xwv621, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs10(xwv611, xwv621, bfb, bfc, bfd) new_esEs4(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_ltEs19(xwv106, xwv107, ty_@0) -> new_ltEs4(xwv106, xwv107) new_primCompAux00(xwv67, GT) -> GT new_primMinusNat0(Succ(xwv16200), Zero) -> Pos(Succ(xwv16200)) new_esEs12(Left(xwv280), Left(xwv330), ty_Integer, fg) -> new_esEs19(xwv280, xwv330) new_lt20(xwv78, xwv81, app(ty_[], dbd)) -> new_lt9(xwv78, xwv81, dbd) new_compare8(Double(xwv400, Neg(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_esEs10(xwv400, xwv300, app(ty_Maybe, gag)) -> new_esEs17(xwv400, xwv300, gag) new_fsEs(xwv205) -> new_not(new_esEs24(xwv205, GT)) new_esEs20(False, True) -> False new_esEs20(True, False) -> False new_esEs9(xwv401, xwv301, ty_Double) -> new_esEs21(xwv401, xwv301) new_lt23(xwv610, xwv620, ty_Float) -> new_lt12(xwv610, xwv620) new_esEs32(xwv78, xwv81, ty_@0) -> new_esEs14(xwv78, xwv81) new_mkBalBranch6MkBalBranch01(xwv16, xwv13, xwv14, xwv350, xwv351, xwv352, xwv353, xwv354, True, bdb, bdc) -> new_mkBranchResult(xwv350, xwv351, new_mkBranchResult(xwv13, xwv14, xwv16, xwv353, bdb, bdc), xwv354, bdb, bdc) new_esEs33(xwv126, xwv128, ty_Int) -> new_esEs15(xwv126, xwv128) new_esEs26(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_ltEs24(xwv612, xwv622, ty_@0) -> new_ltEs4(xwv612, xwv622) new_esEs38(xwv282, xwv332, ty_Ordering) -> new_esEs24(xwv282, xwv332) new_esEs37(xwv281, xwv331, ty_@0) -> new_esEs14(xwv281, xwv331) new_ltEs11(GT, LT) -> False new_lt20(xwv78, xwv81, app(ty_Maybe, dbc)) -> new_lt8(xwv78, xwv81, dbc) new_compare16(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Integer) -> new_compare11(new_sr0(xwv400, xwv301), new_sr0(xwv300, xwv401)) new_esEs29(xwv610, xwv620, ty_Char) -> new_esEs13(xwv610, xwv620) new_ltEs19(xwv106, xwv107, ty_Bool) -> new_ltEs13(xwv106, xwv107) new_esEs35(xwv611, xwv621, ty_Integer) -> new_esEs19(xwv611, xwv621) new_ltEs5(Right(xwv610), Right(xwv620), bbg, ty_Integer) -> new_ltEs7(xwv610, xwv620) new_esEs7(xwv402, xwv302, app(ty_[], ef)) -> new_esEs22(xwv402, xwv302, ef) new_esEs26(xwv280, xwv330, ty_Float) -> new_esEs18(xwv280, xwv330) new_ltEs11(LT, LT) -> True new_compare15(@2(xwv400, xwv401), @2(xwv300, xwv301), cca, ccb) -> new_compare29(xwv400, xwv401, xwv300, xwv301, new_asAs(new_esEs8(xwv400, xwv300, cca), new_esEs9(xwv401, xwv301, ccb)), cca, ccb) new_esEs24(LT, LT) -> True new_esEs5(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_esEs17(Just(xwv280), Just(xwv330), ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs33(xwv126, xwv128, ty_Ordering) -> new_esEs24(xwv126, xwv128) new_esEs12(Left(xwv280), Left(xwv330), ty_@0, fg) -> new_esEs14(xwv280, xwv330) new_primCmpNat0(Succ(xwv4000), Zero) -> GT new_pePe(False, xwv210) -> xwv210 new_esEs27(xwv281, xwv331, ty_@0) -> new_esEs14(xwv281, xwv331) new_esEs7(xwv402, xwv302, ty_Double) -> new_esEs21(xwv402, xwv302) new_esEs9(xwv401, xwv301, ty_Integer) -> new_esEs19(xwv401, xwv301) new_esEs20(False, False) -> True new_lt22(xwv611, xwv621, ty_Ordering) -> new_lt11(xwv611, xwv621) new_mkBalBranch6MkBalBranch4(xwv16, xwv13, xwv14, xwv35, False, bdb, bdc) -> new_mkBalBranch6MkBalBranch3(xwv16, xwv13, xwv14, xwv35, new_gt0(new_mkBalBranch6Size_l(xwv16, xwv13, xwv14, xwv35, bdb, bdc), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xwv16, xwv13, xwv14, xwv35, bdb, bdc))), bdb, bdc) new_lt22(xwv611, xwv621, ty_Int) -> new_lt15(xwv611, xwv621) new_lt13(xwv18, xwv13) -> new_esEs28(new_compare7(xwv18, xwv13)) new_lt7(xwv18, xwv13) -> new_esEs28(new_compare11(xwv18, xwv13)) new_glueBal2GlueBal1(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, True, fcc, fcd) -> new_mkBalBranch(new_glueBal2Mid_key200(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, xwv520, xwv521, xwv522, xwv523, xwv524, fcc, fcd), new_glueBal2Mid_elt200(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, xwv520, xwv521, xwv522, xwv523, xwv524, fcd, fcc), Branch(xwv510, xwv511, xwv512, xwv513, xwv514), new_deleteMin0(xwv520, xwv521, xwv522, xwv523, xwv524, fcc, fcd), fcc, fcd) new_esEs42(xwv28, xwv33, app(ty_[], ceg)) -> new_esEs22(xwv28, xwv33, ceg) new_ltEs21(xwv99, xwv100, ty_Double) -> new_ltEs17(xwv99, xwv100) new_primMinusNat0(Succ(xwv16200), Succ(xwv13700)) -> new_primMinusNat0(xwv16200, xwv13700) new_esEs11(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_lt23(xwv610, xwv620, ty_Bool) -> new_lt14(xwv610, xwv620) new_lt20(xwv78, xwv81, ty_Int) -> new_lt15(xwv78, xwv81) new_esEs32(xwv78, xwv81, app(ty_Maybe, dbc)) -> new_esEs17(xwv78, xwv81, dbc) new_compare110(xwv194, xwv195, xwv196, xwv197, True, xwv199, ehe, ehf) -> new_compare111(xwv194, xwv195, xwv196, xwv197, True, ehe, ehf) new_compare10(xwv147, xwv148, False, bac) -> GT new_esEs17(Just(xwv280), Just(xwv330), ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs5(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_primEqInt(Pos(Zero), Neg(Succ(xwv3300))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xwv3300))) -> False new_ltEs18(xwv611, xwv621, app(ty_[], bfa)) -> new_ltEs9(xwv611, xwv621, bfa) new_esEs26(xwv280, xwv330, ty_Bool) -> new_esEs20(xwv280, xwv330) new_mkBalBranch(xwv13, xwv14, xwv16, xwv35, bdb, bdc) -> new_mkBalBranch6MkBalBranch5(xwv16, xwv13, xwv14, xwv35, new_lt15(new_primPlusInt(new_mkBalBranch6Size_l(xwv16, xwv13, xwv14, xwv35, bdb, bdc), new_mkBalBranch6Size_r(xwv16, xwv13, xwv14, xwv35, bdb, bdc)), Pos(Succ(Succ(Zero)))), bdb, bdc) new_ltEs21(xwv99, xwv100, app(app(ty_@2, cbd), cbe)) -> new_ltEs15(xwv99, xwv100, cbd, cbe) new_ltEs23(xwv127, xwv129, ty_Float) -> new_ltEs12(xwv127, xwv129) new_esEs12(Left(xwv280), Left(xwv330), app(ty_Ratio, fh), fg) -> new_esEs16(xwv280, xwv330, fh) new_esEs36(xwv280, xwv330, app(ty_Ratio, ecc)) -> new_esEs16(xwv280, xwv330, ecc) new_mkBalBranch6Size_r(xwv16, xwv13, xwv14, xwv35, bdb, bdc) -> new_sizeFM(xwv35, bdb, bdc) new_esEs7(xwv402, xwv302, app(ty_Maybe, ee)) -> new_esEs17(xwv402, xwv302, ee) new_ltEs8(Just(xwv610), Just(xwv620), ty_Bool) -> new_ltEs13(xwv610, xwv620) new_lt21(xwv126, xwv128, app(ty_Ratio, ffe)) -> new_lt17(xwv126, xwv128, ffe) new_esEs7(xwv402, xwv302, ty_Integer) -> new_esEs19(xwv402, xwv302) new_lt6(xwv18, xwv13) -> new_esEs28(new_compare6(xwv18, xwv13)) new_esEs36(xwv280, xwv330, app(app(ty_@2, eda), edb)) -> new_esEs25(xwv280, xwv330, eda, edb) new_esEs36(xwv280, xwv330, ty_Float) -> new_esEs18(xwv280, xwv330) new_esEs38(xwv282, xwv332, app(ty_[], efa)) -> new_esEs22(xwv282, xwv332, efa) new_esEs42(xwv28, xwv33, ty_Integer) -> new_esEs19(xwv28, xwv33) new_esEs5(xwv400, xwv300, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs23(xwv400, xwv300, cb, cc, cd) new_ltEs8(Just(xwv610), Just(xwv620), ty_@0) -> new_ltEs4(xwv610, xwv620) new_esEs6(xwv401, xwv301, ty_@0) -> new_esEs14(xwv401, xwv301) new_esEs17(Just(xwv280), Just(xwv330), app(app(ty_@2, gab), gac)) -> new_esEs25(xwv280, xwv330, gab, gac) new_ltEs5(Right(xwv610), Right(xwv620), bbg, app(ty_Ratio, bcg)) -> new_ltEs16(xwv610, xwv620, bcg) new_esEs33(xwv126, xwv128, app(app(ty_@2, ffc), ffd)) -> new_esEs25(xwv126, xwv128, ffc, ffd) new_esEs32(xwv78, xwv81, ty_Double) -> new_esEs21(xwv78, xwv81) new_glueBal2Mid_key100(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv306, xwv307, xwv308, xwv309, Branch(xwv3100, xwv3101, xwv3102, xwv3103, xwv3104), ddg, ddh) -> new_glueBal2Mid_key100(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv3100, xwv3101, xwv3102, xwv3103, xwv3104, ddg, ddh) new_lt21(xwv126, xwv128, app(app(app(ty_@3, feh), ffa), ffb)) -> new_lt10(xwv126, xwv128, feh, ffa, ffb) new_ltEs23(xwv127, xwv129, app(app(ty_@2, fge), fgf)) -> new_ltEs15(xwv127, xwv129, fge, fgf) new_ltEs14(xwv61, xwv62) -> new_fsEs(new_compare30(xwv61, xwv62)) new_esEs36(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_esEs34(xwv610, xwv620, app(ty_Ratio, dgc)) -> new_esEs16(xwv610, xwv620, dgc) new_ltEs5(Left(xwv610), Left(xwv620), ty_Ordering, bad) -> new_ltEs11(xwv610, xwv620) new_delFromFM0(EmptyFM, xwv40, h, ba) -> EmptyFM new_esEs38(xwv282, xwv332, ty_Bool) -> new_esEs20(xwv282, xwv332) new_esEs32(xwv78, xwv81, ty_Integer) -> new_esEs19(xwv78, xwv81) new_esEs30(xwv280, xwv330, app(ty_[], cfd)) -> new_esEs22(xwv280, xwv330, cfd) new_compare33(xwv400, xwv300, ty_Int) -> new_compare30(xwv400, xwv300) new_esEs4(xwv400, xwv300, app(ty_[], cgh)) -> new_esEs22(xwv400, xwv300, cgh) new_esEs42(xwv28, xwv33, app(ty_Maybe, ehb)) -> new_esEs17(xwv28, xwv33, ehb) new_ltEs20(xwv61, xwv62, ty_Float) -> new_ltEs12(xwv61, xwv62) new_esEs11(xwv400, xwv300, app(app(ty_@2, gcg), gch)) -> new_esEs25(xwv400, xwv300, gcg, gch) new_esEs30(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs17(Just(xwv280), Just(xwv330), ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs30(xwv280, xwv330, ty_Double) -> new_esEs21(xwv280, xwv330) new_lt12(xwv18, xwv13) -> new_esEs28(new_compare12(xwv18, xwv13)) new_esEs30(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) new_esEs33(xwv126, xwv128, ty_Integer) -> new_esEs19(xwv126, xwv128) new_lt23(xwv610, xwv620, ty_@0) -> new_lt13(xwv610, xwv620) new_esEs29(xwv610, xwv620, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs23(xwv610, xwv620, bdh, bea, beb) new_compare32(Right(xwv400), Left(xwv300), dee, def) -> GT new_compare31(True, True) -> EQ new_esEs4(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_esEs22(:(xwv280, xwv281), [], ceg) -> False new_esEs22([], :(xwv330, xwv331), ceg) -> False new_esEs10(xwv400, xwv300, ty_Integer) -> new_esEs19(xwv400, xwv300) new_esEs12(Right(xwv280), Right(xwv330), gh, app(ty_[], he)) -> new_esEs22(xwv280, xwv330, he) new_mkBalBranch6MkBalBranch11(xwv160, xwv161, xwv162, xwv163, xwv164, xwv13, xwv14, xwv35, True, bdb, bdc) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xwv160, xwv161, xwv163, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xwv13, xwv14, xwv164, xwv35, bdb, bdc) new_ltEs8(Just(xwv610), Just(xwv620), ty_Int) -> new_ltEs14(xwv610, xwv620) new_esEs11(xwv400, xwv300, app(ty_Ratio, gbh)) -> new_esEs16(xwv400, xwv300, gbh) new_esEs37(xwv281, xwv331, app(app(ty_Either, edc), edd)) -> new_esEs12(xwv281, xwv331, edc, edd) new_ltEs18(xwv611, xwv621, app(ty_Maybe, beh)) -> new_ltEs8(xwv611, xwv621, beh) new_lt20(xwv78, xwv81, ty_Ordering) -> new_lt11(xwv78, xwv81) new_compare12(Float(xwv400, Neg(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_delFromFM00(xwv48, xwv49, xwv50, EmptyFM, xwv52, xwv53, True, fcc, fcd) -> xwv52 new_lt19(xwv77, xwv80, app(ty_Ratio, dah)) -> new_lt17(xwv77, xwv80, dah) new_esEs31(xwv77, xwv80, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs23(xwv77, xwv80, dac, dad, dae) new_primMulInt(Neg(xwv3000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) new_primCmpInt(Pos(Zero), Pos(Succ(xwv3000))) -> new_primCmpNat0(Zero, Succ(xwv3000)) new_esEs6(xwv401, xwv301, app(ty_Maybe, dc)) -> new_esEs17(xwv401, xwv301, dc) new_esEs30(xwv280, xwv330, app(ty_Maybe, cfc)) -> new_esEs17(xwv280, xwv330, cfc) new_esEs12(Left(xwv280), Left(xwv330), ty_Ordering, fg) -> new_esEs24(xwv280, xwv330) new_lt19(xwv77, xwv80, app(app(app(ty_@3, dac), dad), dae)) -> new_lt10(xwv77, xwv80, dac, dad, dae) new_esEs42(xwv28, xwv33, ty_Double) -> new_esEs21(xwv28, xwv33) new_mkBalBranch6MkBalBranch11(xwv160, xwv161, xwv162, xwv163, Branch(xwv1640, xwv1641, xwv1642, xwv1643, xwv1644), xwv13, xwv14, xwv35, False, bdb, bdc) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xwv1640, xwv1641, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xwv160, xwv161, xwv163, xwv1643, bdb, bdc), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xwv13, xwv14, xwv1644, xwv35, bdb, bdc) new_esEs35(xwv611, xwv621, ty_Float) -> new_esEs18(xwv611, xwv621) new_esEs26(xwv280, xwv330, ty_Char) -> new_esEs13(xwv280, xwv330) new_ltEs24(xwv612, xwv622, ty_Integer) -> new_ltEs7(xwv612, xwv622) new_esEs42(xwv28, xwv33, ty_Ordering) -> new_esEs24(xwv28, xwv33) new_esEs7(xwv402, xwv302, ty_@0) -> new_esEs14(xwv402, xwv302) new_ltEs19(xwv106, xwv107, app(app(ty_Either, bhd), bhe)) -> new_ltEs5(xwv106, xwv107, bhd, bhe) new_esEs8(xwv400, xwv300, app(app(ty_Either, ccc), ccd)) -> new_esEs12(xwv400, xwv300, ccc, ccd) new_ltEs5(Right(xwv610), Right(xwv620), bbg, ty_Bool) -> new_ltEs13(xwv610, xwv620) new_lt20(xwv78, xwv81, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_lt10(xwv78, xwv81, dbe, dbf, dbg) new_primMulInt(Pos(xwv3000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) new_primMulInt(Neg(xwv3000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) new_esEs33(xwv126, xwv128, ty_Double) -> new_esEs21(xwv126, xwv128) new_esEs9(xwv401, xwv301, ty_Ordering) -> new_esEs24(xwv401, xwv301) new_ltEs22(xwv79, xwv82, ty_@0) -> new_ltEs4(xwv79, xwv82) new_compare33(xwv400, xwv300, app(ty_Ratio, gdh)) -> new_compare16(xwv400, xwv300, gdh) new_esEs8(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_ltEs18(xwv611, xwv621, ty_Integer) -> new_ltEs7(xwv611, xwv621) new_lt23(xwv610, xwv620, ty_Ordering) -> new_lt11(xwv610, xwv620) new_sr0(Integer(xwv3000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv3000, xwv4010)) new_ltEs10(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), caa, cab, cac) -> new_pePe(new_lt23(xwv610, xwv620, caa), new_asAs(new_esEs34(xwv610, xwv620, caa), new_pePe(new_lt22(xwv611, xwv621, cab), new_asAs(new_esEs35(xwv611, xwv621, cab), new_ltEs24(xwv612, xwv622, cac))))) new_compare8(Double(xwv400, Pos(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare30(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) new_compare8(Double(xwv400, Neg(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare30(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) new_lt22(xwv611, xwv621, app(ty_Ratio, dhe)) -> new_lt17(xwv611, xwv621, dhe) new_ltEs20(xwv61, xwv62, ty_Ordering) -> new_ltEs11(xwv61, xwv62) new_esEs12(Left(xwv280), Left(xwv330), ty_Float, fg) -> new_esEs18(xwv280, xwv330) new_esEs10(xwv400, xwv300, ty_Float) -> new_esEs18(xwv400, xwv300) new_lt23(xwv610, xwv620, ty_Int) -> new_lt15(xwv610, xwv620) new_ltEs22(xwv79, xwv82, ty_Double) -> new_ltEs17(xwv79, xwv82) new_esEs6(xwv401, xwv301, ty_Char) -> new_esEs13(xwv401, xwv301) new_ltEs19(xwv106, xwv107, app(app(ty_@2, bha), bhb)) -> new_ltEs15(xwv106, xwv107, bha, bhb) new_asAs(True, xwv135) -> xwv135 new_esEs7(xwv402, xwv302, ty_Int) -> new_esEs15(xwv402, xwv302) new_esEs27(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_esEs4(xwv400, xwv300, ty_Bool) -> new_esEs20(xwv400, xwv300) new_esEs39(xwv280, xwv330, ty_Int) -> new_esEs15(xwv280, xwv330) new_ltEs22(xwv79, xwv82, ty_Float) -> new_ltEs12(xwv79, xwv82) new_esEs26(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) new_esEs37(xwv281, xwv331, ty_Double) -> new_esEs21(xwv281, xwv331) new_ltEs23(xwv127, xwv129, ty_Char) -> new_ltEs6(xwv127, xwv129) new_lt21(xwv126, xwv128, app(ty_[], feg)) -> new_lt9(xwv126, xwv128, feg) new_ltEs20(xwv61, xwv62, app(app(ty_Either, bbg), bad)) -> new_ltEs5(xwv61, xwv62, bbg, bad) new_ltEs20(xwv61, xwv62, app(app(ty_@2, bdd), bde)) -> new_ltEs15(xwv61, xwv62, bdd, bde) new_primPlusInt(Pos(xwv1620), Neg(xwv1370)) -> new_primMinusNat0(xwv1620, xwv1370) new_primPlusInt(Neg(xwv1620), Pos(xwv1370)) -> new_primMinusNat0(xwv1370, xwv1620) new_ltEs22(xwv79, xwv82, app(ty_Maybe, dce)) -> new_ltEs8(xwv79, xwv82, dce) new_esEs31(xwv77, xwv80, ty_Float) -> new_esEs18(xwv77, xwv80) new_ltEs24(xwv612, xwv622, ty_Int) -> new_ltEs14(xwv612, xwv622) new_esEs12(Right(xwv280), Right(xwv330), gh, app(app(ty_Either, ha), hb)) -> new_esEs12(xwv280, xwv330, ha, hb) new_esEs33(xwv126, xwv128, app(ty_[], feg)) -> new_esEs22(xwv126, xwv128, feg) new_esEs40(xwv281, xwv331, ty_Int) -> new_esEs15(xwv281, xwv331) new_ltEs5(Right(xwv610), Right(xwv620), bbg, app(app(ty_Either, bch), bda)) -> new_ltEs5(xwv610, xwv620, bch, bda) new_ltEs5(Right(xwv610), Right(xwv620), bbg, ty_@0) -> new_ltEs4(xwv610, xwv620) new_compare0([], [], dec) -> EQ new_ltEs18(xwv611, xwv621, ty_Int) -> new_ltEs14(xwv611, xwv621) new_sr(xwv300, xwv401) -> new_primMulInt(xwv300, xwv401) new_ltEs18(xwv611, xwv621, ty_Ordering) -> new_ltEs11(xwv611, xwv621) new_compare32(Left(xwv400), Left(xwv300), dee, def) -> new_compare28(xwv400, xwv300, new_esEs10(xwv400, xwv300, dee), dee, def) new_mkBalBranch6MkBalBranch01(xwv16, xwv13, xwv14, xwv350, xwv351, xwv352, Branch(xwv3530, xwv3531, xwv3532, xwv3533, xwv3534), xwv354, False, bdb, bdc) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xwv3530, xwv3531, new_mkBranchResult(xwv13, xwv14, xwv16, xwv3533, bdb, bdc), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xwv350, xwv351, xwv3534, xwv354, bdb, bdc) new_primMulNat0(Zero, Zero) -> Zero new_esEs38(xwv282, xwv332, ty_Double) -> new_esEs21(xwv282, xwv332) new_esEs7(xwv402, xwv302, app(app(ty_@2, fb), fc)) -> new_esEs25(xwv402, xwv302, fb, fc) new_ltEs22(xwv79, xwv82, app(ty_Ratio, ddd)) -> new_ltEs16(xwv79, xwv82, ddd) new_gt(xwv40, xwv30, ty_Char) -> new_esEs41(new_compare6(xwv40, xwv30)) new_ltEs20(xwv61, xwv62, ty_Integer) -> new_ltEs7(xwv61, xwv62) new_ltEs5(Right(xwv610), Right(xwv620), bbg, ty_Double) -> new_ltEs17(xwv610, xwv620) new_lt23(xwv610, xwv620, ty_Double) -> new_lt4(xwv610, xwv620) new_ltEs24(xwv612, xwv622, ty_Ordering) -> new_ltEs11(xwv612, xwv622) new_esEs12(Left(xwv280), Right(xwv330), gh, fg) -> False new_esEs12(Right(xwv280), Left(xwv330), gh, fg) -> False new_compare17(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, True, xwv186, fcg, fch, fda) -> new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, True, fcg, fch, fda) new_esEs4(xwv400, xwv300, app(app(ty_Either, cgd), cge)) -> new_esEs12(xwv400, xwv300, cgd, cge) new_compare9(LT, LT) -> EQ new_lt5(xwv610, xwv620, app(ty_[], bdg)) -> new_lt9(xwv610, xwv620, bdg) new_esEs8(xwv400, xwv300, app(app(ty_@2, cdc), cdd)) -> new_esEs25(xwv400, xwv300, cdc, cdd) new_lt24(xwv18, xwv13, ty_Double) -> new_lt4(xwv18, xwv13) new_esEs24(EQ, GT) -> False new_esEs24(GT, EQ) -> False new_ltEs24(xwv612, xwv622, app(app(ty_Either, eah), eba)) -> new_ltEs5(xwv612, xwv622, eah, eba) new_esEs37(xwv281, xwv331, app(ty_[], edg)) -> new_esEs22(xwv281, xwv331, edg) new_ltEs21(xwv99, xwv100, app(ty_Maybe, cag)) -> new_ltEs8(xwv99, xwv100, cag) new_esEs32(xwv78, xwv81, app(ty_[], dbd)) -> new_esEs22(xwv78, xwv81, dbd) new_esEs27(xwv281, xwv331, app(ty_Maybe, fbd)) -> new_esEs17(xwv281, xwv331, fbd) new_compare33(xwv400, xwv300, ty_Integer) -> new_compare11(xwv400, xwv300) new_primEqInt(Neg(Succ(xwv2800)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xwv3300))) -> False new_ltEs8(Nothing, Just(xwv620), bhg) -> True new_primEqInt(Pos(Succ(xwv2800)), Pos(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) new_ltEs18(xwv611, xwv621, ty_Char) -> new_ltEs6(xwv611, xwv621) new_ltEs24(xwv612, xwv622, ty_Char) -> new_ltEs6(xwv612, xwv622) new_esEs37(xwv281, xwv331, app(ty_Ratio, ede)) -> new_esEs16(xwv281, xwv331, ede) new_ltEs23(xwv127, xwv129, ty_Int) -> new_ltEs14(xwv127, xwv129) new_esEs8(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_esEs27(xwv281, xwv331, app(app(app(ty_@3, fbf), fbg), fbh)) -> new_esEs23(xwv281, xwv331, fbf, fbg, fbh) new_ltEs18(xwv611, xwv621, app(app(ty_@2, bfe), bff)) -> new_ltEs15(xwv611, xwv621, bfe, bff) new_lt19(xwv77, xwv80, app(ty_[], dab)) -> new_lt9(xwv77, xwv80, dab) new_lt24(xwv18, xwv13, app(app(ty_@2, ega), egb)) -> new_lt16(xwv18, xwv13, ega, egb) new_ltEs23(xwv127, xwv129, app(ty_Ratio, fgg)) -> new_ltEs16(xwv127, xwv129, fgg) new_ltEs18(xwv611, xwv621, app(app(ty_Either, bfh), bga)) -> new_ltEs5(xwv611, xwv621, bfh, bga) new_esEs17(Just(xwv280), Just(xwv330), ty_Double) -> new_esEs21(xwv280, xwv330) new_primEqInt(Pos(Succ(xwv2800)), Neg(xwv330)) -> False new_primEqInt(Neg(Succ(xwv2800)), Pos(xwv330)) -> False new_gt(xwv40, xwv30, ty_Int) -> new_gt0(xwv40, xwv30) new_primCmpInt(Neg(Zero), Neg(Succ(xwv3000))) -> new_primCmpNat0(Succ(xwv3000), Zero) new_ltEs8(Just(xwv610), Just(xwv620), app(ty_[], fdc)) -> new_ltEs9(xwv610, xwv620, fdc) new_esEs38(xwv282, xwv332, ty_Int) -> new_esEs15(xwv282, xwv332) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs6(xwv61, xwv62) -> new_fsEs(new_compare6(xwv61, xwv62)) new_ltEs23(xwv127, xwv129, app(ty_Maybe, ffh)) -> new_ltEs8(xwv127, xwv129, ffh) new_esEs12(Right(xwv280), Right(xwv330), gh, app(ty_Ratio, hc)) -> new_esEs16(xwv280, xwv330, hc) new_ltEs22(xwv79, xwv82, ty_Char) -> new_ltEs6(xwv79, xwv82) new_esEs7(xwv402, xwv302, ty_Bool) -> new_esEs20(xwv402, xwv302) new_compare19(Nothing, Just(xwv300), cgc) -> LT new_esEs26(xwv280, xwv330, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs23(xwv280, xwv330, fad, fae, faf) new_esEs34(xwv610, xwv620, ty_Double) -> new_esEs21(xwv610, xwv620) new_lt23(xwv610, xwv620, app(ty_Ratio, dgc)) -> new_lt17(xwv610, xwv620, dgc) new_lt19(xwv77, xwv80, ty_Double) -> new_lt4(xwv77, xwv80) new_ltEs21(xwv99, xwv100, ty_Ordering) -> new_ltEs11(xwv99, xwv100) new_esEs34(xwv610, xwv620, app(ty_[], dfe)) -> new_esEs22(xwv610, xwv620, dfe) new_ltEs5(Left(xwv610), Left(xwv620), app(app(app(ty_@3, bag), bah), bba), bad) -> new_ltEs10(xwv610, xwv620, bag, bah, bba) new_esEs38(xwv282, xwv332, app(app(ty_@2, efe), eff)) -> new_esEs25(xwv282, xwv332, efe, eff) new_esEs11(xwv400, xwv300, app(ty_[], gcb)) -> new_esEs22(xwv400, xwv300, gcb) new_glueBal2Mid_elt100(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, Branch(xwv2940, xwv2941, xwv2942, xwv2943, xwv2944), egf, egg) -> new_glueBal2Mid_elt100(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv2940, xwv2941, xwv2942, xwv2943, xwv2944, egf, egg) new_esEs28(EQ) -> False new_esEs42(xwv28, xwv33, ty_Bool) -> new_esEs20(xwv28, xwv33) new_esEs11(xwv400, xwv300, ty_Double) -> new_esEs21(xwv400, xwv300) new_not(False) -> True new_ltEs8(Just(xwv610), Just(xwv620), app(app(ty_@2, fdg), fdh)) -> new_ltEs15(xwv610, xwv620, fdg, fdh) new_mkBalBranch6MkBalBranch5(xwv16, xwv13, xwv14, xwv35, False, bdb, bdc) -> new_mkBalBranch6MkBalBranch4(xwv16, xwv13, xwv14, xwv35, new_gt0(new_mkBalBranch6Size_r(xwv16, xwv13, xwv14, xwv35, bdb, bdc), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xwv16, xwv13, xwv14, xwv35, bdb, bdc))), bdb, bdc) new_esEs36(xwv280, xwv330, app(ty_[], ece)) -> new_esEs22(xwv280, xwv330, ece) new_esEs6(xwv401, xwv301, ty_Int) -> new_esEs15(xwv401, xwv301) new_esEs4(xwv400, xwv300, app(app(ty_@2, chd), che)) -> new_esEs25(xwv400, xwv300, chd, che) new_esEs8(xwv400, xwv300, ty_@0) -> new_esEs14(xwv400, xwv300) new_esEs4(xwv400, xwv300, app(ty_Ratio, cgf)) -> new_esEs16(xwv400, xwv300, cgf) new_compare33(xwv400, xwv300, ty_Double) -> new_compare8(xwv400, xwv300) new_esEs7(xwv402, xwv302, app(app(ty_Either, eb), ec)) -> new_esEs12(xwv402, xwv302, eb, ec) new_ltEs20(xwv61, xwv62, app(app(app(ty_@3, caa), cab), cac)) -> new_ltEs10(xwv61, xwv62, caa, cab, cac) new_esEs38(xwv282, xwv332, app(ty_Ratio, eeg)) -> new_esEs16(xwv282, xwv332, eeg) new_ltEs21(xwv99, xwv100, ty_@0) -> new_ltEs4(xwv99, xwv100) new_ltEs8(Just(xwv610), Just(xwv620), ty_Double) -> new_ltEs17(xwv610, xwv620) new_ltEs5(Right(xwv610), Right(xwv620), bbg, app(ty_Maybe, bbh)) -> new_ltEs8(xwv610, xwv620, bbh) new_gt(xwv40, xwv30, app(ty_Maybe, cgc)) -> new_esEs41(new_compare19(xwv40, xwv30, cgc)) new_lt23(xwv610, xwv620, app(app(ty_@2, dga), dgb)) -> new_lt16(xwv610, xwv620, dga, dgb) new_esEs26(xwv280, xwv330, app(ty_Maybe, fab)) -> new_esEs17(xwv280, xwv330, fab) new_esEs41(LT) -> False new_ltEs15(@2(xwv610, xwv611), @2(xwv620, xwv621), bdd, bde) -> new_pePe(new_lt5(xwv610, xwv620, bdd), new_asAs(new_esEs29(xwv610, xwv620, bdd), new_ltEs18(xwv611, xwv621, bde))) new_lt24(xwv18, xwv13, ty_Ordering) -> new_lt11(xwv18, xwv13) new_ltEs19(xwv106, xwv107, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs10(xwv106, xwv107, bgf, bgg, bgh) new_compare32(Right(xwv400), Right(xwv300), dee, def) -> new_compare26(xwv400, xwv300, new_esEs11(xwv400, xwv300, def), dee, def) new_ltEs21(xwv99, xwv100, ty_Bool) -> new_ltEs13(xwv99, xwv100) new_ltEs20(xwv61, xwv62, ty_Char) -> new_ltEs6(xwv61, xwv62) new_ltEs11(LT, EQ) -> True new_lt24(xwv18, xwv13, ty_Int) -> new_lt15(xwv18, xwv13) new_esEs9(xwv401, xwv301, app(app(ty_Either, cde), cdf)) -> new_esEs12(xwv401, xwv301, cde, cdf) new_ltEs22(xwv79, xwv82, app(app(app(ty_@3, dcg), dch), dda)) -> new_ltEs10(xwv79, xwv82, dcg, dch, dda) new_esEs42(xwv28, xwv33, app(ty_Ratio, efg)) -> new_esEs16(xwv28, xwv33, efg) new_ltEs24(xwv612, xwv622, ty_Bool) -> new_ltEs13(xwv612, xwv622) new_esEs12(Right(xwv280), Right(xwv330), gh, app(app(ty_@2, baa), bab)) -> new_esEs25(xwv280, xwv330, baa, bab) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt19(xwv77, xwv80, app(app(ty_@2, daf), dag)) -> new_lt16(xwv77, xwv80, daf, dag) new_esEs6(xwv401, xwv301, app(app(ty_@2, dh), ea)) -> new_esEs25(xwv401, xwv301, dh, ea) new_esEs6(xwv401, xwv301, app(ty_Ratio, db)) -> new_esEs16(xwv401, xwv301, db) new_ltEs18(xwv611, xwv621, app(ty_Ratio, bfg)) -> new_ltEs16(xwv611, xwv621, bfg) new_lt20(xwv78, xwv81, app(app(ty_@2, dbh), dca)) -> new_lt16(xwv78, xwv81, dbh, dca) new_ltEs23(xwv127, xwv129, ty_@0) -> new_ltEs4(xwv127, xwv129) new_ltEs5(Right(xwv610), Right(xwv620), bbg, ty_Char) -> new_ltEs6(xwv610, xwv620) new_esEs4(xwv400, xwv300, ty_Int) -> new_esEs15(xwv400, xwv300) new_esEs42(xwv28, xwv33, app(app(ty_Either, gh), fg)) -> new_esEs12(xwv28, xwv33, gh, fg) new_esEs8(xwv400, xwv300, ty_Char) -> new_esEs13(xwv400, xwv300) new_ltEs23(xwv127, xwv129, ty_Bool) -> new_ltEs13(xwv127, xwv129) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt21(xwv126, xwv128, app(app(ty_@2, ffc), ffd)) -> new_lt16(xwv126, xwv128, ffc, ffd) new_ltEs21(xwv99, xwv100, app(app(ty_Either, cbg), cbh)) -> new_ltEs5(xwv99, xwv100, cbg, cbh) new_esEs17(Just(xwv280), Just(xwv330), app(ty_[], fhf)) -> new_esEs22(xwv280, xwv330, fhf) new_esEs30(xwv280, xwv330, ty_Float) -> new_esEs18(xwv280, xwv330) new_ltEs22(xwv79, xwv82, app(app(ty_Either, dde), ddf)) -> new_ltEs5(xwv79, xwv82, dde, ddf) new_lt14(xwv18, xwv13) -> new_esEs28(new_compare31(xwv18, xwv13)) new_lt22(xwv611, xwv621, app(ty_[], dgg)) -> new_lt9(xwv611, xwv621, dgg) new_ltEs19(xwv106, xwv107, ty_Ordering) -> new_ltEs11(xwv106, xwv107) new_lt5(xwv610, xwv620, ty_Double) -> new_lt4(xwv610, xwv620) new_lt24(xwv18, xwv13, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_lt10(xwv18, xwv13, dfa, dfb, dfc) new_lt21(xwv126, xwv128, ty_Double) -> new_lt4(xwv126, xwv128) new_ltEs21(xwv99, xwv100, ty_Int) -> new_ltEs14(xwv99, xwv100) new_lt5(xwv610, xwv620, app(app(ty_@2, bec), bed)) -> new_lt16(xwv610, xwv620, bec, bed) new_glueBal2Mid_elt200(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv258, xwv259, xwv260, Branch(xwv2610, xwv2611, xwv2612, xwv2613, xwv2614), xwv262, ebb, ebc) -> new_glueBal2Mid_elt200(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv2610, xwv2611, xwv2612, xwv2613, xwv2614, ebb, ebc) new_glueBal2Mid_elt100(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, EmptyFM, egf, egg) -> xwv291 new_ltEs8(Nothing, Nothing, bhg) -> True new_ltEs11(LT, GT) -> True new_ltEs8(Just(xwv610), Nothing, bhg) -> False new_esEs42(xwv28, xwv33, ty_Int) -> new_esEs15(xwv28, xwv33) new_esEs7(xwv402, xwv302, ty_Char) -> new_esEs13(xwv402, xwv302) new_compare17(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, False, xwv186, fcg, fch, fda) -> new_compare18(xwv179, xwv180, xwv181, xwv182, xwv183, xwv184, xwv186, fcg, fch, fda) new_lt22(xwv611, xwv621, app(app(ty_@2, dhc), dhd)) -> new_lt16(xwv611, xwv621, dhc, dhd) new_compare29(xwv126, xwv127, xwv128, xwv129, True, fed, fee) -> EQ new_compare19(Just(xwv400), Nothing, cgc) -> GT new_ltEs21(xwv99, xwv100, app(ty_Ratio, cbf)) -> new_ltEs16(xwv99, xwv100, cbf) new_compare6(Char(xwv400), Char(xwv300)) -> new_primCmpNat0(xwv400, xwv300) new_lt23(xwv610, xwv620, app(ty_[], dfe)) -> new_lt9(xwv610, xwv620, dfe) new_ltEs22(xwv79, xwv82, ty_Bool) -> new_ltEs13(xwv79, xwv82) new_gt(xwv40, xwv30, ty_@0) -> new_esEs41(new_compare7(xwv40, xwv30)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt20(xwv78, xwv81, ty_Double) -> new_lt4(xwv78, xwv81) new_compare9(EQ, EQ) -> EQ new_esEs36(xwv280, xwv330, ty_Double) -> new_esEs21(xwv280, xwv330) new_ltEs21(xwv99, xwv100, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs10(xwv99, xwv100, cba, cbb, cbc) new_esEs9(xwv401, xwv301, ty_Bool) -> new_esEs20(xwv401, xwv301) new_primEqNat0(Zero, Zero) -> True new_glueBal2Mid_key200(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, EmptyFM, xwv278, ebd, ebe) -> xwv274 new_esEs12(Right(xwv280), Right(xwv330), gh, ty_Double) -> new_esEs21(xwv280, xwv330) new_esEs5(xwv400, xwv300, app(ty_Ratio, bg)) -> new_esEs16(xwv400, xwv300, bg) new_ltEs20(xwv61, xwv62, app(ty_Ratio, cad)) -> new_ltEs16(xwv61, xwv62, cad) new_esEs5(xwv400, xwv300, app(app(ty_@2, ce), cf)) -> new_esEs25(xwv400, xwv300, ce, cf) new_esEs12(Left(xwv280), Left(xwv330), app(ty_Maybe, ga), fg) -> new_esEs17(xwv280, xwv330, ga) new_ltEs5(Right(xwv610), Right(xwv620), bbg, ty_Ordering) -> new_ltEs11(xwv610, xwv620) new_asAs(False, xwv135) -> False new_compare7(@0, @0) -> EQ new_ltEs5(Right(xwv610), Right(xwv620), bbg, ty_Int) -> new_ltEs14(xwv610, xwv620) new_ltEs19(xwv106, xwv107, ty_Int) -> new_ltEs14(xwv106, xwv107) new_ltEs23(xwv127, xwv129, ty_Integer) -> new_ltEs7(xwv127, xwv129) new_esEs16(:%(xwv280, xwv281), :%(xwv330, xwv331), efg) -> new_asAs(new_esEs39(xwv280, xwv330, efg), new_esEs40(xwv281, xwv331, efg)) new_esEs26(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs29(xwv610, xwv620, ty_Float) -> new_esEs18(xwv610, xwv620) new_compare28(xwv99, xwv100, False, cae, caf) -> new_compare14(xwv99, xwv100, new_ltEs21(xwv99, xwv100, cae), cae, caf) new_ltEs7(xwv61, xwv62) -> new_fsEs(new_compare11(xwv61, xwv62)) new_lt11(xwv18, xwv13) -> new_esEs28(new_compare9(xwv18, xwv13)) new_ltEs20(xwv61, xwv62, ty_Int) -> new_ltEs14(xwv61, xwv62) new_ltEs11(EQ, LT) -> False The set Q consists of the following terms: new_lt5(x0, x1, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, ty_Float) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs21(x0, x1, ty_Float) new_glueBal2Mid_key100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, EmptyFM, x14, x15) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt24(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, x2, x3, False, x4, x5) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_compare26(x0, x1, False, x2, x3) new_ltEs24(x0, x1, ty_@0) new_lt15(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs39(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(False, True) new_esEs20(True, False) new_primCompAux00(x0, LT) new_ltEs20(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Bool) new_compare32(Left(x0), Left(x1), x2, x3) new_esEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, EQ) new_lt24(x0, x1, ty_Integer) new_lt19(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Just(x0), Just(x1), ty_Double) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs12(Right(x0), Right(x1), x2, ty_Integer) new_esEs9(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_lt24(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Bool) new_compare28(x0, x1, False, x2, x3) new_esEs36(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, ty_Int) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt24(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_delFromFM0(EmptyFM, x0, x1, x2) new_esEs38(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Char) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_@0) new_glueBal2Mid_elt100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, Branch(x14, x15, x16, x17, x18), x19, x20) new_glueBal2Mid_elt200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, EmptyFM, x13, x14, x15) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_lt9(x0, x1, x2) new_esEs35(x0, x1, ty_Double) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs11(GT, GT) new_delFromFM00(x0, x1, x2, x3, x4, x5, False, x6, x7) new_mkBalBranch6MkBalBranch3(Branch(x0, x1, x2, x3, x4), x5, x6, x7, True, x8, x9) new_lt20(x0, x1, ty_@0) new_pePe(True, x0) new_esEs4(x0, x1, ty_Int) new_esEs24(EQ, GT) new_esEs24(GT, EQ) new_esEs12(Right(x0), Right(x1), x2, ty_Bool) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_mkBranchResult(x0, x1, x2, x3, x4, x5) new_esEs28(EQ) new_esEs17(Just(x0), Just(x1), ty_Char) new_esEs5(x0, x1, ty_Int) new_esEs7(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1) new_ltEs22(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, x2, x3) new_ltEs18(x0, x1, ty_@0) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Char) new_compare13(x0, x1, False, x2, x3) new_esEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_esEs42(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, ty_Float) new_compare14(x0, x1, False, x2, x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_compare18(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_deleteMax0(x0, x1, x2, x3, EmptyFM, x4, x5) new_esEs27(x0, x1, ty_Ordering) new_compare8(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare33(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(:(x0, x1), [], x2) new_lt24(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_gt(x0, x1, ty_@0) new_primMinusNat0(Zero, Succ(x0)) new_compare19(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_compare9(GT, GT) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, x2, x3, True, x4, x5) new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_@0) new_lt14(x0, x1) new_lt19(x0, x1, ty_Float) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare32(Left(x0), Right(x1), x2, x3) new_compare32(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Double) new_gt(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Char) new_compare32(Right(x0), Right(x1), x2, x3) new_esEs28(LT) new_delFromFM00(x0, x1, x2, Branch(x3, x4, x5, x6, x7), Branch(x8, x9, x10, x11, x12), x13, True, x14, x15) new_primCmpNat0(Succ(x0), Zero) new_esEs8(x0, x1, ty_@0) new_compare33(x0, x1, ty_Double) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_esEs29(x0, x1, ty_Ordering) new_asAs(False, x0) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs13(True, True) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs5(x0, x1, ty_Float) new_esEs24(LT, GT) new_esEs24(GT, LT) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs37(x0, x1, ty_Float) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt16(x0, x1, x2, x3) new_ltEs21(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_compare33(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_esEs25(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs12(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Double) new_asAs(True, x0) new_esEs42(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_esEs12(Left(x0), Left(x1), ty_Double, x2) new_delFromFM10(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt22(x0, x1, ty_Double) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Bool) new_lt24(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Double) new_compare10(x0, x1, False, x2) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_delFromFM00(x0, x1, x2, Branch(x3, x4, x5, x6, x7), EmptyFM, x8, True, x9, x10) new_compare7(@0, @0) new_esEs4(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Bool) new_esEs12(Left(x0), Right(x1), x2, x3) new_esEs12(Right(x0), Left(x1), x2, x3) new_primMulNat0(Succ(x0), Zero) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs10(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Nothing, Just(x0), x1) new_esEs12(Right(x0), Right(x1), x2, ty_Int) new_compare27(x0, x1, False, x2) new_esEs36(x0, x1, ty_Float) new_compare17(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_compare33(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch3(EmptyFM, x0, x1, x2, True, x3, x4) new_lt19(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Char) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, ty_Int) new_primPlusNat0(Zero, Zero) new_esEs10(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Bool) new_lt6(x0, x1) new_esEs6(x0, x1, ty_Double) new_not(True) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_fsEs(x0) new_esEs32(x0, x1, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, ty_Char) new_ltEs19(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs13(False, False) new_esEs42(x0, x1, ty_Double) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1) new_lt21(x0, x1, ty_@0) new_esEs40(x0, x1, ty_Int) new_lt24(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs34(x0, x1, ty_Double) new_compare19(Just(x0), Just(x1), x2) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, EmptyFM, x4, x5, x6, False, x7, x8) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_@0) new_esEs42(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_compare11(Integer(x0), Integer(x1)) new_esEs4(x0, x1, ty_@0) new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt22(x0, x1, app(ty_Ratio, x2)) new_compare12(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Char) new_gt(x0, x1, ty_Ordering) new_primPlusInt(Neg(x0), Neg(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_esEs11(x0, x1, ty_Ordering) new_sizeFM(EmptyFM, x0, x1) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_lt22(x0, x1, ty_Bool) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Integer) new_delFromFM00(x0, x1, x2, EmptyFM, x3, x4, True, x5, x6) new_lt21(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare9(EQ, GT) new_esEs20(True, True) new_compare9(GT, EQ) new_compare33(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Float) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_compare27(x0, x1, True, x2) new_compare8(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs37(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_@0) new_primEqNat0(Zero, Succ(x0)) new_esEs26(x0, x1, ty_Char) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Int) new_delFromFM20(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs17(Just(x0), Nothing, x1) new_ltEs17(x0, x1) new_esEs12(Right(x0), Right(x1), x2, ty_@0) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_@0) new_ltEs8(Nothing, Just(x0), x1) new_esEs17(Just(x0), Just(x1), ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs17(Nothing, Nothing, x0) new_lt24(x0, x1, app(ty_Ratio, x2)) new_not(False) new_lt11(x0, x1) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs27(x0, x1, ty_Double) new_compare5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_compare33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Integer) new_esEs24(GT, GT) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(:(x0, x1), [], x2) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(LT, EQ) new_esEs24(EQ, LT) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, True, x2, x3) new_ltEs18(x0, x1, ty_Bool) new_gt0(x0, x1) new_esEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs41(LT) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt22(x0, x1, ty_Char) new_ltEs8(Just(x0), Nothing, x1) new_ltEs11(EQ, GT) new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4) new_ltEs11(GT, EQ) new_ltEs18(x0, x1, ty_Char) new_compare33(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Char) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(x0, x1) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1) new_compare33(x0, x1, ty_Char) new_glueBal2GlueBal1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, False, x10, x11) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Ordering) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_esEs40(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs30(x0, x1, ty_Double) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs37(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Bool) new_compare33(x0, x1, ty_Bool) new_pePe(False, x0) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs19(Integer(x0), Integer(x1)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_primCompAux0(x0, x1, x2, x3) new_esEs33(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, x11, False, x12, x13) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primMinusNat0(Zero, Zero) new_compare0([], :(x0, x1), x2) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_compare33(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Right(x1), x2, x3) new_ltEs5(Right(x0), Left(x1), x2, x3) new_esEs13(Char(x0), Char(x1)) new_compare19(Just(x0), Nothing, x1) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, ty_Float) new_esEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_ltEs20(x0, x1, ty_Ordering) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1, x2) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Float) new_esEs42(x0, x1, ty_Float) new_sIZE_RATIO new_esEs24(EQ, EQ) new_esEs6(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs13(False, True) new_ltEs13(True, False) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs42(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Just(x0), Just(x1), ty_Int) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Double) new_compare9(LT, LT) new_esEs11(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Float) new_compare8(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare8(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_glueBal2Mid_key200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, Branch(x13, x14, x15, x16, x17), x18, x19, x20) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, x2) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_Char) new_compare31(False, False) new_delFromFM20(x0, x1, x2, x3, x4, x5, False, x6, x7) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_esEs20(False, False) new_ltEs19(x0, x1, ty_Char) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs41(GT) new_esEs8(x0, x1, ty_Ordering) new_delFromFM0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs9(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), ty_@0, x2) new_esEs33(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpNat0(Zero, Succ(x0)) new_compare10(x0, x1, True, x2) new_esEs42(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Double) new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs38(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs5(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare0([], [], x0) new_ltEs23(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Float) new_ltEs14(x0, x1) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_glueBal2GlueBal1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, True, x10, x11) new_ltEs6(x0, x1) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt23(x0, x1, ty_Int) new_lt5(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Double) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Int) new_esEs42(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(LT, EQ) new_compare9(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_esEs29(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_esEs22(:(x0, x1), :(x2, x3), x4) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs21(Double(x0, x1), Double(x2, x3)) new_esEs42(x0, x1, ty_Ordering) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_esEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs11(EQ, EQ) new_compare33(x0, x1, ty_@0) new_compare9(EQ, EQ) new_ltEs16(x0, x1, x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, True, x2, x3) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_lt23(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, True, x2, x3) new_esEs11(x0, x1, ty_Int) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_deleteMin0(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, x9, x10) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_esEs42(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Bool) new_compare6(Char(x0), Char(x1)) new_gt(x0, x1, ty_Char) new_esEs12(Right(x0), Right(x1), x2, ty_Double) new_esEs30(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Integer) new_lt5(x0, x1, app(ty_[], x2)) new_esEs42(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs42(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Int) new_compare9(LT, GT) new_compare9(GT, LT) new_esEs27(x0, x1, ty_Integer) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, ty_Float) new_primCompAux00(x0, GT) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_esEs24(LT, LT) new_esEs33(x0, x1, ty_Char) new_compare12(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare12(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_sr(x0, x1) new_esEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs22(x0, x1, ty_@0) new_ltEs11(LT, LT) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs42(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Double) new_lt23(x0, x1, ty_Double) new_lt24(x0, x1, ty_Ordering) new_primPlusInt(Pos(x0), Pos(x1)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare12(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs34(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs23(x0, x1, ty_Int) new_compare31(True, False) new_compare31(False, True) new_glueBal2Mid_elt100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, EmptyFM, x14, x15) new_lt23(x0, x1, ty_Ordering) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_gt(x0, x1, app(ty_[], x2)) new_esEs12(Right(x0), Right(x1), x2, ty_Ordering) new_esEs17(Just(x0), Just(x1), ty_Integer) new_esEs9(x0, x1, ty_Bool) new_esEs17(Just(x0), Just(x1), ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs17(Just(x0), Just(x1), ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs12(Left(x0), Left(x1), ty_Char, x2) new_lt19(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs42(x0, x1, ty_@0) new_esEs27(x0, x1, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primMinusNat0(Succ(x0), Zero) new_esEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare14(x0, x1, True, x2, x3) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Char) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs34(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), ty_Int, x2) new_compare30(x0, x1) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare18(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Integer) new_compare111(x0, x1, x2, x3, False, x4, x5) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Float) new_lt21(x0, x1, ty_Char) new_glueBal2Mid_key100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, Branch(x14, x15, x16, x17, x18), x19, x20) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_delFromFM10(x0, x1, x2, x3, x4, x5, False, x6, x7) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), ty_Bool, x2) new_esEs18(Float(x0, x1), Float(x2, x3)) new_compare33(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Float) new_lt21(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs4(x0, x1) new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs14(@0, @0) new_compare33(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs22([], [], x0) new_esEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Bool) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs21(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_gt(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Int) new_compare0(:(x0, x1), :(x2, x3), x4) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Int) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Float) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Integer) new_esEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Just(x0), Just(x1), ty_@0) new_esEs7(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Char) new_lt24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs9(x0, x1, x2) new_esEs41(EQ) new_lt10(x0, x1, x2, x3, x4) new_glueBal2Mid_elt200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, Branch(x13, x14, x15, x16, x17), x18, x19, x20) new_deleteMax0(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10) new_esEs7(x0, x1, ty_Int) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Bool) new_compare19(Nothing, Nothing, x0) new_compare33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(GT) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, ty_Bool) new_compare31(True, True) new_glueBal2Mid_key200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, EmptyFM, x13, x14, x15) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_lt12(x0, x1) new_esEs34(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_gt(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs35(x0, x1, ty_Char) new_esEs5(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Char) new_esEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs33(x0, x1, ty_Double) new_esEs11(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Float) new_deleteMin0(x0, x1, x2, EmptyFM, x3, x4, x5) new_esEs17(Just(x0), Just(x1), app(ty_[], x2)) new_esEs32(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_esEs22([], :(x0, x1), x2) new_ltEs22(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_[], x2)) new_gt(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt5(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs8(Nothing, Nothing, x0) new_esEs12(Left(x0), Left(x1), ty_Integer, x2) new_primCmpNat0(Zero, Zero) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 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_foldl(xwv3, :(xwv40, xwv41), h, ba) -> new_foldl(new_delFromFM0(xwv3, xwv40, h, ba), xwv41, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_deleteMin(xwv520, xwv521, xwv522, Branch(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234), xwv524, h, ba) -> new_deleteMin(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234, h, ba) R is empty. Q is empty. 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_deleteMin(xwv520, xwv521, xwv522, Branch(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234), xwv524, h, ba) -> new_deleteMin(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234, h, ba) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7 ---------------------------------------- (43) YES ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_elt20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv258, xwv259, xwv260, Branch(xwv2610, xwv2611, xwv2612, xwv2613, xwv2614), xwv262, h, ba) -> new_glueBal2Mid_elt20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv2610, xwv2611, xwv2612, xwv2613, xwv2614, 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_glueBal2Mid_elt20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv258, xwv259, xwv260, Branch(xwv2610, xwv2611, xwv2612, xwv2613, xwv2614), xwv262, h, ba) -> new_glueBal2Mid_elt20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv2610, xwv2611, xwv2612, xwv2613, xwv2614, 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 ---------------------------------------- (46) YES ---------------------------------------- (47) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_key20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, Branch(xwv2770, xwv2771, xwv2772, xwv2773, xwv2774), xwv278, h, ba) -> new_glueBal2Mid_key20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv2770, xwv2771, xwv2772, xwv2773, xwv2774, 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_key20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, Branch(xwv2770, xwv2771, xwv2772, xwv2773, xwv2774), xwv278, h, ba) -> new_glueBal2Mid_key20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv2770, xwv2771, xwv2772, xwv2773, xwv2774, 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_deleteMax(xwv510, xwv511, xwv512, xwv513, Branch(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144), h, ba) -> new_deleteMax(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144, 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_deleteMax(xwv510, xwv511, xwv512, xwv513, Branch(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144), h, ba) -> new_deleteMax(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144, h, ba) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7 ---------------------------------------- (52) YES ---------------------------------------- (53) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_elt10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, Branch(xwv2940, xwv2941, xwv2942, xwv2943, xwv2944), h, ba) -> new_glueBal2Mid_elt10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv2940, xwv2941, xwv2942, xwv2943, xwv2944, 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_glueBal2Mid_elt10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, Branch(xwv2940, xwv2941, xwv2942, xwv2943, xwv2944), h, ba) -> new_glueBal2Mid_elt10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv2940, xwv2941, xwv2942, xwv2943, xwv2944, 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 ---------------------------------------- (55) YES ---------------------------------------- (56) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Right(xwv280), Right(xwv330), cb, app(ty_Maybe, ce)) -> new_esEs0(xwv280, xwv330, ce) new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_Maybe, bcb), bca) -> new_esEs0(xwv280, xwv330, bcb) new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), bda, app(app(ty_Either, bdb), bdc)) -> new_esEs(xwv281, xwv331, bdb, bdc) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gc, app(app(ty_@2, bbe), bbf)) -> new_esEs3(xwv282, xwv332, bbe, bbf) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_Maybe, eh)) -> new_esEs0(xwv280, xwv330, eh) new_esEs(Left(xwv280), Left(xwv330), app(app(ty_@2, bh), ca), bb) -> new_esEs3(xwv280, xwv330, bh, ca) new_esEs0(Just(xwv280), Just(xwv330), app(app(ty_Either, de), df)) -> new_esEs(xwv280, xwv330, de, df) new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), bda, app(ty_Maybe, bdd)) -> new_esEs0(xwv281, xwv331, bdd) new_esEs(Left(xwv280), Left(xwv330), app(app(app(ty_@3, be), bf), bg), bb) -> new_esEs2(xwv280, xwv330, be, bf, bg) new_esEs(Right(xwv280), Right(xwv330), cb, app(app(ty_@2, dc), dd)) -> new_esEs3(xwv280, xwv330, dc, dd) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_Either, ga), gb), gc, gd) -> new_esEs(xwv280, xwv330, ga, gb) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_@2, hb), hc), gc, gd) -> new_esEs3(xwv280, xwv330, hb, hc) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(ty_@2, bad), bae), gd) -> new_esEs3(xwv281, xwv331, bad, bae) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(app(ty_@3, baa), bab), bac), gd) -> new_esEs2(xwv281, xwv331, baa, bab, bac) new_esEs(Left(xwv280), Left(xwv330), app(ty_[], bd), bb) -> new_esEs1(xwv280, xwv330, bd) new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(xwv281, xwv331, bea, beb) new_esEs0(Just(xwv280), Just(xwv330), app(app(app(ty_@3, ea), eb), ec)) -> new_esEs2(xwv280, xwv330, ea, eb, ec) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(app(ty_@3, gg), gh), ha), gc, gd) -> new_esEs2(xwv280, xwv330, gg, gh, ha) new_esEs(Right(xwv280), Right(xwv330), cb, app(app(ty_Either, cc), cd)) -> new_esEs(xwv280, xwv330, cc, cd) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(ty_Either, he), hf), gd) -> new_esEs(xwv281, xwv331, he, hf) new_esEs(Right(xwv280), Right(xwv330), cb, app(app(app(ty_@3, cg), da), db)) -> new_esEs2(xwv280, xwv330, cg, da, db) new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), bda, app(ty_[], bde)) -> new_esEs1(xwv281, xwv331, bde) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gc, app(ty_Maybe, bah)) -> new_esEs0(xwv282, xwv332, bah) new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_@2, bcg), bch), bca) -> new_esEs3(xwv280, xwv330, bcg, bch) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), fh) -> new_esEs1(xwv281, xwv331, fh) new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs2(xwv280, xwv330, bcd, bce, bcf) new_esEs(Left(xwv280), Left(xwv330), app(app(ty_Either, h), ba), bb) -> new_esEs(xwv280, xwv330, h, ba) new_esEs(Left(xwv280), Left(xwv330), app(ty_Maybe, bc), bb) -> new_esEs0(xwv280, xwv330, bc) new_esEs(Right(xwv280), Right(xwv330), cb, app(ty_[], cf)) -> new_esEs1(xwv280, xwv330, cf) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gc, app(app(ty_Either, baf), bag)) -> new_esEs(xwv282, xwv332, baf, bag) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_[], fa)) -> new_esEs1(xwv280, xwv330, fa) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_Maybe, ge), gc, gd) -> new_esEs0(xwv280, xwv330, ge) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_@2, ff), fg)) -> new_esEs3(xwv280, xwv330, ff, fg) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_[], gf), gc, gd) -> new_esEs1(xwv280, xwv330, gf) new_esEs0(Just(xwv280), Just(xwv330), app(app(ty_@2, ed), ee)) -> new_esEs3(xwv280, xwv330, ed, ee) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(ty_Maybe, hg), gd) -> new_esEs0(xwv281, xwv331, hg) new_esEs0(Just(xwv280), Just(xwv330), app(ty_Maybe, dg)) -> new_esEs0(xwv280, xwv330, dg) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_Either, ef), eg)) -> new_esEs(xwv280, xwv330, ef, eg) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs2(xwv280, xwv330, fb, fc, fd) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gc, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(xwv282, xwv332, bbb, bbc, bbd) new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_Either, bbg), bbh), bca) -> new_esEs(xwv280, xwv330, bbg, bbh) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(ty_[], hh), gd) -> new_esEs1(xwv281, xwv331, hh) new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xwv281, xwv331, bdf, bdg, bdh) new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_[], bcc), bca) -> new_esEs1(xwv280, xwv330, bcc) new_esEs0(Just(xwv280), Just(xwv330), app(ty_[], dh)) -> new_esEs1(xwv280, xwv330, dh) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gc, app(ty_[], bba)) -> new_esEs1(xwv282, xwv332, bba) 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_esEs0(Just(xwv280), Just(xwv330), app(app(ty_Either, de), df)) -> new_esEs(xwv280, xwv330, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(xwv280), Just(xwv330), app(app(ty_@2, ed), ee)) -> new_esEs3(xwv280, xwv330, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(xwv280), Just(xwv330), app(app(app(ty_@3, ea), eb), ec)) -> new_esEs2(xwv280, xwv330, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Just(xwv280), Just(xwv330), app(ty_[], dh)) -> new_esEs1(xwv280, xwv330, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(xwv280), Just(xwv330), app(ty_Maybe, dg)) -> new_esEs0(xwv280, xwv330, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_Either, ef), eg)) -> new_esEs(xwv280, xwv330, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_@2, ff), fg)) -> new_esEs3(xwv280, xwv330, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs2(xwv280, xwv330, fb, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_Maybe, eh)) -> new_esEs0(xwv280, xwv330, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(xwv280), Right(xwv330), cb, app(app(ty_Either, cc), cd)) -> new_esEs(xwv280, xwv330, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(xwv280), Left(xwv330), app(app(ty_Either, h), ba), bb) -> new_esEs(xwv280, xwv330, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), bda, app(app(ty_Either, bdb), bdc)) -> new_esEs(xwv281, xwv331, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_Either, bbg), bbh), bca) -> new_esEs(xwv280, xwv330, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_Either, ga), gb), gc, gd) -> new_esEs(xwv280, xwv330, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(ty_Either, he), hf), gd) -> new_esEs(xwv281, xwv331, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gc, app(app(ty_Either, baf), bag)) -> new_esEs(xwv282, xwv332, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(Left(xwv280), Left(xwv330), app(app(ty_@2, bh), ca), bb) -> new_esEs3(xwv280, xwv330, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Right(xwv280), Right(xwv330), cb, app(app(ty_@2, dc), dd)) -> new_esEs3(xwv280, xwv330, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(xwv281, xwv331, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_@2, bcg), bch), bca) -> new_esEs3(xwv280, xwv330, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gc, app(app(ty_@2, bbe), bbf)) -> new_esEs3(xwv282, xwv332, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_@2, hb), hc), gc, gd) -> new_esEs3(xwv280, xwv330, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(ty_@2, bad), bae), gd) -> new_esEs3(xwv281, xwv331, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(xwv280), Left(xwv330), app(app(app(ty_@3, be), bf), bg), bb) -> new_esEs2(xwv280, xwv330, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Right(xwv280), Right(xwv330), cb, app(app(app(ty_@3, cg), da), db)) -> new_esEs2(xwv280, xwv330, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Left(xwv280), Left(xwv330), app(ty_[], bd), bb) -> new_esEs1(xwv280, xwv330, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(xwv280), Right(xwv330), cb, app(ty_[], cf)) -> new_esEs1(xwv280, xwv330, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Right(xwv280), Right(xwv330), cb, app(ty_Maybe, ce)) -> new_esEs0(xwv280, xwv330, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(xwv280), Left(xwv330), app(ty_Maybe, bc), bb) -> new_esEs0(xwv280, xwv330, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs2(xwv280, xwv330, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xwv281, xwv331, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), bda, app(ty_[], bde)) -> new_esEs1(xwv281, xwv331, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_[], bcc), bca) -> new_esEs1(xwv280, xwv330, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_Maybe, bcb), bca) -> new_esEs0(xwv280, xwv330, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(xwv280, xwv281), @2(xwv330, xwv331), bda, app(ty_Maybe, bdd)) -> new_esEs0(xwv281, xwv331, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(app(ty_@3, baa), bab), bac), gd) -> new_esEs2(xwv281, xwv331, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(app(ty_@3, gg), gh), ha), gc, gd) -> new_esEs2(xwv280, xwv330, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gc, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(xwv282, xwv332, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_[], gf), gc, gd) -> new_esEs1(xwv280, xwv330, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(ty_[], hh), gd) -> new_esEs1(xwv281, xwv331, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gc, app(ty_[], bba)) -> new_esEs1(xwv282, xwv332, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), fh) -> new_esEs1(xwv281, xwv331, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_[], fa)) -> new_esEs1(xwv280, xwv330, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gc, app(ty_Maybe, bah)) -> new_esEs0(xwv282, xwv332, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_Maybe, ge), gc, gd) -> new_esEs0(xwv280, xwv330, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(ty_Maybe, hg), gd) -> new_esEs0(xwv281, xwv331, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (58) YES ---------------------------------------- (59) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat(xwv2800, xwv3300) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (60) 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(xwv2800), Succ(xwv3300)) -> new_primEqNat(xwv2800, xwv3300) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (61) YES