/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/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, 5 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 1 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 5 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, 137 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 ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 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; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord 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; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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 "\oldnew->new" is transformed to "addListToFM0 old new = new; " 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 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; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size 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 :: (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; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size 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 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 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; 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 b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = 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 vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 vwz (Branch key_rl elt_rl vxu 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 vwu fm_ll (Branch key_lr elt_lr vwv 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 vxv vxw vxx 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 vww vwx vwy 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 vxy 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 vvz 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 zz vuu vuv vuw) = 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 vux vuy vuz vvu) = 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 vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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 vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; " "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; " 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 wuw wux = gcd3 wuw wux; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } ; " "gcd1 True wuw wux = error []; gcd1 wuy wuz wvu = gcd0 wuz wvu; " "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; gcd2 wvv wvw wvx = gcd0 wvw wvx; " "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; gcd3 wvy wvz = gcd0 wvy wvz; " 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; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; " "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy 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 vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); " "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; " "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx 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 vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); " "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; " "mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx 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 vwz (Branch key_rl elt_rl vxu 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 vwu fm_ll (Branch key_lr elt_lr vwv 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 vxv vxw vxx 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 vww vwx vwy 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 vxy 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 vvz 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 vwz (Branch key_rl elt_rl vxu 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 vwu fm_ll (Branch key_lr elt_lr vwv 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 vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy 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 vxy 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 vvz 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; } ; " ---------------------------------------- (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; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = 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 vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu 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 vwu fm_ll (Branch key_lr elt_lr vwv 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 vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy 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 vxy 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 vvz 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 zz vuu vuv vuw) = 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 vux vuy vuz vvu) = 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 vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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 vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D wxw wxx = gcd wxw wxx; " "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); " "reduce2Reduce1 wxw wxx x y True = error []; reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; " 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 vwz (Branch key_rl elt_rl vxu 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 vwu fm_ll (Branch key_lr elt_lr vwv 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 vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy 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 vxy 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 vvz 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 "mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); " "mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; " "mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); " "mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; " "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; " "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); " "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; " "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); " "mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); " "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; " "mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; " "mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); " "mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; " "mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; " The bindings of the following Let/Where expression "foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; } " are unpacked to the following functions on top level "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; " 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 zz vuu vuv vuw) = 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 vux vuy vuz vvu) = 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 wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; " "mkBranchLeft_size wyx wyy wyz = sizeFM wyx; " "mkBranchUnbox wyx wyy wyz x = x; " "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; " "mkBranchRight_size wyx wyy wyz = sizeFM wyz; " "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " 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 wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzw wzx; " 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 wzy = fst (findMin wzy); " 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 wzz = fst (findMax wzz); " ---------------------------------------- (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; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 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 wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); mkBranchLeft_size wyx wyy wyz = sizeFM wyx; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzw wzx; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); mkBranchRight_size wyx wyy wyz = sizeFM wyz; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu 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))))))) wxy wxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv 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))))))))))))) wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz 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)))))))))) wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 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 wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); mkBranchLeft_size wyx wyy wyz = sizeFM wyx; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzw wzx; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); mkBranchRight_size wyx wyy wyz = sizeFM wyz; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz 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 vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } 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.addListToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.addListToFM xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.addListToFM xuu3 xuu4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 xuu3 xuu4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 xuu4",fontsize=16,color="burlywood",shape="triangle"];3117[label="xuu4/xuu40 : xuu41",fontsize=10,color="white",style="solid",shape="box"];6 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 7[label="",style="solid", color="burlywood", weight=3]; 3118[label="xuu4/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 3118[label="",style="solid", color="burlywood", weight=9]; 3118 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 (xuu40 : xuu41)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9 -> 6[label="",style="dashed", color="red", weight=0]; 9[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40) xuu41",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 10[label="xuu3",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40",fontsize=16,color="burlywood",shape="box"];3119[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];11 -> 3119[label="",style="solid", color="burlywood", weight=9]; 3119 -> 13[label="",style="solid", color="burlywood", weight=3]; 12[label="xuu41",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 (xuu400,xuu401)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 14[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu3 xuu400 xuu401",fontsize=16,color="burlywood",shape="triangle"];3120[label="xuu3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 3120[label="",style="solid", color="burlywood", weight=9]; 3120 -> 15[label="",style="solid", color="burlywood", weight=3]; 3121[label="xuu3/FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34",fontsize=10,color="white",style="solid",shape="box"];14 -> 3121[label="",style="solid", color="burlywood", weight=9]; 3121 -> 16[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 16[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 17[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 18[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 19[label="FiniteMap.unitFM xuu400 xuu401",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 20 -> 22[label="",style="dashed", color="red", weight=0]; 20[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (xuu400 < xuu30)",fontsize=16,color="magenta"];20 -> 23[label="",style="dashed", color="magenta", weight=3]; 20 -> 24[label="",style="dashed", color="magenta", weight=3]; 20 -> 25[label="",style="dashed", color="magenta", weight=3]; 20 -> 26[label="",style="dashed", color="magenta", weight=3]; 20 -> 27[label="",style="dashed", color="magenta", weight=3]; 20 -> 28[label="",style="dashed", color="magenta", weight=3]; 20 -> 29[label="",style="dashed", color="magenta", weight=3]; 20 -> 30[label="",style="dashed", color="magenta", weight=3]; 21[label="FiniteMap.Branch xuu400 xuu401 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 31[label="",style="dashed", color="green", weight=3]; 21 -> 32[label="",style="dashed", color="green", weight=3]; 23[label="xuu31",fontsize=16,color="green",shape="box"];24[label="xuu32",fontsize=16,color="green",shape="box"];25[label="xuu30",fontsize=16,color="green",shape="box"];26[label="xuu34",fontsize=16,color="green",shape="box"];27[label="xuu400",fontsize=16,color="green",shape="box"];28[label="xuu401",fontsize=16,color="green",shape="box"];29[label="xuu33",fontsize=16,color="green",shape="box"];30[label="xuu400 < xuu30",fontsize=16,color="blue",shape="box"];3122[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 33[label="",style="solid", color="blue", weight=3]; 3123[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 34[label="",style="solid", color="blue", weight=3]; 3124[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 35[label="",style="solid", color="blue", weight=3]; 3125[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 36[label="",style="solid", color="blue", weight=3]; 3126[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 37[label="",style="solid", color="blue", weight=3]; 3127[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 38[label="",style="solid", color="blue", weight=3]; 3128[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 39[label="",style="solid", color="blue", weight=3]; 3129[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 40[label="",style="solid", color="blue", weight=3]; 3130[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 41[label="",style="solid", color="blue", weight=3]; 3131[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 42[label="",style="solid", color="blue", weight=3]; 3132[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 43[label="",style="solid", color="blue", weight=3]; 3133[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 44[label="",style="solid", color="blue", weight=3]; 3134[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 45[label="",style="solid", color="blue", weight=3]; 3135[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 46[label="",style="solid", color="blue", weight=3]; 22[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu14 xuu15 xuu16 xuu17 xuu18 xuu19 xuu20 xuu21",fontsize=16,color="burlywood",shape="triangle"];3136[label="xuu21/False",fontsize=10,color="white",style="solid",shape="box"];22 -> 3136[label="",style="solid", color="burlywood", weight=9]; 3136 -> 47[label="",style="solid", color="burlywood", weight=3]; 3137[label="xuu21/True",fontsize=10,color="white",style="solid",shape="box"];22 -> 3137[label="",style="solid", color="burlywood", weight=9]; 3137 -> 48[label="",style="solid", color="burlywood", weight=3]; 31[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];31 -> 49[label="",style="solid", color="black", weight=3]; 32 -> 31[label="",style="dashed", color="red", weight=0]; 32[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];33[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];33 -> 50[label="",style="solid", color="black", weight=3]; 34[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];34 -> 51[label="",style="solid", color="black", weight=3]; 35[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];35 -> 52[label="",style="solid", color="black", weight=3]; 36[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];36 -> 53[label="",style="solid", color="black", weight=3]; 37[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];37 -> 54[label="",style="solid", color="black", weight=3]; 38[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];38 -> 55[label="",style="solid", color="black", weight=3]; 39[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];39 -> 56[label="",style="solid", color="black", weight=3]; 40[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];40 -> 57[label="",style="solid", color="black", weight=3]; 41[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];41 -> 58[label="",style="solid", color="black", weight=3]; 42[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];42 -> 59[label="",style="solid", color="black", weight=3]; 43[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];43 -> 60[label="",style="solid", color="black", weight=3]; 44[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];44 -> 61[label="",style="solid", color="black", weight=3]; 45[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];45 -> 62[label="",style="solid", color="black", weight=3]; 46[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];46 -> 63[label="",style="solid", color="black", weight=3]; 47[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu14 xuu15 xuu16 xuu17 xuu18 xuu19 xuu20 False",fontsize=16,color="black",shape="box"];47 -> 64[label="",style="solid", color="black", weight=3]; 48[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu14 xuu15 xuu16 xuu17 xuu18 xuu19 xuu20 True",fontsize=16,color="black",shape="box"];48 -> 65[label="",style="solid", color="black", weight=3]; 49[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];50 -> 178[label="",style="dashed", color="red", weight=0]; 50[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];50 -> 179[label="",style="dashed", color="magenta", weight=3]; 51 -> 178[label="",style="dashed", color="red", weight=0]; 51[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];51 -> 180[label="",style="dashed", color="magenta", weight=3]; 52 -> 178[label="",style="dashed", color="red", weight=0]; 52[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];52 -> 181[label="",style="dashed", color="magenta", weight=3]; 53 -> 178[label="",style="dashed", color="red", weight=0]; 53[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];53 -> 182[label="",style="dashed", color="magenta", weight=3]; 54 -> 178[label="",style="dashed", color="red", weight=0]; 54[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];54 -> 183[label="",style="dashed", color="magenta", weight=3]; 55 -> 178[label="",style="dashed", color="red", weight=0]; 55[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];55 -> 184[label="",style="dashed", color="magenta", weight=3]; 56 -> 178[label="",style="dashed", color="red", weight=0]; 56[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];56 -> 185[label="",style="dashed", color="magenta", weight=3]; 57 -> 178[label="",style="dashed", color="red", weight=0]; 57[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];57 -> 186[label="",style="dashed", color="magenta", weight=3]; 58 -> 178[label="",style="dashed", color="red", weight=0]; 58[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];58 -> 187[label="",style="dashed", color="magenta", weight=3]; 59 -> 178[label="",style="dashed", color="red", weight=0]; 59[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];59 -> 188[label="",style="dashed", color="magenta", weight=3]; 60 -> 178[label="",style="dashed", color="red", weight=0]; 60[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];60 -> 189[label="",style="dashed", color="magenta", weight=3]; 61 -> 178[label="",style="dashed", color="red", weight=0]; 61[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];61 -> 190[label="",style="dashed", color="magenta", weight=3]; 62 -> 178[label="",style="dashed", color="red", weight=0]; 62[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];62 -> 191[label="",style="dashed", color="magenta", weight=3]; 63 -> 178[label="",style="dashed", color="red", weight=0]; 63[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];63 -> 192[label="",style="dashed", color="magenta", weight=3]; 64 -> 81[label="",style="dashed", color="red", weight=0]; 64[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu14 xuu15 xuu16 xuu17 xuu18 xuu19 xuu20 (xuu19 > xuu14)",fontsize=16,color="magenta"];64 -> 82[label="",style="dashed", color="magenta", weight=3]; 64 -> 83[label="",style="dashed", color="magenta", weight=3]; 64 -> 84[label="",style="dashed", color="magenta", weight=3]; 64 -> 85[label="",style="dashed", color="magenta", weight=3]; 64 -> 86[label="",style="dashed", color="magenta", weight=3]; 64 -> 87[label="",style="dashed", color="magenta", weight=3]; 64 -> 88[label="",style="dashed", color="magenta", weight=3]; 64 -> 89[label="",style="dashed", color="magenta", weight=3]; 65 -> 90[label="",style="dashed", color="red", weight=0]; 65[label="FiniteMap.mkBalBranch xuu14 xuu15 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 xuu19 xuu20) xuu18",fontsize=16,color="magenta"];65 -> 91[label="",style="dashed", color="magenta", weight=3]; 179[label="compare xuu400 xuu30",fontsize=16,color="burlywood",shape="triangle"];3138[label="xuu400/()",fontsize=10,color="white",style="solid",shape="box"];179 -> 3138[label="",style="solid", color="burlywood", weight=9]; 3138 -> 217[label="",style="solid", color="burlywood", weight=3]; 178[label="xuu42 == LT",fontsize=16,color="burlywood",shape="triangle"];3139[label="xuu42/LT",fontsize=10,color="white",style="solid",shape="box"];178 -> 3139[label="",style="solid", color="burlywood", weight=9]; 3139 -> 218[label="",style="solid", color="burlywood", weight=3]; 3140[label="xuu42/EQ",fontsize=10,color="white",style="solid",shape="box"];178 -> 3140[label="",style="solid", color="burlywood", weight=9]; 3140 -> 219[label="",style="solid", color="burlywood", weight=3]; 3141[label="xuu42/GT",fontsize=10,color="white",style="solid",shape="box"];178 -> 3141[label="",style="solid", color="burlywood", weight=9]; 3141 -> 220[label="",style="solid", color="burlywood", weight=3]; 180[label="compare xuu400 xuu30",fontsize=16,color="burlywood",shape="triangle"];3142[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];180 -> 3142[label="",style="solid", color="burlywood", weight=9]; 3142 -> 221[label="",style="solid", color="burlywood", weight=3]; 3143[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];180 -> 3143[label="",style="solid", color="burlywood", weight=9]; 3143 -> 222[label="",style="solid", color="burlywood", weight=3]; 181[label="compare xuu400 xuu30",fontsize=16,color="burlywood",shape="triangle"];3144[label="xuu400/xuu4000 :% xuu4001",fontsize=10,color="white",style="solid",shape="box"];181 -> 3144[label="",style="solid", color="burlywood", weight=9]; 3144 -> 223[label="",style="solid", color="burlywood", weight=3]; 182[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];182 -> 224[label="",style="solid", color="black", weight=3]; 183[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];183 -> 225[label="",style="solid", color="black", weight=3]; 184[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];184 -> 226[label="",style="solid", color="black", weight=3]; 185[label="compare xuu400 xuu30",fontsize=16,color="burlywood",shape="triangle"];3145[label="xuu400/Integer xuu4000",fontsize=10,color="white",style="solid",shape="box"];185 -> 3145[label="",style="solid", color="burlywood", weight=9]; 3145 -> 227[label="",style="solid", color="burlywood", weight=3]; 186[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];186 -> 228[label="",style="solid", color="black", weight=3]; 187[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];187 -> 229[label="",style="solid", color="black", weight=3]; 188[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];188 -> 230[label="",style="solid", color="black", weight=3]; 189[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];189 -> 231[label="",style="solid", color="black", weight=3]; 190[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];190 -> 232[label="",style="solid", color="black", weight=3]; 191[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];191 -> 233[label="",style="solid", color="black", weight=3]; 192[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];192 -> 234[label="",style="solid", color="black", weight=3]; 82[label="xuu20",fontsize=16,color="green",shape="box"];83[label="xuu18",fontsize=16,color="green",shape="box"];84[label="xuu15",fontsize=16,color="green",shape="box"];85[label="xuu16",fontsize=16,color="green",shape="box"];86[label="xuu19",fontsize=16,color="green",shape="box"];87[label="xuu14",fontsize=16,color="green",shape="box"];88[label="xuu17",fontsize=16,color="green",shape="box"];89[label="xuu19 > xuu14",fontsize=16,color="blue",shape="box"];3146[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 110[label="",style="solid", color="blue", weight=3]; 3147[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 111[label="",style="solid", color="blue", weight=3]; 3148[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 112[label="",style="solid", color="blue", weight=3]; 3149[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 113[label="",style="solid", color="blue", weight=3]; 3150[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 114[label="",style="solid", color="blue", weight=3]; 3151[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 115[label="",style="solid", color="blue", weight=3]; 3152[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 116[label="",style="solid", color="blue", weight=3]; 3153[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3153[label="",style="solid", color="blue", weight=9]; 3153 -> 117[label="",style="solid", color="blue", weight=3]; 3154[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 118[label="",style="solid", color="blue", weight=3]; 3155[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 119[label="",style="solid", color="blue", weight=3]; 3156[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 120[label="",style="solid", color="blue", weight=3]; 3157[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 121[label="",style="solid", color="blue", weight=3]; 3158[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 122[label="",style="solid", color="blue", weight=3]; 3159[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 123[label="",style="solid", color="blue", weight=3]; 81[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu31 xuu32 xuu33 xuu34 xuu35 xuu36 xuu37 xuu38",fontsize=16,color="burlywood",shape="triangle"];3160[label="xuu38/False",fontsize=10,color="white",style="solid",shape="box"];81 -> 3160[label="",style="solid", color="burlywood", weight=9]; 3160 -> 124[label="",style="solid", color="burlywood", weight=3]; 3161[label="xuu38/True",fontsize=10,color="white",style="solid",shape="box"];81 -> 3161[label="",style="solid", color="burlywood", weight=9]; 3161 -> 125[label="",style="solid", color="burlywood", weight=3]; 91 -> 14[label="",style="dashed", color="red", weight=0]; 91[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 xuu19 xuu20",fontsize=16,color="magenta"];91 -> 126[label="",style="dashed", color="magenta", weight=3]; 91 -> 127[label="",style="dashed", color="magenta", weight=3]; 91 -> 128[label="",style="dashed", color="magenta", weight=3]; 90[label="FiniteMap.mkBalBranch xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="triangle"];90 -> 129[label="",style="solid", color="black", weight=3]; 217[label="compare () xuu30",fontsize=16,color="burlywood",shape="box"];3162[label="xuu30/()",fontsize=10,color="white",style="solid",shape="box"];217 -> 3162[label="",style="solid", color="burlywood", weight=9]; 3162 -> 250[label="",style="solid", color="burlywood", weight=3]; 218[label="LT == LT",fontsize=16,color="black",shape="box"];218 -> 251[label="",style="solid", color="black", weight=3]; 219[label="EQ == LT",fontsize=16,color="black",shape="box"];219 -> 252[label="",style="solid", color="black", weight=3]; 220[label="GT == LT",fontsize=16,color="black",shape="box"];220 -> 253[label="",style="solid", color="black", weight=3]; 221[label="compare (xuu4000 : xuu4001) xuu30",fontsize=16,color="burlywood",shape="box"];3163[label="xuu30/xuu300 : xuu301",fontsize=10,color="white",style="solid",shape="box"];221 -> 3163[label="",style="solid", color="burlywood", weight=9]; 3163 -> 254[label="",style="solid", color="burlywood", weight=3]; 3164[label="xuu30/[]",fontsize=10,color="white",style="solid",shape="box"];221 -> 3164[label="",style="solid", color="burlywood", weight=9]; 3164 -> 255[label="",style="solid", color="burlywood", weight=3]; 222[label="compare [] xuu30",fontsize=16,color="burlywood",shape="box"];3165[label="xuu30/xuu300 : xuu301",fontsize=10,color="white",style="solid",shape="box"];222 -> 3165[label="",style="solid", color="burlywood", weight=9]; 3165 -> 256[label="",style="solid", color="burlywood", weight=3]; 3166[label="xuu30/[]",fontsize=10,color="white",style="solid",shape="box"];222 -> 3166[label="",style="solid", color="burlywood", weight=9]; 3166 -> 257[label="",style="solid", color="burlywood", weight=3]; 223[label="compare (xuu4000 :% xuu4001) xuu30",fontsize=16,color="burlywood",shape="box"];3167[label="xuu30/xuu300 :% xuu301",fontsize=10,color="white",style="solid",shape="box"];223 -> 3167[label="",style="solid", color="burlywood", weight=9]; 3167 -> 258[label="",style="solid", color="burlywood", weight=3]; 224[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];224 -> 259[label="",style="solid", color="black", weight=3]; 225[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];225 -> 260[label="",style="solid", color="black", weight=3]; 226[label="primCmpFloat xuu400 xuu30",fontsize=16,color="burlywood",shape="box"];3168[label="xuu400/Float xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];226 -> 3168[label="",style="solid", color="burlywood", weight=9]; 3168 -> 261[label="",style="solid", color="burlywood", weight=3]; 227[label="compare (Integer xuu4000) xuu30",fontsize=16,color="burlywood",shape="box"];3169[label="xuu30/Integer xuu300",fontsize=10,color="white",style="solid",shape="box"];227 -> 3169[label="",style="solid", color="burlywood", weight=9]; 3169 -> 262[label="",style="solid", color="burlywood", weight=3]; 228[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];228 -> 263[label="",style="solid", color="black", weight=3]; 229[label="primCmpInt xuu400 xuu30",fontsize=16,color="burlywood",shape="triangle"];3170[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];229 -> 3170[label="",style="solid", color="burlywood", weight=9]; 3170 -> 264[label="",style="solid", color="burlywood", weight=3]; 3171[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];229 -> 3171[label="",style="solid", color="burlywood", weight=9]; 3171 -> 265[label="",style="solid", color="burlywood", weight=3]; 230[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];230 -> 266[label="",style="solid", color="black", weight=3]; 231[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];231 -> 267[label="",style="solid", color="black", weight=3]; 232[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];232 -> 268[label="",style="solid", color="black", weight=3]; 233[label="primCmpDouble xuu400 xuu30",fontsize=16,color="burlywood",shape="box"];3172[label="xuu400/Double xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];233 -> 3172[label="",style="solid", color="burlywood", weight=9]; 3172 -> 269[label="",style="solid", color="burlywood", weight=3]; 234[label="primCmpChar xuu400 xuu30",fontsize=16,color="burlywood",shape="box"];3173[label="xuu400/Char xuu4000",fontsize=10,color="white",style="solid",shape="box"];234 -> 3173[label="",style="solid", color="burlywood", weight=9]; 3173 -> 270[label="",style="solid", color="burlywood", weight=3]; 110[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];110 -> 157[label="",style="solid", color="black", weight=3]; 111[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];111 -> 158[label="",style="solid", color="black", weight=3]; 112[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];112 -> 159[label="",style="solid", color="black", weight=3]; 113[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];113 -> 160[label="",style="solid", color="black", weight=3]; 114[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];114 -> 161[label="",style="solid", color="black", weight=3]; 115[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];115 -> 162[label="",style="solid", color="black", weight=3]; 116[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];116 -> 163[label="",style="solid", color="black", weight=3]; 117[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];117 -> 164[label="",style="solid", color="black", weight=3]; 118[label="xuu19 > xuu14",fontsize=16,color="black",shape="triangle"];118 -> 165[label="",style="solid", color="black", weight=3]; 119[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];119 -> 166[label="",style="solid", color="black", weight=3]; 120[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];120 -> 167[label="",style="solid", color="black", weight=3]; 121[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];121 -> 168[label="",style="solid", color="black", weight=3]; 122[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];122 -> 169[label="",style="solid", color="black", weight=3]; 123[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];123 -> 170[label="",style="solid", color="black", weight=3]; 124[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu31 xuu32 xuu33 xuu34 xuu35 xuu36 xuu37 False",fontsize=16,color="black",shape="box"];124 -> 171[label="",style="solid", color="black", weight=3]; 125[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu31 xuu32 xuu33 xuu34 xuu35 xuu36 xuu37 True",fontsize=16,color="black",shape="box"];125 -> 172[label="",style="solid", color="black", weight=3]; 126[label="xuu17",fontsize=16,color="green",shape="box"];127[label="xuu19",fontsize=16,color="green",shape="box"];128[label="xuu20",fontsize=16,color="green",shape="box"];129[label="FiniteMap.mkBalBranch6 xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="box"];129 -> 173[label="",style="solid", color="black", weight=3]; 250[label="compare () ()",fontsize=16,color="black",shape="box"];250 -> 278[label="",style="solid", color="black", weight=3]; 251[label="True",fontsize=16,color="green",shape="box"];252[label="False",fontsize=16,color="green",shape="box"];253[label="False",fontsize=16,color="green",shape="box"];254[label="compare (xuu4000 : xuu4001) (xuu300 : xuu301)",fontsize=16,color="black",shape="box"];254 -> 279[label="",style="solid", color="black", weight=3]; 255[label="compare (xuu4000 : xuu4001) []",fontsize=16,color="black",shape="box"];255 -> 280[label="",style="solid", color="black", weight=3]; 256[label="compare [] (xuu300 : xuu301)",fontsize=16,color="black",shape="box"];256 -> 281[label="",style="solid", color="black", weight=3]; 257[label="compare [] []",fontsize=16,color="black",shape="box"];257 -> 282[label="",style="solid", color="black", weight=3]; 258[label="compare (xuu4000 :% xuu4001) (xuu300 :% xuu301)",fontsize=16,color="black",shape="box"];258 -> 283[label="",style="solid", color="black", weight=3]; 259[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3174[label="xuu400/(xuu4000,xuu4001)",fontsize=10,color="white",style="solid",shape="box"];259 -> 3174[label="",style="solid", color="burlywood", weight=9]; 3174 -> 284[label="",style="solid", color="burlywood", weight=3]; 260[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3175[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];260 -> 3175[label="",style="solid", color="burlywood", weight=9]; 3175 -> 285[label="",style="solid", color="burlywood", weight=3]; 3176[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];260 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 286[label="",style="solid", color="burlywood", weight=3]; 261[label="primCmpFloat (Float xuu4000 xuu4001) xuu30",fontsize=16,color="burlywood",shape="box"];3177[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];261 -> 3177[label="",style="solid", color="burlywood", weight=9]; 3177 -> 287[label="",style="solid", color="burlywood", weight=3]; 3178[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];261 -> 3178[label="",style="solid", color="burlywood", weight=9]; 3178 -> 288[label="",style="solid", color="burlywood", weight=3]; 262[label="compare (Integer xuu4000) (Integer xuu300)",fontsize=16,color="black",shape="box"];262 -> 289[label="",style="solid", color="black", weight=3]; 263[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3179[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];263 -> 3179[label="",style="solid", color="burlywood", weight=9]; 3179 -> 290[label="",style="solid", color="burlywood", weight=3]; 3180[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];263 -> 3180[label="",style="solid", color="burlywood", weight=9]; 3180 -> 291[label="",style="solid", color="burlywood", weight=3]; 264[label="primCmpInt (Pos xuu4000) xuu30",fontsize=16,color="burlywood",shape="box"];3181[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];264 -> 3181[label="",style="solid", color="burlywood", weight=9]; 3181 -> 292[label="",style="solid", color="burlywood", weight=3]; 3182[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];264 -> 3182[label="",style="solid", color="burlywood", weight=9]; 3182 -> 293[label="",style="solid", color="burlywood", weight=3]; 265[label="primCmpInt (Neg xuu4000) xuu30",fontsize=16,color="burlywood",shape="box"];3183[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];265 -> 3183[label="",style="solid", color="burlywood", weight=9]; 3183 -> 294[label="",style="solid", color="burlywood", weight=3]; 3184[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];265 -> 3184[label="",style="solid", color="burlywood", weight=9]; 3184 -> 295[label="",style="solid", color="burlywood", weight=3]; 266[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3185[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];266 -> 3185[label="",style="solid", color="burlywood", weight=9]; 3185 -> 296[label="",style="solid", color="burlywood", weight=3]; 3186[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];266 -> 3186[label="",style="solid", color="burlywood", weight=9]; 3186 -> 297[label="",style="solid", color="burlywood", weight=3]; 3187[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];266 -> 3187[label="",style="solid", color="burlywood", weight=9]; 3187 -> 298[label="",style="solid", color="burlywood", weight=3]; 267[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3188[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];267 -> 3188[label="",style="solid", color="burlywood", weight=9]; 3188 -> 299[label="",style="solid", color="burlywood", weight=3]; 3189[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];267 -> 3189[label="",style="solid", color="burlywood", weight=9]; 3189 -> 300[label="",style="solid", color="burlywood", weight=3]; 268[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3190[label="xuu400/(xuu4000,xuu4001,xuu4002)",fontsize=10,color="white",style="solid",shape="box"];268 -> 3190[label="",style="solid", color="burlywood", weight=9]; 3190 -> 301[label="",style="solid", color="burlywood", weight=3]; 269[label="primCmpDouble (Double xuu4000 xuu4001) xuu30",fontsize=16,color="burlywood",shape="box"];3191[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];269 -> 3191[label="",style="solid", color="burlywood", weight=9]; 3191 -> 302[label="",style="solid", color="burlywood", weight=3]; 3192[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];269 -> 3192[label="",style="solid", color="burlywood", weight=9]; 3192 -> 303[label="",style="solid", color="burlywood", weight=3]; 270[label="primCmpChar (Char xuu4000) xuu30",fontsize=16,color="burlywood",shape="box"];3193[label="xuu30/Char xuu300",fontsize=10,color="white",style="solid",shape="box"];270 -> 3193[label="",style="solid", color="burlywood", weight=9]; 3193 -> 304[label="",style="solid", color="burlywood", weight=3]; 157 -> 235[label="",style="dashed", color="red", weight=0]; 157[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];157 -> 236[label="",style="dashed", color="magenta", weight=3]; 158 -> 235[label="",style="dashed", color="red", weight=0]; 158[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];158 -> 237[label="",style="dashed", color="magenta", weight=3]; 159 -> 235[label="",style="dashed", color="red", weight=0]; 159[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];159 -> 238[label="",style="dashed", color="magenta", weight=3]; 160 -> 235[label="",style="dashed", color="red", weight=0]; 160[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];160 -> 239[label="",style="dashed", color="magenta", weight=3]; 161 -> 235[label="",style="dashed", color="red", weight=0]; 161[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];161 -> 240[label="",style="dashed", color="magenta", weight=3]; 162 -> 235[label="",style="dashed", color="red", weight=0]; 162[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];162 -> 241[label="",style="dashed", color="magenta", weight=3]; 163 -> 235[label="",style="dashed", color="red", weight=0]; 163[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];163 -> 242[label="",style="dashed", color="magenta", weight=3]; 164 -> 235[label="",style="dashed", color="red", weight=0]; 164[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];164 -> 243[label="",style="dashed", color="magenta", weight=3]; 165 -> 235[label="",style="dashed", color="red", weight=0]; 165[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];165 -> 244[label="",style="dashed", color="magenta", weight=3]; 166 -> 235[label="",style="dashed", color="red", weight=0]; 166[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];166 -> 245[label="",style="dashed", color="magenta", weight=3]; 167 -> 235[label="",style="dashed", color="red", weight=0]; 167[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];167 -> 246[label="",style="dashed", color="magenta", weight=3]; 168 -> 235[label="",style="dashed", color="red", weight=0]; 168[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];168 -> 247[label="",style="dashed", color="magenta", weight=3]; 169 -> 235[label="",style="dashed", color="red", weight=0]; 169[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];169 -> 248[label="",style="dashed", color="magenta", weight=3]; 170 -> 235[label="",style="dashed", color="red", weight=0]; 170[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];170 -> 249[label="",style="dashed", color="magenta", weight=3]; 171[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 xuu31 xuu32 xuu33 xuu34 xuu35 xuu36 xuu37 otherwise",fontsize=16,color="black",shape="box"];171 -> 271[label="",style="solid", color="black", weight=3]; 172 -> 90[label="",style="dashed", color="red", weight=0]; 172[label="FiniteMap.mkBalBranch xuu31 xuu32 xuu34 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu35 xuu36 xuu37)",fontsize=16,color="magenta"];172 -> 272[label="",style="dashed", color="magenta", weight=3]; 172 -> 273[label="",style="dashed", color="magenta", weight=3]; 172 -> 274[label="",style="dashed", color="magenta", weight=3]; 172 -> 275[label="",style="dashed", color="magenta", weight=3]; 173 -> 276[label="",style="dashed", color="red", weight=0]; 173[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 (FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18 + FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];173 -> 277[label="",style="dashed", color="magenta", weight=3]; 278[label="EQ",fontsize=16,color="green",shape="box"];279 -> 344[label="",style="dashed", color="red", weight=0]; 279[label="primCompAux xuu4000 xuu300 (compare xuu4001 xuu301)",fontsize=16,color="magenta"];279 -> 345[label="",style="dashed", color="magenta", weight=3]; 280[label="GT",fontsize=16,color="green",shape="box"];281[label="LT",fontsize=16,color="green",shape="box"];282[label="EQ",fontsize=16,color="green",shape="box"];283[label="compare (xuu4000 * xuu301) (xuu300 * xuu4001)",fontsize=16,color="blue",shape="box"];3194[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];283 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 346[label="",style="solid", color="blue", weight=3]; 3195[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];283 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 347[label="",style="solid", color="blue", weight=3]; 284[label="compare2 (xuu4000,xuu4001) xuu30 ((xuu4000,xuu4001) == xuu30)",fontsize=16,color="burlywood",shape="box"];3196[label="xuu30/(xuu300,xuu301)",fontsize=10,color="white",style="solid",shape="box"];284 -> 3196[label="",style="solid", color="burlywood", weight=9]; 3196 -> 348[label="",style="solid", color="burlywood", weight=3]; 285[label="compare2 Nothing xuu30 (Nothing == xuu30)",fontsize=16,color="burlywood",shape="box"];3197[label="xuu30/Nothing",fontsize=10,color="white",style="solid",shape="box"];285 -> 3197[label="",style="solid", color="burlywood", weight=9]; 3197 -> 349[label="",style="solid", color="burlywood", weight=3]; 3198[label="xuu30/Just xuu300",fontsize=10,color="white",style="solid",shape="box"];285 -> 3198[label="",style="solid", color="burlywood", weight=9]; 3198 -> 350[label="",style="solid", color="burlywood", weight=3]; 286[label="compare2 (Just xuu4000) xuu30 (Just xuu4000 == xuu30)",fontsize=16,color="burlywood",shape="box"];3199[label="xuu30/Nothing",fontsize=10,color="white",style="solid",shape="box"];286 -> 3199[label="",style="solid", color="burlywood", weight=9]; 3199 -> 351[label="",style="solid", color="burlywood", weight=3]; 3200[label="xuu30/Just xuu300",fontsize=10,color="white",style="solid",shape="box"];286 -> 3200[label="",style="solid", color="burlywood", weight=9]; 3200 -> 352[label="",style="solid", color="burlywood", weight=3]; 287[label="primCmpFloat (Float xuu4000 (Pos xuu40010)) xuu30",fontsize=16,color="burlywood",shape="box"];3201[label="xuu30/Float xuu300 xuu301",fontsize=10,color="white",style="solid",shape="box"];287 -> 3201[label="",style="solid", color="burlywood", weight=9]; 3201 -> 353[label="",style="solid", color="burlywood", weight=3]; 288[label="primCmpFloat (Float xuu4000 (Neg xuu40010)) xuu30",fontsize=16,color="burlywood",shape="box"];3202[label="xuu30/Float xuu300 xuu301",fontsize=10,color="white",style="solid",shape="box"];288 -> 3202[label="",style="solid", color="burlywood", weight=9]; 3202 -> 354[label="",style="solid", color="burlywood", weight=3]; 289 -> 229[label="",style="dashed", color="red", weight=0]; 289[label="primCmpInt xuu4000 xuu300",fontsize=16,color="magenta"];289 -> 355[label="",style="dashed", color="magenta", weight=3]; 289 -> 356[label="",style="dashed", color="magenta", weight=3]; 290[label="compare2 (Left xuu4000) xuu30 (Left xuu4000 == xuu30)",fontsize=16,color="burlywood",shape="box"];3203[label="xuu30/Left xuu300",fontsize=10,color="white",style="solid",shape="box"];290 -> 3203[label="",style="solid", color="burlywood", weight=9]; 3203 -> 357[label="",style="solid", color="burlywood", weight=3]; 3204[label="xuu30/Right xuu300",fontsize=10,color="white",style="solid",shape="box"];290 -> 3204[label="",style="solid", color="burlywood", weight=9]; 3204 -> 358[label="",style="solid", color="burlywood", weight=3]; 291[label="compare2 (Right xuu4000) xuu30 (Right xuu4000 == xuu30)",fontsize=16,color="burlywood",shape="box"];3205[label="xuu30/Left xuu300",fontsize=10,color="white",style="solid",shape="box"];291 -> 3205[label="",style="solid", color="burlywood", weight=9]; 3205 -> 359[label="",style="solid", color="burlywood", weight=3]; 3206[label="xuu30/Right xuu300",fontsize=10,color="white",style="solid",shape="box"];291 -> 3206[label="",style="solid", color="burlywood", weight=9]; 3206 -> 360[label="",style="solid", color="burlywood", weight=3]; 292[label="primCmpInt (Pos (Succ xuu40000)) xuu30",fontsize=16,color="burlywood",shape="box"];3207[label="xuu30/Pos xuu300",fontsize=10,color="white",style="solid",shape="box"];292 -> 3207[label="",style="solid", color="burlywood", weight=9]; 3207 -> 361[label="",style="solid", color="burlywood", weight=3]; 3208[label="xuu30/Neg xuu300",fontsize=10,color="white",style="solid",shape="box"];292 -> 3208[label="",style="solid", color="burlywood", weight=9]; 3208 -> 362[label="",style="solid", color="burlywood", weight=3]; 293[label="primCmpInt (Pos Zero) xuu30",fontsize=16,color="burlywood",shape="box"];3209[label="xuu30/Pos xuu300",fontsize=10,color="white",style="solid",shape="box"];293 -> 3209[label="",style="solid", color="burlywood", weight=9]; 3209 -> 363[label="",style="solid", color="burlywood", weight=3]; 3210[label="xuu30/Neg xuu300",fontsize=10,color="white",style="solid",shape="box"];293 -> 3210[label="",style="solid", color="burlywood", weight=9]; 3210 -> 364[label="",style="solid", color="burlywood", weight=3]; 294[label="primCmpInt (Neg (Succ xuu40000)) xuu30",fontsize=16,color="burlywood",shape="box"];3211[label="xuu30/Pos xuu300",fontsize=10,color="white",style="solid",shape="box"];294 -> 3211[label="",style="solid", color="burlywood", weight=9]; 3211 -> 365[label="",style="solid", color="burlywood", weight=3]; 3212[label="xuu30/Neg xuu300",fontsize=10,color="white",style="solid",shape="box"];294 -> 3212[label="",style="solid", color="burlywood", weight=9]; 3212 -> 366[label="",style="solid", color="burlywood", weight=3]; 295[label="primCmpInt (Neg Zero) xuu30",fontsize=16,color="burlywood",shape="box"];3213[label="xuu30/Pos xuu300",fontsize=10,color="white",style="solid",shape="box"];295 -> 3213[label="",style="solid", color="burlywood", weight=9]; 3213 -> 367[label="",style="solid", color="burlywood", weight=3]; 3214[label="xuu30/Neg xuu300",fontsize=10,color="white",style="solid",shape="box"];295 -> 3214[label="",style="solid", color="burlywood", weight=9]; 3214 -> 368[label="",style="solid", color="burlywood", weight=3]; 296[label="compare2 LT xuu30 (LT == xuu30)",fontsize=16,color="burlywood",shape="box"];3215[label="xuu30/LT",fontsize=10,color="white",style="solid",shape="box"];296 -> 3215[label="",style="solid", color="burlywood", weight=9]; 3215 -> 369[label="",style="solid", color="burlywood", weight=3]; 3216[label="xuu30/EQ",fontsize=10,color="white",style="solid",shape="box"];296 -> 3216[label="",style="solid", color="burlywood", weight=9]; 3216 -> 370[label="",style="solid", color="burlywood", weight=3]; 3217[label="xuu30/GT",fontsize=10,color="white",style="solid",shape="box"];296 -> 3217[label="",style="solid", color="burlywood", weight=9]; 3217 -> 371[label="",style="solid", color="burlywood", weight=3]; 297[label="compare2 EQ xuu30 (EQ == xuu30)",fontsize=16,color="burlywood",shape="box"];3218[label="xuu30/LT",fontsize=10,color="white",style="solid",shape="box"];297 -> 3218[label="",style="solid", color="burlywood", weight=9]; 3218 -> 372[label="",style="solid", color="burlywood", weight=3]; 3219[label="xuu30/EQ",fontsize=10,color="white",style="solid",shape="box"];297 -> 3219[label="",style="solid", color="burlywood", weight=9]; 3219 -> 373[label="",style="solid", color="burlywood", weight=3]; 3220[label="xuu30/GT",fontsize=10,color="white",style="solid",shape="box"];297 -> 3220[label="",style="solid", color="burlywood", weight=9]; 3220 -> 374[label="",style="solid", color="burlywood", weight=3]; 298[label="compare2 GT xuu30 (GT == xuu30)",fontsize=16,color="burlywood",shape="box"];3221[label="xuu30/LT",fontsize=10,color="white",style="solid",shape="box"];298 -> 3221[label="",style="solid", color="burlywood", weight=9]; 3221 -> 375[label="",style="solid", color="burlywood", weight=3]; 3222[label="xuu30/EQ",fontsize=10,color="white",style="solid",shape="box"];298 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 376[label="",style="solid", color="burlywood", weight=3]; 3223[label="xuu30/GT",fontsize=10,color="white",style="solid",shape="box"];298 -> 3223[label="",style="solid", color="burlywood", weight=9]; 3223 -> 377[label="",style="solid", color="burlywood", weight=3]; 299[label="compare2 False xuu30 (False == xuu30)",fontsize=16,color="burlywood",shape="box"];3224[label="xuu30/False",fontsize=10,color="white",style="solid",shape="box"];299 -> 3224[label="",style="solid", color="burlywood", weight=9]; 3224 -> 378[label="",style="solid", color="burlywood", weight=3]; 3225[label="xuu30/True",fontsize=10,color="white",style="solid",shape="box"];299 -> 3225[label="",style="solid", color="burlywood", weight=9]; 3225 -> 379[label="",style="solid", color="burlywood", weight=3]; 300[label="compare2 True xuu30 (True == xuu30)",fontsize=16,color="burlywood",shape="box"];3226[label="xuu30/False",fontsize=10,color="white",style="solid",shape="box"];300 -> 3226[label="",style="solid", color="burlywood", weight=9]; 3226 -> 380[label="",style="solid", color="burlywood", weight=3]; 3227[label="xuu30/True",fontsize=10,color="white",style="solid",shape="box"];300 -> 3227[label="",style="solid", color="burlywood", weight=9]; 3227 -> 381[label="",style="solid", color="burlywood", weight=3]; 301[label="compare2 (xuu4000,xuu4001,xuu4002) xuu30 ((xuu4000,xuu4001,xuu4002) == xuu30)",fontsize=16,color="burlywood",shape="box"];3228[label="xuu30/(xuu300,xuu301,xuu302)",fontsize=10,color="white",style="solid",shape="box"];301 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 382[label="",style="solid", color="burlywood", weight=3]; 302[label="primCmpDouble (Double xuu4000 (Pos xuu40010)) xuu30",fontsize=16,color="burlywood",shape="box"];3229[label="xuu30/Double xuu300 xuu301",fontsize=10,color="white",style="solid",shape="box"];302 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 383[label="",style="solid", color="burlywood", weight=3]; 303[label="primCmpDouble (Double xuu4000 (Neg xuu40010)) xuu30",fontsize=16,color="burlywood",shape="box"];3230[label="xuu30/Double xuu300 xuu301",fontsize=10,color="white",style="solid",shape="box"];303 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 384[label="",style="solid", color="burlywood", weight=3]; 304[label="primCmpChar (Char xuu4000) (Char xuu300)",fontsize=16,color="black",shape="box"];304 -> 385[label="",style="solid", color="black", weight=3]; 236 -> 179[label="",style="dashed", color="red", weight=0]; 236[label="compare xuu19 xuu14",fontsize=16,color="magenta"];236 -> 305[label="",style="dashed", color="magenta", weight=3]; 236 -> 306[label="",style="dashed", color="magenta", weight=3]; 235[label="xuu43 == GT",fontsize=16,color="burlywood",shape="triangle"];3231[label="xuu43/LT",fontsize=10,color="white",style="solid",shape="box"];235 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 307[label="",style="solid", color="burlywood", weight=3]; 3232[label="xuu43/EQ",fontsize=10,color="white",style="solid",shape="box"];235 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 308[label="",style="solid", color="burlywood", weight=3]; 3233[label="xuu43/GT",fontsize=10,color="white",style="solid",shape="box"];235 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 309[label="",style="solid", color="burlywood", weight=3]; 237 -> 180[label="",style="dashed", color="red", weight=0]; 237[label="compare xuu19 xuu14",fontsize=16,color="magenta"];237 -> 310[label="",style="dashed", color="magenta", weight=3]; 237 -> 311[label="",style="dashed", color="magenta", weight=3]; 238 -> 181[label="",style="dashed", color="red", weight=0]; 238[label="compare xuu19 xuu14",fontsize=16,color="magenta"];238 -> 312[label="",style="dashed", color="magenta", weight=3]; 238 -> 313[label="",style="dashed", color="magenta", weight=3]; 239 -> 182[label="",style="dashed", color="red", weight=0]; 239[label="compare xuu19 xuu14",fontsize=16,color="magenta"];239 -> 314[label="",style="dashed", color="magenta", weight=3]; 239 -> 315[label="",style="dashed", color="magenta", weight=3]; 240 -> 183[label="",style="dashed", color="red", weight=0]; 240[label="compare xuu19 xuu14",fontsize=16,color="magenta"];240 -> 316[label="",style="dashed", color="magenta", weight=3]; 240 -> 317[label="",style="dashed", color="magenta", weight=3]; 241 -> 184[label="",style="dashed", color="red", weight=0]; 241[label="compare xuu19 xuu14",fontsize=16,color="magenta"];241 -> 318[label="",style="dashed", color="magenta", weight=3]; 241 -> 319[label="",style="dashed", color="magenta", weight=3]; 242 -> 185[label="",style="dashed", color="red", weight=0]; 242[label="compare xuu19 xuu14",fontsize=16,color="magenta"];242 -> 320[label="",style="dashed", color="magenta", weight=3]; 242 -> 321[label="",style="dashed", color="magenta", weight=3]; 243 -> 186[label="",style="dashed", color="red", weight=0]; 243[label="compare xuu19 xuu14",fontsize=16,color="magenta"];243 -> 322[label="",style="dashed", color="magenta", weight=3]; 243 -> 323[label="",style="dashed", color="magenta", weight=3]; 244 -> 187[label="",style="dashed", color="red", weight=0]; 244[label="compare xuu19 xuu14",fontsize=16,color="magenta"];244 -> 324[label="",style="dashed", color="magenta", weight=3]; 244 -> 325[label="",style="dashed", color="magenta", weight=3]; 245 -> 188[label="",style="dashed", color="red", weight=0]; 245[label="compare xuu19 xuu14",fontsize=16,color="magenta"];245 -> 326[label="",style="dashed", color="magenta", weight=3]; 245 -> 327[label="",style="dashed", color="magenta", weight=3]; 246 -> 189[label="",style="dashed", color="red", weight=0]; 246[label="compare xuu19 xuu14",fontsize=16,color="magenta"];246 -> 328[label="",style="dashed", color="magenta", weight=3]; 246 -> 329[label="",style="dashed", color="magenta", weight=3]; 247 -> 190[label="",style="dashed", color="red", weight=0]; 247[label="compare xuu19 xuu14",fontsize=16,color="magenta"];247 -> 330[label="",style="dashed", color="magenta", weight=3]; 247 -> 331[label="",style="dashed", color="magenta", weight=3]; 248 -> 191[label="",style="dashed", color="red", weight=0]; 248[label="compare xuu19 xuu14",fontsize=16,color="magenta"];248 -> 332[label="",style="dashed", color="magenta", weight=3]; 248 -> 333[label="",style="dashed", color="magenta", weight=3]; 249 -> 192[label="",style="dashed", color="red", weight=0]; 249[label="compare xuu19 xuu14",fontsize=16,color="magenta"];249 -> 334[label="",style="dashed", color="magenta", weight=3]; 249 -> 335[label="",style="dashed", color="magenta", weight=3]; 271[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 xuu31 xuu32 xuu33 xuu34 xuu35 xuu36 xuu37 True",fontsize=16,color="black",shape="box"];271 -> 336[label="",style="solid", color="black", weight=3]; 272[label="xuu34",fontsize=16,color="green",shape="box"];273[label="xuu32",fontsize=16,color="green",shape="box"];274[label="xuu31",fontsize=16,color="green",shape="box"];275 -> 14[label="",style="dashed", color="red", weight=0]; 275[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu35 xuu36 xuu37",fontsize=16,color="magenta"];275 -> 337[label="",style="dashed", color="magenta", weight=3]; 275 -> 338[label="",style="dashed", color="magenta", weight=3]; 275 -> 339[label="",style="dashed", color="magenta", weight=3]; 277 -> 41[label="",style="dashed", color="red", weight=0]; 277[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18 + FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];277 -> 340[label="",style="dashed", color="magenta", weight=3]; 277 -> 341[label="",style="dashed", color="magenta", weight=3]; 276[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 xuu44",fontsize=16,color="burlywood",shape="triangle"];3234[label="xuu44/False",fontsize=10,color="white",style="solid",shape="box"];276 -> 3234[label="",style="solid", color="burlywood", weight=9]; 3234 -> 342[label="",style="solid", color="burlywood", weight=3]; 3235[label="xuu44/True",fontsize=10,color="white",style="solid",shape="box"];276 -> 3235[label="",style="solid", color="burlywood", weight=9]; 3235 -> 343[label="",style="solid", color="burlywood", weight=3]; 345 -> 180[label="",style="dashed", color="red", weight=0]; 345[label="compare xuu4001 xuu301",fontsize=16,color="magenta"];345 -> 386[label="",style="dashed", color="magenta", weight=3]; 345 -> 387[label="",style="dashed", color="magenta", weight=3]; 344[label="primCompAux xuu4000 xuu300 xuu45",fontsize=16,color="black",shape="triangle"];344 -> 388[label="",style="solid", color="black", weight=3]; 346 -> 185[label="",style="dashed", color="red", weight=0]; 346[label="compare (xuu4000 * xuu301) (xuu300 * xuu4001)",fontsize=16,color="magenta"];346 -> 396[label="",style="dashed", color="magenta", weight=3]; 346 -> 397[label="",style="dashed", color="magenta", weight=3]; 347 -> 187[label="",style="dashed", color="red", weight=0]; 347[label="compare (xuu4000 * xuu301) (xuu300 * xuu4001)",fontsize=16,color="magenta"];347 -> 398[label="",style="dashed", color="magenta", weight=3]; 347 -> 399[label="",style="dashed", color="magenta", weight=3]; 348[label="compare2 (xuu4000,xuu4001) (xuu300,xuu301) ((xuu4000,xuu4001) == (xuu300,xuu301))",fontsize=16,color="black",shape="box"];348 -> 400[label="",style="solid", color="black", weight=3]; 349[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];349 -> 401[label="",style="solid", color="black", weight=3]; 350[label="compare2 Nothing (Just xuu300) (Nothing == Just xuu300)",fontsize=16,color="black",shape="box"];350 -> 402[label="",style="solid", color="black", weight=3]; 351[label="compare2 (Just xuu4000) Nothing (Just xuu4000 == Nothing)",fontsize=16,color="black",shape="box"];351 -> 403[label="",style="solid", color="black", weight=3]; 352[label="compare2 (Just xuu4000) (Just xuu300) (Just xuu4000 == Just xuu300)",fontsize=16,color="black",shape="box"];352 -> 404[label="",style="solid", color="black", weight=3]; 353[label="primCmpFloat (Float xuu4000 (Pos xuu40010)) (Float xuu300 xuu301)",fontsize=16,color="burlywood",shape="box"];3236[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];353 -> 3236[label="",style="solid", color="burlywood", weight=9]; 3236 -> 405[label="",style="solid", color="burlywood", weight=3]; 3237[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];353 -> 3237[label="",style="solid", color="burlywood", weight=9]; 3237 -> 406[label="",style="solid", color="burlywood", weight=3]; 354[label="primCmpFloat (Float xuu4000 (Neg xuu40010)) (Float xuu300 xuu301)",fontsize=16,color="burlywood",shape="box"];3238[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];354 -> 3238[label="",style="solid", color="burlywood", weight=9]; 3238 -> 407[label="",style="solid", color="burlywood", weight=3]; 3239[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];354 -> 3239[label="",style="solid", color="burlywood", weight=9]; 3239 -> 408[label="",style="solid", color="burlywood", weight=3]; 355[label="xuu4000",fontsize=16,color="green",shape="box"];356[label="xuu300",fontsize=16,color="green",shape="box"];357[label="compare2 (Left xuu4000) (Left xuu300) (Left xuu4000 == Left xuu300)",fontsize=16,color="black",shape="box"];357 -> 409[label="",style="solid", color="black", weight=3]; 358[label="compare2 (Left xuu4000) (Right xuu300) (Left xuu4000 == Right xuu300)",fontsize=16,color="black",shape="box"];358 -> 410[label="",style="solid", color="black", weight=3]; 359[label="compare2 (Right xuu4000) (Left xuu300) (Right xuu4000 == Left xuu300)",fontsize=16,color="black",shape="box"];359 -> 411[label="",style="solid", color="black", weight=3]; 360[label="compare2 (Right xuu4000) (Right xuu300) (Right xuu4000 == Right xuu300)",fontsize=16,color="black",shape="box"];360 -> 412[label="",style="solid", color="black", weight=3]; 361[label="primCmpInt (Pos (Succ xuu40000)) (Pos xuu300)",fontsize=16,color="black",shape="box"];361 -> 413[label="",style="solid", color="black", weight=3]; 362[label="primCmpInt (Pos (Succ xuu40000)) (Neg xuu300)",fontsize=16,color="black",shape="box"];362 -> 414[label="",style="solid", color="black", weight=3]; 363[label="primCmpInt (Pos Zero) (Pos xuu300)",fontsize=16,color="burlywood",shape="box"];3240[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];363 -> 3240[label="",style="solid", color="burlywood", weight=9]; 3240 -> 415[label="",style="solid", color="burlywood", weight=3]; 3241[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];363 -> 3241[label="",style="solid", color="burlywood", weight=9]; 3241 -> 416[label="",style="solid", color="burlywood", weight=3]; 364[label="primCmpInt (Pos Zero) (Neg xuu300)",fontsize=16,color="burlywood",shape="box"];3242[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];364 -> 3242[label="",style="solid", color="burlywood", weight=9]; 3242 -> 417[label="",style="solid", color="burlywood", weight=3]; 3243[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];364 -> 3243[label="",style="solid", color="burlywood", weight=9]; 3243 -> 418[label="",style="solid", color="burlywood", weight=3]; 365[label="primCmpInt (Neg (Succ xuu40000)) (Pos xuu300)",fontsize=16,color="black",shape="box"];365 -> 419[label="",style="solid", color="black", weight=3]; 366[label="primCmpInt (Neg (Succ xuu40000)) (Neg xuu300)",fontsize=16,color="black",shape="box"];366 -> 420[label="",style="solid", color="black", weight=3]; 367[label="primCmpInt (Neg Zero) (Pos xuu300)",fontsize=16,color="burlywood",shape="box"];3244[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];367 -> 3244[label="",style="solid", color="burlywood", weight=9]; 3244 -> 421[label="",style="solid", color="burlywood", weight=3]; 3245[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];367 -> 3245[label="",style="solid", color="burlywood", weight=9]; 3245 -> 422[label="",style="solid", color="burlywood", weight=3]; 368[label="primCmpInt (Neg Zero) (Neg xuu300)",fontsize=16,color="burlywood",shape="box"];3246[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];368 -> 3246[label="",style="solid", color="burlywood", weight=9]; 3246 -> 423[label="",style="solid", color="burlywood", weight=3]; 3247[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];368 -> 3247[label="",style="solid", color="burlywood", weight=9]; 3247 -> 424[label="",style="solid", color="burlywood", weight=3]; 369[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];369 -> 425[label="",style="solid", color="black", weight=3]; 370[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];370 -> 426[label="",style="solid", color="black", weight=3]; 371[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];371 -> 427[label="",style="solid", color="black", weight=3]; 372[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];372 -> 428[label="",style="solid", color="black", weight=3]; 373[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];373 -> 429[label="",style="solid", color="black", weight=3]; 374[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];374 -> 430[label="",style="solid", color="black", weight=3]; 375[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];375 -> 431[label="",style="solid", color="black", weight=3]; 376[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];376 -> 432[label="",style="solid", color="black", weight=3]; 377[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];377 -> 433[label="",style="solid", color="black", weight=3]; 378[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];378 -> 434[label="",style="solid", color="black", weight=3]; 379[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];379 -> 435[label="",style="solid", color="black", weight=3]; 380[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];380 -> 436[label="",style="solid", color="black", weight=3]; 381[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];381 -> 437[label="",style="solid", color="black", weight=3]; 382[label="compare2 (xuu4000,xuu4001,xuu4002) (xuu300,xuu301,xuu302) ((xuu4000,xuu4001,xuu4002) == (xuu300,xuu301,xuu302))",fontsize=16,color="black",shape="box"];382 -> 438[label="",style="solid", color="black", weight=3]; 383[label="primCmpDouble (Double xuu4000 (Pos xuu40010)) (Double xuu300 xuu301)",fontsize=16,color="burlywood",shape="box"];3248[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];383 -> 3248[label="",style="solid", color="burlywood", weight=9]; 3248 -> 439[label="",style="solid", color="burlywood", weight=3]; 3249[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];383 -> 3249[label="",style="solid", color="burlywood", weight=9]; 3249 -> 440[label="",style="solid", color="burlywood", weight=3]; 384[label="primCmpDouble (Double xuu4000 (Neg xuu40010)) (Double xuu300 xuu301)",fontsize=16,color="burlywood",shape="box"];3250[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];384 -> 3250[label="",style="solid", color="burlywood", weight=9]; 3250 -> 441[label="",style="solid", color="burlywood", weight=3]; 3251[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];384 -> 3251[label="",style="solid", color="burlywood", weight=9]; 3251 -> 442[label="",style="solid", color="burlywood", weight=3]; 385[label="primCmpNat xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3252[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];385 -> 3252[label="",style="solid", color="burlywood", weight=9]; 3252 -> 443[label="",style="solid", color="burlywood", weight=3]; 3253[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];385 -> 3253[label="",style="solid", color="burlywood", weight=9]; 3253 -> 444[label="",style="solid", color="burlywood", weight=3]; 305[label="xuu19",fontsize=16,color="green",shape="box"];306[label="xuu14",fontsize=16,color="green",shape="box"];307[label="LT == GT",fontsize=16,color="black",shape="box"];307 -> 389[label="",style="solid", color="black", weight=3]; 308[label="EQ == GT",fontsize=16,color="black",shape="box"];308 -> 390[label="",style="solid", color="black", weight=3]; 309[label="GT == GT",fontsize=16,color="black",shape="box"];309 -> 391[label="",style="solid", color="black", weight=3]; 310[label="xuu19",fontsize=16,color="green",shape="box"];311[label="xuu14",fontsize=16,color="green",shape="box"];312[label="xuu19",fontsize=16,color="green",shape="box"];313[label="xuu14",fontsize=16,color="green",shape="box"];314[label="xuu19",fontsize=16,color="green",shape="box"];315[label="xuu14",fontsize=16,color="green",shape="box"];316[label="xuu19",fontsize=16,color="green",shape="box"];317[label="xuu14",fontsize=16,color="green",shape="box"];318[label="xuu19",fontsize=16,color="green",shape="box"];319[label="xuu14",fontsize=16,color="green",shape="box"];320[label="xuu19",fontsize=16,color="green",shape="box"];321[label="xuu14",fontsize=16,color="green",shape="box"];322[label="xuu19",fontsize=16,color="green",shape="box"];323[label="xuu14",fontsize=16,color="green",shape="box"];324[label="xuu19",fontsize=16,color="green",shape="box"];325[label="xuu14",fontsize=16,color="green",shape="box"];326[label="xuu19",fontsize=16,color="green",shape="box"];327[label="xuu14",fontsize=16,color="green",shape="box"];328[label="xuu19",fontsize=16,color="green",shape="box"];329[label="xuu14",fontsize=16,color="green",shape="box"];330[label="xuu19",fontsize=16,color="green",shape="box"];331[label="xuu14",fontsize=16,color="green",shape="box"];332[label="xuu19",fontsize=16,color="green",shape="box"];333[label="xuu14",fontsize=16,color="green",shape="box"];334[label="xuu19",fontsize=16,color="green",shape="box"];335[label="xuu14",fontsize=16,color="green",shape="box"];336[label="FiniteMap.Branch xuu36 (FiniteMap.addListToFM0 xuu32 xuu37) xuu33 xuu34 xuu35",fontsize=16,color="green",shape="box"];336 -> 392[label="",style="dashed", color="green", weight=3]; 337[label="xuu35",fontsize=16,color="green",shape="box"];338[label="xuu36",fontsize=16,color="green",shape="box"];339[label="xuu37",fontsize=16,color="green",shape="box"];340[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18 + FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="box"];340 -> 393[label="",style="solid", color="black", weight=3]; 341[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];342[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 False",fontsize=16,color="black",shape="box"];342 -> 394[label="",style="solid", color="black", weight=3]; 343[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 True",fontsize=16,color="black",shape="box"];343 -> 395[label="",style="solid", color="black", weight=3]; 386[label="xuu4001",fontsize=16,color="green",shape="box"];387[label="xuu301",fontsize=16,color="green",shape="box"];388 -> 445[label="",style="dashed", color="red", weight=0]; 388[label="primCompAux0 xuu45 (compare xuu4000 xuu300)",fontsize=16,color="magenta"];388 -> 446[label="",style="dashed", color="magenta", weight=3]; 388 -> 447[label="",style="dashed", color="magenta", weight=3]; 396[label="xuu4000 * xuu301",fontsize=16,color="burlywood",shape="triangle"];3254[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];396 -> 3254[label="",style="solid", color="burlywood", weight=9]; 3254 -> 448[label="",style="solid", color="burlywood", weight=3]; 397 -> 396[label="",style="dashed", color="red", weight=0]; 397[label="xuu300 * xuu4001",fontsize=16,color="magenta"];397 -> 449[label="",style="dashed", color="magenta", weight=3]; 397 -> 450[label="",style="dashed", color="magenta", weight=3]; 398[label="xuu4000 * xuu301",fontsize=16,color="black",shape="triangle"];398 -> 451[label="",style="solid", color="black", weight=3]; 399 -> 398[label="",style="dashed", color="red", weight=0]; 399[label="xuu300 * xuu4001",fontsize=16,color="magenta"];399 -> 452[label="",style="dashed", color="magenta", weight=3]; 399 -> 453[label="",style="dashed", color="magenta", weight=3]; 400 -> 943[label="",style="dashed", color="red", weight=0]; 400[label="compare2 (xuu4000,xuu4001) (xuu300,xuu301) (xuu4000 == xuu300 && xuu4001 == xuu301)",fontsize=16,color="magenta"];400 -> 944[label="",style="dashed", color="magenta", weight=3]; 400 -> 945[label="",style="dashed", color="magenta", weight=3]; 400 -> 946[label="",style="dashed", color="magenta", weight=3]; 400 -> 947[label="",style="dashed", color="magenta", weight=3]; 400 -> 948[label="",style="dashed", color="magenta", weight=3]; 401[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];401 -> 460[label="",style="solid", color="black", weight=3]; 402[label="compare2 Nothing (Just xuu300) False",fontsize=16,color="black",shape="box"];402 -> 461[label="",style="solid", color="black", weight=3]; 403[label="compare2 (Just xuu4000) Nothing False",fontsize=16,color="black",shape="box"];403 -> 462[label="",style="solid", color="black", weight=3]; 404 -> 463[label="",style="dashed", color="red", weight=0]; 404[label="compare2 (Just xuu4000) (Just xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];404 -> 464[label="",style="dashed", color="magenta", weight=3]; 404 -> 465[label="",style="dashed", color="magenta", weight=3]; 404 -> 466[label="",style="dashed", color="magenta", weight=3]; 405[label="primCmpFloat (Float xuu4000 (Pos xuu40010)) (Float xuu300 (Pos xuu3010))",fontsize=16,color="black",shape="box"];405 -> 467[label="",style="solid", color="black", weight=3]; 406[label="primCmpFloat (Float xuu4000 (Pos xuu40010)) (Float xuu300 (Neg xuu3010))",fontsize=16,color="black",shape="box"];406 -> 468[label="",style="solid", color="black", weight=3]; 407[label="primCmpFloat (Float xuu4000 (Neg xuu40010)) (Float xuu300 (Pos xuu3010))",fontsize=16,color="black",shape="box"];407 -> 469[label="",style="solid", color="black", weight=3]; 408[label="primCmpFloat (Float xuu4000 (Neg xuu40010)) (Float xuu300 (Neg xuu3010))",fontsize=16,color="black",shape="box"];408 -> 470[label="",style="solid", color="black", weight=3]; 409 -> 471[label="",style="dashed", color="red", weight=0]; 409[label="compare2 (Left xuu4000) (Left xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];409 -> 472[label="",style="dashed", color="magenta", weight=3]; 409 -> 473[label="",style="dashed", color="magenta", weight=3]; 409 -> 474[label="",style="dashed", color="magenta", weight=3]; 410[label="compare2 (Left xuu4000) (Right xuu300) False",fontsize=16,color="black",shape="box"];410 -> 475[label="",style="solid", color="black", weight=3]; 411[label="compare2 (Right xuu4000) (Left xuu300) False",fontsize=16,color="black",shape="box"];411 -> 476[label="",style="solid", color="black", weight=3]; 412 -> 477[label="",style="dashed", color="red", weight=0]; 412[label="compare2 (Right xuu4000) (Right xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];412 -> 478[label="",style="dashed", color="magenta", weight=3]; 412 -> 479[label="",style="dashed", color="magenta", weight=3]; 412 -> 480[label="",style="dashed", color="magenta", weight=3]; 413 -> 385[label="",style="dashed", color="red", weight=0]; 413[label="primCmpNat (Succ xuu40000) xuu300",fontsize=16,color="magenta"];413 -> 481[label="",style="dashed", color="magenta", weight=3]; 413 -> 482[label="",style="dashed", color="magenta", weight=3]; 414[label="GT",fontsize=16,color="green",shape="box"];415[label="primCmpInt (Pos Zero) (Pos (Succ xuu3000))",fontsize=16,color="black",shape="box"];415 -> 483[label="",style="solid", color="black", weight=3]; 416[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];416 -> 484[label="",style="solid", color="black", weight=3]; 417[label="primCmpInt (Pos Zero) (Neg (Succ xuu3000))",fontsize=16,color="black",shape="box"];417 -> 485[label="",style="solid", color="black", weight=3]; 418[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];418 -> 486[label="",style="solid", color="black", weight=3]; 419[label="LT",fontsize=16,color="green",shape="box"];420 -> 385[label="",style="dashed", color="red", weight=0]; 420[label="primCmpNat xuu300 (Succ xuu40000)",fontsize=16,color="magenta"];420 -> 487[label="",style="dashed", color="magenta", weight=3]; 420 -> 488[label="",style="dashed", color="magenta", weight=3]; 421[label="primCmpInt (Neg Zero) (Pos (Succ xuu3000))",fontsize=16,color="black",shape="box"];421 -> 489[label="",style="solid", color="black", weight=3]; 422[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];422 -> 490[label="",style="solid", color="black", weight=3]; 423[label="primCmpInt (Neg Zero) (Neg (Succ xuu3000))",fontsize=16,color="black",shape="box"];423 -> 491[label="",style="solid", color="black", weight=3]; 424[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];424 -> 492[label="",style="solid", color="black", weight=3]; 425[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];425 -> 493[label="",style="solid", color="black", weight=3]; 426[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];426 -> 494[label="",style="solid", color="black", weight=3]; 427[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];427 -> 495[label="",style="solid", color="black", weight=3]; 428[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];428 -> 496[label="",style="solid", color="black", weight=3]; 429[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];429 -> 497[label="",style="solid", color="black", weight=3]; 430[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];430 -> 498[label="",style="solid", color="black", weight=3]; 431[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];431 -> 499[label="",style="solid", color="black", weight=3]; 432[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];432 -> 500[label="",style="solid", color="black", weight=3]; 433[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];433 -> 501[label="",style="solid", color="black", weight=3]; 434[label="compare2 False False True",fontsize=16,color="black",shape="box"];434 -> 502[label="",style="solid", color="black", weight=3]; 435[label="compare2 False True False",fontsize=16,color="black",shape="box"];435 -> 503[label="",style="solid", color="black", weight=3]; 436[label="compare2 True False False",fontsize=16,color="black",shape="box"];436 -> 504[label="",style="solid", color="black", weight=3]; 437[label="compare2 True True True",fontsize=16,color="black",shape="box"];437 -> 505[label="",style="solid", color="black", weight=3]; 438 -> 996[label="",style="dashed", color="red", weight=0]; 438[label="compare2 (xuu4000,xuu4001,xuu4002) (xuu300,xuu301,xuu302) (xuu4000 == xuu300 && xuu4001 == xuu301 && xuu4002 == xuu302)",fontsize=16,color="magenta"];438 -> 997[label="",style="dashed", color="magenta", weight=3]; 438 -> 998[label="",style="dashed", color="magenta", weight=3]; 438 -> 999[label="",style="dashed", color="magenta", weight=3]; 438 -> 1000[label="",style="dashed", color="magenta", weight=3]; 438 -> 1001[label="",style="dashed", color="magenta", weight=3]; 438 -> 1002[label="",style="dashed", color="magenta", weight=3]; 438 -> 1003[label="",style="dashed", color="magenta", weight=3]; 439[label="primCmpDouble (Double xuu4000 (Pos xuu40010)) (Double xuu300 (Pos xuu3010))",fontsize=16,color="black",shape="box"];439 -> 514[label="",style="solid", color="black", weight=3]; 440[label="primCmpDouble (Double xuu4000 (Pos xuu40010)) (Double xuu300 (Neg xuu3010))",fontsize=16,color="black",shape="box"];440 -> 515[label="",style="solid", color="black", weight=3]; 441[label="primCmpDouble (Double xuu4000 (Neg xuu40010)) (Double xuu300 (Pos xuu3010))",fontsize=16,color="black",shape="box"];441 -> 516[label="",style="solid", color="black", weight=3]; 442[label="primCmpDouble (Double xuu4000 (Neg xuu40010)) (Double xuu300 (Neg xuu3010))",fontsize=16,color="black",shape="box"];442 -> 517[label="",style="solid", color="black", weight=3]; 443[label="primCmpNat (Succ xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3255[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];443 -> 3255[label="",style="solid", color="burlywood", weight=9]; 3255 -> 518[label="",style="solid", color="burlywood", weight=3]; 3256[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];443 -> 3256[label="",style="solid", color="burlywood", weight=9]; 3256 -> 519[label="",style="solid", color="burlywood", weight=3]; 444[label="primCmpNat Zero xuu300",fontsize=16,color="burlywood",shape="box"];3257[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];444 -> 3257[label="",style="solid", color="burlywood", weight=9]; 3257 -> 520[label="",style="solid", color="burlywood", weight=3]; 3258[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];444 -> 3258[label="",style="solid", color="burlywood", weight=9]; 3258 -> 521[label="",style="solid", color="burlywood", weight=3]; 389[label="False",fontsize=16,color="green",shape="box"];390[label="False",fontsize=16,color="green",shape="box"];391[label="True",fontsize=16,color="green",shape="box"];392[label="FiniteMap.addListToFM0 xuu32 xuu37",fontsize=16,color="black",shape="box"];392 -> 522[label="",style="solid", color="black", weight=3]; 393 -> 1177[label="",style="dashed", color="red", weight=0]; 393[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18) (FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18)",fontsize=16,color="magenta"];393 -> 1178[label="",style="dashed", color="magenta", weight=3]; 393 -> 1179[label="",style="dashed", color="magenta", weight=3]; 394 -> 524[label="",style="dashed", color="red", weight=0]; 394[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 (FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18)",fontsize=16,color="magenta"];394 -> 525[label="",style="dashed", color="magenta", weight=3]; 395[label="FiniteMap.mkBranch (Pos (Succ Zero)) xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="box"];395 -> 526[label="",style="solid", color="black", weight=3]; 446[label="compare xuu4000 xuu300",fontsize=16,color="blue",shape="box"];3259[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3259[label="",style="solid", color="blue", weight=9]; 3259 -> 527[label="",style="solid", color="blue", weight=3]; 3260[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3260[label="",style="solid", color="blue", weight=9]; 3260 -> 528[label="",style="solid", color="blue", weight=3]; 3261[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3261[label="",style="solid", color="blue", weight=9]; 3261 -> 529[label="",style="solid", color="blue", weight=3]; 3262[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3262[label="",style="solid", color="blue", weight=9]; 3262 -> 530[label="",style="solid", color="blue", weight=3]; 3263[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 531[label="",style="solid", color="blue", weight=3]; 3264[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 532[label="",style="solid", color="blue", weight=3]; 3265[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 533[label="",style="solid", color="blue", weight=3]; 3266[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 534[label="",style="solid", color="blue", weight=3]; 3267[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 535[label="",style="solid", color="blue", weight=3]; 3268[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 536[label="",style="solid", color="blue", weight=3]; 3269[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 537[label="",style="solid", color="blue", weight=3]; 3270[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 538[label="",style="solid", color="blue", weight=3]; 3271[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 539[label="",style="solid", color="blue", weight=3]; 3272[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];446 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 540[label="",style="solid", color="blue", weight=3]; 447[label="xuu45",fontsize=16,color="green",shape="box"];445[label="primCompAux0 xuu49 xuu50",fontsize=16,color="burlywood",shape="triangle"];3273[label="xuu50/LT",fontsize=10,color="white",style="solid",shape="box"];445 -> 3273[label="",style="solid", color="burlywood", weight=9]; 3273 -> 541[label="",style="solid", color="burlywood", weight=3]; 3274[label="xuu50/EQ",fontsize=10,color="white",style="solid",shape="box"];445 -> 3274[label="",style="solid", color="burlywood", weight=9]; 3274 -> 542[label="",style="solid", color="burlywood", weight=3]; 3275[label="xuu50/GT",fontsize=10,color="white",style="solid",shape="box"];445 -> 3275[label="",style="solid", color="burlywood", weight=9]; 3275 -> 543[label="",style="solid", color="burlywood", weight=3]; 448[label="Integer xuu40000 * xuu301",fontsize=16,color="burlywood",shape="box"];3276[label="xuu301/Integer xuu3010",fontsize=10,color="white",style="solid",shape="box"];448 -> 3276[label="",style="solid", color="burlywood", weight=9]; 3276 -> 544[label="",style="solid", color="burlywood", weight=3]; 449[label="xuu300",fontsize=16,color="green",shape="box"];450[label="xuu4001",fontsize=16,color="green",shape="box"];451[label="primMulInt xuu4000 xuu301",fontsize=16,color="burlywood",shape="triangle"];3277[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];451 -> 3277[label="",style="solid", color="burlywood", weight=9]; 3277 -> 545[label="",style="solid", color="burlywood", weight=3]; 3278[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];451 -> 3278[label="",style="solid", color="burlywood", weight=9]; 3278 -> 546[label="",style="solid", color="burlywood", weight=3]; 452[label="xuu300",fontsize=16,color="green",shape="box"];453[label="xuu4001",fontsize=16,color="green",shape="box"];944[label="xuu4001",fontsize=16,color="green",shape="box"];945 -> 1028[label="",style="dashed", color="red", weight=0]; 945[label="xuu4000 == xuu300 && xuu4001 == xuu301",fontsize=16,color="magenta"];945 -> 1029[label="",style="dashed", color="magenta", weight=3]; 945 -> 1030[label="",style="dashed", color="magenta", weight=3]; 946[label="xuu300",fontsize=16,color="green",shape="box"];947[label="xuu4000",fontsize=16,color="green",shape="box"];948[label="xuu301",fontsize=16,color="green",shape="box"];943[label="compare2 (xuu106,xuu107) (xuu108,xuu109) xuu110",fontsize=16,color="burlywood",shape="triangle"];3279[label="xuu110/False",fontsize=10,color="white",style="solid",shape="box"];943 -> 3279[label="",style="solid", color="burlywood", weight=9]; 3279 -> 968[label="",style="solid", color="burlywood", weight=3]; 3280[label="xuu110/True",fontsize=10,color="white",style="solid",shape="box"];943 -> 3280[label="",style="solid", color="burlywood", weight=9]; 3280 -> 969[label="",style="solid", color="burlywood", weight=3]; 460[label="EQ",fontsize=16,color="green",shape="box"];461[label="compare1 Nothing (Just xuu300) (Nothing <= Just xuu300)",fontsize=16,color="black",shape="box"];461 -> 563[label="",style="solid", color="black", weight=3]; 462[label="compare1 (Just xuu4000) Nothing (Just xuu4000 <= Nothing)",fontsize=16,color="black",shape="box"];462 -> 564[label="",style="solid", color="black", weight=3]; 464[label="xuu4000",fontsize=16,color="green",shape="box"];465[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];3281[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 565[label="",style="solid", color="blue", weight=3]; 3282[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3282[label="",style="solid", color="blue", weight=9]; 3282 -> 566[label="",style="solid", color="blue", weight=3]; 3283[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3283[label="",style="solid", color="blue", weight=9]; 3283 -> 567[label="",style="solid", color="blue", weight=3]; 3284[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3284[label="",style="solid", color="blue", weight=9]; 3284 -> 568[label="",style="solid", color="blue", weight=3]; 3285[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3285[label="",style="solid", color="blue", weight=9]; 3285 -> 569[label="",style="solid", color="blue", weight=3]; 3286[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3286[label="",style="solid", color="blue", weight=9]; 3286 -> 570[label="",style="solid", color="blue", weight=3]; 3287[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3287[label="",style="solid", color="blue", weight=9]; 3287 -> 571[label="",style="solid", color="blue", weight=3]; 3288[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3288[label="",style="solid", color="blue", weight=9]; 3288 -> 572[label="",style="solid", color="blue", weight=3]; 3289[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3289[label="",style="solid", color="blue", weight=9]; 3289 -> 573[label="",style="solid", color="blue", weight=3]; 3290[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3290[label="",style="solid", color="blue", weight=9]; 3290 -> 574[label="",style="solid", color="blue", weight=3]; 3291[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3291[label="",style="solid", color="blue", weight=9]; 3291 -> 575[label="",style="solid", color="blue", weight=3]; 3292[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3292[label="",style="solid", color="blue", weight=9]; 3292 -> 576[label="",style="solid", color="blue", weight=3]; 3293[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3293[label="",style="solid", color="blue", weight=9]; 3293 -> 577[label="",style="solid", color="blue", weight=3]; 3294[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3294[label="",style="solid", color="blue", weight=9]; 3294 -> 578[label="",style="solid", color="blue", weight=3]; 466[label="xuu300",fontsize=16,color="green",shape="box"];463[label="compare2 (Just xuu66) (Just xuu67) xuu68",fontsize=16,color="burlywood",shape="triangle"];3295[label="xuu68/False",fontsize=10,color="white",style="solid",shape="box"];463 -> 3295[label="",style="solid", color="burlywood", weight=9]; 3295 -> 579[label="",style="solid", color="burlywood", weight=3]; 3296[label="xuu68/True",fontsize=10,color="white",style="solid",shape="box"];463 -> 3296[label="",style="solid", color="burlywood", weight=9]; 3296 -> 580[label="",style="solid", color="burlywood", weight=3]; 467 -> 187[label="",style="dashed", color="red", weight=0]; 467[label="compare (xuu4000 * Pos xuu3010) (Pos xuu40010 * xuu300)",fontsize=16,color="magenta"];467 -> 581[label="",style="dashed", color="magenta", weight=3]; 467 -> 582[label="",style="dashed", color="magenta", weight=3]; 468 -> 187[label="",style="dashed", color="red", weight=0]; 468[label="compare (xuu4000 * Pos xuu3010) (Neg xuu40010 * xuu300)",fontsize=16,color="magenta"];468 -> 583[label="",style="dashed", color="magenta", weight=3]; 468 -> 584[label="",style="dashed", color="magenta", weight=3]; 469 -> 187[label="",style="dashed", color="red", weight=0]; 469[label="compare (xuu4000 * Neg xuu3010) (Pos xuu40010 * xuu300)",fontsize=16,color="magenta"];469 -> 585[label="",style="dashed", color="magenta", weight=3]; 469 -> 586[label="",style="dashed", color="magenta", weight=3]; 470 -> 187[label="",style="dashed", color="red", weight=0]; 470[label="compare (xuu4000 * Neg xuu3010) (Neg xuu40010 * xuu300)",fontsize=16,color="magenta"];470 -> 587[label="",style="dashed", color="magenta", weight=3]; 470 -> 588[label="",style="dashed", color="magenta", weight=3]; 472[label="xuu4000",fontsize=16,color="green",shape="box"];473[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];3297[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 589[label="",style="solid", color="blue", weight=3]; 3298[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 590[label="",style="solid", color="blue", weight=3]; 3299[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 591[label="",style="solid", color="blue", weight=3]; 3300[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 592[label="",style="solid", color="blue", weight=3]; 3301[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 593[label="",style="solid", color="blue", weight=3]; 3302[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 594[label="",style="solid", color="blue", weight=3]; 3303[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 595[label="",style="solid", color="blue", weight=3]; 3304[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 596[label="",style="solid", color="blue", weight=3]; 3305[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 597[label="",style="solid", color="blue", weight=3]; 3306[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 598[label="",style="solid", color="blue", weight=3]; 3307[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 599[label="",style="solid", color="blue", weight=3]; 3308[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 600[label="",style="solid", color="blue", weight=3]; 3309[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 601[label="",style="solid", color="blue", weight=3]; 3310[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];473 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 602[label="",style="solid", color="blue", weight=3]; 474[label="xuu300",fontsize=16,color="green",shape="box"];471[label="compare2 (Left xuu73) (Left xuu74) xuu75",fontsize=16,color="burlywood",shape="triangle"];3311[label="xuu75/False",fontsize=10,color="white",style="solid",shape="box"];471 -> 3311[label="",style="solid", color="burlywood", weight=9]; 3311 -> 603[label="",style="solid", color="burlywood", weight=3]; 3312[label="xuu75/True",fontsize=10,color="white",style="solid",shape="box"];471 -> 3312[label="",style="solid", color="burlywood", weight=9]; 3312 -> 604[label="",style="solid", color="burlywood", weight=3]; 475[label="compare1 (Left xuu4000) (Right xuu300) (Left xuu4000 <= Right xuu300)",fontsize=16,color="black",shape="box"];475 -> 605[label="",style="solid", color="black", weight=3]; 476[label="compare1 (Right xuu4000) (Left xuu300) (Right xuu4000 <= Left xuu300)",fontsize=16,color="black",shape="box"];476 -> 606[label="",style="solid", color="black", weight=3]; 478[label="xuu4000",fontsize=16,color="green",shape="box"];479[label="xuu300",fontsize=16,color="green",shape="box"];480[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];3313[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 607[label="",style="solid", color="blue", weight=3]; 3314[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 608[label="",style="solid", color="blue", weight=3]; 3315[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 609[label="",style="solid", color="blue", weight=3]; 3316[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 610[label="",style="solid", color="blue", weight=3]; 3317[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 611[label="",style="solid", color="blue", weight=3]; 3318[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 612[label="",style="solid", color="blue", weight=3]; 3319[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 613[label="",style="solid", color="blue", weight=3]; 3320[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 614[label="",style="solid", color="blue", weight=3]; 3321[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 615[label="",style="solid", color="blue", weight=3]; 3322[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 616[label="",style="solid", color="blue", weight=3]; 3323[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 617[label="",style="solid", color="blue", weight=3]; 3324[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 618[label="",style="solid", color="blue", weight=3]; 3325[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 619[label="",style="solid", color="blue", weight=3]; 3326[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];480 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 620[label="",style="solid", color="blue", weight=3]; 477[label="compare2 (Right xuu80) (Right xuu81) xuu82",fontsize=16,color="burlywood",shape="triangle"];3327[label="xuu82/False",fontsize=10,color="white",style="solid",shape="box"];477 -> 3327[label="",style="solid", color="burlywood", weight=9]; 3327 -> 621[label="",style="solid", color="burlywood", weight=3]; 3328[label="xuu82/True",fontsize=10,color="white",style="solid",shape="box"];477 -> 3328[label="",style="solid", color="burlywood", weight=9]; 3328 -> 622[label="",style="solid", color="burlywood", weight=3]; 481[label="Succ xuu40000",fontsize=16,color="green",shape="box"];482[label="xuu300",fontsize=16,color="green",shape="box"];483 -> 385[label="",style="dashed", color="red", weight=0]; 483[label="primCmpNat Zero (Succ xuu3000)",fontsize=16,color="magenta"];483 -> 623[label="",style="dashed", color="magenta", weight=3]; 483 -> 624[label="",style="dashed", color="magenta", weight=3]; 484[label="EQ",fontsize=16,color="green",shape="box"];485[label="GT",fontsize=16,color="green",shape="box"];486[label="EQ",fontsize=16,color="green",shape="box"];487[label="xuu300",fontsize=16,color="green",shape="box"];488[label="Succ xuu40000",fontsize=16,color="green",shape="box"];489[label="LT",fontsize=16,color="green",shape="box"];490[label="EQ",fontsize=16,color="green",shape="box"];491 -> 385[label="",style="dashed", color="red", weight=0]; 491[label="primCmpNat (Succ xuu3000) Zero",fontsize=16,color="magenta"];491 -> 625[label="",style="dashed", color="magenta", weight=3]; 491 -> 626[label="",style="dashed", color="magenta", weight=3]; 492[label="EQ",fontsize=16,color="green",shape="box"];493[label="EQ",fontsize=16,color="green",shape="box"];494[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];494 -> 627[label="",style="solid", color="black", weight=3]; 495[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];495 -> 628[label="",style="solid", color="black", weight=3]; 496[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];496 -> 629[label="",style="solid", color="black", weight=3]; 497[label="EQ",fontsize=16,color="green",shape="box"];498[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];498 -> 630[label="",style="solid", color="black", weight=3]; 499[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];499 -> 631[label="",style="solid", color="black", weight=3]; 500[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];500 -> 632[label="",style="solid", color="black", weight=3]; 501[label="EQ",fontsize=16,color="green",shape="box"];502[label="EQ",fontsize=16,color="green",shape="box"];503[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];503 -> 633[label="",style="solid", color="black", weight=3]; 504[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];504 -> 634[label="",style="solid", color="black", weight=3]; 505[label="EQ",fontsize=16,color="green",shape="box"];997 -> 1028[label="",style="dashed", color="red", weight=0]; 997[label="xuu4000 == xuu300 && xuu4001 == xuu301 && xuu4002 == xuu302",fontsize=16,color="magenta"];997 -> 1031[label="",style="dashed", color="magenta", weight=3]; 997 -> 1032[label="",style="dashed", color="magenta", weight=3]; 998[label="xuu301",fontsize=16,color="green",shape="box"];999[label="xuu4001",fontsize=16,color="green",shape="box"];1000[label="xuu4000",fontsize=16,color="green",shape="box"];1001[label="xuu4002",fontsize=16,color="green",shape="box"];1002[label="xuu300",fontsize=16,color="green",shape="box"];1003[label="xuu302",fontsize=16,color="green",shape="box"];996[label="compare2 (xuu91,xuu92,xuu93) (xuu94,xuu95,xuu96) xuu118",fontsize=16,color="burlywood",shape="triangle"];3329[label="xuu118/False",fontsize=10,color="white",style="solid",shape="box"];996 -> 3329[label="",style="solid", color="burlywood", weight=9]; 3329 -> 1012[label="",style="solid", color="burlywood", weight=3]; 3330[label="xuu118/True",fontsize=10,color="white",style="solid",shape="box"];996 -> 3330[label="",style="solid", color="burlywood", weight=9]; 3330 -> 1013[label="",style="solid", color="burlywood", weight=3]; 514 -> 187[label="",style="dashed", color="red", weight=0]; 514[label="compare (xuu4000 * Pos xuu3010) (Pos xuu40010 * xuu300)",fontsize=16,color="magenta"];514 -> 651[label="",style="dashed", color="magenta", weight=3]; 514 -> 652[label="",style="dashed", color="magenta", weight=3]; 515 -> 187[label="",style="dashed", color="red", weight=0]; 515[label="compare (xuu4000 * Pos xuu3010) (Neg xuu40010 * xuu300)",fontsize=16,color="magenta"];515 -> 653[label="",style="dashed", color="magenta", weight=3]; 515 -> 654[label="",style="dashed", color="magenta", weight=3]; 516 -> 187[label="",style="dashed", color="red", weight=0]; 516[label="compare (xuu4000 * Neg xuu3010) (Pos xuu40010 * xuu300)",fontsize=16,color="magenta"];516 -> 655[label="",style="dashed", color="magenta", weight=3]; 516 -> 656[label="",style="dashed", color="magenta", weight=3]; 517 -> 187[label="",style="dashed", color="red", weight=0]; 517[label="compare (xuu4000 * Neg xuu3010) (Neg xuu40010 * xuu300)",fontsize=16,color="magenta"];517 -> 657[label="",style="dashed", color="magenta", weight=3]; 517 -> 658[label="",style="dashed", color="magenta", weight=3]; 518[label="primCmpNat (Succ xuu40000) (Succ xuu3000)",fontsize=16,color="black",shape="box"];518 -> 659[label="",style="solid", color="black", weight=3]; 519[label="primCmpNat (Succ xuu40000) Zero",fontsize=16,color="black",shape="box"];519 -> 660[label="",style="solid", color="black", weight=3]; 520[label="primCmpNat Zero (Succ xuu3000)",fontsize=16,color="black",shape="box"];520 -> 661[label="",style="solid", color="black", weight=3]; 521[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];521 -> 662[label="",style="solid", color="black", weight=3]; 522[label="xuu37",fontsize=16,color="green",shape="box"];1178[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="triangle"];1178 -> 1187[label="",style="solid", color="black", weight=3]; 1179 -> 666[label="",style="dashed", color="red", weight=0]; 1179[label="FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];1177[label="primPlusInt xuu392 xuu126",fontsize=16,color="burlywood",shape="triangle"];3331[label="xuu392/Pos xuu3920",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3331[label="",style="solid", color="burlywood", weight=9]; 3331 -> 1188[label="",style="solid", color="burlywood", weight=3]; 3332[label="xuu392/Neg xuu3920",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3332[label="",style="solid", color="burlywood", weight=9]; 3332 -> 1189[label="",style="solid", color="burlywood", weight=3]; 525 -> 118[label="",style="dashed", color="red", weight=0]; 525[label="FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];525 -> 665[label="",style="dashed", color="magenta", weight=3]; 525 -> 666[label="",style="dashed", color="magenta", weight=3]; 524[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 xuu98",fontsize=16,color="burlywood",shape="triangle"];3333[label="xuu98/False",fontsize=10,color="white",style="solid",shape="box"];524 -> 3333[label="",style="solid", color="burlywood", weight=9]; 3333 -> 667[label="",style="solid", color="burlywood", weight=3]; 3334[label="xuu98/True",fontsize=10,color="white",style="solid",shape="box"];524 -> 3334[label="",style="solid", color="burlywood", weight=9]; 3334 -> 668[label="",style="solid", color="burlywood", weight=3]; 526[label="FiniteMap.mkBranchResult xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="triangle"];526 -> 669[label="",style="solid", color="black", weight=3]; 527 -> 179[label="",style="dashed", color="red", weight=0]; 527[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];527 -> 670[label="",style="dashed", color="magenta", weight=3]; 527 -> 671[label="",style="dashed", color="magenta", weight=3]; 528 -> 180[label="",style="dashed", color="red", weight=0]; 528[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];528 -> 672[label="",style="dashed", color="magenta", weight=3]; 528 -> 673[label="",style="dashed", color="magenta", weight=3]; 529 -> 181[label="",style="dashed", color="red", weight=0]; 529[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];529 -> 674[label="",style="dashed", color="magenta", weight=3]; 529 -> 675[label="",style="dashed", color="magenta", weight=3]; 530 -> 182[label="",style="dashed", color="red", weight=0]; 530[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];530 -> 676[label="",style="dashed", color="magenta", weight=3]; 530 -> 677[label="",style="dashed", color="magenta", weight=3]; 531 -> 183[label="",style="dashed", color="red", weight=0]; 531[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];531 -> 678[label="",style="dashed", color="magenta", weight=3]; 531 -> 679[label="",style="dashed", color="magenta", weight=3]; 532 -> 184[label="",style="dashed", color="red", weight=0]; 532[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];532 -> 680[label="",style="dashed", color="magenta", weight=3]; 532 -> 681[label="",style="dashed", color="magenta", weight=3]; 533 -> 185[label="",style="dashed", color="red", weight=0]; 533[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];533 -> 682[label="",style="dashed", color="magenta", weight=3]; 533 -> 683[label="",style="dashed", color="magenta", weight=3]; 534 -> 186[label="",style="dashed", color="red", weight=0]; 534[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];534 -> 684[label="",style="dashed", color="magenta", weight=3]; 534 -> 685[label="",style="dashed", color="magenta", weight=3]; 535 -> 187[label="",style="dashed", color="red", weight=0]; 535[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];535 -> 686[label="",style="dashed", color="magenta", weight=3]; 535 -> 687[label="",style="dashed", color="magenta", weight=3]; 536 -> 188[label="",style="dashed", color="red", weight=0]; 536[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];536 -> 688[label="",style="dashed", color="magenta", weight=3]; 536 -> 689[label="",style="dashed", color="magenta", weight=3]; 537 -> 189[label="",style="dashed", color="red", weight=0]; 537[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];537 -> 690[label="",style="dashed", color="magenta", weight=3]; 537 -> 691[label="",style="dashed", color="magenta", weight=3]; 538 -> 190[label="",style="dashed", color="red", weight=0]; 538[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];538 -> 692[label="",style="dashed", color="magenta", weight=3]; 538 -> 693[label="",style="dashed", color="magenta", weight=3]; 539 -> 191[label="",style="dashed", color="red", weight=0]; 539[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];539 -> 694[label="",style="dashed", color="magenta", weight=3]; 539 -> 695[label="",style="dashed", color="magenta", weight=3]; 540 -> 192[label="",style="dashed", color="red", weight=0]; 540[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];540 -> 696[label="",style="dashed", color="magenta", weight=3]; 540 -> 697[label="",style="dashed", color="magenta", weight=3]; 541[label="primCompAux0 xuu49 LT",fontsize=16,color="black",shape="box"];541 -> 698[label="",style="solid", color="black", weight=3]; 542[label="primCompAux0 xuu49 EQ",fontsize=16,color="black",shape="box"];542 -> 699[label="",style="solid", color="black", weight=3]; 543[label="primCompAux0 xuu49 GT",fontsize=16,color="black",shape="box"];543 -> 700[label="",style="solid", color="black", weight=3]; 544[label="Integer xuu40000 * Integer xuu3010",fontsize=16,color="black",shape="box"];544 -> 701[label="",style="solid", color="black", weight=3]; 545[label="primMulInt (Pos xuu40000) xuu301",fontsize=16,color="burlywood",shape="box"];3335[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];545 -> 3335[label="",style="solid", color="burlywood", weight=9]; 3335 -> 702[label="",style="solid", color="burlywood", weight=3]; 3336[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];545 -> 3336[label="",style="solid", color="burlywood", weight=9]; 3336 -> 703[label="",style="solid", color="burlywood", weight=3]; 546[label="primMulInt (Neg xuu40000) xuu301",fontsize=16,color="burlywood",shape="box"];3337[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];546 -> 3337[label="",style="solid", color="burlywood", weight=9]; 3337 -> 704[label="",style="solid", color="burlywood", weight=3]; 3338[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];546 -> 3338[label="",style="solid", color="burlywood", weight=9]; 3338 -> 705[label="",style="solid", color="burlywood", weight=3]; 1029[label="xuu4001 == xuu301",fontsize=16,color="blue",shape="box"];3339[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 1037[label="",style="solid", color="blue", weight=3]; 3340[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 1038[label="",style="solid", color="blue", weight=3]; 3341[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 1039[label="",style="solid", color="blue", weight=3]; 3342[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 1040[label="",style="solid", color="blue", weight=3]; 3343[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 1041[label="",style="solid", color="blue", weight=3]; 3344[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 1042[label="",style="solid", color="blue", weight=3]; 3345[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 1043[label="",style="solid", color="blue", weight=3]; 3346[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 1044[label="",style="solid", color="blue", weight=3]; 3347[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 1045[label="",style="solid", color="blue", weight=3]; 3348[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 1046[label="",style="solid", color="blue", weight=3]; 3349[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 1047[label="",style="solid", color="blue", weight=3]; 3350[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 1048[label="",style="solid", color="blue", weight=3]; 3351[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 1049[label="",style="solid", color="blue", weight=3]; 3352[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1050[label="",style="solid", color="blue", weight=3]; 1030[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];3353[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 1051[label="",style="solid", color="blue", weight=3]; 3354[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 1052[label="",style="solid", color="blue", weight=3]; 3355[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 1053[label="",style="solid", color="blue", weight=3]; 3356[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 1054[label="",style="solid", color="blue", weight=3]; 3357[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 1055[label="",style="solid", color="blue", weight=3]; 3358[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 1056[label="",style="solid", color="blue", weight=3]; 3359[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 1057[label="",style="solid", color="blue", weight=3]; 3360[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 1058[label="",style="solid", color="blue", weight=3]; 3361[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 1059[label="",style="solid", color="blue", weight=3]; 3362[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 1060[label="",style="solid", color="blue", weight=3]; 3363[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 1061[label="",style="solid", color="blue", weight=3]; 3364[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 1062[label="",style="solid", color="blue", weight=3]; 3365[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 1063[label="",style="solid", color="blue", weight=3]; 3366[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 1064[label="",style="solid", color="blue", weight=3]; 1028[label="xuu123 && xuu124",fontsize=16,color="burlywood",shape="triangle"];3367[label="xuu123/False",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3367[label="",style="solid", color="burlywood", weight=9]; 3367 -> 1065[label="",style="solid", color="burlywood", weight=3]; 3368[label="xuu123/True",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3368[label="",style="solid", color="burlywood", weight=9]; 3368 -> 1066[label="",style="solid", color="burlywood", weight=3]; 968[label="compare2 (xuu106,xuu107) (xuu108,xuu109) False",fontsize=16,color="black",shape="box"];968 -> 1067[label="",style="solid", color="black", weight=3]; 969[label="compare2 (xuu106,xuu107) (xuu108,xuu109) True",fontsize=16,color="black",shape="box"];969 -> 1068[label="",style="solid", color="black", weight=3]; 563[label="compare1 Nothing (Just xuu300) True",fontsize=16,color="black",shape="box"];563 -> 728[label="",style="solid", color="black", weight=3]; 564[label="compare1 (Just xuu4000) Nothing False",fontsize=16,color="black",shape="box"];564 -> 729[label="",style="solid", color="black", weight=3]; 565 -> 547[label="",style="dashed", color="red", weight=0]; 565[label="xuu4000 == xuu300",fontsize=16,color="magenta"];565 -> 730[label="",style="dashed", color="magenta", weight=3]; 565 -> 731[label="",style="dashed", color="magenta", weight=3]; 566 -> 548[label="",style="dashed", color="red", weight=0]; 566[label="xuu4000 == xuu300",fontsize=16,color="magenta"];566 -> 732[label="",style="dashed", color="magenta", weight=3]; 566 -> 733[label="",style="dashed", color="magenta", weight=3]; 567 -> 549[label="",style="dashed", color="red", weight=0]; 567[label="xuu4000 == xuu300",fontsize=16,color="magenta"];567 -> 734[label="",style="dashed", color="magenta", weight=3]; 567 -> 735[label="",style="dashed", color="magenta", weight=3]; 568 -> 550[label="",style="dashed", color="red", weight=0]; 568[label="xuu4000 == xuu300",fontsize=16,color="magenta"];568 -> 736[label="",style="dashed", color="magenta", weight=3]; 568 -> 737[label="",style="dashed", color="magenta", weight=3]; 569 -> 551[label="",style="dashed", color="red", weight=0]; 569[label="xuu4000 == xuu300",fontsize=16,color="magenta"];569 -> 738[label="",style="dashed", color="magenta", weight=3]; 569 -> 739[label="",style="dashed", color="magenta", weight=3]; 570 -> 552[label="",style="dashed", color="red", weight=0]; 570[label="xuu4000 == xuu300",fontsize=16,color="magenta"];570 -> 740[label="",style="dashed", color="magenta", weight=3]; 570 -> 741[label="",style="dashed", color="magenta", weight=3]; 571 -> 553[label="",style="dashed", color="red", weight=0]; 571[label="xuu4000 == xuu300",fontsize=16,color="magenta"];571 -> 742[label="",style="dashed", color="magenta", weight=3]; 571 -> 743[label="",style="dashed", color="magenta", weight=3]; 572 -> 554[label="",style="dashed", color="red", weight=0]; 572[label="xuu4000 == xuu300",fontsize=16,color="magenta"];572 -> 744[label="",style="dashed", color="magenta", weight=3]; 572 -> 745[label="",style="dashed", color="magenta", weight=3]; 573 -> 555[label="",style="dashed", color="red", weight=0]; 573[label="xuu4000 == xuu300",fontsize=16,color="magenta"];573 -> 746[label="",style="dashed", color="magenta", weight=3]; 573 -> 747[label="",style="dashed", color="magenta", weight=3]; 574 -> 556[label="",style="dashed", color="red", weight=0]; 574[label="xuu4000 == xuu300",fontsize=16,color="magenta"];574 -> 748[label="",style="dashed", color="magenta", weight=3]; 574 -> 749[label="",style="dashed", color="magenta", weight=3]; 575 -> 557[label="",style="dashed", color="red", weight=0]; 575[label="xuu4000 == xuu300",fontsize=16,color="magenta"];575 -> 750[label="",style="dashed", color="magenta", weight=3]; 575 -> 751[label="",style="dashed", color="magenta", weight=3]; 576 -> 558[label="",style="dashed", color="red", weight=0]; 576[label="xuu4000 == xuu300",fontsize=16,color="magenta"];576 -> 752[label="",style="dashed", color="magenta", weight=3]; 576 -> 753[label="",style="dashed", color="magenta", weight=3]; 577 -> 559[label="",style="dashed", color="red", weight=0]; 577[label="xuu4000 == xuu300",fontsize=16,color="magenta"];577 -> 754[label="",style="dashed", color="magenta", weight=3]; 577 -> 755[label="",style="dashed", color="magenta", weight=3]; 578 -> 560[label="",style="dashed", color="red", weight=0]; 578[label="xuu4000 == xuu300",fontsize=16,color="magenta"];578 -> 756[label="",style="dashed", color="magenta", weight=3]; 578 -> 757[label="",style="dashed", color="magenta", weight=3]; 579[label="compare2 (Just xuu66) (Just xuu67) False",fontsize=16,color="black",shape="box"];579 -> 758[label="",style="solid", color="black", weight=3]; 580[label="compare2 (Just xuu66) (Just xuu67) True",fontsize=16,color="black",shape="box"];580 -> 759[label="",style="solid", color="black", weight=3]; 581 -> 398[label="",style="dashed", color="red", weight=0]; 581[label="xuu4000 * Pos xuu3010",fontsize=16,color="magenta"];581 -> 760[label="",style="dashed", color="magenta", weight=3]; 581 -> 761[label="",style="dashed", color="magenta", weight=3]; 582 -> 398[label="",style="dashed", color="red", weight=0]; 582[label="Pos xuu40010 * xuu300",fontsize=16,color="magenta"];582 -> 762[label="",style="dashed", color="magenta", weight=3]; 582 -> 763[label="",style="dashed", color="magenta", weight=3]; 583 -> 398[label="",style="dashed", color="red", weight=0]; 583[label="xuu4000 * Pos xuu3010",fontsize=16,color="magenta"];583 -> 764[label="",style="dashed", color="magenta", weight=3]; 583 -> 765[label="",style="dashed", color="magenta", weight=3]; 584 -> 398[label="",style="dashed", color="red", weight=0]; 584[label="Neg xuu40010 * xuu300",fontsize=16,color="magenta"];584 -> 766[label="",style="dashed", color="magenta", weight=3]; 584 -> 767[label="",style="dashed", color="magenta", weight=3]; 585 -> 398[label="",style="dashed", color="red", weight=0]; 585[label="xuu4000 * Neg xuu3010",fontsize=16,color="magenta"];585 -> 768[label="",style="dashed", color="magenta", weight=3]; 585 -> 769[label="",style="dashed", color="magenta", weight=3]; 586 -> 398[label="",style="dashed", color="red", weight=0]; 586[label="Pos xuu40010 * xuu300",fontsize=16,color="magenta"];586 -> 770[label="",style="dashed", color="magenta", weight=3]; 586 -> 771[label="",style="dashed", color="magenta", weight=3]; 587 -> 398[label="",style="dashed", color="red", weight=0]; 587[label="xuu4000 * Neg xuu3010",fontsize=16,color="magenta"];587 -> 772[label="",style="dashed", color="magenta", weight=3]; 587 -> 773[label="",style="dashed", color="magenta", weight=3]; 588 -> 398[label="",style="dashed", color="red", weight=0]; 588[label="Neg xuu40010 * xuu300",fontsize=16,color="magenta"];588 -> 774[label="",style="dashed", color="magenta", weight=3]; 588 -> 775[label="",style="dashed", color="magenta", weight=3]; 589 -> 547[label="",style="dashed", color="red", weight=0]; 589[label="xuu4000 == xuu300",fontsize=16,color="magenta"];589 -> 776[label="",style="dashed", color="magenta", weight=3]; 589 -> 777[label="",style="dashed", color="magenta", weight=3]; 590 -> 548[label="",style="dashed", color="red", weight=0]; 590[label="xuu4000 == xuu300",fontsize=16,color="magenta"];590 -> 778[label="",style="dashed", color="magenta", weight=3]; 590 -> 779[label="",style="dashed", color="magenta", weight=3]; 591 -> 549[label="",style="dashed", color="red", weight=0]; 591[label="xuu4000 == xuu300",fontsize=16,color="magenta"];591 -> 780[label="",style="dashed", color="magenta", weight=3]; 591 -> 781[label="",style="dashed", color="magenta", weight=3]; 592 -> 550[label="",style="dashed", color="red", weight=0]; 592[label="xuu4000 == xuu300",fontsize=16,color="magenta"];592 -> 782[label="",style="dashed", color="magenta", weight=3]; 592 -> 783[label="",style="dashed", color="magenta", weight=3]; 593 -> 551[label="",style="dashed", color="red", weight=0]; 593[label="xuu4000 == xuu300",fontsize=16,color="magenta"];593 -> 784[label="",style="dashed", color="magenta", weight=3]; 593 -> 785[label="",style="dashed", color="magenta", weight=3]; 594 -> 552[label="",style="dashed", color="red", weight=0]; 594[label="xuu4000 == xuu300",fontsize=16,color="magenta"];594 -> 786[label="",style="dashed", color="magenta", weight=3]; 594 -> 787[label="",style="dashed", color="magenta", weight=3]; 595 -> 553[label="",style="dashed", color="red", weight=0]; 595[label="xuu4000 == xuu300",fontsize=16,color="magenta"];595 -> 788[label="",style="dashed", color="magenta", weight=3]; 595 -> 789[label="",style="dashed", color="magenta", weight=3]; 596 -> 554[label="",style="dashed", color="red", weight=0]; 596[label="xuu4000 == xuu300",fontsize=16,color="magenta"];596 -> 790[label="",style="dashed", color="magenta", weight=3]; 596 -> 791[label="",style="dashed", color="magenta", weight=3]; 597 -> 555[label="",style="dashed", color="red", weight=0]; 597[label="xuu4000 == xuu300",fontsize=16,color="magenta"];597 -> 792[label="",style="dashed", color="magenta", weight=3]; 597 -> 793[label="",style="dashed", color="magenta", weight=3]; 598 -> 556[label="",style="dashed", color="red", weight=0]; 598[label="xuu4000 == xuu300",fontsize=16,color="magenta"];598 -> 794[label="",style="dashed", color="magenta", weight=3]; 598 -> 795[label="",style="dashed", color="magenta", weight=3]; 599 -> 557[label="",style="dashed", color="red", weight=0]; 599[label="xuu4000 == xuu300",fontsize=16,color="magenta"];599 -> 796[label="",style="dashed", color="magenta", weight=3]; 599 -> 797[label="",style="dashed", color="magenta", weight=3]; 600 -> 558[label="",style="dashed", color="red", weight=0]; 600[label="xuu4000 == xuu300",fontsize=16,color="magenta"];600 -> 798[label="",style="dashed", color="magenta", weight=3]; 600 -> 799[label="",style="dashed", color="magenta", weight=3]; 601 -> 559[label="",style="dashed", color="red", weight=0]; 601[label="xuu4000 == xuu300",fontsize=16,color="magenta"];601 -> 800[label="",style="dashed", color="magenta", weight=3]; 601 -> 801[label="",style="dashed", color="magenta", weight=3]; 602 -> 560[label="",style="dashed", color="red", weight=0]; 602[label="xuu4000 == xuu300",fontsize=16,color="magenta"];602 -> 802[label="",style="dashed", color="magenta", weight=3]; 602 -> 803[label="",style="dashed", color="magenta", weight=3]; 603[label="compare2 (Left xuu73) (Left xuu74) False",fontsize=16,color="black",shape="box"];603 -> 804[label="",style="solid", color="black", weight=3]; 604[label="compare2 (Left xuu73) (Left xuu74) True",fontsize=16,color="black",shape="box"];604 -> 805[label="",style="solid", color="black", weight=3]; 605[label="compare1 (Left xuu4000) (Right xuu300) True",fontsize=16,color="black",shape="box"];605 -> 806[label="",style="solid", color="black", weight=3]; 606[label="compare1 (Right xuu4000) (Left xuu300) False",fontsize=16,color="black",shape="box"];606 -> 807[label="",style="solid", color="black", weight=3]; 607 -> 547[label="",style="dashed", color="red", weight=0]; 607[label="xuu4000 == xuu300",fontsize=16,color="magenta"];607 -> 808[label="",style="dashed", color="magenta", weight=3]; 607 -> 809[label="",style="dashed", color="magenta", weight=3]; 608 -> 548[label="",style="dashed", color="red", weight=0]; 608[label="xuu4000 == xuu300",fontsize=16,color="magenta"];608 -> 810[label="",style="dashed", color="magenta", weight=3]; 608 -> 811[label="",style="dashed", color="magenta", weight=3]; 609 -> 549[label="",style="dashed", color="red", weight=0]; 609[label="xuu4000 == xuu300",fontsize=16,color="magenta"];609 -> 812[label="",style="dashed", color="magenta", weight=3]; 609 -> 813[label="",style="dashed", color="magenta", weight=3]; 610 -> 550[label="",style="dashed", color="red", weight=0]; 610[label="xuu4000 == xuu300",fontsize=16,color="magenta"];610 -> 814[label="",style="dashed", color="magenta", weight=3]; 610 -> 815[label="",style="dashed", color="magenta", weight=3]; 611 -> 551[label="",style="dashed", color="red", weight=0]; 611[label="xuu4000 == xuu300",fontsize=16,color="magenta"];611 -> 816[label="",style="dashed", color="magenta", weight=3]; 611 -> 817[label="",style="dashed", color="magenta", weight=3]; 612 -> 552[label="",style="dashed", color="red", weight=0]; 612[label="xuu4000 == xuu300",fontsize=16,color="magenta"];612 -> 818[label="",style="dashed", color="magenta", weight=3]; 612 -> 819[label="",style="dashed", color="magenta", weight=3]; 613 -> 553[label="",style="dashed", color="red", weight=0]; 613[label="xuu4000 == xuu300",fontsize=16,color="magenta"];613 -> 820[label="",style="dashed", color="magenta", weight=3]; 613 -> 821[label="",style="dashed", color="magenta", weight=3]; 614 -> 554[label="",style="dashed", color="red", weight=0]; 614[label="xuu4000 == xuu300",fontsize=16,color="magenta"];614 -> 822[label="",style="dashed", color="magenta", weight=3]; 614 -> 823[label="",style="dashed", color="magenta", weight=3]; 615 -> 555[label="",style="dashed", color="red", weight=0]; 615[label="xuu4000 == xuu300",fontsize=16,color="magenta"];615 -> 824[label="",style="dashed", color="magenta", weight=3]; 615 -> 825[label="",style="dashed", color="magenta", weight=3]; 616 -> 556[label="",style="dashed", color="red", weight=0]; 616[label="xuu4000 == xuu300",fontsize=16,color="magenta"];616 -> 826[label="",style="dashed", color="magenta", weight=3]; 616 -> 827[label="",style="dashed", color="magenta", weight=3]; 617 -> 557[label="",style="dashed", color="red", weight=0]; 617[label="xuu4000 == xuu300",fontsize=16,color="magenta"];617 -> 828[label="",style="dashed", color="magenta", weight=3]; 617 -> 829[label="",style="dashed", color="magenta", weight=3]; 618 -> 558[label="",style="dashed", color="red", weight=0]; 618[label="xuu4000 == xuu300",fontsize=16,color="magenta"];618 -> 830[label="",style="dashed", color="magenta", weight=3]; 618 -> 831[label="",style="dashed", color="magenta", weight=3]; 619 -> 559[label="",style="dashed", color="red", weight=0]; 619[label="xuu4000 == xuu300",fontsize=16,color="magenta"];619 -> 832[label="",style="dashed", color="magenta", weight=3]; 619 -> 833[label="",style="dashed", color="magenta", weight=3]; 620 -> 560[label="",style="dashed", color="red", weight=0]; 620[label="xuu4000 == xuu300",fontsize=16,color="magenta"];620 -> 834[label="",style="dashed", color="magenta", weight=3]; 620 -> 835[label="",style="dashed", color="magenta", weight=3]; 621[label="compare2 (Right xuu80) (Right xuu81) False",fontsize=16,color="black",shape="box"];621 -> 836[label="",style="solid", color="black", weight=3]; 622[label="compare2 (Right xuu80) (Right xuu81) True",fontsize=16,color="black",shape="box"];622 -> 837[label="",style="solid", color="black", weight=3]; 623[label="Zero",fontsize=16,color="green",shape="box"];624[label="Succ xuu3000",fontsize=16,color="green",shape="box"];625[label="Succ xuu3000",fontsize=16,color="green",shape="box"];626[label="Zero",fontsize=16,color="green",shape="box"];627[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];627 -> 838[label="",style="solid", color="black", weight=3]; 628[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];628 -> 839[label="",style="solid", color="black", weight=3]; 629[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];629 -> 840[label="",style="solid", color="black", weight=3]; 630[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];630 -> 841[label="",style="solid", color="black", weight=3]; 631[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];631 -> 842[label="",style="solid", color="black", weight=3]; 632[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];632 -> 843[label="",style="solid", color="black", weight=3]; 633[label="compare1 False True True",fontsize=16,color="black",shape="box"];633 -> 844[label="",style="solid", color="black", weight=3]; 634[label="compare1 True False False",fontsize=16,color="black",shape="box"];634 -> 845[label="",style="solid", color="black", weight=3]; 1031 -> 1028[label="",style="dashed", color="red", weight=0]; 1031[label="xuu4001 == xuu301 && xuu4002 == xuu302",fontsize=16,color="magenta"];1031 -> 1069[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1070[label="",style="dashed", color="magenta", weight=3]; 1032[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];3369[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 1071[label="",style="solid", color="blue", weight=3]; 3370[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 1072[label="",style="solid", color="blue", weight=3]; 3371[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 1073[label="",style="solid", color="blue", weight=3]; 3372[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 1074[label="",style="solid", color="blue", weight=3]; 3373[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 1075[label="",style="solid", color="blue", weight=3]; 3374[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 1076[label="",style="solid", color="blue", weight=3]; 3375[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 1077[label="",style="solid", color="blue", weight=3]; 3376[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 1078[label="",style="solid", color="blue", weight=3]; 3377[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 1079[label="",style="solid", color="blue", weight=3]; 3378[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 1080[label="",style="solid", color="blue", weight=3]; 3379[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 1081[label="",style="solid", color="blue", weight=3]; 3380[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 1082[label="",style="solid", color="blue", weight=3]; 3381[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 1083[label="",style="solid", color="blue", weight=3]; 3382[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 1084[label="",style="solid", color="blue", weight=3]; 1012[label="compare2 (xuu91,xuu92,xuu93) (xuu94,xuu95,xuu96) False",fontsize=16,color="black",shape="box"];1012 -> 1085[label="",style="solid", color="black", weight=3]; 1013[label="compare2 (xuu91,xuu92,xuu93) (xuu94,xuu95,xuu96) True",fontsize=16,color="black",shape="box"];1013 -> 1086[label="",style="solid", color="black", weight=3]; 651 -> 398[label="",style="dashed", color="red", weight=0]; 651[label="xuu4000 * Pos xuu3010",fontsize=16,color="magenta"];651 -> 876[label="",style="dashed", color="magenta", weight=3]; 651 -> 877[label="",style="dashed", color="magenta", weight=3]; 652 -> 398[label="",style="dashed", color="red", weight=0]; 652[label="Pos xuu40010 * xuu300",fontsize=16,color="magenta"];652 -> 878[label="",style="dashed", color="magenta", weight=3]; 652 -> 879[label="",style="dashed", color="magenta", weight=3]; 653 -> 398[label="",style="dashed", color="red", weight=0]; 653[label="xuu4000 * Pos xuu3010",fontsize=16,color="magenta"];653 -> 880[label="",style="dashed", color="magenta", weight=3]; 653 -> 881[label="",style="dashed", color="magenta", weight=3]; 654 -> 398[label="",style="dashed", color="red", weight=0]; 654[label="Neg xuu40010 * xuu300",fontsize=16,color="magenta"];654 -> 882[label="",style="dashed", color="magenta", weight=3]; 654 -> 883[label="",style="dashed", color="magenta", weight=3]; 655 -> 398[label="",style="dashed", color="red", weight=0]; 655[label="xuu4000 * Neg xuu3010",fontsize=16,color="magenta"];655 -> 884[label="",style="dashed", color="magenta", weight=3]; 655 -> 885[label="",style="dashed", color="magenta", weight=3]; 656 -> 398[label="",style="dashed", color="red", weight=0]; 656[label="Pos xuu40010 * xuu300",fontsize=16,color="magenta"];656 -> 886[label="",style="dashed", color="magenta", weight=3]; 656 -> 887[label="",style="dashed", color="magenta", weight=3]; 657 -> 398[label="",style="dashed", color="red", weight=0]; 657[label="xuu4000 * Neg xuu3010",fontsize=16,color="magenta"];657 -> 888[label="",style="dashed", color="magenta", weight=3]; 657 -> 889[label="",style="dashed", color="magenta", weight=3]; 658 -> 398[label="",style="dashed", color="red", weight=0]; 658[label="Neg xuu40010 * xuu300",fontsize=16,color="magenta"];658 -> 890[label="",style="dashed", color="magenta", weight=3]; 658 -> 891[label="",style="dashed", color="magenta", weight=3]; 659 -> 385[label="",style="dashed", color="red", weight=0]; 659[label="primCmpNat xuu40000 xuu3000",fontsize=16,color="magenta"];659 -> 892[label="",style="dashed", color="magenta", weight=3]; 659 -> 893[label="",style="dashed", color="magenta", weight=3]; 660[label="GT",fontsize=16,color="green",shape="box"];661[label="LT",fontsize=16,color="green",shape="box"];662[label="EQ",fontsize=16,color="green",shape="box"];1187 -> 898[label="",style="dashed", color="red", weight=0]; 1187[label="FiniteMap.sizeFM xuu39",fontsize=16,color="magenta"];1187 -> 1195[label="",style="dashed", color="magenta", weight=3]; 666[label="FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="triangle"];666 -> 898[label="",style="solid", color="black", weight=3]; 1188[label="primPlusInt (Pos xuu3920) xuu126",fontsize=16,color="burlywood",shape="box"];3383[label="xuu126/Pos xuu1260",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3383[label="",style="solid", color="burlywood", weight=9]; 3383 -> 1196[label="",style="solid", color="burlywood", weight=3]; 3384[label="xuu126/Neg xuu1260",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3384[label="",style="solid", color="burlywood", weight=9]; 3384 -> 1197[label="",style="solid", color="burlywood", weight=3]; 1189[label="primPlusInt (Neg xuu3920) xuu126",fontsize=16,color="burlywood",shape="box"];3385[label="xuu126/Pos xuu1260",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3385[label="",style="solid", color="burlywood", weight=9]; 3385 -> 1198[label="",style="solid", color="burlywood", weight=3]; 3386[label="xuu126/Neg xuu1260",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3386[label="",style="solid", color="burlywood", weight=9]; 3386 -> 1199[label="",style="solid", color="burlywood", weight=3]; 665 -> 398[label="",style="dashed", color="red", weight=0]; 665[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];665 -> 896[label="",style="dashed", color="magenta", weight=3]; 665 -> 897[label="",style="dashed", color="magenta", weight=3]; 667[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 False",fontsize=16,color="black",shape="box"];667 -> 899[label="",style="solid", color="black", weight=3]; 668[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 True",fontsize=16,color="black",shape="box"];668 -> 900[label="",style="solid", color="black", weight=3]; 669[label="FiniteMap.Branch xuu14 xuu15 (FiniteMap.mkBranchUnbox xuu39 xuu14 xuu18 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18 + FiniteMap.mkBranchRight_size xuu39 xuu14 xuu18)) xuu39 xuu18",fontsize=16,color="green",shape="box"];669 -> 901[label="",style="dashed", color="green", weight=3]; 670[label="xuu4000",fontsize=16,color="green",shape="box"];671[label="xuu300",fontsize=16,color="green",shape="box"];672[label="xuu4000",fontsize=16,color="green",shape="box"];673[label="xuu300",fontsize=16,color="green",shape="box"];674[label="xuu4000",fontsize=16,color="green",shape="box"];675[label="xuu300",fontsize=16,color="green",shape="box"];676[label="xuu4000",fontsize=16,color="green",shape="box"];677[label="xuu300",fontsize=16,color="green",shape="box"];678[label="xuu4000",fontsize=16,color="green",shape="box"];679[label="xuu300",fontsize=16,color="green",shape="box"];680[label="xuu4000",fontsize=16,color="green",shape="box"];681[label="xuu300",fontsize=16,color="green",shape="box"];682[label="xuu4000",fontsize=16,color="green",shape="box"];683[label="xuu300",fontsize=16,color="green",shape="box"];684[label="xuu4000",fontsize=16,color="green",shape="box"];685[label="xuu300",fontsize=16,color="green",shape="box"];686[label="xuu4000",fontsize=16,color="green",shape="box"];687[label="xuu300",fontsize=16,color="green",shape="box"];688[label="xuu4000",fontsize=16,color="green",shape="box"];689[label="xuu300",fontsize=16,color="green",shape="box"];690[label="xuu4000",fontsize=16,color="green",shape="box"];691[label="xuu300",fontsize=16,color="green",shape="box"];692[label="xuu4000",fontsize=16,color="green",shape="box"];693[label="xuu300",fontsize=16,color="green",shape="box"];694[label="xuu4000",fontsize=16,color="green",shape="box"];695[label="xuu300",fontsize=16,color="green",shape="box"];696[label="xuu4000",fontsize=16,color="green",shape="box"];697[label="xuu300",fontsize=16,color="green",shape="box"];698[label="LT",fontsize=16,color="green",shape="box"];699[label="xuu49",fontsize=16,color="green",shape="box"];700[label="GT",fontsize=16,color="green",shape="box"];701[label="Integer (primMulInt xuu40000 xuu3010)",fontsize=16,color="green",shape="box"];701 -> 902[label="",style="dashed", color="green", weight=3]; 702[label="primMulInt (Pos xuu40000) (Pos xuu3010)",fontsize=16,color="black",shape="box"];702 -> 903[label="",style="solid", color="black", weight=3]; 703[label="primMulInt (Pos xuu40000) (Neg xuu3010)",fontsize=16,color="black",shape="box"];703 -> 904[label="",style="solid", color="black", weight=3]; 704[label="primMulInt (Neg xuu40000) (Pos xuu3010)",fontsize=16,color="black",shape="box"];704 -> 905[label="",style="solid", color="black", weight=3]; 705[label="primMulInt (Neg xuu40000) (Neg xuu3010)",fontsize=16,color="black",shape="box"];705 -> 906[label="",style="solid", color="black", weight=3]; 1037 -> 547[label="",style="dashed", color="red", weight=0]; 1037[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1037 -> 1089[label="",style="dashed", color="magenta", weight=3]; 1037 -> 1090[label="",style="dashed", color="magenta", weight=3]; 1038 -> 548[label="",style="dashed", color="red", weight=0]; 1038[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1038 -> 1091[label="",style="dashed", color="magenta", weight=3]; 1038 -> 1092[label="",style="dashed", color="magenta", weight=3]; 1039 -> 549[label="",style="dashed", color="red", weight=0]; 1039[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1039 -> 1093[label="",style="dashed", color="magenta", weight=3]; 1039 -> 1094[label="",style="dashed", color="magenta", weight=3]; 1040 -> 550[label="",style="dashed", color="red", weight=0]; 1040[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1040 -> 1095[label="",style="dashed", color="magenta", weight=3]; 1040 -> 1096[label="",style="dashed", color="magenta", weight=3]; 1041 -> 551[label="",style="dashed", color="red", weight=0]; 1041[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1041 -> 1097[label="",style="dashed", color="magenta", weight=3]; 1041 -> 1098[label="",style="dashed", color="magenta", weight=3]; 1042 -> 552[label="",style="dashed", color="red", weight=0]; 1042[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1042 -> 1099[label="",style="dashed", color="magenta", weight=3]; 1042 -> 1100[label="",style="dashed", color="magenta", weight=3]; 1043 -> 553[label="",style="dashed", color="red", weight=0]; 1043[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1043 -> 1101[label="",style="dashed", color="magenta", weight=3]; 1043 -> 1102[label="",style="dashed", color="magenta", weight=3]; 1044 -> 554[label="",style="dashed", color="red", weight=0]; 1044[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1044 -> 1103[label="",style="dashed", color="magenta", weight=3]; 1044 -> 1104[label="",style="dashed", color="magenta", weight=3]; 1045 -> 555[label="",style="dashed", color="red", weight=0]; 1045[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1045 -> 1105[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1106[label="",style="dashed", color="magenta", weight=3]; 1046 -> 556[label="",style="dashed", color="red", weight=0]; 1046[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1046 -> 1107[label="",style="dashed", color="magenta", weight=3]; 1046 -> 1108[label="",style="dashed", color="magenta", weight=3]; 1047 -> 557[label="",style="dashed", color="red", weight=0]; 1047[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1047 -> 1109[label="",style="dashed", color="magenta", weight=3]; 1047 -> 1110[label="",style="dashed", color="magenta", weight=3]; 1048 -> 558[label="",style="dashed", color="red", weight=0]; 1048[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1048 -> 1111[label="",style="dashed", color="magenta", weight=3]; 1048 -> 1112[label="",style="dashed", color="magenta", weight=3]; 1049 -> 559[label="",style="dashed", color="red", weight=0]; 1049[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1049 -> 1113[label="",style="dashed", color="magenta", weight=3]; 1049 -> 1114[label="",style="dashed", color="magenta", weight=3]; 1050 -> 560[label="",style="dashed", color="red", weight=0]; 1050[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1050 -> 1115[label="",style="dashed", color="magenta", weight=3]; 1050 -> 1116[label="",style="dashed", color="magenta", weight=3]; 1051 -> 547[label="",style="dashed", color="red", weight=0]; 1051[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1052 -> 548[label="",style="dashed", color="red", weight=0]; 1052[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1053 -> 549[label="",style="dashed", color="red", weight=0]; 1053[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1054 -> 550[label="",style="dashed", color="red", weight=0]; 1054[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1055 -> 551[label="",style="dashed", color="red", weight=0]; 1055[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1056 -> 552[label="",style="dashed", color="red", weight=0]; 1056[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1057 -> 553[label="",style="dashed", color="red", weight=0]; 1057[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1058 -> 554[label="",style="dashed", color="red", weight=0]; 1058[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1059 -> 555[label="",style="dashed", color="red", weight=0]; 1059[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1060 -> 556[label="",style="dashed", color="red", weight=0]; 1060[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1061 -> 557[label="",style="dashed", color="red", weight=0]; 1061[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1062 -> 558[label="",style="dashed", color="red", weight=0]; 1062[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1063 -> 559[label="",style="dashed", color="red", weight=0]; 1063[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1064 -> 560[label="",style="dashed", color="red", weight=0]; 1064[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1065[label="False && xuu124",fontsize=16,color="black",shape="box"];1065 -> 1117[label="",style="solid", color="black", weight=3]; 1066[label="True && xuu124",fontsize=16,color="black",shape="box"];1066 -> 1118[label="",style="solid", color="black", weight=3]; 1067[label="compare1 (xuu106,xuu107) (xuu108,xuu109) ((xuu106,xuu107) <= (xuu108,xuu109))",fontsize=16,color="black",shape="box"];1067 -> 1119[label="",style="solid", color="black", weight=3]; 1068[label="EQ",fontsize=16,color="green",shape="box"];728[label="LT",fontsize=16,color="green",shape="box"];729[label="compare0 (Just xuu4000) Nothing otherwise",fontsize=16,color="black",shape="box"];729 -> 986[label="",style="solid", color="black", weight=3]; 730[label="xuu4000",fontsize=16,color="green",shape="box"];731[label="xuu300",fontsize=16,color="green",shape="box"];547[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];547 -> 706[label="",style="solid", color="black", weight=3]; 732[label="xuu4000",fontsize=16,color="green",shape="box"];733[label="xuu300",fontsize=16,color="green",shape="box"];548[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3387[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];548 -> 3387[label="",style="solid", color="burlywood", weight=9]; 3387 -> 707[label="",style="solid", color="burlywood", weight=3]; 3388[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];548 -> 3388[label="",style="solid", color="burlywood", weight=9]; 3388 -> 708[label="",style="solid", color="burlywood", weight=3]; 734[label="xuu4000",fontsize=16,color="green",shape="box"];735[label="xuu300",fontsize=16,color="green",shape="box"];549[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3389[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];549 -> 3389[label="",style="solid", color="burlywood", weight=9]; 3389 -> 709[label="",style="solid", color="burlywood", weight=3]; 3390[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];549 -> 3390[label="",style="solid", color="burlywood", weight=9]; 3390 -> 710[label="",style="solid", color="burlywood", weight=3]; 736[label="xuu4000",fontsize=16,color="green",shape="box"];737[label="xuu300",fontsize=16,color="green",shape="box"];550[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3391[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];550 -> 3391[label="",style="solid", color="burlywood", weight=9]; 3391 -> 711[label="",style="solid", color="burlywood", weight=3]; 3392[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];550 -> 3392[label="",style="solid", color="burlywood", weight=9]; 3392 -> 712[label="",style="solid", color="burlywood", weight=3]; 738[label="xuu4000",fontsize=16,color="green",shape="box"];739[label="xuu300",fontsize=16,color="green",shape="box"];551[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3393[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];551 -> 3393[label="",style="solid", color="burlywood", weight=9]; 3393 -> 713[label="",style="solid", color="burlywood", weight=3]; 740[label="xuu4000",fontsize=16,color="green",shape="box"];741[label="xuu300",fontsize=16,color="green",shape="box"];552[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];552 -> 714[label="",style="solid", color="black", weight=3]; 742[label="xuu4000",fontsize=16,color="green",shape="box"];743[label="xuu300",fontsize=16,color="green",shape="box"];553[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3394[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];553 -> 3394[label="",style="solid", color="burlywood", weight=9]; 3394 -> 715[label="",style="solid", color="burlywood", weight=3]; 744[label="xuu4000",fontsize=16,color="green",shape="box"];745[label="xuu300",fontsize=16,color="green",shape="box"];554[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3395[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];554 -> 3395[label="",style="solid", color="burlywood", weight=9]; 3395 -> 716[label="",style="solid", color="burlywood", weight=3]; 746[label="xuu4000",fontsize=16,color="green",shape="box"];747[label="xuu300",fontsize=16,color="green",shape="box"];555[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3396[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];555 -> 3396[label="",style="solid", color="burlywood", weight=9]; 3396 -> 717[label="",style="solid", color="burlywood", weight=3]; 3397[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];555 -> 3397[label="",style="solid", color="burlywood", weight=9]; 3397 -> 718[label="",style="solid", color="burlywood", weight=3]; 748[label="xuu4000",fontsize=16,color="green",shape="box"];749[label="xuu300",fontsize=16,color="green",shape="box"];556[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];556 -> 719[label="",style="solid", color="black", weight=3]; 750[label="xuu4000",fontsize=16,color="green",shape="box"];751[label="xuu300",fontsize=16,color="green",shape="box"];557[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3398[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];557 -> 3398[label="",style="solid", color="burlywood", weight=9]; 3398 -> 720[label="",style="solid", color="burlywood", weight=3]; 752[label="xuu4000",fontsize=16,color="green",shape="box"];753[label="xuu300",fontsize=16,color="green",shape="box"];558[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3399[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];558 -> 3399[label="",style="solid", color="burlywood", weight=9]; 3399 -> 721[label="",style="solid", color="burlywood", weight=3]; 754[label="xuu4000",fontsize=16,color="green",shape="box"];755[label="xuu300",fontsize=16,color="green",shape="box"];559[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3400[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];559 -> 3400[label="",style="solid", color="burlywood", weight=9]; 3400 -> 722[label="",style="solid", color="burlywood", weight=3]; 3401[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];559 -> 3401[label="",style="solid", color="burlywood", weight=9]; 3401 -> 723[label="",style="solid", color="burlywood", weight=3]; 3402[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];559 -> 3402[label="",style="solid", color="burlywood", weight=9]; 3402 -> 724[label="",style="solid", color="burlywood", weight=3]; 756[label="xuu4000",fontsize=16,color="green",shape="box"];757[label="xuu300",fontsize=16,color="green",shape="box"];560[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];560 -> 725[label="",style="solid", color="black", weight=3]; 758 -> 1216[label="",style="dashed", color="red", weight=0]; 758[label="compare1 (Just xuu66) (Just xuu67) (Just xuu66 <= Just xuu67)",fontsize=16,color="magenta"];758 -> 1217[label="",style="dashed", color="magenta", weight=3]; 758 -> 1218[label="",style="dashed", color="magenta", weight=3]; 758 -> 1219[label="",style="dashed", color="magenta", weight=3]; 759[label="EQ",fontsize=16,color="green",shape="box"];760[label="xuu4000",fontsize=16,color="green",shape="box"];761[label="Pos xuu3010",fontsize=16,color="green",shape="box"];762[label="Pos xuu40010",fontsize=16,color="green",shape="box"];763[label="xuu300",fontsize=16,color="green",shape="box"];764[label="xuu4000",fontsize=16,color="green",shape="box"];765[label="Pos xuu3010",fontsize=16,color="green",shape="box"];766[label="Neg xuu40010",fontsize=16,color="green",shape="box"];767[label="xuu300",fontsize=16,color="green",shape="box"];768[label="xuu4000",fontsize=16,color="green",shape="box"];769[label="Neg xuu3010",fontsize=16,color="green",shape="box"];770[label="Pos xuu40010",fontsize=16,color="green",shape="box"];771[label="xuu300",fontsize=16,color="green",shape="box"];772[label="xuu4000",fontsize=16,color="green",shape="box"];773[label="Neg xuu3010",fontsize=16,color="green",shape="box"];774[label="Neg xuu40010",fontsize=16,color="green",shape="box"];775[label="xuu300",fontsize=16,color="green",shape="box"];776[label="xuu4000",fontsize=16,color="green",shape="box"];777[label="xuu300",fontsize=16,color="green",shape="box"];778[label="xuu4000",fontsize=16,color="green",shape="box"];779[label="xuu300",fontsize=16,color="green",shape="box"];780[label="xuu4000",fontsize=16,color="green",shape="box"];781[label="xuu300",fontsize=16,color="green",shape="box"];782[label="xuu4000",fontsize=16,color="green",shape="box"];783[label="xuu300",fontsize=16,color="green",shape="box"];784[label="xuu4000",fontsize=16,color="green",shape="box"];785[label="xuu300",fontsize=16,color="green",shape="box"];786[label="xuu4000",fontsize=16,color="green",shape="box"];787[label="xuu300",fontsize=16,color="green",shape="box"];788[label="xuu4000",fontsize=16,color="green",shape="box"];789[label="xuu300",fontsize=16,color="green",shape="box"];790[label="xuu4000",fontsize=16,color="green",shape="box"];791[label="xuu300",fontsize=16,color="green",shape="box"];792[label="xuu4000",fontsize=16,color="green",shape="box"];793[label="xuu300",fontsize=16,color="green",shape="box"];794[label="xuu4000",fontsize=16,color="green",shape="box"];795[label="xuu300",fontsize=16,color="green",shape="box"];796[label="xuu4000",fontsize=16,color="green",shape="box"];797[label="xuu300",fontsize=16,color="green",shape="box"];798[label="xuu4000",fontsize=16,color="green",shape="box"];799[label="xuu300",fontsize=16,color="green",shape="box"];800[label="xuu4000",fontsize=16,color="green",shape="box"];801[label="xuu300",fontsize=16,color="green",shape="box"];802[label="xuu4000",fontsize=16,color="green",shape="box"];803[label="xuu300",fontsize=16,color="green",shape="box"];804 -> 1226[label="",style="dashed", color="red", weight=0]; 804[label="compare1 (Left xuu73) (Left xuu74) (Left xuu73 <= Left xuu74)",fontsize=16,color="magenta"];804 -> 1227[label="",style="dashed", color="magenta", weight=3]; 804 -> 1228[label="",style="dashed", color="magenta", weight=3]; 804 -> 1229[label="",style="dashed", color="magenta", weight=3]; 805[label="EQ",fontsize=16,color="green",shape="box"];806[label="LT",fontsize=16,color="green",shape="box"];807[label="compare0 (Right xuu4000) (Left xuu300) otherwise",fontsize=16,color="black",shape="box"];807 -> 989[label="",style="solid", color="black", weight=3]; 808[label="xuu4000",fontsize=16,color="green",shape="box"];809[label="xuu300",fontsize=16,color="green",shape="box"];810[label="xuu4000",fontsize=16,color="green",shape="box"];811[label="xuu300",fontsize=16,color="green",shape="box"];812[label="xuu4000",fontsize=16,color="green",shape="box"];813[label="xuu300",fontsize=16,color="green",shape="box"];814[label="xuu4000",fontsize=16,color="green",shape="box"];815[label="xuu300",fontsize=16,color="green",shape="box"];816[label="xuu4000",fontsize=16,color="green",shape="box"];817[label="xuu300",fontsize=16,color="green",shape="box"];818[label="xuu4000",fontsize=16,color="green",shape="box"];819[label="xuu300",fontsize=16,color="green",shape="box"];820[label="xuu4000",fontsize=16,color="green",shape="box"];821[label="xuu300",fontsize=16,color="green",shape="box"];822[label="xuu4000",fontsize=16,color="green",shape="box"];823[label="xuu300",fontsize=16,color="green",shape="box"];824[label="xuu4000",fontsize=16,color="green",shape="box"];825[label="xuu300",fontsize=16,color="green",shape="box"];826[label="xuu4000",fontsize=16,color="green",shape="box"];827[label="xuu300",fontsize=16,color="green",shape="box"];828[label="xuu4000",fontsize=16,color="green",shape="box"];829[label="xuu300",fontsize=16,color="green",shape="box"];830[label="xuu4000",fontsize=16,color="green",shape="box"];831[label="xuu300",fontsize=16,color="green",shape="box"];832[label="xuu4000",fontsize=16,color="green",shape="box"];833[label="xuu300",fontsize=16,color="green",shape="box"];834[label="xuu4000",fontsize=16,color="green",shape="box"];835[label="xuu300",fontsize=16,color="green",shape="box"];836 -> 1237[label="",style="dashed", color="red", weight=0]; 836[label="compare1 (Right xuu80) (Right xuu81) (Right xuu80 <= Right xuu81)",fontsize=16,color="magenta"];836 -> 1238[label="",style="dashed", color="magenta", weight=3]; 836 -> 1239[label="",style="dashed", color="magenta", weight=3]; 836 -> 1240[label="",style="dashed", color="magenta", weight=3]; 837[label="EQ",fontsize=16,color="green",shape="box"];838[label="LT",fontsize=16,color="green",shape="box"];839[label="LT",fontsize=16,color="green",shape="box"];840[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];840 -> 991[label="",style="solid", color="black", weight=3]; 841[label="LT",fontsize=16,color="green",shape="box"];842[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];842 -> 992[label="",style="solid", color="black", weight=3]; 843[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];843 -> 993[label="",style="solid", color="black", weight=3]; 844[label="LT",fontsize=16,color="green",shape="box"];845[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];845 -> 994[label="",style="solid", color="black", weight=3]; 1069[label="xuu4002 == xuu302",fontsize=16,color="blue",shape="box"];3403[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 1120[label="",style="solid", color="blue", weight=3]; 3404[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 1121[label="",style="solid", color="blue", weight=3]; 3405[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 1122[label="",style="solid", color="blue", weight=3]; 3406[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 1123[label="",style="solid", color="blue", weight=3]; 3407[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 1124[label="",style="solid", color="blue", weight=3]; 3408[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 1125[label="",style="solid", color="blue", weight=3]; 3409[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 1126[label="",style="solid", color="blue", weight=3]; 3410[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 1127[label="",style="solid", color="blue", weight=3]; 3411[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 1128[label="",style="solid", color="blue", weight=3]; 3412[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 1129[label="",style="solid", color="blue", weight=3]; 3413[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 1130[label="",style="solid", color="blue", weight=3]; 3414[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 1131[label="",style="solid", color="blue", weight=3]; 3415[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 1132[label="",style="solid", color="blue", weight=3]; 3416[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 1133[label="",style="solid", color="blue", weight=3]; 1070[label="xuu4001 == xuu301",fontsize=16,color="blue",shape="box"];3417[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 1134[label="",style="solid", color="blue", weight=3]; 3418[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 1135[label="",style="solid", color="blue", weight=3]; 3419[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 1136[label="",style="solid", color="blue", weight=3]; 3420[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 1137[label="",style="solid", color="blue", weight=3]; 3421[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 1138[label="",style="solid", color="blue", weight=3]; 3422[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 1139[label="",style="solid", color="blue", weight=3]; 3423[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 1140[label="",style="solid", color="blue", weight=3]; 3424[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3424[label="",style="solid", color="blue", weight=9]; 3424 -> 1141[label="",style="solid", color="blue", weight=3]; 3425[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3425[label="",style="solid", color="blue", weight=9]; 3425 -> 1142[label="",style="solid", color="blue", weight=3]; 3426[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3426[label="",style="solid", color="blue", weight=9]; 3426 -> 1143[label="",style="solid", color="blue", weight=3]; 3427[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 1144[label="",style="solid", color="blue", weight=3]; 3428[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 1145[label="",style="solid", color="blue", weight=3]; 3429[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 1146[label="",style="solid", color="blue", weight=3]; 3430[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 1147[label="",style="solid", color="blue", weight=3]; 1071 -> 547[label="",style="dashed", color="red", weight=0]; 1071[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1071 -> 1148[label="",style="dashed", color="magenta", weight=3]; 1071 -> 1149[label="",style="dashed", color="magenta", weight=3]; 1072 -> 548[label="",style="dashed", color="red", weight=0]; 1072[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1072 -> 1150[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1151[label="",style="dashed", color="magenta", weight=3]; 1073 -> 549[label="",style="dashed", color="red", weight=0]; 1073[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1073 -> 1152[label="",style="dashed", color="magenta", weight=3]; 1073 -> 1153[label="",style="dashed", color="magenta", weight=3]; 1074 -> 550[label="",style="dashed", color="red", weight=0]; 1074[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1074 -> 1154[label="",style="dashed", color="magenta", weight=3]; 1074 -> 1155[label="",style="dashed", color="magenta", weight=3]; 1075 -> 551[label="",style="dashed", color="red", weight=0]; 1075[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1075 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1075 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1076 -> 552[label="",style="dashed", color="red", weight=0]; 1076[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1076 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1076 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1077 -> 553[label="",style="dashed", color="red", weight=0]; 1077[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1077 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1077 -> 1161[label="",style="dashed", color="magenta", weight=3]; 1078 -> 554[label="",style="dashed", color="red", weight=0]; 1078[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1078 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1078 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1079 -> 555[label="",style="dashed", color="red", weight=0]; 1079[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1079 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1079 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1080 -> 556[label="",style="dashed", color="red", weight=0]; 1080[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1080 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1080 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1081 -> 557[label="",style="dashed", color="red", weight=0]; 1081[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1081 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1081 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1082 -> 558[label="",style="dashed", color="red", weight=0]; 1082[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1082 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1082 -> 1171[label="",style="dashed", color="magenta", weight=3]; 1083 -> 559[label="",style="dashed", color="red", weight=0]; 1083[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1083 -> 1172[label="",style="dashed", color="magenta", weight=3]; 1083 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1084 -> 560[label="",style="dashed", color="red", weight=0]; 1084[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1084 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1084 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1085[label="compare1 (xuu91,xuu92,xuu93) (xuu94,xuu95,xuu96) ((xuu91,xuu92,xuu93) <= (xuu94,xuu95,xuu96))",fontsize=16,color="black",shape="box"];1085 -> 1176[label="",style="solid", color="black", weight=3]; 1086[label="EQ",fontsize=16,color="green",shape="box"];876[label="xuu4000",fontsize=16,color="green",shape="box"];877[label="Pos xuu3010",fontsize=16,color="green",shape="box"];878[label="Pos xuu40010",fontsize=16,color="green",shape="box"];879[label="xuu300",fontsize=16,color="green",shape="box"];880[label="xuu4000",fontsize=16,color="green",shape="box"];881[label="Pos xuu3010",fontsize=16,color="green",shape="box"];882[label="Neg xuu40010",fontsize=16,color="green",shape="box"];883[label="xuu300",fontsize=16,color="green",shape="box"];884[label="xuu4000",fontsize=16,color="green",shape="box"];885[label="Neg xuu3010",fontsize=16,color="green",shape="box"];886[label="Pos xuu40010",fontsize=16,color="green",shape="box"];887[label="xuu300",fontsize=16,color="green",shape="box"];888[label="xuu4000",fontsize=16,color="green",shape="box"];889[label="Neg xuu3010",fontsize=16,color="green",shape="box"];890[label="Neg xuu40010",fontsize=16,color="green",shape="box"];891[label="xuu300",fontsize=16,color="green",shape="box"];892[label="xuu40000",fontsize=16,color="green",shape="box"];893[label="xuu3000",fontsize=16,color="green",shape="box"];1195[label="xuu39",fontsize=16,color="green",shape="box"];898[label="FiniteMap.sizeFM xuu18",fontsize=16,color="burlywood",shape="triangle"];3431[label="xuu18/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];898 -> 3431[label="",style="solid", color="burlywood", weight=9]; 3431 -> 1191[label="",style="solid", color="burlywood", weight=3]; 3432[label="xuu18/FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184",fontsize=10,color="white",style="solid",shape="box"];898 -> 3432[label="",style="solid", color="burlywood", weight=9]; 3432 -> 1192[label="",style="solid", color="burlywood", weight=3]; 1196[label="primPlusInt (Pos xuu3920) (Pos xuu1260)",fontsize=16,color="black",shape="box"];1196 -> 1211[label="",style="solid", color="black", weight=3]; 1197[label="primPlusInt (Pos xuu3920) (Neg xuu1260)",fontsize=16,color="black",shape="box"];1197 -> 1212[label="",style="solid", color="black", weight=3]; 1198[label="primPlusInt (Neg xuu3920) (Pos xuu1260)",fontsize=16,color="black",shape="box"];1198 -> 1213[label="",style="solid", color="black", weight=3]; 1199[label="primPlusInt (Neg xuu3920) (Neg xuu1260)",fontsize=16,color="black",shape="box"];1199 -> 1214[label="",style="solid", color="black", weight=3]; 896[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];896 -> 1190[label="",style="solid", color="black", weight=3]; 897 -> 1178[label="",style="dashed", color="red", weight=0]; 897[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];899 -> 1193[label="",style="dashed", color="red", weight=0]; 899[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 (FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18)",fontsize=16,color="magenta"];899 -> 1194[label="",style="dashed", color="magenta", weight=3]; 900[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu14 xuu15 xuu39 xuu18 xuu39 xuu18 xuu18",fontsize=16,color="burlywood",shape="box"];3433[label="xuu18/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];900 -> 3433[label="",style="solid", color="burlywood", weight=9]; 3433 -> 1200[label="",style="solid", color="burlywood", weight=3]; 3434[label="xuu18/FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184",fontsize=10,color="white",style="solid",shape="box"];900 -> 3434[label="",style="solid", color="burlywood", weight=9]; 3434 -> 1201[label="",style="solid", color="burlywood", weight=3]; 901[label="FiniteMap.mkBranchUnbox xuu39 xuu14 xuu18 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18 + FiniteMap.mkBranchRight_size xuu39 xuu14 xuu18)",fontsize=16,color="black",shape="box"];901 -> 1202[label="",style="solid", color="black", weight=3]; 902 -> 451[label="",style="dashed", color="red", weight=0]; 902[label="primMulInt xuu40000 xuu3010",fontsize=16,color="magenta"];902 -> 1203[label="",style="dashed", color="magenta", weight=3]; 902 -> 1204[label="",style="dashed", color="magenta", weight=3]; 903[label="Pos (primMulNat xuu40000 xuu3010)",fontsize=16,color="green",shape="box"];903 -> 1205[label="",style="dashed", color="green", weight=3]; 904[label="Neg (primMulNat xuu40000 xuu3010)",fontsize=16,color="green",shape="box"];904 -> 1206[label="",style="dashed", color="green", weight=3]; 905[label="Neg (primMulNat xuu40000 xuu3010)",fontsize=16,color="green",shape="box"];905 -> 1207[label="",style="dashed", color="green", weight=3]; 906[label="Pos (primMulNat xuu40000 xuu3010)",fontsize=16,color="green",shape="box"];906 -> 1208[label="",style="dashed", color="green", weight=3]; 1089[label="xuu4001",fontsize=16,color="green",shape="box"];1090[label="xuu301",fontsize=16,color="green",shape="box"];1091[label="xuu4001",fontsize=16,color="green",shape="box"];1092[label="xuu301",fontsize=16,color="green",shape="box"];1093[label="xuu4001",fontsize=16,color="green",shape="box"];1094[label="xuu301",fontsize=16,color="green",shape="box"];1095[label="xuu4001",fontsize=16,color="green",shape="box"];1096[label="xuu301",fontsize=16,color="green",shape="box"];1097[label="xuu4001",fontsize=16,color="green",shape="box"];1098[label="xuu301",fontsize=16,color="green",shape="box"];1099[label="xuu4001",fontsize=16,color="green",shape="box"];1100[label="xuu301",fontsize=16,color="green",shape="box"];1101[label="xuu4001",fontsize=16,color="green",shape="box"];1102[label="xuu301",fontsize=16,color="green",shape="box"];1103[label="xuu4001",fontsize=16,color="green",shape="box"];1104[label="xuu301",fontsize=16,color="green",shape="box"];1105[label="xuu4001",fontsize=16,color="green",shape="box"];1106[label="xuu301",fontsize=16,color="green",shape="box"];1107[label="xuu4001",fontsize=16,color="green",shape="box"];1108[label="xuu301",fontsize=16,color="green",shape="box"];1109[label="xuu4001",fontsize=16,color="green",shape="box"];1110[label="xuu301",fontsize=16,color="green",shape="box"];1111[label="xuu4001",fontsize=16,color="green",shape="box"];1112[label="xuu301",fontsize=16,color="green",shape="box"];1113[label="xuu4001",fontsize=16,color="green",shape="box"];1114[label="xuu301",fontsize=16,color="green",shape="box"];1115[label="xuu4001",fontsize=16,color="green",shape="box"];1116[label="xuu301",fontsize=16,color="green",shape="box"];1117[label="False",fontsize=16,color="green",shape="box"];1118[label="xuu124",fontsize=16,color="green",shape="box"];1119 -> 1332[label="",style="dashed", color="red", weight=0]; 1119[label="compare1 (xuu106,xuu107) (xuu108,xuu109) (xuu106 < xuu108 || xuu106 == xuu108 && xuu107 <= xuu109)",fontsize=16,color="magenta"];1119 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1338[label="",style="dashed", color="magenta", weight=3]; 986[label="compare0 (Just xuu4000) Nothing True",fontsize=16,color="black",shape="box"];986 -> 1215[label="",style="solid", color="black", weight=3]; 706[label="primEqInt xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3435[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];706 -> 3435[label="",style="solid", color="burlywood", weight=9]; 3435 -> 907[label="",style="solid", color="burlywood", weight=3]; 3436[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];706 -> 3436[label="",style="solid", color="burlywood", weight=9]; 3436 -> 908[label="",style="solid", color="burlywood", weight=3]; 707[label="xuu40000 : xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];3437[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];707 -> 3437[label="",style="solid", color="burlywood", weight=9]; 3437 -> 909[label="",style="solid", color="burlywood", weight=3]; 3438[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];707 -> 3438[label="",style="solid", color="burlywood", weight=9]; 3438 -> 910[label="",style="solid", color="burlywood", weight=3]; 708[label="[] == xuu300",fontsize=16,color="burlywood",shape="box"];3439[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];708 -> 3439[label="",style="solid", color="burlywood", weight=9]; 3439 -> 911[label="",style="solid", color="burlywood", weight=3]; 3440[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];708 -> 3440[label="",style="solid", color="burlywood", weight=9]; 3440 -> 912[label="",style="solid", color="burlywood", weight=3]; 709[label="Left xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];3441[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];709 -> 3441[label="",style="solid", color="burlywood", weight=9]; 3441 -> 913[label="",style="solid", color="burlywood", weight=3]; 3442[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];709 -> 3442[label="",style="solid", color="burlywood", weight=9]; 3442 -> 914[label="",style="solid", color="burlywood", weight=3]; 710[label="Right xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];3443[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];710 -> 3443[label="",style="solid", color="burlywood", weight=9]; 3443 -> 915[label="",style="solid", color="burlywood", weight=3]; 3444[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];710 -> 3444[label="",style="solid", color="burlywood", weight=9]; 3444 -> 916[label="",style="solid", color="burlywood", weight=3]; 711[label="Nothing == xuu300",fontsize=16,color="burlywood",shape="box"];3445[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];711 -> 3445[label="",style="solid", color="burlywood", weight=9]; 3445 -> 917[label="",style="solid", color="burlywood", weight=3]; 3446[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];711 -> 3446[label="",style="solid", color="burlywood", weight=9]; 3446 -> 918[label="",style="solid", color="burlywood", weight=3]; 712[label="Just xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];3447[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];712 -> 3447[label="",style="solid", color="burlywood", weight=9]; 3447 -> 919[label="",style="solid", color="burlywood", weight=3]; 3448[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];712 -> 3448[label="",style="solid", color="burlywood", weight=9]; 3448 -> 920[label="",style="solid", color="burlywood", weight=3]; 713[label="(xuu40000,xuu40001,xuu40002) == xuu300",fontsize=16,color="burlywood",shape="box"];3449[label="xuu300/(xuu3000,xuu3001,xuu3002)",fontsize=10,color="white",style="solid",shape="box"];713 -> 3449[label="",style="solid", color="burlywood", weight=9]; 3449 -> 921[label="",style="solid", color="burlywood", weight=3]; 714[label="primEqChar xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3450[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];714 -> 3450[label="",style="solid", color="burlywood", weight=9]; 3450 -> 922[label="",style="solid", color="burlywood", weight=3]; 715[label="Integer xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];3451[label="xuu300/Integer xuu3000",fontsize=10,color="white",style="solid",shape="box"];715 -> 3451[label="",style="solid", color="burlywood", weight=9]; 3451 -> 923[label="",style="solid", color="burlywood", weight=3]; 716[label="() == xuu300",fontsize=16,color="burlywood",shape="box"];3452[label="xuu300/()",fontsize=10,color="white",style="solid",shape="box"];716 -> 3452[label="",style="solid", color="burlywood", weight=9]; 3452 -> 924[label="",style="solid", color="burlywood", weight=3]; 717[label="False == xuu300",fontsize=16,color="burlywood",shape="box"];3453[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];717 -> 3453[label="",style="solid", color="burlywood", weight=9]; 3453 -> 925[label="",style="solid", color="burlywood", weight=3]; 3454[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];717 -> 3454[label="",style="solid", color="burlywood", weight=9]; 3454 -> 926[label="",style="solid", color="burlywood", weight=3]; 718[label="True == xuu300",fontsize=16,color="burlywood",shape="box"];3455[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];718 -> 3455[label="",style="solid", color="burlywood", weight=9]; 3455 -> 927[label="",style="solid", color="burlywood", weight=3]; 3456[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];718 -> 3456[label="",style="solid", color="burlywood", weight=9]; 3456 -> 928[label="",style="solid", color="burlywood", weight=3]; 719[label="primEqFloat xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3457[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];719 -> 3457[label="",style="solid", color="burlywood", weight=9]; 3457 -> 929[label="",style="solid", color="burlywood", weight=3]; 720[label="(xuu40000,xuu40001) == xuu300",fontsize=16,color="burlywood",shape="box"];3458[label="xuu300/(xuu3000,xuu3001)",fontsize=10,color="white",style="solid",shape="box"];720 -> 3458[label="",style="solid", color="burlywood", weight=9]; 3458 -> 930[label="",style="solid", color="burlywood", weight=3]; 721[label="xuu40000 :% xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];3459[label="xuu300/xuu3000 :% xuu3001",fontsize=10,color="white",style="solid",shape="box"];721 -> 3459[label="",style="solid", color="burlywood", weight=9]; 3459 -> 931[label="",style="solid", color="burlywood", weight=3]; 722[label="LT == xuu300",fontsize=16,color="burlywood",shape="box"];3460[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];722 -> 3460[label="",style="solid", color="burlywood", weight=9]; 3460 -> 932[label="",style="solid", color="burlywood", weight=3]; 3461[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];722 -> 3461[label="",style="solid", color="burlywood", weight=9]; 3461 -> 933[label="",style="solid", color="burlywood", weight=3]; 3462[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];722 -> 3462[label="",style="solid", color="burlywood", weight=9]; 3462 -> 934[label="",style="solid", color="burlywood", weight=3]; 723[label="EQ == xuu300",fontsize=16,color="burlywood",shape="box"];3463[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];723 -> 3463[label="",style="solid", color="burlywood", weight=9]; 3463 -> 935[label="",style="solid", color="burlywood", weight=3]; 3464[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];723 -> 3464[label="",style="solid", color="burlywood", weight=9]; 3464 -> 936[label="",style="solid", color="burlywood", weight=3]; 3465[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];723 -> 3465[label="",style="solid", color="burlywood", weight=9]; 3465 -> 937[label="",style="solid", color="burlywood", weight=3]; 724[label="GT == xuu300",fontsize=16,color="burlywood",shape="box"];3466[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];724 -> 3466[label="",style="solid", color="burlywood", weight=9]; 3466 -> 938[label="",style="solid", color="burlywood", weight=3]; 3467[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];724 -> 3467[label="",style="solid", color="burlywood", weight=9]; 3467 -> 939[label="",style="solid", color="burlywood", weight=3]; 3468[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];724 -> 3468[label="",style="solid", color="burlywood", weight=9]; 3468 -> 940[label="",style="solid", color="burlywood", weight=3]; 725[label="primEqDouble xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3469[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];725 -> 3469[label="",style="solid", color="burlywood", weight=9]; 3469 -> 941[label="",style="solid", color="burlywood", weight=3]; 1217[label="Just xuu66 <= Just xuu67",fontsize=16,color="black",shape="box"];1217 -> 1223[label="",style="solid", color="black", weight=3]; 1218[label="xuu66",fontsize=16,color="green",shape="box"];1219[label="xuu67",fontsize=16,color="green",shape="box"];1216[label="compare1 (Just xuu137) (Just xuu138) xuu139",fontsize=16,color="burlywood",shape="triangle"];3470[label="xuu139/False",fontsize=10,color="white",style="solid",shape="box"];1216 -> 3470[label="",style="solid", color="burlywood", weight=9]; 3470 -> 1224[label="",style="solid", color="burlywood", weight=3]; 3471[label="xuu139/True",fontsize=10,color="white",style="solid",shape="box"];1216 -> 3471[label="",style="solid", color="burlywood", weight=9]; 3471 -> 1225[label="",style="solid", color="burlywood", weight=3]; 1227[label="xuu73",fontsize=16,color="green",shape="box"];1228[label="Left xuu73 <= Left xuu74",fontsize=16,color="black",shape="box"];1228 -> 1233[label="",style="solid", color="black", weight=3]; 1229[label="xuu74",fontsize=16,color="green",shape="box"];1226[label="compare1 (Left xuu144) (Left xuu145) xuu146",fontsize=16,color="burlywood",shape="triangle"];3472[label="xuu146/False",fontsize=10,color="white",style="solid",shape="box"];1226 -> 3472[label="",style="solid", color="burlywood", weight=9]; 3472 -> 1234[label="",style="solid", color="burlywood", weight=3]; 3473[label="xuu146/True",fontsize=10,color="white",style="solid",shape="box"];1226 -> 3473[label="",style="solid", color="burlywood", weight=9]; 3473 -> 1235[label="",style="solid", color="burlywood", weight=3]; 989[label="compare0 (Right xuu4000) (Left xuu300) True",fontsize=16,color="black",shape="box"];989 -> 1236[label="",style="solid", color="black", weight=3]; 1238[label="Right xuu80 <= Right xuu81",fontsize=16,color="black",shape="box"];1238 -> 1244[label="",style="solid", color="black", weight=3]; 1239[label="xuu80",fontsize=16,color="green",shape="box"];1240[label="xuu81",fontsize=16,color="green",shape="box"];1237[label="compare1 (Right xuu151) (Right xuu152) xuu153",fontsize=16,color="burlywood",shape="triangle"];3474[label="xuu153/False",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3474[label="",style="solid", color="burlywood", weight=9]; 3474 -> 1245[label="",style="solid", color="burlywood", weight=3]; 3475[label="xuu153/True",fontsize=10,color="white",style="solid",shape="box"];1237 -> 3475[label="",style="solid", color="burlywood", weight=9]; 3475 -> 1246[label="",style="solid", color="burlywood", weight=3]; 991[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];991 -> 1247[label="",style="solid", color="black", weight=3]; 992[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];992 -> 1248[label="",style="solid", color="black", weight=3]; 993[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];993 -> 1249[label="",style="solid", color="black", weight=3]; 994[label="compare0 True False True",fontsize=16,color="black",shape="box"];994 -> 1250[label="",style="solid", color="black", weight=3]; 1120 -> 547[label="",style="dashed", color="red", weight=0]; 1120[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1120 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1120 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1121 -> 548[label="",style="dashed", color="red", weight=0]; 1121[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1121 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1121 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1122 -> 549[label="",style="dashed", color="red", weight=0]; 1122[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1122 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1123 -> 550[label="",style="dashed", color="red", weight=0]; 1123[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1123 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1124 -> 551[label="",style="dashed", color="red", weight=0]; 1124[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1124 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1125 -> 552[label="",style="dashed", color="red", weight=0]; 1125[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1125 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1126 -> 553[label="",style="dashed", color="red", weight=0]; 1126[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1126 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1127 -> 554[label="",style="dashed", color="red", weight=0]; 1127[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1127 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1128 -> 555[label="",style="dashed", color="red", weight=0]; 1128[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1128 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1129 -> 556[label="",style="dashed", color="red", weight=0]; 1129[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1129 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1130 -> 557[label="",style="dashed", color="red", weight=0]; 1130[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1130 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1131 -> 558[label="",style="dashed", color="red", weight=0]; 1131[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1131 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1132 -> 559[label="",style="dashed", color="red", weight=0]; 1132[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1132 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1133 -> 560[label="",style="dashed", color="red", weight=0]; 1133[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1133 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1134 -> 547[label="",style="dashed", color="red", weight=0]; 1134[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1134 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1135 -> 548[label="",style="dashed", color="red", weight=0]; 1135[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1135 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1136 -> 549[label="",style="dashed", color="red", weight=0]; 1136[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1136 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1137 -> 550[label="",style="dashed", color="red", weight=0]; 1137[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1137 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1138 -> 551[label="",style="dashed", color="red", weight=0]; 1138[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1138 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1139 -> 552[label="",style="dashed", color="red", weight=0]; 1139[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1139 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1140 -> 553[label="",style="dashed", color="red", weight=0]; 1140[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1140 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1141 -> 554[label="",style="dashed", color="red", weight=0]; 1141[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1141 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1142 -> 555[label="",style="dashed", color="red", weight=0]; 1142[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1142 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1143 -> 556[label="",style="dashed", color="red", weight=0]; 1143[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1143 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1144 -> 557[label="",style="dashed", color="red", weight=0]; 1144[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1144 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1145 -> 558[label="",style="dashed", color="red", weight=0]; 1145[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1145 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1146 -> 559[label="",style="dashed", color="red", weight=0]; 1146[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1146 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1147 -> 560[label="",style="dashed", color="red", weight=0]; 1147[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1147 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1148[label="xuu4000",fontsize=16,color="green",shape="box"];1149[label="xuu300",fontsize=16,color="green",shape="box"];1150[label="xuu4000",fontsize=16,color="green",shape="box"];1151[label="xuu300",fontsize=16,color="green",shape="box"];1152[label="xuu4000",fontsize=16,color="green",shape="box"];1153[label="xuu300",fontsize=16,color="green",shape="box"];1154[label="xuu4000",fontsize=16,color="green",shape="box"];1155[label="xuu300",fontsize=16,color="green",shape="box"];1156[label="xuu4000",fontsize=16,color="green",shape="box"];1157[label="xuu300",fontsize=16,color="green",shape="box"];1158[label="xuu4000",fontsize=16,color="green",shape="box"];1159[label="xuu300",fontsize=16,color="green",shape="box"];1160[label="xuu4000",fontsize=16,color="green",shape="box"];1161[label="xuu300",fontsize=16,color="green",shape="box"];1162[label="xuu4000",fontsize=16,color="green",shape="box"];1163[label="xuu300",fontsize=16,color="green",shape="box"];1164[label="xuu4000",fontsize=16,color="green",shape="box"];1165[label="xuu300",fontsize=16,color="green",shape="box"];1166[label="xuu4000",fontsize=16,color="green",shape="box"];1167[label="xuu300",fontsize=16,color="green",shape="box"];1168[label="xuu4000",fontsize=16,color="green",shape="box"];1169[label="xuu300",fontsize=16,color="green",shape="box"];1170[label="xuu4000",fontsize=16,color="green",shape="box"];1171[label="xuu300",fontsize=16,color="green",shape="box"];1172[label="xuu4000",fontsize=16,color="green",shape="box"];1173[label="xuu300",fontsize=16,color="green",shape="box"];1174[label="xuu4000",fontsize=16,color="green",shape="box"];1175[label="xuu300",fontsize=16,color="green",shape="box"];1176 -> 1450[label="",style="dashed", color="red", weight=0]; 1176[label="compare1 (xuu91,xuu92,xuu93) (xuu94,xuu95,xuu96) (xuu91 < xuu94 || xuu91 == xuu94 && (xuu92 < xuu95 || xuu92 == xuu95 && xuu93 <= xuu96))",fontsize=16,color="magenta"];1176 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1191[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1191 -> 1309[label="",style="solid", color="black", weight=3]; 1192[label="FiniteMap.sizeFM (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184)",fontsize=16,color="black",shape="box"];1192 -> 1310[label="",style="solid", color="black", weight=3]; 1211[label="Pos (primPlusNat xuu3920 xuu1260)",fontsize=16,color="green",shape="box"];1211 -> 1311[label="",style="dashed", color="green", weight=3]; 1212[label="primMinusNat xuu3920 xuu1260",fontsize=16,color="burlywood",shape="triangle"];3476[label="xuu3920/Succ xuu39200",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3476[label="",style="solid", color="burlywood", weight=9]; 3476 -> 1312[label="",style="solid", color="burlywood", weight=3]; 3477[label="xuu3920/Zero",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3477[label="",style="solid", color="burlywood", weight=9]; 3477 -> 1313[label="",style="solid", color="burlywood", weight=3]; 1213 -> 1212[label="",style="dashed", color="red", weight=0]; 1213[label="primMinusNat xuu1260 xuu3920",fontsize=16,color="magenta"];1213 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1214[label="Neg (primPlusNat xuu3920 xuu1260)",fontsize=16,color="green",shape="box"];1214 -> 1316[label="",style="dashed", color="green", weight=3]; 1190[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1194 -> 118[label="",style="dashed", color="red", weight=0]; 1194[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];1194 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1193[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 xuu127",fontsize=16,color="burlywood",shape="triangle"];3478[label="xuu127/False",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3478[label="",style="solid", color="burlywood", weight=9]; 3478 -> 1319[label="",style="solid", color="burlywood", weight=3]; 3479[label="xuu127/True",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3479[label="",style="solid", color="burlywood", weight=9]; 3479 -> 1320[label="",style="solid", color="burlywood", weight=3]; 1200[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu14 xuu15 xuu39 FiniteMap.EmptyFM xuu39 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1200 -> 1321[label="",style="solid", color="black", weight=3]; 1201[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184)",fontsize=16,color="black",shape="box"];1201 -> 1322[label="",style="solid", color="black", weight=3]; 1202[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18 + FiniteMap.mkBranchRight_size xuu39 xuu14 xuu18",fontsize=16,color="black",shape="box"];1202 -> 1323[label="",style="solid", color="black", weight=3]; 1203[label="xuu40000",fontsize=16,color="green",shape="box"];1204[label="xuu3010",fontsize=16,color="green",shape="box"];1205[label="primMulNat xuu40000 xuu3010",fontsize=16,color="burlywood",shape="triangle"];3480[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1205 -> 3480[label="",style="solid", color="burlywood", weight=9]; 3480 -> 1324[label="",style="solid", color="burlywood", weight=3]; 3481[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1205 -> 3481[label="",style="solid", color="burlywood", weight=9]; 3481 -> 1325[label="",style="solid", color="burlywood", weight=3]; 1206 -> 1205[label="",style="dashed", color="red", weight=0]; 1206[label="primMulNat xuu40000 xuu3010",fontsize=16,color="magenta"];1206 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1205[label="",style="dashed", color="red", weight=0]; 1207[label="primMulNat xuu40000 xuu3010",fontsize=16,color="magenta"];1207 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1205[label="",style="dashed", color="red", weight=0]; 1208[label="primMulNat xuu40000 xuu3010",fontsize=16,color="magenta"];1208 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1333[label="xuu107",fontsize=16,color="green",shape="box"];1334[label="xuu108",fontsize=16,color="green",shape="box"];1335[label="xuu109",fontsize=16,color="green",shape="box"];1336[label="xuu106 < xuu108",fontsize=16,color="blue",shape="box"];3482[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 1345[label="",style="solid", color="blue", weight=3]; 3483[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 1346[label="",style="solid", color="blue", weight=3]; 3484[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 1347[label="",style="solid", color="blue", weight=3]; 3485[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 1348[label="",style="solid", color="blue", weight=3]; 3486[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 1349[label="",style="solid", color="blue", weight=3]; 3487[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 1350[label="",style="solid", color="blue", weight=3]; 3488[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 1351[label="",style="solid", color="blue", weight=3]; 3489[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 1352[label="",style="solid", color="blue", weight=3]; 3490[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 1353[label="",style="solid", color="blue", weight=3]; 3491[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 1354[label="",style="solid", color="blue", weight=3]; 3492[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 1355[label="",style="solid", color="blue", weight=3]; 3493[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 1356[label="",style="solid", color="blue", weight=3]; 3494[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 1357[label="",style="solid", color="blue", weight=3]; 3495[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 1358[label="",style="solid", color="blue", weight=3]; 1337[label="xuu106",fontsize=16,color="green",shape="box"];1338 -> 1028[label="",style="dashed", color="red", weight=0]; 1338[label="xuu106 == xuu108 && xuu107 <= xuu109",fontsize=16,color="magenta"];1338 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1332[label="compare1 (xuu163,xuu164) (xuu165,xuu166) (xuu167 || xuu168)",fontsize=16,color="burlywood",shape="triangle"];3496[label="xuu167/False",fontsize=10,color="white",style="solid",shape="box"];1332 -> 3496[label="",style="solid", color="burlywood", weight=9]; 3496 -> 1361[label="",style="solid", color="burlywood", weight=3]; 3497[label="xuu167/True",fontsize=10,color="white",style="solid",shape="box"];1332 -> 3497[label="",style="solid", color="burlywood", weight=9]; 3497 -> 1362[label="",style="solid", color="burlywood", weight=3]; 1215[label="GT",fontsize=16,color="green",shape="box"];907[label="primEqInt (Pos xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3498[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];907 -> 3498[label="",style="solid", color="burlywood", weight=9]; 3498 -> 1363[label="",style="solid", color="burlywood", weight=3]; 3499[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];907 -> 3499[label="",style="solid", color="burlywood", weight=9]; 3499 -> 1364[label="",style="solid", color="burlywood", weight=3]; 908[label="primEqInt (Neg xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3500[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];908 -> 3500[label="",style="solid", color="burlywood", weight=9]; 3500 -> 1365[label="",style="solid", color="burlywood", weight=3]; 3501[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];908 -> 3501[label="",style="solid", color="burlywood", weight=9]; 3501 -> 1366[label="",style="solid", color="burlywood", weight=3]; 909[label="xuu40000 : xuu40001 == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];909 -> 1367[label="",style="solid", color="black", weight=3]; 910[label="xuu40000 : xuu40001 == []",fontsize=16,color="black",shape="box"];910 -> 1368[label="",style="solid", color="black", weight=3]; 911[label="[] == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];911 -> 1369[label="",style="solid", color="black", weight=3]; 912[label="[] == []",fontsize=16,color="black",shape="box"];912 -> 1370[label="",style="solid", color="black", weight=3]; 913[label="Left xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];913 -> 1371[label="",style="solid", color="black", weight=3]; 914[label="Left xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];914 -> 1372[label="",style="solid", color="black", weight=3]; 915[label="Right xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];915 -> 1373[label="",style="solid", color="black", weight=3]; 916[label="Right xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];916 -> 1374[label="",style="solid", color="black", weight=3]; 917[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];917 -> 1375[label="",style="solid", color="black", weight=3]; 918[label="Nothing == Just xuu3000",fontsize=16,color="black",shape="box"];918 -> 1376[label="",style="solid", color="black", weight=3]; 919[label="Just xuu40000 == Nothing",fontsize=16,color="black",shape="box"];919 -> 1377[label="",style="solid", color="black", weight=3]; 920[label="Just xuu40000 == Just xuu3000",fontsize=16,color="black",shape="box"];920 -> 1378[label="",style="solid", color="black", weight=3]; 921[label="(xuu40000,xuu40001,xuu40002) == (xuu3000,xuu3001,xuu3002)",fontsize=16,color="black",shape="box"];921 -> 1379[label="",style="solid", color="black", weight=3]; 922[label="primEqChar (Char xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3502[label="xuu300/Char xuu3000",fontsize=10,color="white",style="solid",shape="box"];922 -> 3502[label="",style="solid", color="burlywood", weight=9]; 3502 -> 1380[label="",style="solid", color="burlywood", weight=3]; 923[label="Integer xuu40000 == Integer xuu3000",fontsize=16,color="black",shape="box"];923 -> 1381[label="",style="solid", color="black", weight=3]; 924[label="() == ()",fontsize=16,color="black",shape="box"];924 -> 1382[label="",style="solid", color="black", weight=3]; 925[label="False == False",fontsize=16,color="black",shape="box"];925 -> 1383[label="",style="solid", color="black", weight=3]; 926[label="False == True",fontsize=16,color="black",shape="box"];926 -> 1384[label="",style="solid", color="black", weight=3]; 927[label="True == False",fontsize=16,color="black",shape="box"];927 -> 1385[label="",style="solid", color="black", weight=3]; 928[label="True == True",fontsize=16,color="black",shape="box"];928 -> 1386[label="",style="solid", color="black", weight=3]; 929[label="primEqFloat (Float xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3503[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];929 -> 3503[label="",style="solid", color="burlywood", weight=9]; 3503 -> 1387[label="",style="solid", color="burlywood", weight=3]; 930[label="(xuu40000,xuu40001) == (xuu3000,xuu3001)",fontsize=16,color="black",shape="box"];930 -> 1388[label="",style="solid", color="black", weight=3]; 931[label="xuu40000 :% xuu40001 == xuu3000 :% xuu3001",fontsize=16,color="black",shape="box"];931 -> 1389[label="",style="solid", color="black", weight=3]; 932[label="LT == LT",fontsize=16,color="black",shape="box"];932 -> 1390[label="",style="solid", color="black", weight=3]; 933[label="LT == EQ",fontsize=16,color="black",shape="box"];933 -> 1391[label="",style="solid", color="black", weight=3]; 934[label="LT == GT",fontsize=16,color="black",shape="box"];934 -> 1392[label="",style="solid", color="black", weight=3]; 935[label="EQ == LT",fontsize=16,color="black",shape="box"];935 -> 1393[label="",style="solid", color="black", weight=3]; 936[label="EQ == EQ",fontsize=16,color="black",shape="box"];936 -> 1394[label="",style="solid", color="black", weight=3]; 937[label="EQ == GT",fontsize=16,color="black",shape="box"];937 -> 1395[label="",style="solid", color="black", weight=3]; 938[label="GT == LT",fontsize=16,color="black",shape="box"];938 -> 1396[label="",style="solid", color="black", weight=3]; 939[label="GT == EQ",fontsize=16,color="black",shape="box"];939 -> 1397[label="",style="solid", color="black", weight=3]; 940[label="GT == GT",fontsize=16,color="black",shape="box"];940 -> 1398[label="",style="solid", color="black", weight=3]; 941[label="primEqDouble (Double xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3504[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];941 -> 3504[label="",style="solid", color="burlywood", weight=9]; 3504 -> 1399[label="",style="solid", color="burlywood", weight=3]; 1223[label="xuu66 <= xuu67",fontsize=16,color="blue",shape="box"];3505[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 1400[label="",style="solid", color="blue", weight=3]; 3506[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 1401[label="",style="solid", color="blue", weight=3]; 3507[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 1402[label="",style="solid", color="blue", weight=3]; 3508[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 1403[label="",style="solid", color="blue", weight=3]; 3509[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 1404[label="",style="solid", color="blue", weight=3]; 3510[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3510[label="",style="solid", color="blue", weight=9]; 3510 -> 1405[label="",style="solid", color="blue", weight=3]; 3511[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3511[label="",style="solid", color="blue", weight=9]; 3511 -> 1406[label="",style="solid", color="blue", weight=3]; 3512[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 1407[label="",style="solid", color="blue", weight=3]; 3513[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3513[label="",style="solid", color="blue", weight=9]; 3513 -> 1408[label="",style="solid", color="blue", weight=3]; 3514[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3514[label="",style="solid", color="blue", weight=9]; 3514 -> 1409[label="",style="solid", color="blue", weight=3]; 3515[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3515[label="",style="solid", color="blue", weight=9]; 3515 -> 1410[label="",style="solid", color="blue", weight=3]; 3516[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3516[label="",style="solid", color="blue", weight=9]; 3516 -> 1411[label="",style="solid", color="blue", weight=3]; 3517[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3517[label="",style="solid", color="blue", weight=9]; 3517 -> 1412[label="",style="solid", color="blue", weight=3]; 3518[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 1413[label="",style="solid", color="blue", weight=3]; 1224[label="compare1 (Just xuu137) (Just xuu138) False",fontsize=16,color="black",shape="box"];1224 -> 1414[label="",style="solid", color="black", weight=3]; 1225[label="compare1 (Just xuu137) (Just xuu138) True",fontsize=16,color="black",shape="box"];1225 -> 1415[label="",style="solid", color="black", weight=3]; 1233[label="xuu73 <= xuu74",fontsize=16,color="blue",shape="box"];3519[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 1416[label="",style="solid", color="blue", weight=3]; 3520[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 1417[label="",style="solid", color="blue", weight=3]; 3521[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 1418[label="",style="solid", color="blue", weight=3]; 3522[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 1419[label="",style="solid", color="blue", weight=3]; 3523[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 1420[label="",style="solid", color="blue", weight=3]; 3524[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 1421[label="",style="solid", color="blue", weight=3]; 3525[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 1422[label="",style="solid", color="blue", weight=3]; 3526[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 1423[label="",style="solid", color="blue", weight=3]; 3527[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 1424[label="",style="solid", color="blue", weight=3]; 3528[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 1425[label="",style="solid", color="blue", weight=3]; 3529[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 1426[label="",style="solid", color="blue", weight=3]; 3530[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 1427[label="",style="solid", color="blue", weight=3]; 3531[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 1428[label="",style="solid", color="blue", weight=3]; 3532[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 1429[label="",style="solid", color="blue", weight=3]; 1234[label="compare1 (Left xuu144) (Left xuu145) False",fontsize=16,color="black",shape="box"];1234 -> 1430[label="",style="solid", color="black", weight=3]; 1235[label="compare1 (Left xuu144) (Left xuu145) True",fontsize=16,color="black",shape="box"];1235 -> 1431[label="",style="solid", color="black", weight=3]; 1236[label="GT",fontsize=16,color="green",shape="box"];1244[label="xuu80 <= xuu81",fontsize=16,color="blue",shape="box"];3533[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 1432[label="",style="solid", color="blue", weight=3]; 3534[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 1433[label="",style="solid", color="blue", weight=3]; 3535[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3535[label="",style="solid", color="blue", weight=9]; 3535 -> 1434[label="",style="solid", color="blue", weight=3]; 3536[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 1435[label="",style="solid", color="blue", weight=3]; 3537[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 1436[label="",style="solid", color="blue", weight=3]; 3538[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 1437[label="",style="solid", color="blue", weight=3]; 3539[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 1438[label="",style="solid", color="blue", weight=3]; 3540[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 1439[label="",style="solid", color="blue", weight=3]; 3541[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 1440[label="",style="solid", color="blue", weight=3]; 3542[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 1441[label="",style="solid", color="blue", weight=3]; 3543[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 1442[label="",style="solid", color="blue", weight=3]; 3544[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 1443[label="",style="solid", color="blue", weight=3]; 3545[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 1444[label="",style="solid", color="blue", weight=3]; 3546[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 1445[label="",style="solid", color="blue", weight=3]; 1245[label="compare1 (Right xuu151) (Right xuu152) False",fontsize=16,color="black",shape="box"];1245 -> 1446[label="",style="solid", color="black", weight=3]; 1246[label="compare1 (Right xuu151) (Right xuu152) True",fontsize=16,color="black",shape="box"];1246 -> 1447[label="",style="solid", color="black", weight=3]; 1247[label="GT",fontsize=16,color="green",shape="box"];1248[label="GT",fontsize=16,color="green",shape="box"];1249[label="GT",fontsize=16,color="green",shape="box"];1250[label="GT",fontsize=16,color="green",shape="box"];1251[label="xuu4002",fontsize=16,color="green",shape="box"];1252[label="xuu302",fontsize=16,color="green",shape="box"];1253[label="xuu4002",fontsize=16,color="green",shape="box"];1254[label="xuu302",fontsize=16,color="green",shape="box"];1255[label="xuu4002",fontsize=16,color="green",shape="box"];1256[label="xuu302",fontsize=16,color="green",shape="box"];1257[label="xuu4002",fontsize=16,color="green",shape="box"];1258[label="xuu302",fontsize=16,color="green",shape="box"];1259[label="xuu4002",fontsize=16,color="green",shape="box"];1260[label="xuu302",fontsize=16,color="green",shape="box"];1261[label="xuu4002",fontsize=16,color="green",shape="box"];1262[label="xuu302",fontsize=16,color="green",shape="box"];1263[label="xuu4002",fontsize=16,color="green",shape="box"];1264[label="xuu302",fontsize=16,color="green",shape="box"];1265[label="xuu4002",fontsize=16,color="green",shape="box"];1266[label="xuu302",fontsize=16,color="green",shape="box"];1267[label="xuu4002",fontsize=16,color="green",shape="box"];1268[label="xuu302",fontsize=16,color="green",shape="box"];1269[label="xuu4002",fontsize=16,color="green",shape="box"];1270[label="xuu302",fontsize=16,color="green",shape="box"];1271[label="xuu4002",fontsize=16,color="green",shape="box"];1272[label="xuu302",fontsize=16,color="green",shape="box"];1273[label="xuu4002",fontsize=16,color="green",shape="box"];1274[label="xuu302",fontsize=16,color="green",shape="box"];1275[label="xuu4002",fontsize=16,color="green",shape="box"];1276[label="xuu302",fontsize=16,color="green",shape="box"];1277[label="xuu4002",fontsize=16,color="green",shape="box"];1278[label="xuu302",fontsize=16,color="green",shape="box"];1279[label="xuu4001",fontsize=16,color="green",shape="box"];1280[label="xuu301",fontsize=16,color="green",shape="box"];1281[label="xuu4001",fontsize=16,color="green",shape="box"];1282[label="xuu301",fontsize=16,color="green",shape="box"];1283[label="xuu4001",fontsize=16,color="green",shape="box"];1284[label="xuu301",fontsize=16,color="green",shape="box"];1285[label="xuu4001",fontsize=16,color="green",shape="box"];1286[label="xuu301",fontsize=16,color="green",shape="box"];1287[label="xuu4001",fontsize=16,color="green",shape="box"];1288[label="xuu301",fontsize=16,color="green",shape="box"];1289[label="xuu4001",fontsize=16,color="green",shape="box"];1290[label="xuu301",fontsize=16,color="green",shape="box"];1291[label="xuu4001",fontsize=16,color="green",shape="box"];1292[label="xuu301",fontsize=16,color="green",shape="box"];1293[label="xuu4001",fontsize=16,color="green",shape="box"];1294[label="xuu301",fontsize=16,color="green",shape="box"];1295[label="xuu4001",fontsize=16,color="green",shape="box"];1296[label="xuu301",fontsize=16,color="green",shape="box"];1297[label="xuu4001",fontsize=16,color="green",shape="box"];1298[label="xuu301",fontsize=16,color="green",shape="box"];1299[label="xuu4001",fontsize=16,color="green",shape="box"];1300[label="xuu301",fontsize=16,color="green",shape="box"];1301[label="xuu4001",fontsize=16,color="green",shape="box"];1302[label="xuu301",fontsize=16,color="green",shape="box"];1303[label="xuu4001",fontsize=16,color="green",shape="box"];1304[label="xuu301",fontsize=16,color="green",shape="box"];1305[label="xuu4001",fontsize=16,color="green",shape="box"];1306[label="xuu301",fontsize=16,color="green",shape="box"];1451[label="xuu92",fontsize=16,color="green",shape="box"];1452[label="xuu91",fontsize=16,color="green",shape="box"];1453[label="xuu93",fontsize=16,color="green",shape="box"];1454 -> 1028[label="",style="dashed", color="red", weight=0]; 1454[label="xuu91 == xuu94 && (xuu92 < xuu95 || xuu92 == xuu95 && xuu93 <= xuu96)",fontsize=16,color="magenta"];1454 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1455[label="xuu96",fontsize=16,color="green",shape="box"];1456[label="xuu94",fontsize=16,color="green",shape="box"];1457[label="xuu95",fontsize=16,color="green",shape="box"];1458[label="xuu91 < xuu94",fontsize=16,color="blue",shape="box"];3547[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3547[label="",style="solid", color="blue", weight=9]; 3547 -> 1469[label="",style="solid", color="blue", weight=3]; 3548[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 1470[label="",style="solid", color="blue", weight=3]; 3549[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 1471[label="",style="solid", color="blue", weight=3]; 3550[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 1472[label="",style="solid", color="blue", weight=3]; 3551[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3551[label="",style="solid", color="blue", weight=9]; 3551 -> 1473[label="",style="solid", color="blue", weight=3]; 3552[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3552[label="",style="solid", color="blue", weight=9]; 3552 -> 1474[label="",style="solid", color="blue", weight=3]; 3553[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3553[label="",style="solid", color="blue", weight=9]; 3553 -> 1475[label="",style="solid", color="blue", weight=3]; 3554[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3554[label="",style="solid", color="blue", weight=9]; 3554 -> 1476[label="",style="solid", color="blue", weight=3]; 3555[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3555[label="",style="solid", color="blue", weight=9]; 3555 -> 1477[label="",style="solid", color="blue", weight=3]; 3556[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3556[label="",style="solid", color="blue", weight=9]; 3556 -> 1478[label="",style="solid", color="blue", weight=3]; 3557[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3557[label="",style="solid", color="blue", weight=9]; 3557 -> 1479[label="",style="solid", color="blue", weight=3]; 3558[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3558[label="",style="solid", color="blue", weight=9]; 3558 -> 1480[label="",style="solid", color="blue", weight=3]; 3559[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3559[label="",style="solid", color="blue", weight=9]; 3559 -> 1481[label="",style="solid", color="blue", weight=3]; 3560[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3560[label="",style="solid", color="blue", weight=9]; 3560 -> 1482[label="",style="solid", color="blue", weight=3]; 1450[label="compare1 (xuu178,xuu179,xuu180) (xuu181,xuu182,xuu183) (xuu184 || xuu185)",fontsize=16,color="burlywood",shape="triangle"];3561[label="xuu184/False",fontsize=10,color="white",style="solid",shape="box"];1450 -> 3561[label="",style="solid", color="burlywood", weight=9]; 3561 -> 1483[label="",style="solid", color="burlywood", weight=3]; 3562[label="xuu184/True",fontsize=10,color="white",style="solid",shape="box"];1450 -> 3562[label="",style="solid", color="burlywood", weight=9]; 3562 -> 1484[label="",style="solid", color="burlywood", weight=3]; 1309[label="Pos Zero",fontsize=16,color="green",shape="box"];1310[label="xuu182",fontsize=16,color="green",shape="box"];1311[label="primPlusNat xuu3920 xuu1260",fontsize=16,color="burlywood",shape="triangle"];3563[label="xuu3920/Succ xuu39200",fontsize=10,color="white",style="solid",shape="box"];1311 -> 3563[label="",style="solid", color="burlywood", weight=9]; 3563 -> 1485[label="",style="solid", color="burlywood", weight=3]; 3564[label="xuu3920/Zero",fontsize=10,color="white",style="solid",shape="box"];1311 -> 3564[label="",style="solid", color="burlywood", weight=9]; 3564 -> 1486[label="",style="solid", color="burlywood", weight=3]; 1312[label="primMinusNat (Succ xuu39200) xuu1260",fontsize=16,color="burlywood",shape="box"];3565[label="xuu1260/Succ xuu12600",fontsize=10,color="white",style="solid",shape="box"];1312 -> 3565[label="",style="solid", color="burlywood", weight=9]; 3565 -> 1487[label="",style="solid", color="burlywood", weight=3]; 3566[label="xuu1260/Zero",fontsize=10,color="white",style="solid",shape="box"];1312 -> 3566[label="",style="solid", color="burlywood", weight=9]; 3566 -> 1488[label="",style="solid", color="burlywood", weight=3]; 1313[label="primMinusNat Zero xuu1260",fontsize=16,color="burlywood",shape="box"];3567[label="xuu1260/Succ xuu12600",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3567[label="",style="solid", color="burlywood", weight=9]; 3567 -> 1489[label="",style="solid", color="burlywood", weight=3]; 3568[label="xuu1260/Zero",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3568[label="",style="solid", color="burlywood", weight=9]; 3568 -> 1490[label="",style="solid", color="burlywood", weight=3]; 1314[label="xuu3920",fontsize=16,color="green",shape="box"];1315[label="xuu1260",fontsize=16,color="green",shape="box"];1316 -> 1311[label="",style="dashed", color="red", weight=0]; 1316[label="primPlusNat xuu3920 xuu1260",fontsize=16,color="magenta"];1316 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1317 -> 398[label="",style="dashed", color="red", weight=0]; 1317[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];1317 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1178[label="",style="dashed", color="red", weight=0]; 1318[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];1319[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 False",fontsize=16,color="black",shape="box"];1319 -> 1495[label="",style="solid", color="black", weight=3]; 1320[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 True",fontsize=16,color="black",shape="box"];1320 -> 1496[label="",style="solid", color="black", weight=3]; 1321[label="error []",fontsize=16,color="red",shape="box"];1322[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184)",fontsize=16,color="black",shape="box"];1322 -> 1497[label="",style="solid", color="black", weight=3]; 1323 -> 1177[label="",style="dashed", color="red", weight=0]; 1323[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18) (FiniteMap.mkBranchRight_size xuu39 xuu14 xuu18)",fontsize=16,color="magenta"];1323 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1324[label="primMulNat (Succ xuu400000) xuu3010",fontsize=16,color="burlywood",shape="box"];3569[label="xuu3010/Succ xuu30100",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3569[label="",style="solid", color="burlywood", weight=9]; 3569 -> 1500[label="",style="solid", color="burlywood", weight=3]; 3570[label="xuu3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3570[label="",style="solid", color="burlywood", weight=9]; 3570 -> 1501[label="",style="solid", color="burlywood", weight=3]; 1325[label="primMulNat Zero xuu3010",fontsize=16,color="burlywood",shape="box"];3571[label="xuu3010/Succ xuu30100",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3571[label="",style="solid", color="burlywood", weight=9]; 3571 -> 1502[label="",style="solid", color="burlywood", weight=3]; 3572[label="xuu3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3572[label="",style="solid", color="burlywood", weight=9]; 3572 -> 1503[label="",style="solid", color="burlywood", weight=3]; 1326[label="xuu3010",fontsize=16,color="green",shape="box"];1327[label="xuu40000",fontsize=16,color="green",shape="box"];1328[label="xuu40000",fontsize=16,color="green",shape="box"];1329[label="xuu3010",fontsize=16,color="green",shape="box"];1345 -> 33[label="",style="dashed", color="red", weight=0]; 1345[label="xuu106 < xuu108",fontsize=16,color="magenta"];1345 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1346 -> 34[label="",style="dashed", color="red", weight=0]; 1346[label="xuu106 < xuu108",fontsize=16,color="magenta"];1346 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1347 -> 35[label="",style="dashed", color="red", weight=0]; 1347[label="xuu106 < xuu108",fontsize=16,color="magenta"];1347 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1348 -> 36[label="",style="dashed", color="red", weight=0]; 1348[label="xuu106 < xuu108",fontsize=16,color="magenta"];1348 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1349 -> 37[label="",style="dashed", color="red", weight=0]; 1349[label="xuu106 < xuu108",fontsize=16,color="magenta"];1349 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1350 -> 38[label="",style="dashed", color="red", weight=0]; 1350[label="xuu106 < xuu108",fontsize=16,color="magenta"];1350 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1351 -> 39[label="",style="dashed", color="red", weight=0]; 1351[label="xuu106 < xuu108",fontsize=16,color="magenta"];1351 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1352 -> 40[label="",style="dashed", color="red", weight=0]; 1352[label="xuu106 < xuu108",fontsize=16,color="magenta"];1352 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1353 -> 41[label="",style="dashed", color="red", weight=0]; 1353[label="xuu106 < xuu108",fontsize=16,color="magenta"];1353 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1354 -> 42[label="",style="dashed", color="red", weight=0]; 1354[label="xuu106 < xuu108",fontsize=16,color="magenta"];1354 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1354 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1355 -> 43[label="",style="dashed", color="red", weight=0]; 1355[label="xuu106 < xuu108",fontsize=16,color="magenta"];1355 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1355 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1356 -> 44[label="",style="dashed", color="red", weight=0]; 1356[label="xuu106 < xuu108",fontsize=16,color="magenta"];1356 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1356 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1357 -> 45[label="",style="dashed", color="red", weight=0]; 1357[label="xuu106 < xuu108",fontsize=16,color="magenta"];1357 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1358 -> 46[label="",style="dashed", color="red", weight=0]; 1358[label="xuu106 < xuu108",fontsize=16,color="magenta"];1358 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1359[label="xuu107 <= xuu109",fontsize=16,color="blue",shape="box"];3573[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3573[label="",style="solid", color="blue", weight=9]; 3573 -> 1532[label="",style="solid", color="blue", weight=3]; 3574[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3574[label="",style="solid", color="blue", weight=9]; 3574 -> 1533[label="",style="solid", color="blue", weight=3]; 3575[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3575[label="",style="solid", color="blue", weight=9]; 3575 -> 1534[label="",style="solid", color="blue", weight=3]; 3576[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 1535[label="",style="solid", color="blue", weight=3]; 3577[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 1536[label="",style="solid", color="blue", weight=3]; 3578[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 1537[label="",style="solid", color="blue", weight=3]; 3579[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 1538[label="",style="solid", color="blue", weight=3]; 3580[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 1539[label="",style="solid", color="blue", weight=3]; 3581[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 1540[label="",style="solid", color="blue", weight=3]; 3582[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 1541[label="",style="solid", color="blue", weight=3]; 3583[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 1542[label="",style="solid", color="blue", weight=3]; 3584[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 1543[label="",style="solid", color="blue", weight=3]; 3585[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 1544[label="",style="solid", color="blue", weight=3]; 3586[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 1545[label="",style="solid", color="blue", weight=3]; 1360[label="xuu106 == xuu108",fontsize=16,color="blue",shape="box"];3587[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 1546[label="",style="solid", color="blue", weight=3]; 3588[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 1547[label="",style="solid", color="blue", weight=3]; 3589[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 1548[label="",style="solid", color="blue", weight=3]; 3590[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3590[label="",style="solid", color="blue", weight=9]; 3590 -> 1549[label="",style="solid", color="blue", weight=3]; 3591[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3591[label="",style="solid", color="blue", weight=9]; 3591 -> 1550[label="",style="solid", color="blue", weight=3]; 3592[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3592[label="",style="solid", color="blue", weight=9]; 3592 -> 1551[label="",style="solid", color="blue", weight=3]; 3593[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3593[label="",style="solid", color="blue", weight=9]; 3593 -> 1552[label="",style="solid", color="blue", weight=3]; 3594[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3594[label="",style="solid", color="blue", weight=9]; 3594 -> 1553[label="",style="solid", color="blue", weight=3]; 3595[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 1554[label="",style="solid", color="blue", weight=3]; 3596[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 1555[label="",style="solid", color="blue", weight=3]; 3597[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 1556[label="",style="solid", color="blue", weight=3]; 3598[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 1557[label="",style="solid", color="blue", weight=3]; 3599[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 1558[label="",style="solid", color="blue", weight=3]; 3600[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 1559[label="",style="solid", color="blue", weight=3]; 1361[label="compare1 (xuu163,xuu164) (xuu165,xuu166) (False || xuu168)",fontsize=16,color="black",shape="box"];1361 -> 1560[label="",style="solid", color="black", weight=3]; 1362[label="compare1 (xuu163,xuu164) (xuu165,xuu166) (True || xuu168)",fontsize=16,color="black",shape="box"];1362 -> 1561[label="",style="solid", color="black", weight=3]; 1363[label="primEqInt (Pos (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];3601[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];1363 -> 3601[label="",style="solid", color="burlywood", weight=9]; 3601 -> 1562[label="",style="solid", color="burlywood", weight=3]; 3602[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];1363 -> 3602[label="",style="solid", color="burlywood", weight=9]; 3602 -> 1563[label="",style="solid", color="burlywood", weight=3]; 1364[label="primEqInt (Pos Zero) xuu300",fontsize=16,color="burlywood",shape="box"];3603[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3603[label="",style="solid", color="burlywood", weight=9]; 3603 -> 1564[label="",style="solid", color="burlywood", weight=3]; 3604[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3604[label="",style="solid", color="burlywood", weight=9]; 3604 -> 1565[label="",style="solid", color="burlywood", weight=3]; 1365[label="primEqInt (Neg (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];3605[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];1365 -> 3605[label="",style="solid", color="burlywood", weight=9]; 3605 -> 1566[label="",style="solid", color="burlywood", weight=3]; 3606[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];1365 -> 3606[label="",style="solid", color="burlywood", weight=9]; 3606 -> 1567[label="",style="solid", color="burlywood", weight=3]; 1366[label="primEqInt (Neg Zero) xuu300",fontsize=16,color="burlywood",shape="box"];3607[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3607[label="",style="solid", color="burlywood", weight=9]; 3607 -> 1568[label="",style="solid", color="burlywood", weight=3]; 3608[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3608[label="",style="solid", color="burlywood", weight=9]; 3608 -> 1569[label="",style="solid", color="burlywood", weight=3]; 1367 -> 1028[label="",style="dashed", color="red", weight=0]; 1367[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];1367 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1368[label="False",fontsize=16,color="green",shape="box"];1369[label="False",fontsize=16,color="green",shape="box"];1370[label="True",fontsize=16,color="green",shape="box"];1371[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3609[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 1572[label="",style="solid", color="blue", weight=3]; 3610[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 1573[label="",style="solid", color="blue", weight=3]; 3611[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 1574[label="",style="solid", color="blue", weight=3]; 3612[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 1575[label="",style="solid", color="blue", weight=3]; 3613[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 1576[label="",style="solid", color="blue", weight=3]; 3614[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 1577[label="",style="solid", color="blue", weight=3]; 3615[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 1578[label="",style="solid", color="blue", weight=3]; 3616[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 1579[label="",style="solid", color="blue", weight=3]; 3617[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 1580[label="",style="solid", color="blue", weight=3]; 3618[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 1581[label="",style="solid", color="blue", weight=3]; 3619[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3619[label="",style="solid", color="blue", weight=9]; 3619 -> 1582[label="",style="solid", color="blue", weight=3]; 3620[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3620[label="",style="solid", color="blue", weight=9]; 3620 -> 1583[label="",style="solid", color="blue", weight=3]; 3621[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3621[label="",style="solid", color="blue", weight=9]; 3621 -> 1584[label="",style="solid", color="blue", weight=3]; 3622[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3622[label="",style="solid", color="blue", weight=9]; 3622 -> 1585[label="",style="solid", color="blue", weight=3]; 1372[label="False",fontsize=16,color="green",shape="box"];1373[label="False",fontsize=16,color="green",shape="box"];1374[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3623[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3623[label="",style="solid", color="blue", weight=9]; 3623 -> 1586[label="",style="solid", color="blue", weight=3]; 3624[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3624[label="",style="solid", color="blue", weight=9]; 3624 -> 1587[label="",style="solid", color="blue", weight=3]; 3625[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3625[label="",style="solid", color="blue", weight=9]; 3625 -> 1588[label="",style="solid", color="blue", weight=3]; 3626[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3626[label="",style="solid", color="blue", weight=9]; 3626 -> 1589[label="",style="solid", color="blue", weight=3]; 3627[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3627[label="",style="solid", color="blue", weight=9]; 3627 -> 1590[label="",style="solid", color="blue", weight=3]; 3628[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3628[label="",style="solid", color="blue", weight=9]; 3628 -> 1591[label="",style="solid", color="blue", weight=3]; 3629[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3629[label="",style="solid", color="blue", weight=9]; 3629 -> 1592[label="",style="solid", color="blue", weight=3]; 3630[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3630[label="",style="solid", color="blue", weight=9]; 3630 -> 1593[label="",style="solid", color="blue", weight=3]; 3631[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 1594[label="",style="solid", color="blue", weight=3]; 3632[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 1595[label="",style="solid", color="blue", weight=3]; 3633[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 1596[label="",style="solid", color="blue", weight=3]; 3634[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 1597[label="",style="solid", color="blue", weight=3]; 3635[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3635[label="",style="solid", color="blue", weight=9]; 3635 -> 1598[label="",style="solid", color="blue", weight=3]; 3636[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3636[label="",style="solid", color="blue", weight=9]; 3636 -> 1599[label="",style="solid", color="blue", weight=3]; 1375[label="True",fontsize=16,color="green",shape="box"];1376[label="False",fontsize=16,color="green",shape="box"];1377[label="False",fontsize=16,color="green",shape="box"];1378[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3637[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3637[label="",style="solid", color="blue", weight=9]; 3637 -> 1600[label="",style="solid", color="blue", weight=3]; 3638[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3638[label="",style="solid", color="blue", weight=9]; 3638 -> 1601[label="",style="solid", color="blue", weight=3]; 3639[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 1602[label="",style="solid", color="blue", weight=3]; 3640[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 1603[label="",style="solid", color="blue", weight=3]; 3641[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 1604[label="",style="solid", color="blue", weight=3]; 3642[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 1605[label="",style="solid", color="blue", weight=3]; 3643[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 1606[label="",style="solid", color="blue", weight=3]; 3644[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 1607[label="",style="solid", color="blue", weight=3]; 3645[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3645[label="",style="solid", color="blue", weight=9]; 3645 -> 1608[label="",style="solid", color="blue", weight=3]; 3646[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 1609[label="",style="solid", color="blue", weight=3]; 3647[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 1610[label="",style="solid", color="blue", weight=3]; 3648[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 1611[label="",style="solid", color="blue", weight=3]; 3649[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 1612[label="",style="solid", color="blue", weight=3]; 3650[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 1613[label="",style="solid", color="blue", weight=3]; 1379 -> 1028[label="",style="dashed", color="red", weight=0]; 1379[label="xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];1379 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1379 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1380[label="primEqChar (Char xuu40000) (Char xuu3000)",fontsize=16,color="black",shape="box"];1380 -> 1616[label="",style="solid", color="black", weight=3]; 1381 -> 706[label="",style="dashed", color="red", weight=0]; 1381[label="primEqInt xuu40000 xuu3000",fontsize=16,color="magenta"];1381 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1381 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1382[label="True",fontsize=16,color="green",shape="box"];1383[label="True",fontsize=16,color="green",shape="box"];1384[label="False",fontsize=16,color="green",shape="box"];1385[label="False",fontsize=16,color="green",shape="box"];1386[label="True",fontsize=16,color="green",shape="box"];1387[label="primEqFloat (Float xuu40000 xuu40001) (Float xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];1387 -> 1619[label="",style="solid", color="black", weight=3]; 1388 -> 1028[label="",style="dashed", color="red", weight=0]; 1388[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];1388 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1028[label="",style="dashed", color="red", weight=0]; 1389[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];1389 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1390[label="True",fontsize=16,color="green",shape="box"];1391[label="False",fontsize=16,color="green",shape="box"];1392[label="False",fontsize=16,color="green",shape="box"];1393[label="False",fontsize=16,color="green",shape="box"];1394[label="True",fontsize=16,color="green",shape="box"];1395[label="False",fontsize=16,color="green",shape="box"];1396[label="False",fontsize=16,color="green",shape="box"];1397[label="False",fontsize=16,color="green",shape="box"];1398[label="True",fontsize=16,color="green",shape="box"];1399[label="primEqDouble (Double xuu40000 xuu40001) (Double xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];1399 -> 1624[label="",style="solid", color="black", weight=3]; 1400[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1400 -> 1625[label="",style="solid", color="black", weight=3]; 1401[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1401 -> 1626[label="",style="solid", color="black", weight=3]; 1402[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1402 -> 1627[label="",style="solid", color="black", weight=3]; 1403[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3651[label="xuu66/(xuu660,xuu661)",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3651[label="",style="solid", color="burlywood", weight=9]; 3651 -> 1628[label="",style="solid", color="burlywood", weight=3]; 1404[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3652[label="xuu66/Nothing",fontsize=10,color="white",style="solid",shape="box"];1404 -> 3652[label="",style="solid", color="burlywood", weight=9]; 3652 -> 1629[label="",style="solid", color="burlywood", weight=3]; 3653[label="xuu66/Just xuu660",fontsize=10,color="white",style="solid",shape="box"];1404 -> 3653[label="",style="solid", color="burlywood", weight=9]; 3653 -> 1630[label="",style="solid", color="burlywood", weight=3]; 1405[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1405 -> 1631[label="",style="solid", color="black", weight=3]; 1406[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1406 -> 1632[label="",style="solid", color="black", weight=3]; 1407[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3654[label="xuu66/Left xuu660",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3654[label="",style="solid", color="burlywood", weight=9]; 3654 -> 1633[label="",style="solid", color="burlywood", weight=3]; 3655[label="xuu66/Right xuu660",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3655[label="",style="solid", color="burlywood", weight=9]; 3655 -> 1634[label="",style="solid", color="burlywood", weight=3]; 1408[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1408 -> 1635[label="",style="solid", color="black", weight=3]; 1409[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3656[label="xuu66/LT",fontsize=10,color="white",style="solid",shape="box"];1409 -> 3656[label="",style="solid", color="burlywood", weight=9]; 3656 -> 1636[label="",style="solid", color="burlywood", weight=3]; 3657[label="xuu66/EQ",fontsize=10,color="white",style="solid",shape="box"];1409 -> 3657[label="",style="solid", color="burlywood", weight=9]; 3657 -> 1637[label="",style="solid", color="burlywood", weight=3]; 3658[label="xuu66/GT",fontsize=10,color="white",style="solid",shape="box"];1409 -> 3658[label="",style="solid", color="burlywood", weight=9]; 3658 -> 1638[label="",style="solid", color="burlywood", weight=3]; 1410[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3659[label="xuu66/False",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3659[label="",style="solid", color="burlywood", weight=9]; 3659 -> 1639[label="",style="solid", color="burlywood", weight=3]; 3660[label="xuu66/True",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3660[label="",style="solid", color="burlywood", weight=9]; 3660 -> 1640[label="",style="solid", color="burlywood", weight=3]; 1411[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3661[label="xuu66/(xuu660,xuu661,xuu662)",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3661[label="",style="solid", color="burlywood", weight=9]; 3661 -> 1641[label="",style="solid", color="burlywood", weight=3]; 1412[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1412 -> 1642[label="",style="solid", color="black", weight=3]; 1413[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1413 -> 1643[label="",style="solid", color="black", weight=3]; 1414[label="compare0 (Just xuu137) (Just xuu138) otherwise",fontsize=16,color="black",shape="box"];1414 -> 1644[label="",style="solid", color="black", weight=3]; 1415[label="LT",fontsize=16,color="green",shape="box"];1416 -> 1400[label="",style="dashed", color="red", weight=0]; 1416[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1416 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1401[label="",style="dashed", color="red", weight=0]; 1417[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1417 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1402[label="",style="dashed", color="red", weight=0]; 1418[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1418 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1403[label="",style="dashed", color="red", weight=0]; 1419[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1419 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1404[label="",style="dashed", color="red", weight=0]; 1420[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1420 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1405[label="",style="dashed", color="red", weight=0]; 1421[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1421 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1406[label="",style="dashed", color="red", weight=0]; 1422[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1422 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1407[label="",style="dashed", color="red", weight=0]; 1423[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1423 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1408[label="",style="dashed", color="red", weight=0]; 1424[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1424 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1409[label="",style="dashed", color="red", weight=0]; 1425[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1425 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1410[label="",style="dashed", color="red", weight=0]; 1426[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1426 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1411[label="",style="dashed", color="red", weight=0]; 1427[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1427 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1412[label="",style="dashed", color="red", weight=0]; 1428[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1428 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1413[label="",style="dashed", color="red", weight=0]; 1429[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1429 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1430[label="compare0 (Left xuu144) (Left xuu145) otherwise",fontsize=16,color="black",shape="box"];1430 -> 1673[label="",style="solid", color="black", weight=3]; 1431[label="LT",fontsize=16,color="green",shape="box"];1432 -> 1400[label="",style="dashed", color="red", weight=0]; 1432[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1432 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1401[label="",style="dashed", color="red", weight=0]; 1433[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1433 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1402[label="",style="dashed", color="red", weight=0]; 1434[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1434 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1403[label="",style="dashed", color="red", weight=0]; 1435[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1435 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1404[label="",style="dashed", color="red", weight=0]; 1436[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1436 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1405[label="",style="dashed", color="red", weight=0]; 1437[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1437 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1406[label="",style="dashed", color="red", weight=0]; 1438[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1438 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1407[label="",style="dashed", color="red", weight=0]; 1439[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1439 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1408[label="",style="dashed", color="red", weight=0]; 1440[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1440 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1409[label="",style="dashed", color="red", weight=0]; 1441[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1441 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1410[label="",style="dashed", color="red", weight=0]; 1442[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1442 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1411[label="",style="dashed", color="red", weight=0]; 1443[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1443 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1412[label="",style="dashed", color="red", weight=0]; 1444[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1444 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1413[label="",style="dashed", color="red", weight=0]; 1445[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1445 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1446[label="compare0 (Right xuu151) (Right xuu152) otherwise",fontsize=16,color="black",shape="box"];1446 -> 1702[label="",style="solid", color="black", weight=3]; 1447[label="LT",fontsize=16,color="green",shape="box"];1467 -> 2032[label="",style="dashed", color="red", weight=0]; 1467[label="xuu92 < xuu95 || xuu92 == xuu95 && xuu93 <= xuu96",fontsize=16,color="magenta"];1467 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1467 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1468[label="xuu91 == xuu94",fontsize=16,color="blue",shape="box"];3662[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3662[label="",style="solid", color="blue", weight=9]; 3662 -> 1705[label="",style="solid", color="blue", weight=3]; 3663[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3663[label="",style="solid", color="blue", weight=9]; 3663 -> 1706[label="",style="solid", color="blue", weight=3]; 3664[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3664[label="",style="solid", color="blue", weight=9]; 3664 -> 1707[label="",style="solid", color="blue", weight=3]; 3665[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3665[label="",style="solid", color="blue", weight=9]; 3665 -> 1708[label="",style="solid", color="blue", weight=3]; 3666[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3666[label="",style="solid", color="blue", weight=9]; 3666 -> 1709[label="",style="solid", color="blue", weight=3]; 3667[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3667[label="",style="solid", color="blue", weight=9]; 3667 -> 1710[label="",style="solid", color="blue", weight=3]; 3668[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3668[label="",style="solid", color="blue", weight=9]; 3668 -> 1711[label="",style="solid", color="blue", weight=3]; 3669[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 1712[label="",style="solid", color="blue", weight=3]; 3670[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 1713[label="",style="solid", color="blue", weight=3]; 3671[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 1714[label="",style="solid", color="blue", weight=3]; 3672[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 1715[label="",style="solid", color="blue", weight=3]; 3673[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 1716[label="",style="solid", color="blue", weight=3]; 3674[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3674[label="",style="solid", color="blue", weight=9]; 3674 -> 1717[label="",style="solid", color="blue", weight=3]; 3675[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3675[label="",style="solid", color="blue", weight=9]; 3675 -> 1718[label="",style="solid", color="blue", weight=3]; 1469 -> 33[label="",style="dashed", color="red", weight=0]; 1469[label="xuu91 < xuu94",fontsize=16,color="magenta"];1469 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1470 -> 34[label="",style="dashed", color="red", weight=0]; 1470[label="xuu91 < xuu94",fontsize=16,color="magenta"];1470 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1471 -> 35[label="",style="dashed", color="red", weight=0]; 1471[label="xuu91 < xuu94",fontsize=16,color="magenta"];1471 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1472 -> 36[label="",style="dashed", color="red", weight=0]; 1472[label="xuu91 < xuu94",fontsize=16,color="magenta"];1472 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1473 -> 37[label="",style="dashed", color="red", weight=0]; 1473[label="xuu91 < xuu94",fontsize=16,color="magenta"];1473 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1474 -> 38[label="",style="dashed", color="red", weight=0]; 1474[label="xuu91 < xuu94",fontsize=16,color="magenta"];1474 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1475 -> 39[label="",style="dashed", color="red", weight=0]; 1475[label="xuu91 < xuu94",fontsize=16,color="magenta"];1475 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1476 -> 40[label="",style="dashed", color="red", weight=0]; 1476[label="xuu91 < xuu94",fontsize=16,color="magenta"];1476 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1477 -> 41[label="",style="dashed", color="red", weight=0]; 1477[label="xuu91 < xuu94",fontsize=16,color="magenta"];1477 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1478 -> 42[label="",style="dashed", color="red", weight=0]; 1478[label="xuu91 < xuu94",fontsize=16,color="magenta"];1478 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1479 -> 43[label="",style="dashed", color="red", weight=0]; 1479[label="xuu91 < xuu94",fontsize=16,color="magenta"];1479 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1480 -> 44[label="",style="dashed", color="red", weight=0]; 1480[label="xuu91 < xuu94",fontsize=16,color="magenta"];1480 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1481 -> 45[label="",style="dashed", color="red", weight=0]; 1481[label="xuu91 < xuu94",fontsize=16,color="magenta"];1481 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1482 -> 46[label="",style="dashed", color="red", weight=0]; 1482[label="xuu91 < xuu94",fontsize=16,color="magenta"];1482 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1483[label="compare1 (xuu178,xuu179,xuu180) (xuu181,xuu182,xuu183) (False || xuu185)",fontsize=16,color="black",shape="box"];1483 -> 1747[label="",style="solid", color="black", weight=3]; 1484[label="compare1 (xuu178,xuu179,xuu180) (xuu181,xuu182,xuu183) (True || xuu185)",fontsize=16,color="black",shape="box"];1484 -> 1748[label="",style="solid", color="black", weight=3]; 1485[label="primPlusNat (Succ xuu39200) xuu1260",fontsize=16,color="burlywood",shape="box"];3676[label="xuu1260/Succ xuu12600",fontsize=10,color="white",style="solid",shape="box"];1485 -> 3676[label="",style="solid", color="burlywood", weight=9]; 3676 -> 1749[label="",style="solid", color="burlywood", weight=3]; 3677[label="xuu1260/Zero",fontsize=10,color="white",style="solid",shape="box"];1485 -> 3677[label="",style="solid", color="burlywood", weight=9]; 3677 -> 1750[label="",style="solid", color="burlywood", weight=3]; 1486[label="primPlusNat Zero xuu1260",fontsize=16,color="burlywood",shape="box"];3678[label="xuu1260/Succ xuu12600",fontsize=10,color="white",style="solid",shape="box"];1486 -> 3678[label="",style="solid", color="burlywood", weight=9]; 3678 -> 1751[label="",style="solid", color="burlywood", weight=3]; 3679[label="xuu1260/Zero",fontsize=10,color="white",style="solid",shape="box"];1486 -> 3679[label="",style="solid", color="burlywood", weight=9]; 3679 -> 1752[label="",style="solid", color="burlywood", weight=3]; 1487[label="primMinusNat (Succ xuu39200) (Succ xuu12600)",fontsize=16,color="black",shape="box"];1487 -> 1753[label="",style="solid", color="black", weight=3]; 1488[label="primMinusNat (Succ xuu39200) Zero",fontsize=16,color="black",shape="box"];1488 -> 1754[label="",style="solid", color="black", weight=3]; 1489[label="primMinusNat Zero (Succ xuu12600)",fontsize=16,color="black",shape="box"];1489 -> 1755[label="",style="solid", color="black", weight=3]; 1490[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];1490 -> 1756[label="",style="solid", color="black", weight=3]; 1491[label="xuu3920",fontsize=16,color="green",shape="box"];1492[label="xuu1260",fontsize=16,color="green",shape="box"];1493 -> 896[label="",style="dashed", color="red", weight=0]; 1493[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1494 -> 666[label="",style="dashed", color="red", weight=0]; 1494[label="FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];1495[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 otherwise",fontsize=16,color="black",shape="box"];1495 -> 1757[label="",style="solid", color="black", weight=3]; 1496[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu14 xuu15 xuu39 xuu18 xuu39 xuu18 xuu39",fontsize=16,color="burlywood",shape="box"];3680[label="xuu39/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3680[label="",style="solid", color="burlywood", weight=9]; 3680 -> 1758[label="",style="solid", color="burlywood", weight=3]; 3681[label="xuu39/FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3681[label="",style="solid", color="burlywood", weight=9]; 3681 -> 1759[label="",style="solid", color="burlywood", weight=3]; 1497 -> 1760[label="",style="dashed", color="red", weight=0]; 1497[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu180 xuu181 xuu182 xuu183 xuu184 (FiniteMap.sizeFM xuu183 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu184)",fontsize=16,color="magenta"];1497 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1498[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18",fontsize=16,color="black",shape="box"];1498 -> 1762[label="",style="solid", color="black", weight=3]; 1499[label="FiniteMap.mkBranchRight_size xuu39 xuu14 xuu18",fontsize=16,color="black",shape="box"];1499 -> 1763[label="",style="solid", color="black", weight=3]; 1500[label="primMulNat (Succ xuu400000) (Succ xuu30100)",fontsize=16,color="black",shape="box"];1500 -> 1764[label="",style="solid", color="black", weight=3]; 1501[label="primMulNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];1501 -> 1765[label="",style="solid", color="black", weight=3]; 1502[label="primMulNat Zero (Succ xuu30100)",fontsize=16,color="black",shape="box"];1502 -> 1766[label="",style="solid", color="black", weight=3]; 1503[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1503 -> 1767[label="",style="solid", color="black", weight=3]; 1504[label="xuu106",fontsize=16,color="green",shape="box"];1505[label="xuu108",fontsize=16,color="green",shape="box"];1506[label="xuu106",fontsize=16,color="green",shape="box"];1507[label="xuu108",fontsize=16,color="green",shape="box"];1508[label="xuu106",fontsize=16,color="green",shape="box"];1509[label="xuu108",fontsize=16,color="green",shape="box"];1510[label="xuu106",fontsize=16,color="green",shape="box"];1511[label="xuu108",fontsize=16,color="green",shape="box"];1512[label="xuu106",fontsize=16,color="green",shape="box"];1513[label="xuu108",fontsize=16,color="green",shape="box"];1514[label="xuu106",fontsize=16,color="green",shape="box"];1515[label="xuu108",fontsize=16,color="green",shape="box"];1516[label="xuu106",fontsize=16,color="green",shape="box"];1517[label="xuu108",fontsize=16,color="green",shape="box"];1518[label="xuu106",fontsize=16,color="green",shape="box"];1519[label="xuu108",fontsize=16,color="green",shape="box"];1520[label="xuu106",fontsize=16,color="green",shape="box"];1521[label="xuu108",fontsize=16,color="green",shape="box"];1522[label="xuu106",fontsize=16,color="green",shape="box"];1523[label="xuu108",fontsize=16,color="green",shape="box"];1524[label="xuu106",fontsize=16,color="green",shape="box"];1525[label="xuu108",fontsize=16,color="green",shape="box"];1526[label="xuu106",fontsize=16,color="green",shape="box"];1527[label="xuu108",fontsize=16,color="green",shape="box"];1528[label="xuu106",fontsize=16,color="green",shape="box"];1529[label="xuu108",fontsize=16,color="green",shape="box"];1530[label="xuu106",fontsize=16,color="green",shape="box"];1531[label="xuu108",fontsize=16,color="green",shape="box"];1532 -> 1400[label="",style="dashed", color="red", weight=0]; 1532[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1532 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1401[label="",style="dashed", color="red", weight=0]; 1533[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1533 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1402[label="",style="dashed", color="red", weight=0]; 1534[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1534 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1403[label="",style="dashed", color="red", weight=0]; 1535[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1535 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1404[label="",style="dashed", color="red", weight=0]; 1536[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1536 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1405[label="",style="dashed", color="red", weight=0]; 1537[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1537 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1406[label="",style="dashed", color="red", weight=0]; 1538[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1538 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1407[label="",style="dashed", color="red", weight=0]; 1539[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1539 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1408[label="",style="dashed", color="red", weight=0]; 1540[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1540 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1409[label="",style="dashed", color="red", weight=0]; 1541[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1541 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1410[label="",style="dashed", color="red", weight=0]; 1542[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1542 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1411[label="",style="dashed", color="red", weight=0]; 1543[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1543 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1412[label="",style="dashed", color="red", weight=0]; 1544[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1544 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1413[label="",style="dashed", color="red", weight=0]; 1545[label="xuu107 <= xuu109",fontsize=16,color="magenta"];1545 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1546 -> 554[label="",style="dashed", color="red", weight=0]; 1546[label="xuu106 == xuu108",fontsize=16,color="magenta"];1546 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1547 -> 548[label="",style="dashed", color="red", weight=0]; 1547[label="xuu106 == xuu108",fontsize=16,color="magenta"];1547 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1548 -> 558[label="",style="dashed", color="red", weight=0]; 1548[label="xuu106 == xuu108",fontsize=16,color="magenta"];1548 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1549 -> 557[label="",style="dashed", color="red", weight=0]; 1549[label="xuu106 == xuu108",fontsize=16,color="magenta"];1549 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1550 -> 550[label="",style="dashed", color="red", weight=0]; 1550[label="xuu106 == xuu108",fontsize=16,color="magenta"];1550 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1551 -> 556[label="",style="dashed", color="red", weight=0]; 1551[label="xuu106 == xuu108",fontsize=16,color="magenta"];1551 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1552 -> 553[label="",style="dashed", color="red", weight=0]; 1552[label="xuu106 == xuu108",fontsize=16,color="magenta"];1552 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1553 -> 549[label="",style="dashed", color="red", weight=0]; 1553[label="xuu106 == xuu108",fontsize=16,color="magenta"];1553 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1554 -> 547[label="",style="dashed", color="red", weight=0]; 1554[label="xuu106 == xuu108",fontsize=16,color="magenta"];1554 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1555 -> 559[label="",style="dashed", color="red", weight=0]; 1555[label="xuu106 == xuu108",fontsize=16,color="magenta"];1555 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1556 -> 555[label="",style="dashed", color="red", weight=0]; 1556[label="xuu106 == xuu108",fontsize=16,color="magenta"];1556 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1557 -> 551[label="",style="dashed", color="red", weight=0]; 1557[label="xuu106 == xuu108",fontsize=16,color="magenta"];1557 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1558 -> 560[label="",style="dashed", color="red", weight=0]; 1558[label="xuu106 == xuu108",fontsize=16,color="magenta"];1558 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1559 -> 552[label="",style="dashed", color="red", weight=0]; 1559[label="xuu106 == xuu108",fontsize=16,color="magenta"];1559 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1560[label="compare1 (xuu163,xuu164) (xuu165,xuu166) xuu168",fontsize=16,color="burlywood",shape="triangle"];3682[label="xuu168/False",fontsize=10,color="white",style="solid",shape="box"];1560 -> 3682[label="",style="solid", color="burlywood", weight=9]; 3682 -> 1824[label="",style="solid", color="burlywood", weight=3]; 3683[label="xuu168/True",fontsize=10,color="white",style="solid",shape="box"];1560 -> 3683[label="",style="solid", color="burlywood", weight=9]; 3683 -> 1825[label="",style="solid", color="burlywood", weight=3]; 1561 -> 1560[label="",style="dashed", color="red", weight=0]; 1561[label="compare1 (xuu163,xuu164) (xuu165,xuu166) True",fontsize=16,color="magenta"];1561 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1562[label="primEqInt (Pos (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];3684[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1562 -> 3684[label="",style="solid", color="burlywood", weight=9]; 3684 -> 1827[label="",style="solid", color="burlywood", weight=3]; 3685[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1562 -> 3685[label="",style="solid", color="burlywood", weight=9]; 3685 -> 1828[label="",style="solid", color="burlywood", weight=3]; 1563[label="primEqInt (Pos (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];1563 -> 1829[label="",style="solid", color="black", weight=3]; 1564[label="primEqInt (Pos Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];3686[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3686[label="",style="solid", color="burlywood", weight=9]; 3686 -> 1830[label="",style="solid", color="burlywood", weight=3]; 3687[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3687[label="",style="solid", color="burlywood", weight=9]; 3687 -> 1831[label="",style="solid", color="burlywood", weight=3]; 1565[label="primEqInt (Pos Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];3688[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1565 -> 3688[label="",style="solid", color="burlywood", weight=9]; 3688 -> 1832[label="",style="solid", color="burlywood", weight=3]; 3689[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1565 -> 3689[label="",style="solid", color="burlywood", weight=9]; 3689 -> 1833[label="",style="solid", color="burlywood", weight=3]; 1566[label="primEqInt (Neg (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];1566 -> 1834[label="",style="solid", color="black", weight=3]; 1567[label="primEqInt (Neg (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];3690[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3690[label="",style="solid", color="burlywood", weight=9]; 3690 -> 1835[label="",style="solid", color="burlywood", weight=3]; 3691[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3691[label="",style="solid", color="burlywood", weight=9]; 3691 -> 1836[label="",style="solid", color="burlywood", weight=3]; 1568[label="primEqInt (Neg Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];3692[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1568 -> 3692[label="",style="solid", color="burlywood", weight=9]; 3692 -> 1837[label="",style="solid", color="burlywood", weight=3]; 3693[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1568 -> 3693[label="",style="solid", color="burlywood", weight=9]; 3693 -> 1838[label="",style="solid", color="burlywood", weight=3]; 1569[label="primEqInt (Neg Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];3694[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1569 -> 3694[label="",style="solid", color="burlywood", weight=9]; 3694 -> 1839[label="",style="solid", color="burlywood", weight=3]; 3695[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1569 -> 3695[label="",style="solid", color="burlywood", weight=9]; 3695 -> 1840[label="",style="solid", color="burlywood", weight=3]; 1570 -> 548[label="",style="dashed", color="red", weight=0]; 1570[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1570 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1571[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3696[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3696[label="",style="solid", color="blue", weight=9]; 3696 -> 1843[label="",style="solid", color="blue", weight=3]; 3697[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3697[label="",style="solid", color="blue", weight=9]; 3697 -> 1844[label="",style="solid", color="blue", weight=3]; 3698[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3698[label="",style="solid", color="blue", weight=9]; 3698 -> 1845[label="",style="solid", color="blue", weight=3]; 3699[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3699[label="",style="solid", color="blue", weight=9]; 3699 -> 1846[label="",style="solid", color="blue", weight=3]; 3700[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3700[label="",style="solid", color="blue", weight=9]; 3700 -> 1847[label="",style="solid", color="blue", weight=3]; 3701[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3701[label="",style="solid", color="blue", weight=9]; 3701 -> 1848[label="",style="solid", color="blue", weight=3]; 3702[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3702[label="",style="solid", color="blue", weight=9]; 3702 -> 1849[label="",style="solid", color="blue", weight=3]; 3703[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3703[label="",style="solid", color="blue", weight=9]; 3703 -> 1850[label="",style="solid", color="blue", weight=3]; 3704[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3704[label="",style="solid", color="blue", weight=9]; 3704 -> 1851[label="",style="solid", color="blue", weight=3]; 3705[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3705[label="",style="solid", color="blue", weight=9]; 3705 -> 1852[label="",style="solid", color="blue", weight=3]; 3706[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3706[label="",style="solid", color="blue", weight=9]; 3706 -> 1853[label="",style="solid", color="blue", weight=3]; 3707[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3707[label="",style="solid", color="blue", weight=9]; 3707 -> 1854[label="",style="solid", color="blue", weight=3]; 3708[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3708[label="",style="solid", color="blue", weight=9]; 3708 -> 1855[label="",style="solid", color="blue", weight=3]; 3709[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3709[label="",style="solid", color="blue", weight=9]; 3709 -> 1856[label="",style="solid", color="blue", weight=3]; 1572 -> 547[label="",style="dashed", color="red", weight=0]; 1572[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1572 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1572 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1573 -> 548[label="",style="dashed", color="red", weight=0]; 1573[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1573 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1574 -> 549[label="",style="dashed", color="red", weight=0]; 1574[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1574 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1575 -> 550[label="",style="dashed", color="red", weight=0]; 1575[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1575 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1576 -> 551[label="",style="dashed", color="red", weight=0]; 1576[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1576 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1577 -> 552[label="",style="dashed", color="red", weight=0]; 1577[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1577 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1578 -> 553[label="",style="dashed", color="red", weight=0]; 1578[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1578 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1579 -> 554[label="",style="dashed", color="red", weight=0]; 1579[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1579 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1580 -> 555[label="",style="dashed", color="red", weight=0]; 1580[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1580 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1581 -> 556[label="",style="dashed", color="red", weight=0]; 1581[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1581 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1582 -> 557[label="",style="dashed", color="red", weight=0]; 1582[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1582 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1583 -> 558[label="",style="dashed", color="red", weight=0]; 1583[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1583 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1584 -> 559[label="",style="dashed", color="red", weight=0]; 1584[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1584 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1585 -> 560[label="",style="dashed", color="red", weight=0]; 1585[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1585 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1586 -> 547[label="",style="dashed", color="red", weight=0]; 1586[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1586 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1587 -> 548[label="",style="dashed", color="red", weight=0]; 1587[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1587 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1588 -> 549[label="",style="dashed", color="red", weight=0]; 1588[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1588 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1589 -> 550[label="",style="dashed", color="red", weight=0]; 1589[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1589 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1590 -> 551[label="",style="dashed", color="red", weight=0]; 1590[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1590 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1591 -> 552[label="",style="dashed", color="red", weight=0]; 1591[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1591 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1592 -> 553[label="",style="dashed", color="red", weight=0]; 1592[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1592 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1592 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1593 -> 554[label="",style="dashed", color="red", weight=0]; 1593[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1593 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1594 -> 555[label="",style="dashed", color="red", weight=0]; 1594[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1594 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1595 -> 556[label="",style="dashed", color="red", weight=0]; 1595[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1595 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1596 -> 557[label="",style="dashed", color="red", weight=0]; 1596[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1596 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1597 -> 558[label="",style="dashed", color="red", weight=0]; 1597[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1597 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1598 -> 559[label="",style="dashed", color="red", weight=0]; 1598[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1598 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1599 -> 560[label="",style="dashed", color="red", weight=0]; 1599[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1599 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1600 -> 547[label="",style="dashed", color="red", weight=0]; 1600[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1600 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1601 -> 548[label="",style="dashed", color="red", weight=0]; 1601[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1601 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1602 -> 549[label="",style="dashed", color="red", weight=0]; 1602[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1602 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1603 -> 550[label="",style="dashed", color="red", weight=0]; 1603[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1603 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1604 -> 551[label="",style="dashed", color="red", weight=0]; 1604[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1604 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1605 -> 552[label="",style="dashed", color="red", weight=0]; 1605[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1605 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1606 -> 553[label="",style="dashed", color="red", weight=0]; 1606[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1606 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1607 -> 554[label="",style="dashed", color="red", weight=0]; 1607[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1607 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1608 -> 555[label="",style="dashed", color="red", weight=0]; 1608[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1608 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1609 -> 556[label="",style="dashed", color="red", weight=0]; 1609[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1609 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1609 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1610 -> 557[label="",style="dashed", color="red", weight=0]; 1610[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1610 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1610 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1611 -> 558[label="",style="dashed", color="red", weight=0]; 1611[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1611 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1611 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1612 -> 559[label="",style="dashed", color="red", weight=0]; 1612[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1612 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1612 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1613 -> 560[label="",style="dashed", color="red", weight=0]; 1613[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1613 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1613 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1028[label="",style="dashed", color="red", weight=0]; 1614[label="xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];1614 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1615[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3710[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3710[label="",style="solid", color="blue", weight=9]; 3710 -> 1943[label="",style="solid", color="blue", weight=3]; 3711[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3711[label="",style="solid", color="blue", weight=9]; 3711 -> 1944[label="",style="solid", color="blue", weight=3]; 3712[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 1945[label="",style="solid", color="blue", weight=3]; 3713[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 1946[label="",style="solid", color="blue", weight=3]; 3714[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 1947[label="",style="solid", color="blue", weight=3]; 3715[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 1948[label="",style="solid", color="blue", weight=3]; 3716[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 1949[label="",style="solid", color="blue", weight=3]; 3717[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 1950[label="",style="solid", color="blue", weight=3]; 3718[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 1951[label="",style="solid", color="blue", weight=3]; 3719[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 1952[label="",style="solid", color="blue", weight=3]; 3720[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 1953[label="",style="solid", color="blue", weight=3]; 3721[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 1954[label="",style="solid", color="blue", weight=3]; 3722[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 1955[label="",style="solid", color="blue", weight=3]; 3723[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 1956[label="",style="solid", color="blue", weight=3]; 1616[label="primEqNat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];3724[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3724[label="",style="solid", color="burlywood", weight=9]; 3724 -> 1957[label="",style="solid", color="burlywood", weight=3]; 3725[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3725[label="",style="solid", color="burlywood", weight=9]; 3725 -> 1958[label="",style="solid", color="burlywood", weight=3]; 1617[label="xuu40000",fontsize=16,color="green",shape="box"];1618[label="xuu3000",fontsize=16,color="green",shape="box"];1619 -> 547[label="",style="dashed", color="red", weight=0]; 1619[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];1619 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1620[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3726[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3726[label="",style="solid", color="blue", weight=9]; 3726 -> 1961[label="",style="solid", color="blue", weight=3]; 3727[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3727[label="",style="solid", color="blue", weight=9]; 3727 -> 1962[label="",style="solid", color="blue", weight=3]; 3728[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3728[label="",style="solid", color="blue", weight=9]; 3728 -> 1963[label="",style="solid", color="blue", weight=3]; 3729[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3729[label="",style="solid", color="blue", weight=9]; 3729 -> 1964[label="",style="solid", color="blue", weight=3]; 3730[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3730[label="",style="solid", color="blue", weight=9]; 3730 -> 1965[label="",style="solid", color="blue", weight=3]; 3731[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3731[label="",style="solid", color="blue", weight=9]; 3731 -> 1966[label="",style="solid", color="blue", weight=3]; 3732[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3732[label="",style="solid", color="blue", weight=9]; 3732 -> 1967[label="",style="solid", color="blue", weight=3]; 3733[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3733[label="",style="solid", color="blue", weight=9]; 3733 -> 1968[label="",style="solid", color="blue", weight=3]; 3734[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3734[label="",style="solid", color="blue", weight=9]; 3734 -> 1969[label="",style="solid", color="blue", weight=3]; 3735[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 1970[label="",style="solid", color="blue", weight=3]; 3736[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3736[label="",style="solid", color="blue", weight=9]; 3736 -> 1971[label="",style="solid", color="blue", weight=3]; 3737[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 1972[label="",style="solid", color="blue", weight=3]; 3738[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 1973[label="",style="solid", color="blue", weight=3]; 3739[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 1974[label="",style="solid", color="blue", weight=3]; 1621[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3740[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 1975[label="",style="solid", color="blue", weight=3]; 3741[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 1976[label="",style="solid", color="blue", weight=3]; 3742[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 1977[label="",style="solid", color="blue", weight=3]; 3743[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 1978[label="",style="solid", color="blue", weight=3]; 3744[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 1979[label="",style="solid", color="blue", weight=3]; 3745[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 1980[label="",style="solid", color="blue", weight=3]; 3746[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 1981[label="",style="solid", color="blue", weight=3]; 3747[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 1982[label="",style="solid", color="blue", weight=3]; 3748[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 1983[label="",style="solid", color="blue", weight=3]; 3749[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 1984[label="",style="solid", color="blue", weight=3]; 3750[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 1985[label="",style="solid", color="blue", weight=3]; 3751[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 1986[label="",style="solid", color="blue", weight=3]; 3752[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 1987[label="",style="solid", color="blue", weight=3]; 3753[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 1988[label="",style="solid", color="blue", weight=3]; 1622[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3754[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 1989[label="",style="solid", color="blue", weight=3]; 3755[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 1990[label="",style="solid", color="blue", weight=3]; 1623[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3756[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3756[label="",style="solid", color="blue", weight=9]; 3756 -> 1991[label="",style="solid", color="blue", weight=3]; 3757[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3757[label="",style="solid", color="blue", weight=9]; 3757 -> 1992[label="",style="solid", color="blue", weight=3]; 1624 -> 547[label="",style="dashed", color="red", weight=0]; 1624[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];1624 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1624 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1625 -> 1995[label="",style="dashed", color="red", weight=0]; 1625[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1625 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1626 -> 1995[label="",style="dashed", color="red", weight=0]; 1626[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1626 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1627 -> 1995[label="",style="dashed", color="red", weight=0]; 1627[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1627 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1628[label="(xuu660,xuu661) <= xuu67",fontsize=16,color="burlywood",shape="box"];3758[label="xuu67/(xuu670,xuu671)",fontsize=10,color="white",style="solid",shape="box"];1628 -> 3758[label="",style="solid", color="burlywood", weight=9]; 3758 -> 2004[label="",style="solid", color="burlywood", weight=3]; 1629[label="Nothing <= xuu67",fontsize=16,color="burlywood",shape="box"];3759[label="xuu67/Nothing",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3759[label="",style="solid", color="burlywood", weight=9]; 3759 -> 2005[label="",style="solid", color="burlywood", weight=3]; 3760[label="xuu67/Just xuu670",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3760[label="",style="solid", color="burlywood", weight=9]; 3760 -> 2006[label="",style="solid", color="burlywood", weight=3]; 1630[label="Just xuu660 <= xuu67",fontsize=16,color="burlywood",shape="box"];3761[label="xuu67/Nothing",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3761[label="",style="solid", color="burlywood", weight=9]; 3761 -> 2007[label="",style="solid", color="burlywood", weight=3]; 3762[label="xuu67/Just xuu670",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3762[label="",style="solid", color="burlywood", weight=9]; 3762 -> 2008[label="",style="solid", color="burlywood", weight=3]; 1631 -> 1995[label="",style="dashed", color="red", weight=0]; 1631[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1631 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1995[label="",style="dashed", color="red", weight=0]; 1632[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1632 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1633[label="Left xuu660 <= xuu67",fontsize=16,color="burlywood",shape="box"];3763[label="xuu67/Left xuu670",fontsize=10,color="white",style="solid",shape="box"];1633 -> 3763[label="",style="solid", color="burlywood", weight=9]; 3763 -> 2009[label="",style="solid", color="burlywood", weight=3]; 3764[label="xuu67/Right xuu670",fontsize=10,color="white",style="solid",shape="box"];1633 -> 3764[label="",style="solid", color="burlywood", weight=9]; 3764 -> 2010[label="",style="solid", color="burlywood", weight=3]; 1634[label="Right xuu660 <= xuu67",fontsize=16,color="burlywood",shape="box"];3765[label="xuu67/Left xuu670",fontsize=10,color="white",style="solid",shape="box"];1634 -> 3765[label="",style="solid", color="burlywood", weight=9]; 3765 -> 2011[label="",style="solid", color="burlywood", weight=3]; 3766[label="xuu67/Right xuu670",fontsize=10,color="white",style="solid",shape="box"];1634 -> 3766[label="",style="solid", color="burlywood", weight=9]; 3766 -> 2012[label="",style="solid", color="burlywood", weight=3]; 1635 -> 1995[label="",style="dashed", color="red", weight=0]; 1635[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1635 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1636[label="LT <= xuu67",fontsize=16,color="burlywood",shape="box"];3767[label="xuu67/LT",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3767[label="",style="solid", color="burlywood", weight=9]; 3767 -> 2013[label="",style="solid", color="burlywood", weight=3]; 3768[label="xuu67/EQ",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 2014[label="",style="solid", color="burlywood", weight=3]; 3769[label="xuu67/GT",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 2015[label="",style="solid", color="burlywood", weight=3]; 1637[label="EQ <= xuu67",fontsize=16,color="burlywood",shape="box"];3770[label="xuu67/LT",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3770[label="",style="solid", color="burlywood", weight=9]; 3770 -> 2016[label="",style="solid", color="burlywood", weight=3]; 3771[label="xuu67/EQ",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3771[label="",style="solid", color="burlywood", weight=9]; 3771 -> 2017[label="",style="solid", color="burlywood", weight=3]; 3772[label="xuu67/GT",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3772[label="",style="solid", color="burlywood", weight=9]; 3772 -> 2018[label="",style="solid", color="burlywood", weight=3]; 1638[label="GT <= xuu67",fontsize=16,color="burlywood",shape="box"];3773[label="xuu67/LT",fontsize=10,color="white",style="solid",shape="box"];1638 -> 3773[label="",style="solid", color="burlywood", weight=9]; 3773 -> 2019[label="",style="solid", color="burlywood", weight=3]; 3774[label="xuu67/EQ",fontsize=10,color="white",style="solid",shape="box"];1638 -> 3774[label="",style="solid", color="burlywood", weight=9]; 3774 -> 2020[label="",style="solid", color="burlywood", weight=3]; 3775[label="xuu67/GT",fontsize=10,color="white",style="solid",shape="box"];1638 -> 3775[label="",style="solid", color="burlywood", weight=9]; 3775 -> 2021[label="",style="solid", color="burlywood", weight=3]; 1639[label="False <= xuu67",fontsize=16,color="burlywood",shape="box"];3776[label="xuu67/False",fontsize=10,color="white",style="solid",shape="box"];1639 -> 3776[label="",style="solid", color="burlywood", weight=9]; 3776 -> 2022[label="",style="solid", color="burlywood", weight=3]; 3777[label="xuu67/True",fontsize=10,color="white",style="solid",shape="box"];1639 -> 3777[label="",style="solid", color="burlywood", weight=9]; 3777 -> 2023[label="",style="solid", color="burlywood", weight=3]; 1640[label="True <= xuu67",fontsize=16,color="burlywood",shape="box"];3778[label="xuu67/False",fontsize=10,color="white",style="solid",shape="box"];1640 -> 3778[label="",style="solid", color="burlywood", weight=9]; 3778 -> 2024[label="",style="solid", color="burlywood", weight=3]; 3779[label="xuu67/True",fontsize=10,color="white",style="solid",shape="box"];1640 -> 3779[label="",style="solid", color="burlywood", weight=9]; 3779 -> 2025[label="",style="solid", color="burlywood", weight=3]; 1641[label="(xuu660,xuu661,xuu662) <= xuu67",fontsize=16,color="burlywood",shape="box"];3780[label="xuu67/(xuu670,xuu671,xuu672)",fontsize=10,color="white",style="solid",shape="box"];1641 -> 3780[label="",style="solid", color="burlywood", weight=9]; 3780 -> 2026[label="",style="solid", color="burlywood", weight=3]; 1642 -> 1995[label="",style="dashed", color="red", weight=0]; 1642[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1642 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1643 -> 1995[label="",style="dashed", color="red", weight=0]; 1643[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1643 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1644[label="compare0 (Just xuu137) (Just xuu138) True",fontsize=16,color="black",shape="box"];1644 -> 2027[label="",style="solid", color="black", weight=3]; 1645[label="xuu73",fontsize=16,color="green",shape="box"];1646[label="xuu74",fontsize=16,color="green",shape="box"];1647[label="xuu73",fontsize=16,color="green",shape="box"];1648[label="xuu74",fontsize=16,color="green",shape="box"];1649[label="xuu73",fontsize=16,color="green",shape="box"];1650[label="xuu74",fontsize=16,color="green",shape="box"];1651[label="xuu73",fontsize=16,color="green",shape="box"];1652[label="xuu74",fontsize=16,color="green",shape="box"];1653[label="xuu73",fontsize=16,color="green",shape="box"];1654[label="xuu74",fontsize=16,color="green",shape="box"];1655[label="xuu73",fontsize=16,color="green",shape="box"];1656[label="xuu74",fontsize=16,color="green",shape="box"];1657[label="xuu73",fontsize=16,color="green",shape="box"];1658[label="xuu74",fontsize=16,color="green",shape="box"];1659[label="xuu73",fontsize=16,color="green",shape="box"];1660[label="xuu74",fontsize=16,color="green",shape="box"];1661[label="xuu73",fontsize=16,color="green",shape="box"];1662[label="xuu74",fontsize=16,color="green",shape="box"];1663[label="xuu73",fontsize=16,color="green",shape="box"];1664[label="xuu74",fontsize=16,color="green",shape="box"];1665[label="xuu73",fontsize=16,color="green",shape="box"];1666[label="xuu74",fontsize=16,color="green",shape="box"];1667[label="xuu73",fontsize=16,color="green",shape="box"];1668[label="xuu74",fontsize=16,color="green",shape="box"];1669[label="xuu73",fontsize=16,color="green",shape="box"];1670[label="xuu74",fontsize=16,color="green",shape="box"];1671[label="xuu73",fontsize=16,color="green",shape="box"];1672[label="xuu74",fontsize=16,color="green",shape="box"];1673[label="compare0 (Left xuu144) (Left xuu145) True",fontsize=16,color="black",shape="box"];1673 -> 2028[label="",style="solid", color="black", weight=3]; 1674[label="xuu80",fontsize=16,color="green",shape="box"];1675[label="xuu81",fontsize=16,color="green",shape="box"];1676[label="xuu80",fontsize=16,color="green",shape="box"];1677[label="xuu81",fontsize=16,color="green",shape="box"];1678[label="xuu80",fontsize=16,color="green",shape="box"];1679[label="xuu81",fontsize=16,color="green",shape="box"];1680[label="xuu80",fontsize=16,color="green",shape="box"];1681[label="xuu81",fontsize=16,color="green",shape="box"];1682[label="xuu80",fontsize=16,color="green",shape="box"];1683[label="xuu81",fontsize=16,color="green",shape="box"];1684[label="xuu80",fontsize=16,color="green",shape="box"];1685[label="xuu81",fontsize=16,color="green",shape="box"];1686[label="xuu80",fontsize=16,color="green",shape="box"];1687[label="xuu81",fontsize=16,color="green",shape="box"];1688[label="xuu80",fontsize=16,color="green",shape="box"];1689[label="xuu81",fontsize=16,color="green",shape="box"];1690[label="xuu80",fontsize=16,color="green",shape="box"];1691[label="xuu81",fontsize=16,color="green",shape="box"];1692[label="xuu80",fontsize=16,color="green",shape="box"];1693[label="xuu81",fontsize=16,color="green",shape="box"];1694[label="xuu80",fontsize=16,color="green",shape="box"];1695[label="xuu81",fontsize=16,color="green",shape="box"];1696[label="xuu80",fontsize=16,color="green",shape="box"];1697[label="xuu81",fontsize=16,color="green",shape="box"];1698[label="xuu80",fontsize=16,color="green",shape="box"];1699[label="xuu81",fontsize=16,color="green",shape="box"];1700[label="xuu80",fontsize=16,color="green",shape="box"];1701[label="xuu81",fontsize=16,color="green",shape="box"];1702[label="compare0 (Right xuu151) (Right xuu152) True",fontsize=16,color="black",shape="box"];1702 -> 2029[label="",style="solid", color="black", weight=3]; 2033 -> 1028[label="",style="dashed", color="red", weight=0]; 2033[label="xuu92 == xuu95 && xuu93 <= xuu96",fontsize=16,color="magenta"];2033 -> 2037[label="",style="dashed", color="magenta", weight=3]; 2033 -> 2038[label="",style="dashed", color="magenta", weight=3]; 2034[label="xuu92 < xuu95",fontsize=16,color="blue",shape="box"];3781[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3781[label="",style="solid", color="blue", weight=9]; 3781 -> 2039[label="",style="solid", color="blue", weight=3]; 3782[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3782[label="",style="solid", color="blue", weight=9]; 3782 -> 2040[label="",style="solid", color="blue", weight=3]; 3783[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 2041[label="",style="solid", color="blue", weight=3]; 3784[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3784[label="",style="solid", color="blue", weight=9]; 3784 -> 2042[label="",style="solid", color="blue", weight=3]; 3785[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3785[label="",style="solid", color="blue", weight=9]; 3785 -> 2043[label="",style="solid", color="blue", weight=3]; 3786[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3786[label="",style="solid", color="blue", weight=9]; 3786 -> 2044[label="",style="solid", color="blue", weight=3]; 3787[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3787[label="",style="solid", color="blue", weight=9]; 3787 -> 2045[label="",style="solid", color="blue", weight=3]; 3788[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3788[label="",style="solid", color="blue", weight=9]; 3788 -> 2046[label="",style="solid", color="blue", weight=3]; 3789[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3789[label="",style="solid", color="blue", weight=9]; 3789 -> 2047[label="",style="solid", color="blue", weight=3]; 3790[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3790[label="",style="solid", color="blue", weight=9]; 3790 -> 2048[label="",style="solid", color="blue", weight=3]; 3791[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3791[label="",style="solid", color="blue", weight=9]; 3791 -> 2049[label="",style="solid", color="blue", weight=3]; 3792[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3792[label="",style="solid", color="blue", weight=9]; 3792 -> 2050[label="",style="solid", color="blue", weight=3]; 3793[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3793[label="",style="solid", color="blue", weight=9]; 3793 -> 2051[label="",style="solid", color="blue", weight=3]; 3794[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3794[label="",style="solid", color="blue", weight=9]; 3794 -> 2052[label="",style="solid", color="blue", weight=3]; 2032[label="xuu195 || xuu196",fontsize=16,color="burlywood",shape="triangle"];3795[label="xuu195/False",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3795[label="",style="solid", color="burlywood", weight=9]; 3795 -> 2053[label="",style="solid", color="burlywood", weight=3]; 3796[label="xuu195/True",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3796[label="",style="solid", color="burlywood", weight=9]; 3796 -> 2054[label="",style="solid", color="burlywood", weight=3]; 1705 -> 554[label="",style="dashed", color="red", weight=0]; 1705[label="xuu91 == xuu94",fontsize=16,color="magenta"];1705 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1705 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1706 -> 548[label="",style="dashed", color="red", weight=0]; 1706[label="xuu91 == xuu94",fontsize=16,color="magenta"];1706 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1706 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1707 -> 558[label="",style="dashed", color="red", weight=0]; 1707[label="xuu91 == xuu94",fontsize=16,color="magenta"];1707 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1707 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1708 -> 557[label="",style="dashed", color="red", weight=0]; 1708[label="xuu91 == xuu94",fontsize=16,color="magenta"];1708 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1708 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1709 -> 550[label="",style="dashed", color="red", weight=0]; 1709[label="xuu91 == xuu94",fontsize=16,color="magenta"];1709 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1709 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1710 -> 556[label="",style="dashed", color="red", weight=0]; 1710[label="xuu91 == xuu94",fontsize=16,color="magenta"];1710 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1710 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1711 -> 553[label="",style="dashed", color="red", weight=0]; 1711[label="xuu91 == xuu94",fontsize=16,color="magenta"];1711 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1711 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1712 -> 549[label="",style="dashed", color="red", weight=0]; 1712[label="xuu91 == xuu94",fontsize=16,color="magenta"];1712 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1712 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1713 -> 547[label="",style="dashed", color="red", weight=0]; 1713[label="xuu91 == xuu94",fontsize=16,color="magenta"];1713 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1713 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1714 -> 559[label="",style="dashed", color="red", weight=0]; 1714[label="xuu91 == xuu94",fontsize=16,color="magenta"];1714 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1714 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1715 -> 555[label="",style="dashed", color="red", weight=0]; 1715[label="xuu91 == xuu94",fontsize=16,color="magenta"];1715 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1715 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1716 -> 551[label="",style="dashed", color="red", weight=0]; 1716[label="xuu91 == xuu94",fontsize=16,color="magenta"];1716 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1716 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1717 -> 560[label="",style="dashed", color="red", weight=0]; 1717[label="xuu91 == xuu94",fontsize=16,color="magenta"];1717 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1717 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1718 -> 552[label="",style="dashed", color="red", weight=0]; 1718[label="xuu91 == xuu94",fontsize=16,color="magenta"];1718 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1718 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1719[label="xuu91",fontsize=16,color="green",shape="box"];1720[label="xuu94",fontsize=16,color="green",shape="box"];1721[label="xuu91",fontsize=16,color="green",shape="box"];1722[label="xuu94",fontsize=16,color="green",shape="box"];1723[label="xuu91",fontsize=16,color="green",shape="box"];1724[label="xuu94",fontsize=16,color="green",shape="box"];1725[label="xuu91",fontsize=16,color="green",shape="box"];1726[label="xuu94",fontsize=16,color="green",shape="box"];1727[label="xuu91",fontsize=16,color="green",shape="box"];1728[label="xuu94",fontsize=16,color="green",shape="box"];1729[label="xuu91",fontsize=16,color="green",shape="box"];1730[label="xuu94",fontsize=16,color="green",shape="box"];1731[label="xuu91",fontsize=16,color="green",shape="box"];1732[label="xuu94",fontsize=16,color="green",shape="box"];1733[label="xuu91",fontsize=16,color="green",shape="box"];1734[label="xuu94",fontsize=16,color="green",shape="box"];1735[label="xuu91",fontsize=16,color="green",shape="box"];1736[label="xuu94",fontsize=16,color="green",shape="box"];1737[label="xuu91",fontsize=16,color="green",shape="box"];1738[label="xuu94",fontsize=16,color="green",shape="box"];1739[label="xuu91",fontsize=16,color="green",shape="box"];1740[label="xuu94",fontsize=16,color="green",shape="box"];1741[label="xuu91",fontsize=16,color="green",shape="box"];1742[label="xuu94",fontsize=16,color="green",shape="box"];1743[label="xuu91",fontsize=16,color="green",shape="box"];1744[label="xuu94",fontsize=16,color="green",shape="box"];1745[label="xuu91",fontsize=16,color="green",shape="box"];1746[label="xuu94",fontsize=16,color="green",shape="box"];1747[label="compare1 (xuu178,xuu179,xuu180) (xuu181,xuu182,xuu183) xuu185",fontsize=16,color="burlywood",shape="triangle"];3797[label="xuu185/False",fontsize=10,color="white",style="solid",shape="box"];1747 -> 3797[label="",style="solid", color="burlywood", weight=9]; 3797 -> 2083[label="",style="solid", color="burlywood", weight=3]; 3798[label="xuu185/True",fontsize=10,color="white",style="solid",shape="box"];1747 -> 3798[label="",style="solid", color="burlywood", weight=9]; 3798 -> 2084[label="",style="solid", color="burlywood", weight=3]; 1748 -> 1747[label="",style="dashed", color="red", weight=0]; 1748[label="compare1 (xuu178,xuu179,xuu180) (xuu181,xuu182,xuu183) True",fontsize=16,color="magenta"];1748 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1749[label="primPlusNat (Succ xuu39200) (Succ xuu12600)",fontsize=16,color="black",shape="box"];1749 -> 2086[label="",style="solid", color="black", weight=3]; 1750[label="primPlusNat (Succ xuu39200) Zero",fontsize=16,color="black",shape="box"];1750 -> 2087[label="",style="solid", color="black", weight=3]; 1751[label="primPlusNat Zero (Succ xuu12600)",fontsize=16,color="black",shape="box"];1751 -> 2088[label="",style="solid", color="black", weight=3]; 1752[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1752 -> 2089[label="",style="solid", color="black", weight=3]; 1753 -> 1212[label="",style="dashed", color="red", weight=0]; 1753[label="primMinusNat xuu39200 xuu12600",fontsize=16,color="magenta"];1753 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1753 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1754[label="Pos (Succ xuu39200)",fontsize=16,color="green",shape="box"];1755[label="Neg (Succ xuu12600)",fontsize=16,color="green",shape="box"];1756[label="Pos Zero",fontsize=16,color="green",shape="box"];1757[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 True",fontsize=16,color="black",shape="box"];1757 -> 2092[label="",style="solid", color="black", weight=3]; 1758[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu14 xuu15 FiniteMap.EmptyFM xuu18 FiniteMap.EmptyFM xuu18 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1758 -> 2093[label="",style="solid", color="black", weight=3]; 1759[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394)",fontsize=16,color="black",shape="box"];1759 -> 2094[label="",style="solid", color="black", weight=3]; 1761 -> 41[label="",style="dashed", color="red", weight=0]; 1761[label="FiniteMap.sizeFM xuu183 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu184",fontsize=16,color="magenta"];1761 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1761 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1760[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu180 xuu181 xuu182 xuu183 xuu184 xuu187",fontsize=16,color="burlywood",shape="triangle"];3799[label="xuu187/False",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3799[label="",style="solid", color="burlywood", weight=9]; 3799 -> 2097[label="",style="solid", color="burlywood", weight=3]; 3800[label="xuu187/True",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3800[label="",style="solid", color="burlywood", weight=9]; 3800 -> 2098[label="",style="solid", color="burlywood", weight=3]; 1762 -> 1177[label="",style="dashed", color="red", weight=0]; 1762[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18)",fontsize=16,color="magenta"];1762 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1762 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1763 -> 898[label="",style="dashed", color="red", weight=0]; 1763[label="FiniteMap.sizeFM xuu18",fontsize=16,color="magenta"];1764 -> 1311[label="",style="dashed", color="red", weight=0]; 1764[label="primPlusNat (primMulNat xuu400000 (Succ xuu30100)) (Succ xuu30100)",fontsize=16,color="magenta"];1764 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1764 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1765[label="Zero",fontsize=16,color="green",shape="box"];1766[label="Zero",fontsize=16,color="green",shape="box"];1767[label="Zero",fontsize=16,color="green",shape="box"];1768[label="xuu107",fontsize=16,color="green",shape="box"];1769[label="xuu109",fontsize=16,color="green",shape="box"];1770[label="xuu107",fontsize=16,color="green",shape="box"];1771[label="xuu109",fontsize=16,color="green",shape="box"];1772[label="xuu107",fontsize=16,color="green",shape="box"];1773[label="xuu109",fontsize=16,color="green",shape="box"];1774[label="xuu107",fontsize=16,color="green",shape="box"];1775[label="xuu109",fontsize=16,color="green",shape="box"];1776[label="xuu107",fontsize=16,color="green",shape="box"];1777[label="xuu109",fontsize=16,color="green",shape="box"];1778[label="xuu107",fontsize=16,color="green",shape="box"];1779[label="xuu109",fontsize=16,color="green",shape="box"];1780[label="xuu107",fontsize=16,color="green",shape="box"];1781[label="xuu109",fontsize=16,color="green",shape="box"];1782[label="xuu107",fontsize=16,color="green",shape="box"];1783[label="xuu109",fontsize=16,color="green",shape="box"];1784[label="xuu107",fontsize=16,color="green",shape="box"];1785[label="xuu109",fontsize=16,color="green",shape="box"];1786[label="xuu107",fontsize=16,color="green",shape="box"];1787[label="xuu109",fontsize=16,color="green",shape="box"];1788[label="xuu107",fontsize=16,color="green",shape="box"];1789[label="xuu109",fontsize=16,color="green",shape="box"];1790[label="xuu107",fontsize=16,color="green",shape="box"];1791[label="xuu109",fontsize=16,color="green",shape="box"];1792[label="xuu107",fontsize=16,color="green",shape="box"];1793[label="xuu109",fontsize=16,color="green",shape="box"];1794[label="xuu107",fontsize=16,color="green",shape="box"];1795[label="xuu109",fontsize=16,color="green",shape="box"];1796[label="xuu106",fontsize=16,color="green",shape="box"];1797[label="xuu108",fontsize=16,color="green",shape="box"];1798[label="xuu106",fontsize=16,color="green",shape="box"];1799[label="xuu108",fontsize=16,color="green",shape="box"];1800[label="xuu106",fontsize=16,color="green",shape="box"];1801[label="xuu108",fontsize=16,color="green",shape="box"];1802[label="xuu106",fontsize=16,color="green",shape="box"];1803[label="xuu108",fontsize=16,color="green",shape="box"];1804[label="xuu106",fontsize=16,color="green",shape="box"];1805[label="xuu108",fontsize=16,color="green",shape="box"];1806[label="xuu106",fontsize=16,color="green",shape="box"];1807[label="xuu108",fontsize=16,color="green",shape="box"];1808[label="xuu106",fontsize=16,color="green",shape="box"];1809[label="xuu108",fontsize=16,color="green",shape="box"];1810[label="xuu106",fontsize=16,color="green",shape="box"];1811[label="xuu108",fontsize=16,color="green",shape="box"];1812[label="xuu106",fontsize=16,color="green",shape="box"];1813[label="xuu108",fontsize=16,color="green",shape="box"];1814[label="xuu106",fontsize=16,color="green",shape="box"];1815[label="xuu108",fontsize=16,color="green",shape="box"];1816[label="xuu106",fontsize=16,color="green",shape="box"];1817[label="xuu108",fontsize=16,color="green",shape="box"];1818[label="xuu106",fontsize=16,color="green",shape="box"];1819[label="xuu108",fontsize=16,color="green",shape="box"];1820[label="xuu106",fontsize=16,color="green",shape="box"];1821[label="xuu108",fontsize=16,color="green",shape="box"];1822[label="xuu106",fontsize=16,color="green",shape="box"];1823[label="xuu108",fontsize=16,color="green",shape="box"];1824[label="compare1 (xuu163,xuu164) (xuu165,xuu166) False",fontsize=16,color="black",shape="box"];1824 -> 2103[label="",style="solid", color="black", weight=3]; 1825[label="compare1 (xuu163,xuu164) (xuu165,xuu166) True",fontsize=16,color="black",shape="box"];1825 -> 2104[label="",style="solid", color="black", weight=3]; 1826[label="True",fontsize=16,color="green",shape="box"];1827[label="primEqInt (Pos (Succ xuu400000)) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];1827 -> 2105[label="",style="solid", color="black", weight=3]; 1828[label="primEqInt (Pos (Succ xuu400000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1828 -> 2106[label="",style="solid", color="black", weight=3]; 1829[label="False",fontsize=16,color="green",shape="box"];1830[label="primEqInt (Pos Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];1830 -> 2107[label="",style="solid", color="black", weight=3]; 1831[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1831 -> 2108[label="",style="solid", color="black", weight=3]; 1832[label="primEqInt (Pos Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];1832 -> 2109[label="",style="solid", color="black", weight=3]; 1833[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1833 -> 2110[label="",style="solid", color="black", weight=3]; 1834[label="False",fontsize=16,color="green",shape="box"];1835[label="primEqInt (Neg (Succ xuu400000)) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];1835 -> 2111[label="",style="solid", color="black", weight=3]; 1836[label="primEqInt (Neg (Succ xuu400000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1836 -> 2112[label="",style="solid", color="black", weight=3]; 1837[label="primEqInt (Neg Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];1837 -> 2113[label="",style="solid", color="black", weight=3]; 1838[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1838 -> 2114[label="",style="solid", color="black", weight=3]; 1839[label="primEqInt (Neg Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];1839 -> 2115[label="",style="solid", color="black", weight=3]; 1840[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1840 -> 2116[label="",style="solid", color="black", weight=3]; 1841[label="xuu40001",fontsize=16,color="green",shape="box"];1842[label="xuu3001",fontsize=16,color="green",shape="box"];1843 -> 547[label="",style="dashed", color="red", weight=0]; 1843[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1843 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1843 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1844 -> 548[label="",style="dashed", color="red", weight=0]; 1844[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1844 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1844 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1845 -> 549[label="",style="dashed", color="red", weight=0]; 1845[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1845 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1845 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1846 -> 550[label="",style="dashed", color="red", weight=0]; 1846[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1846 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1846 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1847 -> 551[label="",style="dashed", color="red", weight=0]; 1847[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1847 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1847 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1848 -> 552[label="",style="dashed", color="red", weight=0]; 1848[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1848 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1848 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1849 -> 553[label="",style="dashed", color="red", weight=0]; 1849[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1849 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1849 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1850 -> 554[label="",style="dashed", color="red", weight=0]; 1850[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1850 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1850 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1851 -> 555[label="",style="dashed", color="red", weight=0]; 1851[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1851 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1851 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1852 -> 556[label="",style="dashed", color="red", weight=0]; 1852[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1852 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1852 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1853 -> 557[label="",style="dashed", color="red", weight=0]; 1853[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1853 -> 2137[label="",style="dashed", color="magenta", weight=3]; 1853 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1854 -> 558[label="",style="dashed", color="red", weight=0]; 1854[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1854 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1854 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1855 -> 559[label="",style="dashed", color="red", weight=0]; 1855[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1855 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1855 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1856 -> 560[label="",style="dashed", color="red", weight=0]; 1856[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1856 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1856 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1857[label="xuu40000",fontsize=16,color="green",shape="box"];1858[label="xuu3000",fontsize=16,color="green",shape="box"];1859[label="xuu40000",fontsize=16,color="green",shape="box"];1860[label="xuu3000",fontsize=16,color="green",shape="box"];1861[label="xuu40000",fontsize=16,color="green",shape="box"];1862[label="xuu3000",fontsize=16,color="green",shape="box"];1863[label="xuu40000",fontsize=16,color="green",shape="box"];1864[label="xuu3000",fontsize=16,color="green",shape="box"];1865[label="xuu40000",fontsize=16,color="green",shape="box"];1866[label="xuu3000",fontsize=16,color="green",shape="box"];1867[label="xuu40000",fontsize=16,color="green",shape="box"];1868[label="xuu3000",fontsize=16,color="green",shape="box"];1869[label="xuu40000",fontsize=16,color="green",shape="box"];1870[label="xuu3000",fontsize=16,color="green",shape="box"];1871[label="xuu40000",fontsize=16,color="green",shape="box"];1872[label="xuu3000",fontsize=16,color="green",shape="box"];1873[label="xuu40000",fontsize=16,color="green",shape="box"];1874[label="xuu3000",fontsize=16,color="green",shape="box"];1875[label="xuu40000",fontsize=16,color="green",shape="box"];1876[label="xuu3000",fontsize=16,color="green",shape="box"];1877[label="xuu40000",fontsize=16,color="green",shape="box"];1878[label="xuu3000",fontsize=16,color="green",shape="box"];1879[label="xuu40000",fontsize=16,color="green",shape="box"];1880[label="xuu3000",fontsize=16,color="green",shape="box"];1881[label="xuu40000",fontsize=16,color="green",shape="box"];1882[label="xuu3000",fontsize=16,color="green",shape="box"];1883[label="xuu40000",fontsize=16,color="green",shape="box"];1884[label="xuu3000",fontsize=16,color="green",shape="box"];1885[label="xuu40000",fontsize=16,color="green",shape="box"];1886[label="xuu3000",fontsize=16,color="green",shape="box"];1887[label="xuu40000",fontsize=16,color="green",shape="box"];1888[label="xuu3000",fontsize=16,color="green",shape="box"];1889[label="xuu40000",fontsize=16,color="green",shape="box"];1890[label="xuu3000",fontsize=16,color="green",shape="box"];1891[label="xuu40000",fontsize=16,color="green",shape="box"];1892[label="xuu3000",fontsize=16,color="green",shape="box"];1893[label="xuu40000",fontsize=16,color="green",shape="box"];1894[label="xuu3000",fontsize=16,color="green",shape="box"];1895[label="xuu40000",fontsize=16,color="green",shape="box"];1896[label="xuu3000",fontsize=16,color="green",shape="box"];1897[label="xuu40000",fontsize=16,color="green",shape="box"];1898[label="xuu3000",fontsize=16,color="green",shape="box"];1899[label="xuu40000",fontsize=16,color="green",shape="box"];1900[label="xuu3000",fontsize=16,color="green",shape="box"];1901[label="xuu40000",fontsize=16,color="green",shape="box"];1902[label="xuu3000",fontsize=16,color="green",shape="box"];1903[label="xuu40000",fontsize=16,color="green",shape="box"];1904[label="xuu3000",fontsize=16,color="green",shape="box"];1905[label="xuu40000",fontsize=16,color="green",shape="box"];1906[label="xuu3000",fontsize=16,color="green",shape="box"];1907[label="xuu40000",fontsize=16,color="green",shape="box"];1908[label="xuu3000",fontsize=16,color="green",shape="box"];1909[label="xuu40000",fontsize=16,color="green",shape="box"];1910[label="xuu3000",fontsize=16,color="green",shape="box"];1911[label="xuu40000",fontsize=16,color="green",shape="box"];1912[label="xuu3000",fontsize=16,color="green",shape="box"];1913[label="xuu40000",fontsize=16,color="green",shape="box"];1914[label="xuu3000",fontsize=16,color="green",shape="box"];1915[label="xuu40000",fontsize=16,color="green",shape="box"];1916[label="xuu3000",fontsize=16,color="green",shape="box"];1917[label="xuu40000",fontsize=16,color="green",shape="box"];1918[label="xuu3000",fontsize=16,color="green",shape="box"];1919[label="xuu40000",fontsize=16,color="green",shape="box"];1920[label="xuu3000",fontsize=16,color="green",shape="box"];1921[label="xuu40000",fontsize=16,color="green",shape="box"];1922[label="xuu3000",fontsize=16,color="green",shape="box"];1923[label="xuu40000",fontsize=16,color="green",shape="box"];1924[label="xuu3000",fontsize=16,color="green",shape="box"];1925[label="xuu40000",fontsize=16,color="green",shape="box"];1926[label="xuu3000",fontsize=16,color="green",shape="box"];1927[label="xuu40000",fontsize=16,color="green",shape="box"];1928[label="xuu3000",fontsize=16,color="green",shape="box"];1929[label="xuu40000",fontsize=16,color="green",shape="box"];1930[label="xuu3000",fontsize=16,color="green",shape="box"];1931[label="xuu40000",fontsize=16,color="green",shape="box"];1932[label="xuu3000",fontsize=16,color="green",shape="box"];1933[label="xuu40000",fontsize=16,color="green",shape="box"];1934[label="xuu3000",fontsize=16,color="green",shape="box"];1935[label="xuu40000",fontsize=16,color="green",shape="box"];1936[label="xuu3000",fontsize=16,color="green",shape="box"];1937[label="xuu40000",fontsize=16,color="green",shape="box"];1938[label="xuu3000",fontsize=16,color="green",shape="box"];1939[label="xuu40000",fontsize=16,color="green",shape="box"];1940[label="xuu3000",fontsize=16,color="green",shape="box"];1941[label="xuu40002 == xuu3002",fontsize=16,color="blue",shape="box"];3801[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3801[label="",style="solid", color="blue", weight=9]; 3801 -> 2145[label="",style="solid", color="blue", weight=3]; 3802[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3802[label="",style="solid", color="blue", weight=9]; 3802 -> 2146[label="",style="solid", color="blue", weight=3]; 3803[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3803[label="",style="solid", color="blue", weight=9]; 3803 -> 2147[label="",style="solid", color="blue", weight=3]; 3804[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3804[label="",style="solid", color="blue", weight=9]; 3804 -> 2148[label="",style="solid", color="blue", weight=3]; 3805[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3805[label="",style="solid", color="blue", weight=9]; 3805 -> 2149[label="",style="solid", color="blue", weight=3]; 3806[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3806[label="",style="solid", color="blue", weight=9]; 3806 -> 2150[label="",style="solid", color="blue", weight=3]; 3807[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3807[label="",style="solid", color="blue", weight=9]; 3807 -> 2151[label="",style="solid", color="blue", weight=3]; 3808[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3808[label="",style="solid", color="blue", weight=9]; 3808 -> 2152[label="",style="solid", color="blue", weight=3]; 3809[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3809[label="",style="solid", color="blue", weight=9]; 3809 -> 2153[label="",style="solid", color="blue", weight=3]; 3810[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3810[label="",style="solid", color="blue", weight=9]; 3810 -> 2154[label="",style="solid", color="blue", weight=3]; 3811[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3811[label="",style="solid", color="blue", weight=9]; 3811 -> 2155[label="",style="solid", color="blue", weight=3]; 3812[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3812[label="",style="solid", color="blue", weight=9]; 3812 -> 2156[label="",style="solid", color="blue", weight=3]; 3813[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3813[label="",style="solid", color="blue", weight=9]; 3813 -> 2157[label="",style="solid", color="blue", weight=3]; 3814[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3814[label="",style="solid", color="blue", weight=9]; 3814 -> 2158[label="",style="solid", color="blue", weight=3]; 1942[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3815[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3815[label="",style="solid", color="blue", weight=9]; 3815 -> 2159[label="",style="solid", color="blue", weight=3]; 3816[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3816[label="",style="solid", color="blue", weight=9]; 3816 -> 2160[label="",style="solid", color="blue", weight=3]; 3817[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3817[label="",style="solid", color="blue", weight=9]; 3817 -> 2161[label="",style="solid", color="blue", weight=3]; 3818[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3818[label="",style="solid", color="blue", weight=9]; 3818 -> 2162[label="",style="solid", color="blue", weight=3]; 3819[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3819[label="",style="solid", color="blue", weight=9]; 3819 -> 2163[label="",style="solid", color="blue", weight=3]; 3820[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3820[label="",style="solid", color="blue", weight=9]; 3820 -> 2164[label="",style="solid", color="blue", weight=3]; 3821[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3821[label="",style="solid", color="blue", weight=9]; 3821 -> 2165[label="",style="solid", color="blue", weight=3]; 3822[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3822[label="",style="solid", color="blue", weight=9]; 3822 -> 2166[label="",style="solid", color="blue", weight=3]; 3823[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3823[label="",style="solid", color="blue", weight=9]; 3823 -> 2167[label="",style="solid", color="blue", weight=3]; 3824[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3824[label="",style="solid", color="blue", weight=9]; 3824 -> 2168[label="",style="solid", color="blue", weight=3]; 3825[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3825[label="",style="solid", color="blue", weight=9]; 3825 -> 2169[label="",style="solid", color="blue", weight=3]; 3826[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3826[label="",style="solid", color="blue", weight=9]; 3826 -> 2170[label="",style="solid", color="blue", weight=3]; 3827[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3827[label="",style="solid", color="blue", weight=9]; 3827 -> 2171[label="",style="solid", color="blue", weight=3]; 3828[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3828[label="",style="solid", color="blue", weight=9]; 3828 -> 2172[label="",style="solid", color="blue", weight=3]; 1943 -> 547[label="",style="dashed", color="red", weight=0]; 1943[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1943 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1943 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1944 -> 548[label="",style="dashed", color="red", weight=0]; 1944[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1944 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1944 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1945 -> 549[label="",style="dashed", color="red", weight=0]; 1945[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1945 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1945 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1946 -> 550[label="",style="dashed", color="red", weight=0]; 1946[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1946 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1947 -> 551[label="",style="dashed", color="red", weight=0]; 1947[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1947 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1948 -> 552[label="",style="dashed", color="red", weight=0]; 1948[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1948 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1948 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1949 -> 553[label="",style="dashed", color="red", weight=0]; 1949[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1949 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1949 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1950 -> 554[label="",style="dashed", color="red", weight=0]; 1950[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1950 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1951 -> 555[label="",style="dashed", color="red", weight=0]; 1951[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1951 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1951 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1952 -> 556[label="",style="dashed", color="red", weight=0]; 1952[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1952 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1953 -> 557[label="",style="dashed", color="red", weight=0]; 1953[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1953 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1953 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1954 -> 558[label="",style="dashed", color="red", weight=0]; 1954[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1954 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1954 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1955 -> 559[label="",style="dashed", color="red", weight=0]; 1955[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1955 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1955 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1956 -> 560[label="",style="dashed", color="red", weight=0]; 1956[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1956 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1956 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1957[label="primEqNat (Succ xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];3829[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1957 -> 3829[label="",style="solid", color="burlywood", weight=9]; 3829 -> 2201[label="",style="solid", color="burlywood", weight=3]; 3830[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1957 -> 3830[label="",style="solid", color="burlywood", weight=9]; 3830 -> 2202[label="",style="solid", color="burlywood", weight=3]; 1958[label="primEqNat Zero xuu3000",fontsize=16,color="burlywood",shape="box"];3831[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3831[label="",style="solid", color="burlywood", weight=9]; 3831 -> 2203[label="",style="solid", color="burlywood", weight=3]; 3832[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3832[label="",style="solid", color="burlywood", weight=9]; 3832 -> 2204[label="",style="solid", color="burlywood", weight=3]; 1959 -> 398[label="",style="dashed", color="red", weight=0]; 1959[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];1959 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1960 -> 398[label="",style="dashed", color="red", weight=0]; 1960[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];1960 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1960 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1961 -> 547[label="",style="dashed", color="red", weight=0]; 1961[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1961 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1962 -> 548[label="",style="dashed", color="red", weight=0]; 1962[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1962 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1963 -> 549[label="",style="dashed", color="red", weight=0]; 1963[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1963 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1964 -> 550[label="",style="dashed", color="red", weight=0]; 1964[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1964 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1965 -> 551[label="",style="dashed", color="red", weight=0]; 1965[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1965 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1966 -> 552[label="",style="dashed", color="red", weight=0]; 1966[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1966 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1967 -> 553[label="",style="dashed", color="red", weight=0]; 1967[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1967 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1968 -> 554[label="",style="dashed", color="red", weight=0]; 1968[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1968 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1969 -> 555[label="",style="dashed", color="red", weight=0]; 1969[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1969 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1970 -> 556[label="",style="dashed", color="red", weight=0]; 1970[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1970 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1971 -> 557[label="",style="dashed", color="red", weight=0]; 1971[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1971 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1972 -> 558[label="",style="dashed", color="red", weight=0]; 1972[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1972 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1973 -> 559[label="",style="dashed", color="red", weight=0]; 1973[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1973 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1974 -> 560[label="",style="dashed", color="red", weight=0]; 1974[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1974 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1975 -> 547[label="",style="dashed", color="red", weight=0]; 1975[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1975 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1976 -> 548[label="",style="dashed", color="red", weight=0]; 1976[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1976 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1977 -> 549[label="",style="dashed", color="red", weight=0]; 1977[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1977 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1978 -> 550[label="",style="dashed", color="red", weight=0]; 1978[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1978 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1979 -> 551[label="",style="dashed", color="red", weight=0]; 1979[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1979 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1980 -> 552[label="",style="dashed", color="red", weight=0]; 1980[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1980 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1981 -> 553[label="",style="dashed", color="red", weight=0]; 1981[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1981 -> 2249[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2250[label="",style="dashed", color="magenta", weight=3]; 1982 -> 554[label="",style="dashed", color="red", weight=0]; 1982[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1982 -> 2251[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1983 -> 555[label="",style="dashed", color="red", weight=0]; 1983[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1983 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1984 -> 556[label="",style="dashed", color="red", weight=0]; 1984[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1984 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1985 -> 557[label="",style="dashed", color="red", weight=0]; 1985[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1985 -> 2257[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2258[label="",style="dashed", color="magenta", weight=3]; 1986 -> 558[label="",style="dashed", color="red", weight=0]; 1986[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1986 -> 2259[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1987 -> 559[label="",style="dashed", color="red", weight=0]; 1987[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1987 -> 2261[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2262[label="",style="dashed", color="magenta", weight=3]; 1988 -> 560[label="",style="dashed", color="red", weight=0]; 1988[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1988 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1989 -> 547[label="",style="dashed", color="red", weight=0]; 1989[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1989 -> 2265[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2266[label="",style="dashed", color="magenta", weight=3]; 1990 -> 553[label="",style="dashed", color="red", weight=0]; 1990[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1990 -> 2267[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2268[label="",style="dashed", color="magenta", weight=3]; 1991 -> 547[label="",style="dashed", color="red", weight=0]; 1991[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1991 -> 2269[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2270[label="",style="dashed", color="magenta", weight=3]; 1992 -> 553[label="",style="dashed", color="red", weight=0]; 1992[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1992 -> 2271[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2272[label="",style="dashed", color="magenta", weight=3]; 1993 -> 398[label="",style="dashed", color="red", weight=0]; 1993[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];1993 -> 2273[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2274[label="",style="dashed", color="magenta", weight=3]; 1994 -> 398[label="",style="dashed", color="red", weight=0]; 1994[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];1994 -> 2275[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2276[label="",style="dashed", color="magenta", weight=3]; 1996 -> 179[label="",style="dashed", color="red", weight=0]; 1996[label="compare xuu66 xuu67",fontsize=16,color="magenta"];1996 -> 2277[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2278[label="",style="dashed", color="magenta", weight=3]; 1995[label="xuu191 /= GT",fontsize=16,color="black",shape="triangle"];1995 -> 2279[label="",style="solid", color="black", weight=3]; 1997 -> 180[label="",style="dashed", color="red", weight=0]; 1997[label="compare xuu66 xuu67",fontsize=16,color="magenta"];1997 -> 2280[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2281[label="",style="dashed", color="magenta", weight=3]; 1998 -> 181[label="",style="dashed", color="red", weight=0]; 1998[label="compare xuu66 xuu67",fontsize=16,color="magenta"];1998 -> 2282[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2004[label="(xuu660,xuu661) <= (xuu670,xuu671)",fontsize=16,color="black",shape="box"];2004 -> 2284[label="",style="solid", color="black", weight=3]; 2005[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2005 -> 2285[label="",style="solid", color="black", weight=3]; 2006[label="Nothing <= Just xuu670",fontsize=16,color="black",shape="box"];2006 -> 2286[label="",style="solid", color="black", weight=3]; 2007[label="Just xuu660 <= Nothing",fontsize=16,color="black",shape="box"];2007 -> 2287[label="",style="solid", color="black", weight=3]; 2008[label="Just xuu660 <= Just xuu670",fontsize=16,color="black",shape="box"];2008 -> 2288[label="",style="solid", color="black", weight=3]; 1999 -> 184[label="",style="dashed", color="red", weight=0]; 1999[label="compare xuu66 xuu67",fontsize=16,color="magenta"];1999 -> 2289[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2000 -> 185[label="",style="dashed", color="red", weight=0]; 2000[label="compare xuu66 xuu67",fontsize=16,color="magenta"];2000 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2009[label="Left xuu660 <= Left xuu670",fontsize=16,color="black",shape="box"];2009 -> 2293[label="",style="solid", color="black", weight=3]; 2010[label="Left xuu660 <= Right xuu670",fontsize=16,color="black",shape="box"];2010 -> 2294[label="",style="solid", color="black", weight=3]; 2011[label="Right xuu660 <= Left xuu670",fontsize=16,color="black",shape="box"];2011 -> 2295[label="",style="solid", color="black", weight=3]; 2012[label="Right xuu660 <= Right xuu670",fontsize=16,color="black",shape="box"];2012 -> 2296[label="",style="solid", color="black", weight=3]; 2001 -> 187[label="",style="dashed", color="red", weight=0]; 2001[label="compare xuu66 xuu67",fontsize=16,color="magenta"];2001 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2013[label="LT <= LT",fontsize=16,color="black",shape="box"];2013 -> 2299[label="",style="solid", color="black", weight=3]; 2014[label="LT <= EQ",fontsize=16,color="black",shape="box"];2014 -> 2300[label="",style="solid", color="black", weight=3]; 2015[label="LT <= GT",fontsize=16,color="black",shape="box"];2015 -> 2301[label="",style="solid", color="black", weight=3]; 2016[label="EQ <= LT",fontsize=16,color="black",shape="box"];2016 -> 2302[label="",style="solid", color="black", weight=3]; 2017[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2017 -> 2303[label="",style="solid", color="black", weight=3]; 2018[label="EQ <= GT",fontsize=16,color="black",shape="box"];2018 -> 2304[label="",style="solid", color="black", weight=3]; 2019[label="GT <= LT",fontsize=16,color="black",shape="box"];2019 -> 2305[label="",style="solid", color="black", weight=3]; 2020[label="GT <= EQ",fontsize=16,color="black",shape="box"];2020 -> 2306[label="",style="solid", color="black", weight=3]; 2021[label="GT <= GT",fontsize=16,color="black",shape="box"];2021 -> 2307[label="",style="solid", color="black", weight=3]; 2022[label="False <= False",fontsize=16,color="black",shape="box"];2022 -> 2308[label="",style="solid", color="black", weight=3]; 2023[label="False <= True",fontsize=16,color="black",shape="box"];2023 -> 2309[label="",style="solid", color="black", weight=3]; 2024[label="True <= False",fontsize=16,color="black",shape="box"];2024 -> 2310[label="",style="solid", color="black", weight=3]; 2025[label="True <= True",fontsize=16,color="black",shape="box"];2025 -> 2311[label="",style="solid", color="black", weight=3]; 2026[label="(xuu660,xuu661,xuu662) <= (xuu670,xuu671,xuu672)",fontsize=16,color="black",shape="box"];2026 -> 2312[label="",style="solid", color="black", weight=3]; 2002 -> 191[label="",style="dashed", color="red", weight=0]; 2002[label="compare xuu66 xuu67",fontsize=16,color="magenta"];2002 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2003 -> 192[label="",style="dashed", color="red", weight=0]; 2003[label="compare xuu66 xuu67",fontsize=16,color="magenta"];2003 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2027[label="GT",fontsize=16,color="green",shape="box"];2028[label="GT",fontsize=16,color="green",shape="box"];2029[label="GT",fontsize=16,color="green",shape="box"];2037[label="xuu93 <= xuu96",fontsize=16,color="blue",shape="box"];3833[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3833[label="",style="solid", color="blue", weight=9]; 3833 -> 2317[label="",style="solid", color="blue", weight=3]; 3834[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3834[label="",style="solid", color="blue", weight=9]; 3834 -> 2318[label="",style="solid", color="blue", weight=3]; 3835[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3835[label="",style="solid", color="blue", weight=9]; 3835 -> 2319[label="",style="solid", color="blue", weight=3]; 3836[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3836[label="",style="solid", color="blue", weight=9]; 3836 -> 2320[label="",style="solid", color="blue", weight=3]; 3837[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3837[label="",style="solid", color="blue", weight=9]; 3837 -> 2321[label="",style="solid", color="blue", weight=3]; 3838[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3838[label="",style="solid", color="blue", weight=9]; 3838 -> 2322[label="",style="solid", color="blue", weight=3]; 3839[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3839[label="",style="solid", color="blue", weight=9]; 3839 -> 2323[label="",style="solid", color="blue", weight=3]; 3840[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3840[label="",style="solid", color="blue", weight=9]; 3840 -> 2324[label="",style="solid", color="blue", weight=3]; 3841[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3841[label="",style="solid", color="blue", weight=9]; 3841 -> 2325[label="",style="solid", color="blue", weight=3]; 3842[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3842[label="",style="solid", color="blue", weight=9]; 3842 -> 2326[label="",style="solid", color="blue", weight=3]; 3843[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3843[label="",style="solid", color="blue", weight=9]; 3843 -> 2327[label="",style="solid", color="blue", weight=3]; 3844[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3844[label="",style="solid", color="blue", weight=9]; 3844 -> 2328[label="",style="solid", color="blue", weight=3]; 3845[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3845[label="",style="solid", color="blue", weight=9]; 3845 -> 2329[label="",style="solid", color="blue", weight=3]; 3846[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3846[label="",style="solid", color="blue", weight=9]; 3846 -> 2330[label="",style="solid", color="blue", weight=3]; 2038[label="xuu92 == xuu95",fontsize=16,color="blue",shape="box"];3847[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3847[label="",style="solid", color="blue", weight=9]; 3847 -> 2331[label="",style="solid", color="blue", weight=3]; 3848[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3848[label="",style="solid", color="blue", weight=9]; 3848 -> 2332[label="",style="solid", color="blue", weight=3]; 3849[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3849[label="",style="solid", color="blue", weight=9]; 3849 -> 2333[label="",style="solid", color="blue", weight=3]; 3850[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3850[label="",style="solid", color="blue", weight=9]; 3850 -> 2334[label="",style="solid", color="blue", weight=3]; 3851[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3851[label="",style="solid", color="blue", weight=9]; 3851 -> 2335[label="",style="solid", color="blue", weight=3]; 3852[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3852[label="",style="solid", color="blue", weight=9]; 3852 -> 2336[label="",style="solid", color="blue", weight=3]; 3853[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3853[label="",style="solid", color="blue", weight=9]; 3853 -> 2337[label="",style="solid", color="blue", weight=3]; 3854[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3854[label="",style="solid", color="blue", weight=9]; 3854 -> 2338[label="",style="solid", color="blue", weight=3]; 3855[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3855[label="",style="solid", color="blue", weight=9]; 3855 -> 2339[label="",style="solid", color="blue", weight=3]; 3856[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3856[label="",style="solid", color="blue", weight=9]; 3856 -> 2340[label="",style="solid", color="blue", weight=3]; 3857[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3857[label="",style="solid", color="blue", weight=9]; 3857 -> 2341[label="",style="solid", color="blue", weight=3]; 3858[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3858[label="",style="solid", color="blue", weight=9]; 3858 -> 2342[label="",style="solid", color="blue", weight=3]; 3859[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3859[label="",style="solid", color="blue", weight=9]; 3859 -> 2343[label="",style="solid", color="blue", weight=3]; 3860[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3860[label="",style="solid", color="blue", weight=9]; 3860 -> 2344[label="",style="solid", color="blue", weight=3]; 2039 -> 33[label="",style="dashed", color="red", weight=0]; 2039[label="xuu92 < xuu95",fontsize=16,color="magenta"];2039 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2039 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2040 -> 34[label="",style="dashed", color="red", weight=0]; 2040[label="xuu92 < xuu95",fontsize=16,color="magenta"];2040 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2040 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2041 -> 35[label="",style="dashed", color="red", weight=0]; 2041[label="xuu92 < xuu95",fontsize=16,color="magenta"];2041 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2041 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2042 -> 36[label="",style="dashed", color="red", weight=0]; 2042[label="xuu92 < xuu95",fontsize=16,color="magenta"];2042 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2042 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2043 -> 37[label="",style="dashed", color="red", weight=0]; 2043[label="xuu92 < xuu95",fontsize=16,color="magenta"];2043 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2043 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2044 -> 38[label="",style="dashed", color="red", weight=0]; 2044[label="xuu92 < xuu95",fontsize=16,color="magenta"];2044 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2044 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2045 -> 39[label="",style="dashed", color="red", weight=0]; 2045[label="xuu92 < xuu95",fontsize=16,color="magenta"];2045 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2045 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2046 -> 40[label="",style="dashed", color="red", weight=0]; 2046[label="xuu92 < xuu95",fontsize=16,color="magenta"];2046 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2046 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2047 -> 41[label="",style="dashed", color="red", weight=0]; 2047[label="xuu92 < xuu95",fontsize=16,color="magenta"];2047 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2048 -> 42[label="",style="dashed", color="red", weight=0]; 2048[label="xuu92 < xuu95",fontsize=16,color="magenta"];2048 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2048 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2049 -> 43[label="",style="dashed", color="red", weight=0]; 2049[label="xuu92 < xuu95",fontsize=16,color="magenta"];2049 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2049 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2050 -> 44[label="",style="dashed", color="red", weight=0]; 2050[label="xuu92 < xuu95",fontsize=16,color="magenta"];2050 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2051 -> 45[label="",style="dashed", color="red", weight=0]; 2051[label="xuu92 < xuu95",fontsize=16,color="magenta"];2051 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2052 -> 46[label="",style="dashed", color="red", weight=0]; 2052[label="xuu92 < xuu95",fontsize=16,color="magenta"];2052 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2053[label="False || xuu196",fontsize=16,color="black",shape="box"];2053 -> 2373[label="",style="solid", color="black", weight=3]; 2054[label="True || xuu196",fontsize=16,color="black",shape="box"];2054 -> 2374[label="",style="solid", color="black", weight=3]; 2055[label="xuu91",fontsize=16,color="green",shape="box"];2056[label="xuu94",fontsize=16,color="green",shape="box"];2057[label="xuu91",fontsize=16,color="green",shape="box"];2058[label="xuu94",fontsize=16,color="green",shape="box"];2059[label="xuu91",fontsize=16,color="green",shape="box"];2060[label="xuu94",fontsize=16,color="green",shape="box"];2061[label="xuu91",fontsize=16,color="green",shape="box"];2062[label="xuu94",fontsize=16,color="green",shape="box"];2063[label="xuu91",fontsize=16,color="green",shape="box"];2064[label="xuu94",fontsize=16,color="green",shape="box"];2065[label="xuu91",fontsize=16,color="green",shape="box"];2066[label="xuu94",fontsize=16,color="green",shape="box"];2067[label="xuu91",fontsize=16,color="green",shape="box"];2068[label="xuu94",fontsize=16,color="green",shape="box"];2069[label="xuu91",fontsize=16,color="green",shape="box"];2070[label="xuu94",fontsize=16,color="green",shape="box"];2071[label="xuu91",fontsize=16,color="green",shape="box"];2072[label="xuu94",fontsize=16,color="green",shape="box"];2073[label="xuu91",fontsize=16,color="green",shape="box"];2074[label="xuu94",fontsize=16,color="green",shape="box"];2075[label="xuu91",fontsize=16,color="green",shape="box"];2076[label="xuu94",fontsize=16,color="green",shape="box"];2077[label="xuu91",fontsize=16,color="green",shape="box"];2078[label="xuu94",fontsize=16,color="green",shape="box"];2079[label="xuu91",fontsize=16,color="green",shape="box"];2080[label="xuu94",fontsize=16,color="green",shape="box"];2081[label="xuu91",fontsize=16,color="green",shape="box"];2082[label="xuu94",fontsize=16,color="green",shape="box"];2083[label="compare1 (xuu178,xuu179,xuu180) (xuu181,xuu182,xuu183) False",fontsize=16,color="black",shape="box"];2083 -> 2375[label="",style="solid", color="black", weight=3]; 2084[label="compare1 (xuu178,xuu179,xuu180) (xuu181,xuu182,xuu183) True",fontsize=16,color="black",shape="box"];2084 -> 2376[label="",style="solid", color="black", weight=3]; 2085[label="True",fontsize=16,color="green",shape="box"];2086[label="Succ (Succ (primPlusNat xuu39200 xuu12600))",fontsize=16,color="green",shape="box"];2086 -> 2377[label="",style="dashed", color="green", weight=3]; 2087[label="Succ xuu39200",fontsize=16,color="green",shape="box"];2088[label="Succ xuu12600",fontsize=16,color="green",shape="box"];2089[label="Zero",fontsize=16,color="green",shape="box"];2090[label="xuu12600",fontsize=16,color="green",shape="box"];2091[label="xuu39200",fontsize=16,color="green",shape="box"];2092[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="box"];2092 -> 2378[label="",style="solid", color="black", weight=3]; 2093[label="error []",fontsize=16,color="red",shape="box"];2094[label="FiniteMap.mkBalBranch6MkBalBranch12 xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394)",fontsize=16,color="black",shape="box"];2094 -> 2379[label="",style="solid", color="black", weight=3]; 2095 -> 898[label="",style="dashed", color="red", weight=0]; 2095[label="FiniteMap.sizeFM xuu183",fontsize=16,color="magenta"];2095 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2096 -> 398[label="",style="dashed", color="red", weight=0]; 2096[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu184",fontsize=16,color="magenta"];2096 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2097[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu180 xuu181 xuu182 xuu183 xuu184 False",fontsize=16,color="black",shape="box"];2097 -> 2383[label="",style="solid", color="black", weight=3]; 2098[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu180 xuu181 xuu182 xuu183 xuu184 True",fontsize=16,color="black",shape="box"];2098 -> 2384[label="",style="solid", color="black", weight=3]; 2099[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2100[label="FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18",fontsize=16,color="black",shape="box"];2100 -> 2385[label="",style="solid", color="black", weight=3]; 2101 -> 1205[label="",style="dashed", color="red", weight=0]; 2101[label="primMulNat xuu400000 (Succ xuu30100)",fontsize=16,color="magenta"];2101 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2102[label="Succ xuu30100",fontsize=16,color="green",shape="box"];2103[label="compare0 (xuu163,xuu164) (xuu165,xuu166) otherwise",fontsize=16,color="black",shape="box"];2103 -> 2388[label="",style="solid", color="black", weight=3]; 2104[label="LT",fontsize=16,color="green",shape="box"];2105 -> 1616[label="",style="dashed", color="red", weight=0]; 2105[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2105 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2106[label="False",fontsize=16,color="green",shape="box"];2107[label="False",fontsize=16,color="green",shape="box"];2108[label="True",fontsize=16,color="green",shape="box"];2109[label="False",fontsize=16,color="green",shape="box"];2110[label="True",fontsize=16,color="green",shape="box"];2111 -> 1616[label="",style="dashed", color="red", weight=0]; 2111[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2111 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2112[label="False",fontsize=16,color="green",shape="box"];2113[label="False",fontsize=16,color="green",shape="box"];2114[label="True",fontsize=16,color="green",shape="box"];2115[label="False",fontsize=16,color="green",shape="box"];2116[label="True",fontsize=16,color="green",shape="box"];2117[label="xuu40000",fontsize=16,color="green",shape="box"];2118[label="xuu3000",fontsize=16,color="green",shape="box"];2119[label="xuu40000",fontsize=16,color="green",shape="box"];2120[label="xuu3000",fontsize=16,color="green",shape="box"];2121[label="xuu40000",fontsize=16,color="green",shape="box"];2122[label="xuu3000",fontsize=16,color="green",shape="box"];2123[label="xuu40000",fontsize=16,color="green",shape="box"];2124[label="xuu3000",fontsize=16,color="green",shape="box"];2125[label="xuu40000",fontsize=16,color="green",shape="box"];2126[label="xuu3000",fontsize=16,color="green",shape="box"];2127[label="xuu40000",fontsize=16,color="green",shape="box"];2128[label="xuu3000",fontsize=16,color="green",shape="box"];2129[label="xuu40000",fontsize=16,color="green",shape="box"];2130[label="xuu3000",fontsize=16,color="green",shape="box"];2131[label="xuu40000",fontsize=16,color="green",shape="box"];2132[label="xuu3000",fontsize=16,color="green",shape="box"];2133[label="xuu40000",fontsize=16,color="green",shape="box"];2134[label="xuu3000",fontsize=16,color="green",shape="box"];2135[label="xuu40000",fontsize=16,color="green",shape="box"];2136[label="xuu3000",fontsize=16,color="green",shape="box"];2137[label="xuu40000",fontsize=16,color="green",shape="box"];2138[label="xuu3000",fontsize=16,color="green",shape="box"];2139[label="xuu40000",fontsize=16,color="green",shape="box"];2140[label="xuu3000",fontsize=16,color="green",shape="box"];2141[label="xuu40000",fontsize=16,color="green",shape="box"];2142[label="xuu3000",fontsize=16,color="green",shape="box"];2143[label="xuu40000",fontsize=16,color="green",shape="box"];2144[label="xuu3000",fontsize=16,color="green",shape="box"];2145 -> 547[label="",style="dashed", color="red", weight=0]; 2145[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2145 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2145 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2146 -> 548[label="",style="dashed", color="red", weight=0]; 2146[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2146 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2146 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2147 -> 549[label="",style="dashed", color="red", weight=0]; 2147[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2147 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2147 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2148 -> 550[label="",style="dashed", color="red", weight=0]; 2148[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2148 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2148 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2149 -> 551[label="",style="dashed", color="red", weight=0]; 2149[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2149 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2150 -> 552[label="",style="dashed", color="red", weight=0]; 2150[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2150 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2150 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2151 -> 553[label="",style="dashed", color="red", weight=0]; 2151[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2151 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2151 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2152 -> 554[label="",style="dashed", color="red", weight=0]; 2152[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2152 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2152 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2153 -> 555[label="",style="dashed", color="red", weight=0]; 2153[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2153 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2153 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2154 -> 556[label="",style="dashed", color="red", weight=0]; 2154[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2154 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2154 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2155 -> 557[label="",style="dashed", color="red", weight=0]; 2155[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2155 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2156 -> 558[label="",style="dashed", color="red", weight=0]; 2156[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2156 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2156 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2157 -> 559[label="",style="dashed", color="red", weight=0]; 2157[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2157 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2158 -> 560[label="",style="dashed", color="red", weight=0]; 2158[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2158 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2159 -> 547[label="",style="dashed", color="red", weight=0]; 2159[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2159 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2160 -> 548[label="",style="dashed", color="red", weight=0]; 2160[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2160 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2161 -> 549[label="",style="dashed", color="red", weight=0]; 2161[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2161 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2162 -> 550[label="",style="dashed", color="red", weight=0]; 2162[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2162 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2163 -> 551[label="",style="dashed", color="red", weight=0]; 2163[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2163 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2164 -> 552[label="",style="dashed", color="red", weight=0]; 2164[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2164 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2164 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2165 -> 553[label="",style="dashed", color="red", weight=0]; 2165[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2165 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2166 -> 554[label="",style="dashed", color="red", weight=0]; 2166[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2166 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2167 -> 555[label="",style="dashed", color="red", weight=0]; 2167[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2167 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2168 -> 556[label="",style="dashed", color="red", weight=0]; 2168[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2168 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2169 -> 557[label="",style="dashed", color="red", weight=0]; 2169[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2169 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2170 -> 558[label="",style="dashed", color="red", weight=0]; 2170[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2170 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2171 -> 559[label="",style="dashed", color="red", weight=0]; 2171[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2171 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2172 -> 560[label="",style="dashed", color="red", weight=0]; 2172[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2172 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2173[label="xuu40000",fontsize=16,color="green",shape="box"];2174[label="xuu3000",fontsize=16,color="green",shape="box"];2175[label="xuu40000",fontsize=16,color="green",shape="box"];2176[label="xuu3000",fontsize=16,color="green",shape="box"];2177[label="xuu40000",fontsize=16,color="green",shape="box"];2178[label="xuu3000",fontsize=16,color="green",shape="box"];2179[label="xuu40000",fontsize=16,color="green",shape="box"];2180[label="xuu3000",fontsize=16,color="green",shape="box"];2181[label="xuu40000",fontsize=16,color="green",shape="box"];2182[label="xuu3000",fontsize=16,color="green",shape="box"];2183[label="xuu40000",fontsize=16,color="green",shape="box"];2184[label="xuu3000",fontsize=16,color="green",shape="box"];2185[label="xuu40000",fontsize=16,color="green",shape="box"];2186[label="xuu3000",fontsize=16,color="green",shape="box"];2187[label="xuu40000",fontsize=16,color="green",shape="box"];2188[label="xuu3000",fontsize=16,color="green",shape="box"];2189[label="xuu40000",fontsize=16,color="green",shape="box"];2190[label="xuu3000",fontsize=16,color="green",shape="box"];2191[label="xuu40000",fontsize=16,color="green",shape="box"];2192[label="xuu3000",fontsize=16,color="green",shape="box"];2193[label="xuu40000",fontsize=16,color="green",shape="box"];2194[label="xuu3000",fontsize=16,color="green",shape="box"];2195[label="xuu40000",fontsize=16,color="green",shape="box"];2196[label="xuu3000",fontsize=16,color="green",shape="box"];2197[label="xuu40000",fontsize=16,color="green",shape="box"];2198[label="xuu3000",fontsize=16,color="green",shape="box"];2199[label="xuu40000",fontsize=16,color="green",shape="box"];2200[label="xuu3000",fontsize=16,color="green",shape="box"];2201[label="primEqNat (Succ xuu400000) (Succ xuu30000)",fontsize=16,color="black",shape="box"];2201 -> 2449[label="",style="solid", color="black", weight=3]; 2202[label="primEqNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];2202 -> 2450[label="",style="solid", color="black", weight=3]; 2203[label="primEqNat Zero (Succ xuu30000)",fontsize=16,color="black",shape="box"];2203 -> 2451[label="",style="solid", color="black", weight=3]; 2204[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2204 -> 2452[label="",style="solid", color="black", weight=3]; 2205[label="xuu40000",fontsize=16,color="green",shape="box"];2206[label="xuu3001",fontsize=16,color="green",shape="box"];2207[label="xuu40001",fontsize=16,color="green",shape="box"];2208[label="xuu3000",fontsize=16,color="green",shape="box"];2209[label="xuu40001",fontsize=16,color="green",shape="box"];2210[label="xuu3001",fontsize=16,color="green",shape="box"];2211[label="xuu40001",fontsize=16,color="green",shape="box"];2212[label="xuu3001",fontsize=16,color="green",shape="box"];2213[label="xuu40001",fontsize=16,color="green",shape="box"];2214[label="xuu3001",fontsize=16,color="green",shape="box"];2215[label="xuu40001",fontsize=16,color="green",shape="box"];2216[label="xuu3001",fontsize=16,color="green",shape="box"];2217[label="xuu40001",fontsize=16,color="green",shape="box"];2218[label="xuu3001",fontsize=16,color="green",shape="box"];2219[label="xuu40001",fontsize=16,color="green",shape="box"];2220[label="xuu3001",fontsize=16,color="green",shape="box"];2221[label="xuu40001",fontsize=16,color="green",shape="box"];2222[label="xuu3001",fontsize=16,color="green",shape="box"];2223[label="xuu40001",fontsize=16,color="green",shape="box"];2224[label="xuu3001",fontsize=16,color="green",shape="box"];2225[label="xuu40001",fontsize=16,color="green",shape="box"];2226[label="xuu3001",fontsize=16,color="green",shape="box"];2227[label="xuu40001",fontsize=16,color="green",shape="box"];2228[label="xuu3001",fontsize=16,color="green",shape="box"];2229[label="xuu40001",fontsize=16,color="green",shape="box"];2230[label="xuu3001",fontsize=16,color="green",shape="box"];2231[label="xuu40001",fontsize=16,color="green",shape="box"];2232[label="xuu3001",fontsize=16,color="green",shape="box"];2233[label="xuu40001",fontsize=16,color="green",shape="box"];2234[label="xuu3001",fontsize=16,color="green",shape="box"];2235[label="xuu40001",fontsize=16,color="green",shape="box"];2236[label="xuu3001",fontsize=16,color="green",shape="box"];2237[label="xuu40000",fontsize=16,color="green",shape="box"];2238[label="xuu3000",fontsize=16,color="green",shape="box"];2239[label="xuu40000",fontsize=16,color="green",shape="box"];2240[label="xuu3000",fontsize=16,color="green",shape="box"];2241[label="xuu40000",fontsize=16,color="green",shape="box"];2242[label="xuu3000",fontsize=16,color="green",shape="box"];2243[label="xuu40000",fontsize=16,color="green",shape="box"];2244[label="xuu3000",fontsize=16,color="green",shape="box"];2245[label="xuu40000",fontsize=16,color="green",shape="box"];2246[label="xuu3000",fontsize=16,color="green",shape="box"];2247[label="xuu40000",fontsize=16,color="green",shape="box"];2248[label="xuu3000",fontsize=16,color="green",shape="box"];2249[label="xuu40000",fontsize=16,color="green",shape="box"];2250[label="xuu3000",fontsize=16,color="green",shape="box"];2251[label="xuu40000",fontsize=16,color="green",shape="box"];2252[label="xuu3000",fontsize=16,color="green",shape="box"];2253[label="xuu40000",fontsize=16,color="green",shape="box"];2254[label="xuu3000",fontsize=16,color="green",shape="box"];2255[label="xuu40000",fontsize=16,color="green",shape="box"];2256[label="xuu3000",fontsize=16,color="green",shape="box"];2257[label="xuu40000",fontsize=16,color="green",shape="box"];2258[label="xuu3000",fontsize=16,color="green",shape="box"];2259[label="xuu40000",fontsize=16,color="green",shape="box"];2260[label="xuu3000",fontsize=16,color="green",shape="box"];2261[label="xuu40000",fontsize=16,color="green",shape="box"];2262[label="xuu3000",fontsize=16,color="green",shape="box"];2263[label="xuu40000",fontsize=16,color="green",shape="box"];2264[label="xuu3000",fontsize=16,color="green",shape="box"];2265[label="xuu40001",fontsize=16,color="green",shape="box"];2266[label="xuu3001",fontsize=16,color="green",shape="box"];2267[label="xuu40001",fontsize=16,color="green",shape="box"];2268[label="xuu3001",fontsize=16,color="green",shape="box"];2269[label="xuu40000",fontsize=16,color="green",shape="box"];2270[label="xuu3000",fontsize=16,color="green",shape="box"];2271[label="xuu40000",fontsize=16,color="green",shape="box"];2272[label="xuu3000",fontsize=16,color="green",shape="box"];2273[label="xuu40000",fontsize=16,color="green",shape="box"];2274[label="xuu3001",fontsize=16,color="green",shape="box"];2275[label="xuu40001",fontsize=16,color="green",shape="box"];2276[label="xuu3000",fontsize=16,color="green",shape="box"];2277[label="xuu66",fontsize=16,color="green",shape="box"];2278[label="xuu67",fontsize=16,color="green",shape="box"];2279 -> 2453[label="",style="dashed", color="red", weight=0]; 2279[label="not (xuu191 == GT)",fontsize=16,color="magenta"];2279 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2280[label="xuu66",fontsize=16,color="green",shape="box"];2281[label="xuu67",fontsize=16,color="green",shape="box"];2282[label="xuu66",fontsize=16,color="green",shape="box"];2283[label="xuu67",fontsize=16,color="green",shape="box"];2284 -> 2032[label="",style="dashed", color="red", weight=0]; 2284[label="xuu660 < xuu670 || xuu660 == xuu670 && xuu661 <= xuu671",fontsize=16,color="magenta"];2284 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2285[label="True",fontsize=16,color="green",shape="box"];2286[label="True",fontsize=16,color="green",shape="box"];2287[label="False",fontsize=16,color="green",shape="box"];2288[label="xuu660 <= xuu670",fontsize=16,color="blue",shape="box"];3861[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3861[label="",style="solid", color="blue", weight=9]; 3861 -> 2457[label="",style="solid", color="blue", weight=3]; 3862[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3862[label="",style="solid", color="blue", weight=9]; 3862 -> 2458[label="",style="solid", color="blue", weight=3]; 3863[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3863[label="",style="solid", color="blue", weight=9]; 3863 -> 2459[label="",style="solid", color="blue", weight=3]; 3864[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3864[label="",style="solid", color="blue", weight=9]; 3864 -> 2460[label="",style="solid", color="blue", weight=3]; 3865[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3865[label="",style="solid", color="blue", weight=9]; 3865 -> 2461[label="",style="solid", color="blue", weight=3]; 3866[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3866[label="",style="solid", color="blue", weight=9]; 3866 -> 2462[label="",style="solid", color="blue", weight=3]; 3867[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3867[label="",style="solid", color="blue", weight=9]; 3867 -> 2463[label="",style="solid", color="blue", weight=3]; 3868[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3868[label="",style="solid", color="blue", weight=9]; 3868 -> 2464[label="",style="solid", color="blue", weight=3]; 3869[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3869[label="",style="solid", color="blue", weight=9]; 3869 -> 2465[label="",style="solid", color="blue", weight=3]; 3870[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3870[label="",style="solid", color="blue", weight=9]; 3870 -> 2466[label="",style="solid", color="blue", weight=3]; 3871[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3871[label="",style="solid", color="blue", weight=9]; 3871 -> 2467[label="",style="solid", color="blue", weight=3]; 3872[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3872[label="",style="solid", color="blue", weight=9]; 3872 -> 2468[label="",style="solid", color="blue", weight=3]; 3873[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3873[label="",style="solid", color="blue", weight=9]; 3873 -> 2469[label="",style="solid", color="blue", weight=3]; 3874[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3874[label="",style="solid", color="blue", weight=9]; 3874 -> 2470[label="",style="solid", color="blue", weight=3]; 2289[label="xuu66",fontsize=16,color="green",shape="box"];2290[label="xuu67",fontsize=16,color="green",shape="box"];2291[label="xuu66",fontsize=16,color="green",shape="box"];2292[label="xuu67",fontsize=16,color="green",shape="box"];2293[label="xuu660 <= xuu670",fontsize=16,color="blue",shape="box"];3875[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3875[label="",style="solid", color="blue", weight=9]; 3875 -> 2471[label="",style="solid", color="blue", weight=3]; 3876[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3876[label="",style="solid", color="blue", weight=9]; 3876 -> 2472[label="",style="solid", color="blue", weight=3]; 3877[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3877[label="",style="solid", color="blue", weight=9]; 3877 -> 2473[label="",style="solid", color="blue", weight=3]; 3878[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3878[label="",style="solid", color="blue", weight=9]; 3878 -> 2474[label="",style="solid", color="blue", weight=3]; 3879[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3879[label="",style="solid", color="blue", weight=9]; 3879 -> 2475[label="",style="solid", color="blue", weight=3]; 3880[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3880[label="",style="solid", color="blue", weight=9]; 3880 -> 2476[label="",style="solid", color="blue", weight=3]; 3881[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3881[label="",style="solid", color="blue", weight=9]; 3881 -> 2477[label="",style="solid", color="blue", weight=3]; 3882[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3882[label="",style="solid", color="blue", weight=9]; 3882 -> 2478[label="",style="solid", color="blue", weight=3]; 3883[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3883[label="",style="solid", color="blue", weight=9]; 3883 -> 2479[label="",style="solid", color="blue", weight=3]; 3884[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3884[label="",style="solid", color="blue", weight=9]; 3884 -> 2480[label="",style="solid", color="blue", weight=3]; 3885[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3885[label="",style="solid", color="blue", weight=9]; 3885 -> 2481[label="",style="solid", color="blue", weight=3]; 3886[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3886[label="",style="solid", color="blue", weight=9]; 3886 -> 2482[label="",style="solid", color="blue", weight=3]; 3887[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3887[label="",style="solid", color="blue", weight=9]; 3887 -> 2483[label="",style="solid", color="blue", weight=3]; 3888[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3888[label="",style="solid", color="blue", weight=9]; 3888 -> 2484[label="",style="solid", color="blue", weight=3]; 2294[label="True",fontsize=16,color="green",shape="box"];2295[label="False",fontsize=16,color="green",shape="box"];2296[label="xuu660 <= xuu670",fontsize=16,color="blue",shape="box"];3889[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3889[label="",style="solid", color="blue", weight=9]; 3889 -> 2485[label="",style="solid", color="blue", weight=3]; 3890[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3890[label="",style="solid", color="blue", weight=9]; 3890 -> 2486[label="",style="solid", color="blue", weight=3]; 3891[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3891[label="",style="solid", color="blue", weight=9]; 3891 -> 2487[label="",style="solid", color="blue", weight=3]; 3892[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3892[label="",style="solid", color="blue", weight=9]; 3892 -> 2488[label="",style="solid", color="blue", weight=3]; 3893[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3893[label="",style="solid", color="blue", weight=9]; 3893 -> 2489[label="",style="solid", color="blue", weight=3]; 3894[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3894[label="",style="solid", color="blue", weight=9]; 3894 -> 2490[label="",style="solid", color="blue", weight=3]; 3895[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 2491[label="",style="solid", color="blue", weight=3]; 3896[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 2492[label="",style="solid", color="blue", weight=3]; 3897[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3897[label="",style="solid", color="blue", weight=9]; 3897 -> 2493[label="",style="solid", color="blue", weight=3]; 3898[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3898[label="",style="solid", color="blue", weight=9]; 3898 -> 2494[label="",style="solid", color="blue", weight=3]; 3899[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3899[label="",style="solid", color="blue", weight=9]; 3899 -> 2495[label="",style="solid", color="blue", weight=3]; 3900[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3900[label="",style="solid", color="blue", weight=9]; 3900 -> 2496[label="",style="solid", color="blue", weight=3]; 3901[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3901[label="",style="solid", color="blue", weight=9]; 3901 -> 2497[label="",style="solid", color="blue", weight=3]; 3902[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 3902[label="",style="solid", color="blue", weight=9]; 3902 -> 2498[label="",style="solid", color="blue", weight=3]; 2297[label="xuu66",fontsize=16,color="green",shape="box"];2298[label="xuu67",fontsize=16,color="green",shape="box"];2299[label="True",fontsize=16,color="green",shape="box"];2300[label="True",fontsize=16,color="green",shape="box"];2301[label="True",fontsize=16,color="green",shape="box"];2302[label="False",fontsize=16,color="green",shape="box"];2303[label="True",fontsize=16,color="green",shape="box"];2304[label="True",fontsize=16,color="green",shape="box"];2305[label="False",fontsize=16,color="green",shape="box"];2306[label="False",fontsize=16,color="green",shape="box"];2307[label="True",fontsize=16,color="green",shape="box"];2308[label="True",fontsize=16,color="green",shape="box"];2309[label="True",fontsize=16,color="green",shape="box"];2310[label="False",fontsize=16,color="green",shape="box"];2311[label="True",fontsize=16,color="green",shape="box"];2312 -> 2032[label="",style="dashed", color="red", weight=0]; 2312[label="xuu660 < xuu670 || xuu660 == xuu670 && (xuu661 < xuu671 || xuu661 == xuu671 && xuu662 <= xuu672)",fontsize=16,color="magenta"];2312 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2313[label="xuu66",fontsize=16,color="green",shape="box"];2314[label="xuu67",fontsize=16,color="green",shape="box"];2315[label="xuu66",fontsize=16,color="green",shape="box"];2316[label="xuu67",fontsize=16,color="green",shape="box"];2317 -> 1400[label="",style="dashed", color="red", weight=0]; 2317[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2317 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2318 -> 1401[label="",style="dashed", color="red", weight=0]; 2318[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2318 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2319 -> 1402[label="",style="dashed", color="red", weight=0]; 2319[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2319 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2320 -> 1403[label="",style="dashed", color="red", weight=0]; 2320[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2320 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2320 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2321 -> 1404[label="",style="dashed", color="red", weight=0]; 2321[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2321 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2322 -> 1405[label="",style="dashed", color="red", weight=0]; 2322[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2322 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2322 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2323 -> 1406[label="",style="dashed", color="red", weight=0]; 2323[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2323 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2324 -> 1407[label="",style="dashed", color="red", weight=0]; 2324[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2324 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2325 -> 1408[label="",style="dashed", color="red", weight=0]; 2325[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2325 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2326 -> 1409[label="",style="dashed", color="red", weight=0]; 2326[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2326 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2327 -> 1410[label="",style="dashed", color="red", weight=0]; 2327[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2327 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2328 -> 1411[label="",style="dashed", color="red", weight=0]; 2328[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2328 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2329 -> 1412[label="",style="dashed", color="red", weight=0]; 2329[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2329 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2330 -> 1413[label="",style="dashed", color="red", weight=0]; 2330[label="xuu93 <= xuu96",fontsize=16,color="magenta"];2330 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2331 -> 554[label="",style="dashed", color="red", weight=0]; 2331[label="xuu92 == xuu95",fontsize=16,color="magenta"];2331 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2332 -> 548[label="",style="dashed", color="red", weight=0]; 2332[label="xuu92 == xuu95",fontsize=16,color="magenta"];2332 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2333 -> 558[label="",style="dashed", color="red", weight=0]; 2333[label="xuu92 == xuu95",fontsize=16,color="magenta"];2333 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2334 -> 557[label="",style="dashed", color="red", weight=0]; 2334[label="xuu92 == xuu95",fontsize=16,color="magenta"];2334 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2335 -> 550[label="",style="dashed", color="red", weight=0]; 2335[label="xuu92 == xuu95",fontsize=16,color="magenta"];2335 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2336 -> 556[label="",style="dashed", color="red", weight=0]; 2336[label="xuu92 == xuu95",fontsize=16,color="magenta"];2336 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2337 -> 553[label="",style="dashed", color="red", weight=0]; 2337[label="xuu92 == xuu95",fontsize=16,color="magenta"];2337 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2338 -> 549[label="",style="dashed", color="red", weight=0]; 2338[label="xuu92 == xuu95",fontsize=16,color="magenta"];2338 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2339 -> 547[label="",style="dashed", color="red", weight=0]; 2339[label="xuu92 == xuu95",fontsize=16,color="magenta"];2339 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2340 -> 559[label="",style="dashed", color="red", weight=0]; 2340[label="xuu92 == xuu95",fontsize=16,color="magenta"];2340 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2341 -> 555[label="",style="dashed", color="red", weight=0]; 2341[label="xuu92 == xuu95",fontsize=16,color="magenta"];2341 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2342 -> 551[label="",style="dashed", color="red", weight=0]; 2342[label="xuu92 == xuu95",fontsize=16,color="magenta"];2342 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2343 -> 560[label="",style="dashed", color="red", weight=0]; 2343[label="xuu92 == xuu95",fontsize=16,color="magenta"];2343 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2344 -> 552[label="",style="dashed", color="red", weight=0]; 2344[label="xuu92 == xuu95",fontsize=16,color="magenta"];2344 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2345[label="xuu92",fontsize=16,color="green",shape="box"];2346[label="xuu95",fontsize=16,color="green",shape="box"];2347[label="xuu92",fontsize=16,color="green",shape="box"];2348[label="xuu95",fontsize=16,color="green",shape="box"];2349[label="xuu92",fontsize=16,color="green",shape="box"];2350[label="xuu95",fontsize=16,color="green",shape="box"];2351[label="xuu92",fontsize=16,color="green",shape="box"];2352[label="xuu95",fontsize=16,color="green",shape="box"];2353[label="xuu92",fontsize=16,color="green",shape="box"];2354[label="xuu95",fontsize=16,color="green",shape="box"];2355[label="xuu92",fontsize=16,color="green",shape="box"];2356[label="xuu95",fontsize=16,color="green",shape="box"];2357[label="xuu92",fontsize=16,color="green",shape="box"];2358[label="xuu95",fontsize=16,color="green",shape="box"];2359[label="xuu92",fontsize=16,color="green",shape="box"];2360[label="xuu95",fontsize=16,color="green",shape="box"];2361[label="xuu92",fontsize=16,color="green",shape="box"];2362[label="xuu95",fontsize=16,color="green",shape="box"];2363[label="xuu92",fontsize=16,color="green",shape="box"];2364[label="xuu95",fontsize=16,color="green",shape="box"];2365[label="xuu92",fontsize=16,color="green",shape="box"];2366[label="xuu95",fontsize=16,color="green",shape="box"];2367[label="xuu92",fontsize=16,color="green",shape="box"];2368[label="xuu95",fontsize=16,color="green",shape="box"];2369[label="xuu92",fontsize=16,color="green",shape="box"];2370[label="xuu95",fontsize=16,color="green",shape="box"];2371[label="xuu92",fontsize=16,color="green",shape="box"];2372[label="xuu95",fontsize=16,color="green",shape="box"];2373[label="xuu196",fontsize=16,color="green",shape="box"];2374[label="True",fontsize=16,color="green",shape="box"];2375[label="compare0 (xuu178,xuu179,xuu180) (xuu181,xuu182,xuu183) otherwise",fontsize=16,color="black",shape="box"];2375 -> 2557[label="",style="solid", color="black", weight=3]; 2376[label="LT",fontsize=16,color="green",shape="box"];2377 -> 1311[label="",style="dashed", color="red", weight=0]; 2377[label="primPlusNat xuu39200 xuu12600",fontsize=16,color="magenta"];2377 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2377 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2378 -> 526[label="",style="dashed", color="red", weight=0]; 2378[label="FiniteMap.mkBranchResult xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];2379 -> 2560[label="",style="dashed", color="red", weight=0]; 2379[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 xuu390 xuu391 xuu392 xuu393 xuu394 (FiniteMap.sizeFM xuu394 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu393)",fontsize=16,color="magenta"];2379 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2380[label="xuu183",fontsize=16,color="green",shape="box"];2381[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2382 -> 898[label="",style="dashed", color="red", weight=0]; 2382[label="FiniteMap.sizeFM xuu184",fontsize=16,color="magenta"];2382 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2383[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu180 xuu181 xuu182 xuu183 xuu184 otherwise",fontsize=16,color="black",shape="box"];2383 -> 2563[label="",style="solid", color="black", weight=3]; 2384[label="FiniteMap.mkBalBranch6Single_L xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184)",fontsize=16,color="black",shape="box"];2384 -> 2564[label="",style="solid", color="black", weight=3]; 2385 -> 898[label="",style="dashed", color="red", weight=0]; 2385[label="FiniteMap.sizeFM xuu39",fontsize=16,color="magenta"];2385 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2386[label="xuu400000",fontsize=16,color="green",shape="box"];2387[label="Succ xuu30100",fontsize=16,color="green",shape="box"];2388[label="compare0 (xuu163,xuu164) (xuu165,xuu166) True",fontsize=16,color="black",shape="box"];2388 -> 2566[label="",style="solid", color="black", weight=3]; 2389[label="xuu30000",fontsize=16,color="green",shape="box"];2390[label="xuu400000",fontsize=16,color="green",shape="box"];2391[label="xuu30000",fontsize=16,color="green",shape="box"];2392[label="xuu400000",fontsize=16,color="green",shape="box"];2393[label="xuu40002",fontsize=16,color="green",shape="box"];2394[label="xuu3002",fontsize=16,color="green",shape="box"];2395[label="xuu40002",fontsize=16,color="green",shape="box"];2396[label="xuu3002",fontsize=16,color="green",shape="box"];2397[label="xuu40002",fontsize=16,color="green",shape="box"];2398[label="xuu3002",fontsize=16,color="green",shape="box"];2399[label="xuu40002",fontsize=16,color="green",shape="box"];2400[label="xuu3002",fontsize=16,color="green",shape="box"];2401[label="xuu40002",fontsize=16,color="green",shape="box"];2402[label="xuu3002",fontsize=16,color="green",shape="box"];2403[label="xuu40002",fontsize=16,color="green",shape="box"];2404[label="xuu3002",fontsize=16,color="green",shape="box"];2405[label="xuu40002",fontsize=16,color="green",shape="box"];2406[label="xuu3002",fontsize=16,color="green",shape="box"];2407[label="xuu40002",fontsize=16,color="green",shape="box"];2408[label="xuu3002",fontsize=16,color="green",shape="box"];2409[label="xuu40002",fontsize=16,color="green",shape="box"];2410[label="xuu3002",fontsize=16,color="green",shape="box"];2411[label="xuu40002",fontsize=16,color="green",shape="box"];2412[label="xuu3002",fontsize=16,color="green",shape="box"];2413[label="xuu40002",fontsize=16,color="green",shape="box"];2414[label="xuu3002",fontsize=16,color="green",shape="box"];2415[label="xuu40002",fontsize=16,color="green",shape="box"];2416[label="xuu3002",fontsize=16,color="green",shape="box"];2417[label="xuu40002",fontsize=16,color="green",shape="box"];2418[label="xuu3002",fontsize=16,color="green",shape="box"];2419[label="xuu40002",fontsize=16,color="green",shape="box"];2420[label="xuu3002",fontsize=16,color="green",shape="box"];2421[label="xuu40001",fontsize=16,color="green",shape="box"];2422[label="xuu3001",fontsize=16,color="green",shape="box"];2423[label="xuu40001",fontsize=16,color="green",shape="box"];2424[label="xuu3001",fontsize=16,color="green",shape="box"];2425[label="xuu40001",fontsize=16,color="green",shape="box"];2426[label="xuu3001",fontsize=16,color="green",shape="box"];2427[label="xuu40001",fontsize=16,color="green",shape="box"];2428[label="xuu3001",fontsize=16,color="green",shape="box"];2429[label="xuu40001",fontsize=16,color="green",shape="box"];2430[label="xuu3001",fontsize=16,color="green",shape="box"];2431[label="xuu40001",fontsize=16,color="green",shape="box"];2432[label="xuu3001",fontsize=16,color="green",shape="box"];2433[label="xuu40001",fontsize=16,color="green",shape="box"];2434[label="xuu3001",fontsize=16,color="green",shape="box"];2435[label="xuu40001",fontsize=16,color="green",shape="box"];2436[label="xuu3001",fontsize=16,color="green",shape="box"];2437[label="xuu40001",fontsize=16,color="green",shape="box"];2438[label="xuu3001",fontsize=16,color="green",shape="box"];2439[label="xuu40001",fontsize=16,color="green",shape="box"];2440[label="xuu3001",fontsize=16,color="green",shape="box"];2441[label="xuu40001",fontsize=16,color="green",shape="box"];2442[label="xuu3001",fontsize=16,color="green",shape="box"];2443[label="xuu40001",fontsize=16,color="green",shape="box"];2444[label="xuu3001",fontsize=16,color="green",shape="box"];2445[label="xuu40001",fontsize=16,color="green",shape="box"];2446[label="xuu3001",fontsize=16,color="green",shape="box"];2447[label="xuu40001",fontsize=16,color="green",shape="box"];2448[label="xuu3001",fontsize=16,color="green",shape="box"];2449 -> 1616[label="",style="dashed", color="red", weight=0]; 2449[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2449 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2450[label="False",fontsize=16,color="green",shape="box"];2451[label="False",fontsize=16,color="green",shape="box"];2452[label="True",fontsize=16,color="green",shape="box"];2454 -> 559[label="",style="dashed", color="red", weight=0]; 2454[label="xuu191 == GT",fontsize=16,color="magenta"];2454 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2453[label="not xuu197",fontsize=16,color="burlywood",shape="triangle"];3903[label="xuu197/False",fontsize=10,color="white",style="solid",shape="box"];2453 -> 3903[label="",style="solid", color="burlywood", weight=9]; 3903 -> 2571[label="",style="solid", color="burlywood", weight=3]; 3904[label="xuu197/True",fontsize=10,color="white",style="solid",shape="box"];2453 -> 3904[label="",style="solid", color="burlywood", weight=9]; 3904 -> 2572[label="",style="solid", color="burlywood", weight=3]; 2455 -> 1028[label="",style="dashed", color="red", weight=0]; 2455[label="xuu660 == xuu670 && xuu661 <= xuu671",fontsize=16,color="magenta"];2455 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2455 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2456[label="xuu660 < xuu670",fontsize=16,color="blue",shape="box"];3905[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3905[label="",style="solid", color="blue", weight=9]; 3905 -> 2575[label="",style="solid", color="blue", weight=3]; 3906[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3906[label="",style="solid", color="blue", weight=9]; 3906 -> 2576[label="",style="solid", color="blue", weight=3]; 3907[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3907[label="",style="solid", color="blue", weight=9]; 3907 -> 2577[label="",style="solid", color="blue", weight=3]; 3908[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3908[label="",style="solid", color="blue", weight=9]; 3908 -> 2578[label="",style="solid", color="blue", weight=3]; 3909[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3909[label="",style="solid", color="blue", weight=9]; 3909 -> 2579[label="",style="solid", color="blue", weight=3]; 3910[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3910[label="",style="solid", color="blue", weight=9]; 3910 -> 2580[label="",style="solid", color="blue", weight=3]; 3911[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3911[label="",style="solid", color="blue", weight=9]; 3911 -> 2581[label="",style="solid", color="blue", weight=3]; 3912[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3912[label="",style="solid", color="blue", weight=9]; 3912 -> 2582[label="",style="solid", color="blue", weight=3]; 3913[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3913[label="",style="solid", color="blue", weight=9]; 3913 -> 2583[label="",style="solid", color="blue", weight=3]; 3914[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3914[label="",style="solid", color="blue", weight=9]; 3914 -> 2584[label="",style="solid", color="blue", weight=3]; 3915[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3915[label="",style="solid", color="blue", weight=9]; 3915 -> 2585[label="",style="solid", color="blue", weight=3]; 3916[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3916[label="",style="solid", color="blue", weight=9]; 3916 -> 2586[label="",style="solid", color="blue", weight=3]; 3917[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3917[label="",style="solid", color="blue", weight=9]; 3917 -> 2587[label="",style="solid", color="blue", weight=3]; 3918[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3918[label="",style="solid", color="blue", weight=9]; 3918 -> 2588[label="",style="solid", color="blue", weight=3]; 2457 -> 1400[label="",style="dashed", color="red", weight=0]; 2457[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2457 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2458 -> 1401[label="",style="dashed", color="red", weight=0]; 2458[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2458 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2458 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2459 -> 1402[label="",style="dashed", color="red", weight=0]; 2459[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2459 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2460 -> 1403[label="",style="dashed", color="red", weight=0]; 2460[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2460 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2461 -> 1404[label="",style="dashed", color="red", weight=0]; 2461[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2461 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2462 -> 1405[label="",style="dashed", color="red", weight=0]; 2462[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2462 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2463 -> 1406[label="",style="dashed", color="red", weight=0]; 2463[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2463 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2464 -> 1407[label="",style="dashed", color="red", weight=0]; 2464[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2464 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2465 -> 1408[label="",style="dashed", color="red", weight=0]; 2465[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2465 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2466 -> 1409[label="",style="dashed", color="red", weight=0]; 2466[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2466 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2467 -> 1410[label="",style="dashed", color="red", weight=0]; 2467[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2467 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2468 -> 1411[label="",style="dashed", color="red", weight=0]; 2468[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2468 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2469 -> 1412[label="",style="dashed", color="red", weight=0]; 2469[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2469 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2470 -> 1413[label="",style="dashed", color="red", weight=0]; 2470[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2470 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2471 -> 1400[label="",style="dashed", color="red", weight=0]; 2471[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2471 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2472 -> 1401[label="",style="dashed", color="red", weight=0]; 2472[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2472 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2473 -> 1402[label="",style="dashed", color="red", weight=0]; 2473[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2473 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2474 -> 1403[label="",style="dashed", color="red", weight=0]; 2474[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2474 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2475 -> 1404[label="",style="dashed", color="red", weight=0]; 2475[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2475 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2476 -> 1405[label="",style="dashed", color="red", weight=0]; 2476[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2476 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2477 -> 1406[label="",style="dashed", color="red", weight=0]; 2477[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2477 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2478 -> 1407[label="",style="dashed", color="red", weight=0]; 2478[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2478 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2479 -> 1408[label="",style="dashed", color="red", weight=0]; 2479[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2479 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2480 -> 1409[label="",style="dashed", color="red", weight=0]; 2480[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2480 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2481 -> 1410[label="",style="dashed", color="red", weight=0]; 2481[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2481 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2482 -> 1411[label="",style="dashed", color="red", weight=0]; 2482[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2482 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2483 -> 1412[label="",style="dashed", color="red", weight=0]; 2483[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2483 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2484 -> 1413[label="",style="dashed", color="red", weight=0]; 2484[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2484 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2485 -> 1400[label="",style="dashed", color="red", weight=0]; 2485[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2485 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2486 -> 1401[label="",style="dashed", color="red", weight=0]; 2486[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2486 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2487 -> 1402[label="",style="dashed", color="red", weight=0]; 2487[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2487 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2488 -> 1403[label="",style="dashed", color="red", weight=0]; 2488[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2488 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2489 -> 1404[label="",style="dashed", color="red", weight=0]; 2489[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2489 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2490 -> 1405[label="",style="dashed", color="red", weight=0]; 2490[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2490 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2491 -> 1406[label="",style="dashed", color="red", weight=0]; 2491[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2491 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2492 -> 1407[label="",style="dashed", color="red", weight=0]; 2492[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2492 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2493 -> 1408[label="",style="dashed", color="red", weight=0]; 2493[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2493 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2494 -> 1409[label="",style="dashed", color="red", weight=0]; 2494[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2494 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2495 -> 1410[label="",style="dashed", color="red", weight=0]; 2495[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2495 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2496 -> 1411[label="",style="dashed", color="red", weight=0]; 2496[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2496 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2497 -> 1412[label="",style="dashed", color="red", weight=0]; 2497[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2497 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2498 -> 1413[label="",style="dashed", color="red", weight=0]; 2498[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2498 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2499 -> 1028[label="",style="dashed", color="red", weight=0]; 2499[label="xuu660 == xuu670 && (xuu661 < xuu671 || xuu661 == xuu671 && xuu662 <= xuu672)",fontsize=16,color="magenta"];2499 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2500[label="xuu660 < xuu670",fontsize=16,color="blue",shape="box"];3919[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3919[label="",style="solid", color="blue", weight=9]; 3919 -> 2675[label="",style="solid", color="blue", weight=3]; 3920[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3920[label="",style="solid", color="blue", weight=9]; 3920 -> 2676[label="",style="solid", color="blue", weight=3]; 3921[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3921[label="",style="solid", color="blue", weight=9]; 3921 -> 2677[label="",style="solid", color="blue", weight=3]; 3922[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 2678[label="",style="solid", color="blue", weight=3]; 3923[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3923[label="",style="solid", color="blue", weight=9]; 3923 -> 2679[label="",style="solid", color="blue", weight=3]; 3924[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3924[label="",style="solid", color="blue", weight=9]; 3924 -> 2680[label="",style="solid", color="blue", weight=3]; 3925[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 2681[label="",style="solid", color="blue", weight=3]; 3926[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3926[label="",style="solid", color="blue", weight=9]; 3926 -> 2682[label="",style="solid", color="blue", weight=3]; 3927[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3927[label="",style="solid", color="blue", weight=9]; 3927 -> 2683[label="",style="solid", color="blue", weight=3]; 3928[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3928[label="",style="solid", color="blue", weight=9]; 3928 -> 2684[label="",style="solid", color="blue", weight=3]; 3929[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3929[label="",style="solid", color="blue", weight=9]; 3929 -> 2685[label="",style="solid", color="blue", weight=3]; 3930[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3930[label="",style="solid", color="blue", weight=9]; 3930 -> 2686[label="",style="solid", color="blue", weight=3]; 3931[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3931[label="",style="solid", color="blue", weight=9]; 3931 -> 2687[label="",style="solid", color="blue", weight=3]; 3932[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3932[label="",style="solid", color="blue", weight=9]; 3932 -> 2688[label="",style="solid", color="blue", weight=3]; 2501[label="xuu93",fontsize=16,color="green",shape="box"];2502[label="xuu96",fontsize=16,color="green",shape="box"];2503[label="xuu93",fontsize=16,color="green",shape="box"];2504[label="xuu96",fontsize=16,color="green",shape="box"];2505[label="xuu93",fontsize=16,color="green",shape="box"];2506[label="xuu96",fontsize=16,color="green",shape="box"];2507[label="xuu93",fontsize=16,color="green",shape="box"];2508[label="xuu96",fontsize=16,color="green",shape="box"];2509[label="xuu93",fontsize=16,color="green",shape="box"];2510[label="xuu96",fontsize=16,color="green",shape="box"];2511[label="xuu93",fontsize=16,color="green",shape="box"];2512[label="xuu96",fontsize=16,color="green",shape="box"];2513[label="xuu93",fontsize=16,color="green",shape="box"];2514[label="xuu96",fontsize=16,color="green",shape="box"];2515[label="xuu93",fontsize=16,color="green",shape="box"];2516[label="xuu96",fontsize=16,color="green",shape="box"];2517[label="xuu93",fontsize=16,color="green",shape="box"];2518[label="xuu96",fontsize=16,color="green",shape="box"];2519[label="xuu93",fontsize=16,color="green",shape="box"];2520[label="xuu96",fontsize=16,color="green",shape="box"];2521[label="xuu93",fontsize=16,color="green",shape="box"];2522[label="xuu96",fontsize=16,color="green",shape="box"];2523[label="xuu93",fontsize=16,color="green",shape="box"];2524[label="xuu96",fontsize=16,color="green",shape="box"];2525[label="xuu93",fontsize=16,color="green",shape="box"];2526[label="xuu96",fontsize=16,color="green",shape="box"];2527[label="xuu93",fontsize=16,color="green",shape="box"];2528[label="xuu96",fontsize=16,color="green",shape="box"];2529[label="xuu92",fontsize=16,color="green",shape="box"];2530[label="xuu95",fontsize=16,color="green",shape="box"];2531[label="xuu92",fontsize=16,color="green",shape="box"];2532[label="xuu95",fontsize=16,color="green",shape="box"];2533[label="xuu92",fontsize=16,color="green",shape="box"];2534[label="xuu95",fontsize=16,color="green",shape="box"];2535[label="xuu92",fontsize=16,color="green",shape="box"];2536[label="xuu95",fontsize=16,color="green",shape="box"];2537[label="xuu92",fontsize=16,color="green",shape="box"];2538[label="xuu95",fontsize=16,color="green",shape="box"];2539[label="xuu92",fontsize=16,color="green",shape="box"];2540[label="xuu95",fontsize=16,color="green",shape="box"];2541[label="xuu92",fontsize=16,color="green",shape="box"];2542[label="xuu95",fontsize=16,color="green",shape="box"];2543[label="xuu92",fontsize=16,color="green",shape="box"];2544[label="xuu95",fontsize=16,color="green",shape="box"];2545[label="xuu92",fontsize=16,color="green",shape="box"];2546[label="xuu95",fontsize=16,color="green",shape="box"];2547[label="xuu92",fontsize=16,color="green",shape="box"];2548[label="xuu95",fontsize=16,color="green",shape="box"];2549[label="xuu92",fontsize=16,color="green",shape="box"];2550[label="xuu95",fontsize=16,color="green",shape="box"];2551[label="xuu92",fontsize=16,color="green",shape="box"];2552[label="xuu95",fontsize=16,color="green",shape="box"];2553[label="xuu92",fontsize=16,color="green",shape="box"];2554[label="xuu95",fontsize=16,color="green",shape="box"];2555[label="xuu92",fontsize=16,color="green",shape="box"];2556[label="xuu95",fontsize=16,color="green",shape="box"];2557[label="compare0 (xuu178,xuu179,xuu180) (xuu181,xuu182,xuu183) True",fontsize=16,color="black",shape="box"];2557 -> 2689[label="",style="solid", color="black", weight=3]; 2558[label="xuu39200",fontsize=16,color="green",shape="box"];2559[label="xuu12600",fontsize=16,color="green",shape="box"];2561 -> 41[label="",style="dashed", color="red", weight=0]; 2561[label="FiniteMap.sizeFM xuu394 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu393",fontsize=16,color="magenta"];2561 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2561 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2560[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 xuu390 xuu391 xuu392 xuu393 xuu394 xuu198",fontsize=16,color="burlywood",shape="triangle"];3933[label="xuu198/False",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3933[label="",style="solid", color="burlywood", weight=9]; 3933 -> 2692[label="",style="solid", color="burlywood", weight=3]; 3934[label="xuu198/True",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3934[label="",style="solid", color="burlywood", weight=9]; 3934 -> 2693[label="",style="solid", color="burlywood", weight=3]; 2562[label="xuu184",fontsize=16,color="green",shape="box"];2563[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu180 xuu181 xuu182 xuu183 xuu184 True",fontsize=16,color="black",shape="box"];2563 -> 2694[label="",style="solid", color="black", weight=3]; 2564[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu180 xuu181 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu14 xuu15 xuu39 xuu183) xuu184",fontsize=16,color="black",shape="box"];2564 -> 2695[label="",style="solid", color="black", weight=3]; 2565[label="xuu39",fontsize=16,color="green",shape="box"];2566[label="GT",fontsize=16,color="green",shape="box"];2567[label="xuu30000",fontsize=16,color="green",shape="box"];2568[label="xuu400000",fontsize=16,color="green",shape="box"];2569[label="xuu191",fontsize=16,color="green",shape="box"];2570[label="GT",fontsize=16,color="green",shape="box"];2571[label="not False",fontsize=16,color="black",shape="box"];2571 -> 2696[label="",style="solid", color="black", weight=3]; 2572[label="not True",fontsize=16,color="black",shape="box"];2572 -> 2697[label="",style="solid", color="black", weight=3]; 2573[label="xuu661 <= xuu671",fontsize=16,color="blue",shape="box"];3935[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3935[label="",style="solid", color="blue", weight=9]; 3935 -> 2698[label="",style="solid", color="blue", weight=3]; 3936[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3936[label="",style="solid", color="blue", weight=9]; 3936 -> 2699[label="",style="solid", color="blue", weight=3]; 3937[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3937[label="",style="solid", color="blue", weight=9]; 3937 -> 2700[label="",style="solid", color="blue", weight=3]; 3938[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3938[label="",style="solid", color="blue", weight=9]; 3938 -> 2701[label="",style="solid", color="blue", weight=3]; 3939[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3939[label="",style="solid", color="blue", weight=9]; 3939 -> 2702[label="",style="solid", color="blue", weight=3]; 3940[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3940[label="",style="solid", color="blue", weight=9]; 3940 -> 2703[label="",style="solid", color="blue", weight=3]; 3941[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3941[label="",style="solid", color="blue", weight=9]; 3941 -> 2704[label="",style="solid", color="blue", weight=3]; 3942[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3942[label="",style="solid", color="blue", weight=9]; 3942 -> 2705[label="",style="solid", color="blue", weight=3]; 3943[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3943[label="",style="solid", color="blue", weight=9]; 3943 -> 2706[label="",style="solid", color="blue", weight=3]; 3944[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3944[label="",style="solid", color="blue", weight=9]; 3944 -> 2707[label="",style="solid", color="blue", weight=3]; 3945[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3945[label="",style="solid", color="blue", weight=9]; 3945 -> 2708[label="",style="solid", color="blue", weight=3]; 3946[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3946[label="",style="solid", color="blue", weight=9]; 3946 -> 2709[label="",style="solid", color="blue", weight=3]; 3947[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3947[label="",style="solid", color="blue", weight=9]; 3947 -> 2710[label="",style="solid", color="blue", weight=3]; 3948[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3948[label="",style="solid", color="blue", weight=9]; 3948 -> 2711[label="",style="solid", color="blue", weight=3]; 2574[label="xuu660 == xuu670",fontsize=16,color="blue",shape="box"];3949[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3949[label="",style="solid", color="blue", weight=9]; 3949 -> 2712[label="",style="solid", color="blue", weight=3]; 3950[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3950[label="",style="solid", color="blue", weight=9]; 3950 -> 2713[label="",style="solid", color="blue", weight=3]; 3951[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3951[label="",style="solid", color="blue", weight=9]; 3951 -> 2714[label="",style="solid", color="blue", weight=3]; 3952[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3952[label="",style="solid", color="blue", weight=9]; 3952 -> 2715[label="",style="solid", color="blue", weight=3]; 3953[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3953[label="",style="solid", color="blue", weight=9]; 3953 -> 2716[label="",style="solid", color="blue", weight=3]; 3954[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3954[label="",style="solid", color="blue", weight=9]; 3954 -> 2717[label="",style="solid", color="blue", weight=3]; 3955[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3955[label="",style="solid", color="blue", weight=9]; 3955 -> 2718[label="",style="solid", color="blue", weight=3]; 3956[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3956[label="",style="solid", color="blue", weight=9]; 3956 -> 2719[label="",style="solid", color="blue", weight=3]; 3957[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3957[label="",style="solid", color="blue", weight=9]; 3957 -> 2720[label="",style="solid", color="blue", weight=3]; 3958[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3958[label="",style="solid", color="blue", weight=9]; 3958 -> 2721[label="",style="solid", color="blue", weight=3]; 3959[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3959[label="",style="solid", color="blue", weight=9]; 3959 -> 2722[label="",style="solid", color="blue", weight=3]; 3960[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3960[label="",style="solid", color="blue", weight=9]; 3960 -> 2723[label="",style="solid", color="blue", weight=3]; 3961[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3961[label="",style="solid", color="blue", weight=9]; 3961 -> 2724[label="",style="solid", color="blue", weight=3]; 3962[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3962[label="",style="solid", color="blue", weight=9]; 3962 -> 2725[label="",style="solid", color="blue", weight=3]; 2575 -> 33[label="",style="dashed", color="red", weight=0]; 2575[label="xuu660 < xuu670",fontsize=16,color="magenta"];2575 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2576 -> 34[label="",style="dashed", color="red", weight=0]; 2576[label="xuu660 < xuu670",fontsize=16,color="magenta"];2576 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2577 -> 35[label="",style="dashed", color="red", weight=0]; 2577[label="xuu660 < xuu670",fontsize=16,color="magenta"];2577 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2578 -> 36[label="",style="dashed", color="red", weight=0]; 2578[label="xuu660 < xuu670",fontsize=16,color="magenta"];2578 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2579 -> 37[label="",style="dashed", color="red", weight=0]; 2579[label="xuu660 < xuu670",fontsize=16,color="magenta"];2579 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2580 -> 38[label="",style="dashed", color="red", weight=0]; 2580[label="xuu660 < xuu670",fontsize=16,color="magenta"];2580 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2581 -> 39[label="",style="dashed", color="red", weight=0]; 2581[label="xuu660 < xuu670",fontsize=16,color="magenta"];2581 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2582 -> 40[label="",style="dashed", color="red", weight=0]; 2582[label="xuu660 < xuu670",fontsize=16,color="magenta"];2582 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2583 -> 41[label="",style="dashed", color="red", weight=0]; 2583[label="xuu660 < xuu670",fontsize=16,color="magenta"];2583 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2583 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2584 -> 42[label="",style="dashed", color="red", weight=0]; 2584[label="xuu660 < xuu670",fontsize=16,color="magenta"];2584 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2585 -> 43[label="",style="dashed", color="red", weight=0]; 2585[label="xuu660 < xuu670",fontsize=16,color="magenta"];2585 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2585 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2586 -> 44[label="",style="dashed", color="red", weight=0]; 2586[label="xuu660 < xuu670",fontsize=16,color="magenta"];2586 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2587 -> 45[label="",style="dashed", color="red", weight=0]; 2587[label="xuu660 < xuu670",fontsize=16,color="magenta"];2587 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2588 -> 46[label="",style="dashed", color="red", weight=0]; 2588[label="xuu660 < xuu670",fontsize=16,color="magenta"];2588 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2589[label="xuu660",fontsize=16,color="green",shape="box"];2590[label="xuu670",fontsize=16,color="green",shape="box"];2591[label="xuu660",fontsize=16,color="green",shape="box"];2592[label="xuu670",fontsize=16,color="green",shape="box"];2593[label="xuu660",fontsize=16,color="green",shape="box"];2594[label="xuu670",fontsize=16,color="green",shape="box"];2595[label="xuu660",fontsize=16,color="green",shape="box"];2596[label="xuu670",fontsize=16,color="green",shape="box"];2597[label="xuu660",fontsize=16,color="green",shape="box"];2598[label="xuu670",fontsize=16,color="green",shape="box"];2599[label="xuu660",fontsize=16,color="green",shape="box"];2600[label="xuu670",fontsize=16,color="green",shape="box"];2601[label="xuu660",fontsize=16,color="green",shape="box"];2602[label="xuu670",fontsize=16,color="green",shape="box"];2603[label="xuu660",fontsize=16,color="green",shape="box"];2604[label="xuu670",fontsize=16,color="green",shape="box"];2605[label="xuu660",fontsize=16,color="green",shape="box"];2606[label="xuu670",fontsize=16,color="green",shape="box"];2607[label="xuu660",fontsize=16,color="green",shape="box"];2608[label="xuu670",fontsize=16,color="green",shape="box"];2609[label="xuu660",fontsize=16,color="green",shape="box"];2610[label="xuu670",fontsize=16,color="green",shape="box"];2611[label="xuu660",fontsize=16,color="green",shape="box"];2612[label="xuu670",fontsize=16,color="green",shape="box"];2613[label="xuu660",fontsize=16,color="green",shape="box"];2614[label="xuu670",fontsize=16,color="green",shape="box"];2615[label="xuu660",fontsize=16,color="green",shape="box"];2616[label="xuu670",fontsize=16,color="green",shape="box"];2617[label="xuu660",fontsize=16,color="green",shape="box"];2618[label="xuu670",fontsize=16,color="green",shape="box"];2619[label="xuu660",fontsize=16,color="green",shape="box"];2620[label="xuu670",fontsize=16,color="green",shape="box"];2621[label="xuu660",fontsize=16,color="green",shape="box"];2622[label="xuu670",fontsize=16,color="green",shape="box"];2623[label="xuu660",fontsize=16,color="green",shape="box"];2624[label="xuu670",fontsize=16,color="green",shape="box"];2625[label="xuu660",fontsize=16,color="green",shape="box"];2626[label="xuu670",fontsize=16,color="green",shape="box"];2627[label="xuu660",fontsize=16,color="green",shape="box"];2628[label="xuu670",fontsize=16,color="green",shape="box"];2629[label="xuu660",fontsize=16,color="green",shape="box"];2630[label="xuu670",fontsize=16,color="green",shape="box"];2631[label="xuu660",fontsize=16,color="green",shape="box"];2632[label="xuu670",fontsize=16,color="green",shape="box"];2633[label="xuu660",fontsize=16,color="green",shape="box"];2634[label="xuu670",fontsize=16,color="green",shape="box"];2635[label="xuu660",fontsize=16,color="green",shape="box"];2636[label="xuu670",fontsize=16,color="green",shape="box"];2637[label="xuu660",fontsize=16,color="green",shape="box"];2638[label="xuu670",fontsize=16,color="green",shape="box"];2639[label="xuu660",fontsize=16,color="green",shape="box"];2640[label="xuu670",fontsize=16,color="green",shape="box"];2641[label="xuu660",fontsize=16,color="green",shape="box"];2642[label="xuu670",fontsize=16,color="green",shape="box"];2643[label="xuu660",fontsize=16,color="green",shape="box"];2644[label="xuu670",fontsize=16,color="green",shape="box"];2645[label="xuu660",fontsize=16,color="green",shape="box"];2646[label="xuu670",fontsize=16,color="green",shape="box"];2647[label="xuu660",fontsize=16,color="green",shape="box"];2648[label="xuu670",fontsize=16,color="green",shape="box"];2649[label="xuu660",fontsize=16,color="green",shape="box"];2650[label="xuu670",fontsize=16,color="green",shape="box"];2651[label="xuu660",fontsize=16,color="green",shape="box"];2652[label="xuu670",fontsize=16,color="green",shape="box"];2653[label="xuu660",fontsize=16,color="green",shape="box"];2654[label="xuu670",fontsize=16,color="green",shape="box"];2655[label="xuu660",fontsize=16,color="green",shape="box"];2656[label="xuu670",fontsize=16,color="green",shape="box"];2657[label="xuu660",fontsize=16,color="green",shape="box"];2658[label="xuu670",fontsize=16,color="green",shape="box"];2659[label="xuu660",fontsize=16,color="green",shape="box"];2660[label="xuu670",fontsize=16,color="green",shape="box"];2661[label="xuu660",fontsize=16,color="green",shape="box"];2662[label="xuu670",fontsize=16,color="green",shape="box"];2663[label="xuu660",fontsize=16,color="green",shape="box"];2664[label="xuu670",fontsize=16,color="green",shape="box"];2665[label="xuu660",fontsize=16,color="green",shape="box"];2666[label="xuu670",fontsize=16,color="green",shape="box"];2667[label="xuu660",fontsize=16,color="green",shape="box"];2668[label="xuu670",fontsize=16,color="green",shape="box"];2669[label="xuu660",fontsize=16,color="green",shape="box"];2670[label="xuu670",fontsize=16,color="green",shape="box"];2671[label="xuu660",fontsize=16,color="green",shape="box"];2672[label="xuu670",fontsize=16,color="green",shape="box"];2673 -> 2032[label="",style="dashed", color="red", weight=0]; 2673[label="xuu661 < xuu671 || xuu661 == xuu671 && xuu662 <= xuu672",fontsize=16,color="magenta"];2673 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2673 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2674[label="xuu660 == xuu670",fontsize=16,color="blue",shape="box"];3963[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3963[label="",style="solid", color="blue", weight=9]; 3963 -> 2756[label="",style="solid", color="blue", weight=3]; 3964[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3964[label="",style="solid", color="blue", weight=9]; 3964 -> 2757[label="",style="solid", color="blue", weight=3]; 3965[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3965[label="",style="solid", color="blue", weight=9]; 3965 -> 2758[label="",style="solid", color="blue", weight=3]; 3966[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3966[label="",style="solid", color="blue", weight=9]; 3966 -> 2759[label="",style="solid", color="blue", weight=3]; 3967[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3967[label="",style="solid", color="blue", weight=9]; 3967 -> 2760[label="",style="solid", color="blue", weight=3]; 3968[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3968[label="",style="solid", color="blue", weight=9]; 3968 -> 2761[label="",style="solid", color="blue", weight=3]; 3969[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3969[label="",style="solid", color="blue", weight=9]; 3969 -> 2762[label="",style="solid", color="blue", weight=3]; 3970[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3970[label="",style="solid", color="blue", weight=9]; 3970 -> 2763[label="",style="solid", color="blue", weight=3]; 3971[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3971[label="",style="solid", color="blue", weight=9]; 3971 -> 2764[label="",style="solid", color="blue", weight=3]; 3972[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3972[label="",style="solid", color="blue", weight=9]; 3972 -> 2765[label="",style="solid", color="blue", weight=3]; 3973[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3973[label="",style="solid", color="blue", weight=9]; 3973 -> 2766[label="",style="solid", color="blue", weight=3]; 3974[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3974[label="",style="solid", color="blue", weight=9]; 3974 -> 2767[label="",style="solid", color="blue", weight=3]; 3975[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3975[label="",style="solid", color="blue", weight=9]; 3975 -> 2768[label="",style="solid", color="blue", weight=3]; 3976[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2674 -> 3976[label="",style="solid", color="blue", weight=9]; 3976 -> 2769[label="",style="solid", color="blue", weight=3]; 2675 -> 33[label="",style="dashed", color="red", weight=0]; 2675[label="xuu660 < xuu670",fontsize=16,color="magenta"];2675 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2676 -> 34[label="",style="dashed", color="red", weight=0]; 2676[label="xuu660 < xuu670",fontsize=16,color="magenta"];2676 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2677 -> 35[label="",style="dashed", color="red", weight=0]; 2677[label="xuu660 < xuu670",fontsize=16,color="magenta"];2677 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2678 -> 36[label="",style="dashed", color="red", weight=0]; 2678[label="xuu660 < xuu670",fontsize=16,color="magenta"];2678 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2679 -> 37[label="",style="dashed", color="red", weight=0]; 2679[label="xuu660 < xuu670",fontsize=16,color="magenta"];2679 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2680 -> 38[label="",style="dashed", color="red", weight=0]; 2680[label="xuu660 < xuu670",fontsize=16,color="magenta"];2680 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2681 -> 39[label="",style="dashed", color="red", weight=0]; 2681[label="xuu660 < xuu670",fontsize=16,color="magenta"];2681 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2682 -> 40[label="",style="dashed", color="red", weight=0]; 2682[label="xuu660 < xuu670",fontsize=16,color="magenta"];2682 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2683 -> 41[label="",style="dashed", color="red", weight=0]; 2683[label="xuu660 < xuu670",fontsize=16,color="magenta"];2683 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2684 -> 42[label="",style="dashed", color="red", weight=0]; 2684[label="xuu660 < xuu670",fontsize=16,color="magenta"];2684 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2685 -> 43[label="",style="dashed", color="red", weight=0]; 2685[label="xuu660 < xuu670",fontsize=16,color="magenta"];2685 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2686 -> 44[label="",style="dashed", color="red", weight=0]; 2686[label="xuu660 < xuu670",fontsize=16,color="magenta"];2686 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2687 -> 45[label="",style="dashed", color="red", weight=0]; 2687[label="xuu660 < xuu670",fontsize=16,color="magenta"];2687 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2688 -> 46[label="",style="dashed", color="red", weight=0]; 2688[label="xuu660 < xuu670",fontsize=16,color="magenta"];2688 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2689[label="GT",fontsize=16,color="green",shape="box"];2690 -> 898[label="",style="dashed", color="red", weight=0]; 2690[label="FiniteMap.sizeFM xuu394",fontsize=16,color="magenta"];2690 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2691 -> 398[label="",style="dashed", color="red", weight=0]; 2691[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu393",fontsize=16,color="magenta"];2691 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2692[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 xuu390 xuu391 xuu392 xuu393 xuu394 False",fontsize=16,color="black",shape="box"];2692 -> 2801[label="",style="solid", color="black", weight=3]; 2693[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 xuu390 xuu391 xuu392 xuu393 xuu394 True",fontsize=16,color="black",shape="box"];2693 -> 2802[label="",style="solid", color="black", weight=3]; 2694[label="FiniteMap.mkBalBranch6Double_L xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184)",fontsize=16,color="burlywood",shape="box"];3977[label="xuu183/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2694 -> 3977[label="",style="solid", color="burlywood", weight=9]; 3977 -> 2803[label="",style="solid", color="burlywood", weight=3]; 3978[label="xuu183/FiniteMap.Branch xuu1830 xuu1831 xuu1832 xuu1833 xuu1834",fontsize=10,color="white",style="solid",shape="box"];2694 -> 3978[label="",style="solid", color="burlywood", weight=9]; 3978 -> 2804[label="",style="solid", color="burlywood", weight=3]; 2695 -> 526[label="",style="dashed", color="red", weight=0]; 2695[label="FiniteMap.mkBranchResult xuu180 xuu181 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu14 xuu15 xuu39 xuu183) xuu184",fontsize=16,color="magenta"];2695 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2696[label="True",fontsize=16,color="green",shape="box"];2697[label="False",fontsize=16,color="green",shape="box"];2698 -> 1400[label="",style="dashed", color="red", weight=0]; 2698[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2698 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2699 -> 1401[label="",style="dashed", color="red", weight=0]; 2699[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2699 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2700 -> 1402[label="",style="dashed", color="red", weight=0]; 2700[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2700 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2701 -> 1403[label="",style="dashed", color="red", weight=0]; 2701[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2701 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2702 -> 1404[label="",style="dashed", color="red", weight=0]; 2702[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2702 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2703 -> 1405[label="",style="dashed", color="red", weight=0]; 2703[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2703 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2704 -> 1406[label="",style="dashed", color="red", weight=0]; 2704[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2704 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2705 -> 1407[label="",style="dashed", color="red", weight=0]; 2705[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2705 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2706 -> 1408[label="",style="dashed", color="red", weight=0]; 2706[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2706 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2707 -> 1409[label="",style="dashed", color="red", weight=0]; 2707[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2707 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2708 -> 1410[label="",style="dashed", color="red", weight=0]; 2708[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2708 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2709 -> 1411[label="",style="dashed", color="red", weight=0]; 2709[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2709 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2710 -> 1412[label="",style="dashed", color="red", weight=0]; 2710[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2710 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2711 -> 1413[label="",style="dashed", color="red", weight=0]; 2711[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2711 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2712 -> 554[label="",style="dashed", color="red", weight=0]; 2712[label="xuu660 == xuu670",fontsize=16,color="magenta"];2712 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2713 -> 548[label="",style="dashed", color="red", weight=0]; 2713[label="xuu660 == xuu670",fontsize=16,color="magenta"];2713 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2714 -> 558[label="",style="dashed", color="red", weight=0]; 2714[label="xuu660 == xuu670",fontsize=16,color="magenta"];2714 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2715 -> 557[label="",style="dashed", color="red", weight=0]; 2715[label="xuu660 == xuu670",fontsize=16,color="magenta"];2715 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2716 -> 550[label="",style="dashed", color="red", weight=0]; 2716[label="xuu660 == xuu670",fontsize=16,color="magenta"];2716 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2717 -> 556[label="",style="dashed", color="red", weight=0]; 2717[label="xuu660 == xuu670",fontsize=16,color="magenta"];2717 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2718 -> 553[label="",style="dashed", color="red", weight=0]; 2718[label="xuu660 == xuu670",fontsize=16,color="magenta"];2718 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2719 -> 549[label="",style="dashed", color="red", weight=0]; 2719[label="xuu660 == xuu670",fontsize=16,color="magenta"];2719 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2720 -> 547[label="",style="dashed", color="red", weight=0]; 2720[label="xuu660 == xuu670",fontsize=16,color="magenta"];2720 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2721 -> 559[label="",style="dashed", color="red", weight=0]; 2721[label="xuu660 == xuu670",fontsize=16,color="magenta"];2721 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2722 -> 555[label="",style="dashed", color="red", weight=0]; 2722[label="xuu660 == xuu670",fontsize=16,color="magenta"];2722 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2723 -> 551[label="",style="dashed", color="red", weight=0]; 2723[label="xuu660 == xuu670",fontsize=16,color="magenta"];2723 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2724 -> 560[label="",style="dashed", color="red", weight=0]; 2724[label="xuu660 == xuu670",fontsize=16,color="magenta"];2724 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2725 -> 552[label="",style="dashed", color="red", weight=0]; 2725[label="xuu660 == xuu670",fontsize=16,color="magenta"];2725 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2726[label="xuu660",fontsize=16,color="green",shape="box"];2727[label="xuu670",fontsize=16,color="green",shape="box"];2728[label="xuu660",fontsize=16,color="green",shape="box"];2729[label="xuu670",fontsize=16,color="green",shape="box"];2730[label="xuu660",fontsize=16,color="green",shape="box"];2731[label="xuu670",fontsize=16,color="green",shape="box"];2732[label="xuu660",fontsize=16,color="green",shape="box"];2733[label="xuu670",fontsize=16,color="green",shape="box"];2734[label="xuu660",fontsize=16,color="green",shape="box"];2735[label="xuu670",fontsize=16,color="green",shape="box"];2736[label="xuu660",fontsize=16,color="green",shape="box"];2737[label="xuu670",fontsize=16,color="green",shape="box"];2738[label="xuu660",fontsize=16,color="green",shape="box"];2739[label="xuu670",fontsize=16,color="green",shape="box"];2740[label="xuu660",fontsize=16,color="green",shape="box"];2741[label="xuu670",fontsize=16,color="green",shape="box"];2742[label="xuu660",fontsize=16,color="green",shape="box"];2743[label="xuu670",fontsize=16,color="green",shape="box"];2744[label="xuu660",fontsize=16,color="green",shape="box"];2745[label="xuu670",fontsize=16,color="green",shape="box"];2746[label="xuu660",fontsize=16,color="green",shape="box"];2747[label="xuu670",fontsize=16,color="green",shape="box"];2748[label="xuu660",fontsize=16,color="green",shape="box"];2749[label="xuu670",fontsize=16,color="green",shape="box"];2750[label="xuu660",fontsize=16,color="green",shape="box"];2751[label="xuu670",fontsize=16,color="green",shape="box"];2752[label="xuu660",fontsize=16,color="green",shape="box"];2753[label="xuu670",fontsize=16,color="green",shape="box"];2754 -> 1028[label="",style="dashed", color="red", weight=0]; 2754[label="xuu661 == xuu671 && xuu662 <= xuu672",fontsize=16,color="magenta"];2754 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2755[label="xuu661 < xuu671",fontsize=16,color="blue",shape="box"];3979[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 2867[label="",style="solid", color="blue", weight=3]; 3980[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 2868[label="",style="solid", color="blue", weight=3]; 3981[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3981[label="",style="solid", color="blue", weight=9]; 3981 -> 2869[label="",style="solid", color="blue", weight=3]; 3982[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3982[label="",style="solid", color="blue", weight=9]; 3982 -> 2870[label="",style="solid", color="blue", weight=3]; 3983[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3983[label="",style="solid", color="blue", weight=9]; 3983 -> 2871[label="",style="solid", color="blue", weight=3]; 3984[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3984[label="",style="solid", color="blue", weight=9]; 3984 -> 2872[label="",style="solid", color="blue", weight=3]; 3985[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 2873[label="",style="solid", color="blue", weight=3]; 3986[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 2874[label="",style="solid", color="blue", weight=3]; 3987[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 2875[label="",style="solid", color="blue", weight=3]; 3988[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3988[label="",style="solid", color="blue", weight=9]; 3988 -> 2876[label="",style="solid", color="blue", weight=3]; 3989[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 2877[label="",style="solid", color="blue", weight=3]; 3990[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3990[label="",style="solid", color="blue", weight=9]; 3990 -> 2878[label="",style="solid", color="blue", weight=3]; 3991[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3991[label="",style="solid", color="blue", weight=9]; 3991 -> 2879[label="",style="solid", color="blue", weight=3]; 3992[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3992[label="",style="solid", color="blue", weight=9]; 3992 -> 2880[label="",style="solid", color="blue", weight=3]; 2756 -> 554[label="",style="dashed", color="red", weight=0]; 2756[label="xuu660 == xuu670",fontsize=16,color="magenta"];2756 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2757 -> 548[label="",style="dashed", color="red", weight=0]; 2757[label="xuu660 == xuu670",fontsize=16,color="magenta"];2757 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2758 -> 558[label="",style="dashed", color="red", weight=0]; 2758[label="xuu660 == xuu670",fontsize=16,color="magenta"];2758 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2759 -> 557[label="",style="dashed", color="red", weight=0]; 2759[label="xuu660 == xuu670",fontsize=16,color="magenta"];2759 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2760 -> 550[label="",style="dashed", color="red", weight=0]; 2760[label="xuu660 == xuu670",fontsize=16,color="magenta"];2760 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2761 -> 556[label="",style="dashed", color="red", weight=0]; 2761[label="xuu660 == xuu670",fontsize=16,color="magenta"];2761 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2761 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2762 -> 553[label="",style="dashed", color="red", weight=0]; 2762[label="xuu660 == xuu670",fontsize=16,color="magenta"];2762 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2763 -> 549[label="",style="dashed", color="red", weight=0]; 2763[label="xuu660 == xuu670",fontsize=16,color="magenta"];2763 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2764 -> 547[label="",style="dashed", color="red", weight=0]; 2764[label="xuu660 == xuu670",fontsize=16,color="magenta"];2764 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2765 -> 559[label="",style="dashed", color="red", weight=0]; 2765[label="xuu660 == xuu670",fontsize=16,color="magenta"];2765 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2766 -> 555[label="",style="dashed", color="red", weight=0]; 2766[label="xuu660 == xuu670",fontsize=16,color="magenta"];2766 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2767 -> 551[label="",style="dashed", color="red", weight=0]; 2767[label="xuu660 == xuu670",fontsize=16,color="magenta"];2767 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2767 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2768 -> 560[label="",style="dashed", color="red", weight=0]; 2768[label="xuu660 == xuu670",fontsize=16,color="magenta"];2768 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2768 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2769 -> 552[label="",style="dashed", color="red", weight=0]; 2769[label="xuu660 == xuu670",fontsize=16,color="magenta"];2769 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2769 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2770[label="xuu660",fontsize=16,color="green",shape="box"];2771[label="xuu670",fontsize=16,color="green",shape="box"];2772[label="xuu660",fontsize=16,color="green",shape="box"];2773[label="xuu670",fontsize=16,color="green",shape="box"];2774[label="xuu660",fontsize=16,color="green",shape="box"];2775[label="xuu670",fontsize=16,color="green",shape="box"];2776[label="xuu660",fontsize=16,color="green",shape="box"];2777[label="xuu670",fontsize=16,color="green",shape="box"];2778[label="xuu660",fontsize=16,color="green",shape="box"];2779[label="xuu670",fontsize=16,color="green",shape="box"];2780[label="xuu660",fontsize=16,color="green",shape="box"];2781[label="xuu670",fontsize=16,color="green",shape="box"];2782[label="xuu660",fontsize=16,color="green",shape="box"];2783[label="xuu670",fontsize=16,color="green",shape="box"];2784[label="xuu660",fontsize=16,color="green",shape="box"];2785[label="xuu670",fontsize=16,color="green",shape="box"];2786[label="xuu660",fontsize=16,color="green",shape="box"];2787[label="xuu670",fontsize=16,color="green",shape="box"];2788[label="xuu660",fontsize=16,color="green",shape="box"];2789[label="xuu670",fontsize=16,color="green",shape="box"];2790[label="xuu660",fontsize=16,color="green",shape="box"];2791[label="xuu670",fontsize=16,color="green",shape="box"];2792[label="xuu660",fontsize=16,color="green",shape="box"];2793[label="xuu670",fontsize=16,color="green",shape="box"];2794[label="xuu660",fontsize=16,color="green",shape="box"];2795[label="xuu670",fontsize=16,color="green",shape="box"];2796[label="xuu660",fontsize=16,color="green",shape="box"];2797[label="xuu670",fontsize=16,color="green",shape="box"];2798[label="xuu394",fontsize=16,color="green",shape="box"];2799[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2800 -> 898[label="",style="dashed", color="red", weight=0]; 2800[label="FiniteMap.sizeFM xuu393",fontsize=16,color="magenta"];2800 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2801[label="FiniteMap.mkBalBranch6MkBalBranch10 xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 xuu390 xuu391 xuu392 xuu393 xuu394 otherwise",fontsize=16,color="black",shape="box"];2801 -> 2910[label="",style="solid", color="black", weight=3]; 2802[label="FiniteMap.mkBalBranch6Single_R xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18",fontsize=16,color="black",shape="box"];2802 -> 2911[label="",style="solid", color="black", weight=3]; 2803[label="FiniteMap.mkBalBranch6Double_L xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 FiniteMap.EmptyFM xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 FiniteMap.EmptyFM xuu184)",fontsize=16,color="black",shape="box"];2803 -> 2912[label="",style="solid", color="black", weight=3]; 2804[label="FiniteMap.mkBalBranch6Double_L xuu14 xuu15 xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 (FiniteMap.Branch xuu1830 xuu1831 xuu1832 xuu1833 xuu1834) xuu184) xuu39 (FiniteMap.Branch xuu180 xuu181 xuu182 (FiniteMap.Branch xuu1830 xuu1831 xuu1832 xuu1833 xuu1834) xuu184)",fontsize=16,color="black",shape="box"];2804 -> 2913[label="",style="solid", color="black", weight=3]; 2805[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu14 xuu15 xuu39 xuu183",fontsize=16,color="black",shape="box"];2805 -> 2914[label="",style="solid", color="black", weight=3]; 2806[label="xuu181",fontsize=16,color="green",shape="box"];2807[label="xuu180",fontsize=16,color="green",shape="box"];2808[label="xuu184",fontsize=16,color="green",shape="box"];2809[label="xuu661",fontsize=16,color="green",shape="box"];2810[label="xuu671",fontsize=16,color="green",shape="box"];2811[label="xuu661",fontsize=16,color="green",shape="box"];2812[label="xuu671",fontsize=16,color="green",shape="box"];2813[label="xuu661",fontsize=16,color="green",shape="box"];2814[label="xuu671",fontsize=16,color="green",shape="box"];2815[label="xuu661",fontsize=16,color="green",shape="box"];2816[label="xuu671",fontsize=16,color="green",shape="box"];2817[label="xuu661",fontsize=16,color="green",shape="box"];2818[label="xuu671",fontsize=16,color="green",shape="box"];2819[label="xuu661",fontsize=16,color="green",shape="box"];2820[label="xuu671",fontsize=16,color="green",shape="box"];2821[label="xuu661",fontsize=16,color="green",shape="box"];2822[label="xuu671",fontsize=16,color="green",shape="box"];2823[label="xuu661",fontsize=16,color="green",shape="box"];2824[label="xuu671",fontsize=16,color="green",shape="box"];2825[label="xuu661",fontsize=16,color="green",shape="box"];2826[label="xuu671",fontsize=16,color="green",shape="box"];2827[label="xuu661",fontsize=16,color="green",shape="box"];2828[label="xuu671",fontsize=16,color="green",shape="box"];2829[label="xuu661",fontsize=16,color="green",shape="box"];2830[label="xuu671",fontsize=16,color="green",shape="box"];2831[label="xuu661",fontsize=16,color="green",shape="box"];2832[label="xuu671",fontsize=16,color="green",shape="box"];2833[label="xuu661",fontsize=16,color="green",shape="box"];2834[label="xuu671",fontsize=16,color="green",shape="box"];2835[label="xuu661",fontsize=16,color="green",shape="box"];2836[label="xuu671",fontsize=16,color="green",shape="box"];2837[label="xuu660",fontsize=16,color="green",shape="box"];2838[label="xuu670",fontsize=16,color="green",shape="box"];2839[label="xuu660",fontsize=16,color="green",shape="box"];2840[label="xuu670",fontsize=16,color="green",shape="box"];2841[label="xuu660",fontsize=16,color="green",shape="box"];2842[label="xuu670",fontsize=16,color="green",shape="box"];2843[label="xuu660",fontsize=16,color="green",shape="box"];2844[label="xuu670",fontsize=16,color="green",shape="box"];2845[label="xuu660",fontsize=16,color="green",shape="box"];2846[label="xuu670",fontsize=16,color="green",shape="box"];2847[label="xuu660",fontsize=16,color="green",shape="box"];2848[label="xuu670",fontsize=16,color="green",shape="box"];2849[label="xuu660",fontsize=16,color="green",shape="box"];2850[label="xuu670",fontsize=16,color="green",shape="box"];2851[label="xuu660",fontsize=16,color="green",shape="box"];2852[label="xuu670",fontsize=16,color="green",shape="box"];2853[label="xuu660",fontsize=16,color="green",shape="box"];2854[label="xuu670",fontsize=16,color="green",shape="box"];2855[label="xuu660",fontsize=16,color="green",shape="box"];2856[label="xuu670",fontsize=16,color="green",shape="box"];2857[label="xuu660",fontsize=16,color="green",shape="box"];2858[label="xuu670",fontsize=16,color="green",shape="box"];2859[label="xuu660",fontsize=16,color="green",shape="box"];2860[label="xuu670",fontsize=16,color="green",shape="box"];2861[label="xuu660",fontsize=16,color="green",shape="box"];2862[label="xuu670",fontsize=16,color="green",shape="box"];2863[label="xuu660",fontsize=16,color="green",shape="box"];2864[label="xuu670",fontsize=16,color="green",shape="box"];2865[label="xuu662 <= xuu672",fontsize=16,color="blue",shape="box"];3993[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3993[label="",style="solid", color="blue", weight=9]; 3993 -> 2915[label="",style="solid", color="blue", weight=3]; 3994[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3994[label="",style="solid", color="blue", weight=9]; 3994 -> 2916[label="",style="solid", color="blue", weight=3]; 3995[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3995[label="",style="solid", color="blue", weight=9]; 3995 -> 2917[label="",style="solid", color="blue", weight=3]; 3996[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 2918[label="",style="solid", color="blue", weight=3]; 3997[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3997[label="",style="solid", color="blue", weight=9]; 3997 -> 2919[label="",style="solid", color="blue", weight=3]; 3998[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3998[label="",style="solid", color="blue", weight=9]; 3998 -> 2920[label="",style="solid", color="blue", weight=3]; 3999[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3999[label="",style="solid", color="blue", weight=9]; 3999 -> 2921[label="",style="solid", color="blue", weight=3]; 4000[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4000[label="",style="solid", color="blue", weight=9]; 4000 -> 2922[label="",style="solid", color="blue", weight=3]; 4001[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4001[label="",style="solid", color="blue", weight=9]; 4001 -> 2923[label="",style="solid", color="blue", weight=3]; 4002[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4002[label="",style="solid", color="blue", weight=9]; 4002 -> 2924[label="",style="solid", color="blue", weight=3]; 4003[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4003[label="",style="solid", color="blue", weight=9]; 4003 -> 2925[label="",style="solid", color="blue", weight=3]; 4004[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4004[label="",style="solid", color="blue", weight=9]; 4004 -> 2926[label="",style="solid", color="blue", weight=3]; 4005[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4005[label="",style="solid", color="blue", weight=9]; 4005 -> 2927[label="",style="solid", color="blue", weight=3]; 4006[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4006[label="",style="solid", color="blue", weight=9]; 4006 -> 2928[label="",style="solid", color="blue", weight=3]; 2866[label="xuu661 == xuu671",fontsize=16,color="blue",shape="box"];4007[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4007[label="",style="solid", color="blue", weight=9]; 4007 -> 2929[label="",style="solid", color="blue", weight=3]; 4008[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4008[label="",style="solid", color="blue", weight=9]; 4008 -> 2930[label="",style="solid", color="blue", weight=3]; 4009[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4009[label="",style="solid", color="blue", weight=9]; 4009 -> 2931[label="",style="solid", color="blue", weight=3]; 4010[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4010[label="",style="solid", color="blue", weight=9]; 4010 -> 2932[label="",style="solid", color="blue", weight=3]; 4011[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4011[label="",style="solid", color="blue", weight=9]; 4011 -> 2933[label="",style="solid", color="blue", weight=3]; 4012[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4012[label="",style="solid", color="blue", weight=9]; 4012 -> 2934[label="",style="solid", color="blue", weight=3]; 4013[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4013[label="",style="solid", color="blue", weight=9]; 4013 -> 2935[label="",style="solid", color="blue", weight=3]; 4014[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4014[label="",style="solid", color="blue", weight=9]; 4014 -> 2936[label="",style="solid", color="blue", weight=3]; 4015[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4015[label="",style="solid", color="blue", weight=9]; 4015 -> 2937[label="",style="solid", color="blue", weight=3]; 4016[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4016[label="",style="solid", color="blue", weight=9]; 4016 -> 2938[label="",style="solid", color="blue", weight=3]; 4017[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4017[label="",style="solid", color="blue", weight=9]; 4017 -> 2939[label="",style="solid", color="blue", weight=3]; 4018[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4018[label="",style="solid", color="blue", weight=9]; 4018 -> 2940[label="",style="solid", color="blue", weight=3]; 4019[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4019[label="",style="solid", color="blue", weight=9]; 4019 -> 2941[label="",style="solid", color="blue", weight=3]; 4020[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4020[label="",style="solid", color="blue", weight=9]; 4020 -> 2942[label="",style="solid", color="blue", weight=3]; 2867 -> 33[label="",style="dashed", color="red", weight=0]; 2867[label="xuu661 < xuu671",fontsize=16,color="magenta"];2867 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2867 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2868 -> 34[label="",style="dashed", color="red", weight=0]; 2868[label="xuu661 < xuu671",fontsize=16,color="magenta"];2868 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2868 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2869 -> 35[label="",style="dashed", color="red", weight=0]; 2869[label="xuu661 < xuu671",fontsize=16,color="magenta"];2869 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2869 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2870 -> 36[label="",style="dashed", color="red", weight=0]; 2870[label="xuu661 < xuu671",fontsize=16,color="magenta"];2870 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2870 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2871 -> 37[label="",style="dashed", color="red", weight=0]; 2871[label="xuu661 < xuu671",fontsize=16,color="magenta"];2871 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2871 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2872 -> 38[label="",style="dashed", color="red", weight=0]; 2872[label="xuu661 < xuu671",fontsize=16,color="magenta"];2872 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2872 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2873 -> 39[label="",style="dashed", color="red", weight=0]; 2873[label="xuu661 < xuu671",fontsize=16,color="magenta"];2873 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2873 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2874 -> 40[label="",style="dashed", color="red", weight=0]; 2874[label="xuu661 < xuu671",fontsize=16,color="magenta"];2874 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2874 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2875 -> 41[label="",style="dashed", color="red", weight=0]; 2875[label="xuu661 < xuu671",fontsize=16,color="magenta"];2875 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2875 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2876 -> 42[label="",style="dashed", color="red", weight=0]; 2876[label="xuu661 < xuu671",fontsize=16,color="magenta"];2876 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2876 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2877 -> 43[label="",style="dashed", color="red", weight=0]; 2877[label="xuu661 < xuu671",fontsize=16,color="magenta"];2877 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2877 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2878 -> 44[label="",style="dashed", color="red", weight=0]; 2878[label="xuu661 < xuu671",fontsize=16,color="magenta"];2878 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2878 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2879 -> 45[label="",style="dashed", color="red", weight=0]; 2879[label="xuu661 < xuu671",fontsize=16,color="magenta"];2879 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2879 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2880 -> 46[label="",style="dashed", color="red", weight=0]; 2880[label="xuu661 < xuu671",fontsize=16,color="magenta"];2880 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2880 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2881[label="xuu660",fontsize=16,color="green",shape="box"];2882[label="xuu670",fontsize=16,color="green",shape="box"];2883[label="xuu660",fontsize=16,color="green",shape="box"];2884[label="xuu670",fontsize=16,color="green",shape="box"];2885[label="xuu660",fontsize=16,color="green",shape="box"];2886[label="xuu670",fontsize=16,color="green",shape="box"];2887[label="xuu660",fontsize=16,color="green",shape="box"];2888[label="xuu670",fontsize=16,color="green",shape="box"];2889[label="xuu660",fontsize=16,color="green",shape="box"];2890[label="xuu670",fontsize=16,color="green",shape="box"];2891[label="xuu660",fontsize=16,color="green",shape="box"];2892[label="xuu670",fontsize=16,color="green",shape="box"];2893[label="xuu660",fontsize=16,color="green",shape="box"];2894[label="xuu670",fontsize=16,color="green",shape="box"];2895[label="xuu660",fontsize=16,color="green",shape="box"];2896[label="xuu670",fontsize=16,color="green",shape="box"];2897[label="xuu660",fontsize=16,color="green",shape="box"];2898[label="xuu670",fontsize=16,color="green",shape="box"];2899[label="xuu660",fontsize=16,color="green",shape="box"];2900[label="xuu670",fontsize=16,color="green",shape="box"];2901[label="xuu660",fontsize=16,color="green",shape="box"];2902[label="xuu670",fontsize=16,color="green",shape="box"];2903[label="xuu660",fontsize=16,color="green",shape="box"];2904[label="xuu670",fontsize=16,color="green",shape="box"];2905[label="xuu660",fontsize=16,color="green",shape="box"];2906[label="xuu670",fontsize=16,color="green",shape="box"];2907[label="xuu660",fontsize=16,color="green",shape="box"];2908[label="xuu670",fontsize=16,color="green",shape="box"];2909[label="xuu393",fontsize=16,color="green",shape="box"];2910[label="FiniteMap.mkBalBranch6MkBalBranch10 xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 xuu390 xuu391 xuu392 xuu393 xuu394 True",fontsize=16,color="black",shape="box"];2910 -> 2971[label="",style="solid", color="black", weight=3]; 2911 -> 3052[label="",style="dashed", color="red", weight=0]; 2911[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu390 xuu391 xuu393 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xuu14 xuu15 xuu394 xuu18)",fontsize=16,color="magenta"];2911 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2912[label="error []",fontsize=16,color="red",shape="box"];2913 -> 3052[label="",style="dashed", color="red", weight=0]; 2913[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu1830 xuu1831 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu14 xuu15 xuu39 xuu1833) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu180 xuu181 xuu1834 xuu184)",fontsize=16,color="magenta"];2913 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2914 -> 526[label="",style="dashed", color="red", weight=0]; 2914[label="FiniteMap.mkBranchResult xuu14 xuu15 xuu39 xuu183",fontsize=16,color="magenta"];2914 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2915 -> 1400[label="",style="dashed", color="red", weight=0]; 2915[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2915 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2915 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2916 -> 1401[label="",style="dashed", color="red", weight=0]; 2916[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2916 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2916 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2917 -> 1402[label="",style="dashed", color="red", weight=0]; 2917[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2917 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2917 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2918 -> 1403[label="",style="dashed", color="red", weight=0]; 2918[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2918 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2918 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2919 -> 1404[label="",style="dashed", color="red", weight=0]; 2919[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2919 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2919 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2920 -> 1405[label="",style="dashed", color="red", weight=0]; 2920[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2920 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2920 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2921 -> 1406[label="",style="dashed", color="red", weight=0]; 2921[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2921 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2921 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2922 -> 1407[label="",style="dashed", color="red", weight=0]; 2922[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2922 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2922 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2923 -> 1408[label="",style="dashed", color="red", weight=0]; 2923[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2923 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2923 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2924 -> 1409[label="",style="dashed", color="red", weight=0]; 2924[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2924 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2924 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2925 -> 1410[label="",style="dashed", color="red", weight=0]; 2925[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2925 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2925 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2926 -> 1411[label="",style="dashed", color="red", weight=0]; 2926[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2926 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2926 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2927 -> 1412[label="",style="dashed", color="red", weight=0]; 2927[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2927 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2927 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2928 -> 1413[label="",style="dashed", color="red", weight=0]; 2928[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2928 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2929 -> 554[label="",style="dashed", color="red", weight=0]; 2929[label="xuu661 == xuu671",fontsize=16,color="magenta"];2929 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2929 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2930 -> 548[label="",style="dashed", color="red", weight=0]; 2930[label="xuu661 == xuu671",fontsize=16,color="magenta"];2930 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2930 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2931 -> 558[label="",style="dashed", color="red", weight=0]; 2931[label="xuu661 == xuu671",fontsize=16,color="magenta"];2931 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2932 -> 557[label="",style="dashed", color="red", weight=0]; 2932[label="xuu661 == xuu671",fontsize=16,color="magenta"];2932 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2933 -> 550[label="",style="dashed", color="red", weight=0]; 2933[label="xuu661 == xuu671",fontsize=16,color="magenta"];2933 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2933 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2934 -> 556[label="",style="dashed", color="red", weight=0]; 2934[label="xuu661 == xuu671",fontsize=16,color="magenta"];2934 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2934 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2935 -> 553[label="",style="dashed", color="red", weight=0]; 2935[label="xuu661 == xuu671",fontsize=16,color="magenta"];2935 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2935 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2936 -> 549[label="",style="dashed", color="red", weight=0]; 2936[label="xuu661 == xuu671",fontsize=16,color="magenta"];2936 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2936 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2937 -> 547[label="",style="dashed", color="red", weight=0]; 2937[label="xuu661 == xuu671",fontsize=16,color="magenta"];2937 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2937 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2938 -> 559[label="",style="dashed", color="red", weight=0]; 2938[label="xuu661 == xuu671",fontsize=16,color="magenta"];2938 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2938 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2939 -> 555[label="",style="dashed", color="red", weight=0]; 2939[label="xuu661 == xuu671",fontsize=16,color="magenta"];2939 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2939 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2940 -> 551[label="",style="dashed", color="red", weight=0]; 2940[label="xuu661 == xuu671",fontsize=16,color="magenta"];2940 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2940 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2941 -> 560[label="",style="dashed", color="red", weight=0]; 2941[label="xuu661 == xuu671",fontsize=16,color="magenta"];2941 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2941 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2942 -> 552[label="",style="dashed", color="red", weight=0]; 2942[label="xuu661 == xuu671",fontsize=16,color="magenta"];2942 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2943[label="xuu661",fontsize=16,color="green",shape="box"];2944[label="xuu671",fontsize=16,color="green",shape="box"];2945[label="xuu661",fontsize=16,color="green",shape="box"];2946[label="xuu671",fontsize=16,color="green",shape="box"];2947[label="xuu661",fontsize=16,color="green",shape="box"];2948[label="xuu671",fontsize=16,color="green",shape="box"];2949[label="xuu661",fontsize=16,color="green",shape="box"];2950[label="xuu671",fontsize=16,color="green",shape="box"];2951[label="xuu661",fontsize=16,color="green",shape="box"];2952[label="xuu671",fontsize=16,color="green",shape="box"];2953[label="xuu661",fontsize=16,color="green",shape="box"];2954[label="xuu671",fontsize=16,color="green",shape="box"];2955[label="xuu661",fontsize=16,color="green",shape="box"];2956[label="xuu671",fontsize=16,color="green",shape="box"];2957[label="xuu661",fontsize=16,color="green",shape="box"];2958[label="xuu671",fontsize=16,color="green",shape="box"];2959[label="xuu661",fontsize=16,color="green",shape="box"];2960[label="xuu671",fontsize=16,color="green",shape="box"];2961[label="xuu661",fontsize=16,color="green",shape="box"];2962[label="xuu671",fontsize=16,color="green",shape="box"];2963[label="xuu661",fontsize=16,color="green",shape="box"];2964[label="xuu671",fontsize=16,color="green",shape="box"];2965[label="xuu661",fontsize=16,color="green",shape="box"];2966[label="xuu671",fontsize=16,color="green",shape="box"];2967[label="xuu661",fontsize=16,color="green",shape="box"];2968[label="xuu671",fontsize=16,color="green",shape="box"];2969[label="xuu661",fontsize=16,color="green",shape="box"];2970[label="xuu671",fontsize=16,color="green",shape="box"];2971[label="FiniteMap.mkBalBranch6Double_R xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394) xuu18",fontsize=16,color="burlywood",shape="box"];4021[label="xuu394/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4021[label="",style="solid", color="burlywood", weight=9]; 4021 -> 3050[label="",style="solid", color="burlywood", weight=3]; 4022[label="xuu394/FiniteMap.Branch xuu3940 xuu3941 xuu3942 xuu3943 xuu3944",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4022[label="",style="solid", color="burlywood", weight=9]; 4022 -> 3051[label="",style="solid", color="burlywood", weight=3]; 3053[label="xuu391",fontsize=16,color="green",shape="box"];3054[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3055[label="xuu15",fontsize=16,color="green",shape="box"];3056[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3057[label="xuu393",fontsize=16,color="green",shape="box"];3058[label="xuu14",fontsize=16,color="green",shape="box"];3059[label="xuu18",fontsize=16,color="green",shape="box"];3060[label="xuu394",fontsize=16,color="green",shape="box"];3061[label="xuu390",fontsize=16,color="green",shape="box"];3052[label="FiniteMap.mkBranch (Pos (Succ xuu224)) xuu225 xuu226 xuu227 (FiniteMap.mkBranch (Pos (Succ xuu228)) xuu229 xuu230 xuu231 xuu232)",fontsize=16,color="black",shape="triangle"];3052 -> 3089[label="",style="solid", color="black", weight=3]; 3062[label="xuu1831",fontsize=16,color="green",shape="box"];3063[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3064[label="xuu181",fontsize=16,color="green",shape="box"];3065[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3066[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu14 xuu15 xuu39 xuu1833",fontsize=16,color="black",shape="box"];3066 -> 3090[label="",style="solid", color="black", weight=3]; 3067[label="xuu180",fontsize=16,color="green",shape="box"];3068[label="xuu184",fontsize=16,color="green",shape="box"];3069[label="xuu1834",fontsize=16,color="green",shape="box"];3070[label="xuu1830",fontsize=16,color="green",shape="box"];2993[label="xuu183",fontsize=16,color="green",shape="box"];2994[label="xuu662",fontsize=16,color="green",shape="box"];2995[label="xuu672",fontsize=16,color="green",shape="box"];2996[label="xuu662",fontsize=16,color="green",shape="box"];2997[label="xuu672",fontsize=16,color="green",shape="box"];2998[label="xuu662",fontsize=16,color="green",shape="box"];2999[label="xuu672",fontsize=16,color="green",shape="box"];3000[label="xuu662",fontsize=16,color="green",shape="box"];3001[label="xuu672",fontsize=16,color="green",shape="box"];3002[label="xuu662",fontsize=16,color="green",shape="box"];3003[label="xuu672",fontsize=16,color="green",shape="box"];3004[label="xuu662",fontsize=16,color="green",shape="box"];3005[label="xuu672",fontsize=16,color="green",shape="box"];3006[label="xuu662",fontsize=16,color="green",shape="box"];3007[label="xuu672",fontsize=16,color="green",shape="box"];3008[label="xuu662",fontsize=16,color="green",shape="box"];3009[label="xuu672",fontsize=16,color="green",shape="box"];3010[label="xuu662",fontsize=16,color="green",shape="box"];3011[label="xuu672",fontsize=16,color="green",shape="box"];3012[label="xuu662",fontsize=16,color="green",shape="box"];3013[label="xuu672",fontsize=16,color="green",shape="box"];3014[label="xuu662",fontsize=16,color="green",shape="box"];3015[label="xuu672",fontsize=16,color="green",shape="box"];3016[label="xuu662",fontsize=16,color="green",shape="box"];3017[label="xuu672",fontsize=16,color="green",shape="box"];3018[label="xuu662",fontsize=16,color="green",shape="box"];3019[label="xuu672",fontsize=16,color="green",shape="box"];3020[label="xuu662",fontsize=16,color="green",shape="box"];3021[label="xuu672",fontsize=16,color="green",shape="box"];3022[label="xuu661",fontsize=16,color="green",shape="box"];3023[label="xuu671",fontsize=16,color="green",shape="box"];3024[label="xuu661",fontsize=16,color="green",shape="box"];3025[label="xuu671",fontsize=16,color="green",shape="box"];3026[label="xuu661",fontsize=16,color="green",shape="box"];3027[label="xuu671",fontsize=16,color="green",shape="box"];3028[label="xuu661",fontsize=16,color="green",shape="box"];3029[label="xuu671",fontsize=16,color="green",shape="box"];3030[label="xuu661",fontsize=16,color="green",shape="box"];3031[label="xuu671",fontsize=16,color="green",shape="box"];3032[label="xuu661",fontsize=16,color="green",shape="box"];3033[label="xuu671",fontsize=16,color="green",shape="box"];3034[label="xuu661",fontsize=16,color="green",shape="box"];3035[label="xuu671",fontsize=16,color="green",shape="box"];3036[label="xuu661",fontsize=16,color="green",shape="box"];3037[label="xuu671",fontsize=16,color="green",shape="box"];3038[label="xuu661",fontsize=16,color="green",shape="box"];3039[label="xuu671",fontsize=16,color="green",shape="box"];3040[label="xuu661",fontsize=16,color="green",shape="box"];3041[label="xuu671",fontsize=16,color="green",shape="box"];3042[label="xuu661",fontsize=16,color="green",shape="box"];3043[label="xuu671",fontsize=16,color="green",shape="box"];3044[label="xuu661",fontsize=16,color="green",shape="box"];3045[label="xuu671",fontsize=16,color="green",shape="box"];3046[label="xuu661",fontsize=16,color="green",shape="box"];3047[label="xuu671",fontsize=16,color="green",shape="box"];3048[label="xuu661",fontsize=16,color="green",shape="box"];3049[label="xuu671",fontsize=16,color="green",shape="box"];3050[label="FiniteMap.mkBalBranch6Double_R xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 FiniteMap.EmptyFM) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 FiniteMap.EmptyFM) xuu18",fontsize=16,color="black",shape="box"];3050 -> 3091[label="",style="solid", color="black", weight=3]; 3051[label="FiniteMap.mkBalBranch6Double_R xuu14 xuu15 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 (FiniteMap.Branch xuu3940 xuu3941 xuu3942 xuu3943 xuu3944)) xuu18 (FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 (FiniteMap.Branch xuu3940 xuu3941 xuu3942 xuu3943 xuu3944)) xuu18",fontsize=16,color="black",shape="box"];3051 -> 3092[label="",style="solid", color="black", weight=3]; 3089 -> 526[label="",style="dashed", color="red", weight=0]; 3089[label="FiniteMap.mkBranchResult xuu225 xuu226 xuu227 (FiniteMap.mkBranch (Pos (Succ xuu228)) xuu229 xuu230 xuu231 xuu232)",fontsize=16,color="magenta"];3089 -> 3093[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3094[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3095[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3096[label="",style="dashed", color="magenta", weight=3]; 3090 -> 526[label="",style="dashed", color="red", weight=0]; 3090[label="FiniteMap.mkBranchResult xuu14 xuu15 xuu39 xuu1833",fontsize=16,color="magenta"];3090 -> 3097[label="",style="dashed", color="magenta", weight=3]; 3091[label="error []",fontsize=16,color="red",shape="box"];3092 -> 3052[label="",style="dashed", color="red", weight=0]; 3092[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu3940 xuu3941 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu390 xuu391 xuu393 xuu3943) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xuu14 xuu15 xuu3944 xuu18)",fontsize=16,color="magenta"];3092 -> 3098[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3099[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3100[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3101[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3102[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3103[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3104[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3105[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3106[label="",style="dashed", color="magenta", weight=3]; 3093[label="xuu227",fontsize=16,color="green",shape="box"];3094[label="xuu226",fontsize=16,color="green",shape="box"];3095[label="xuu225",fontsize=16,color="green",shape="box"];3096[label="FiniteMap.mkBranch (Pos (Succ xuu228)) xuu229 xuu230 xuu231 xuu232",fontsize=16,color="black",shape="triangle"];3096 -> 3107[label="",style="solid", color="black", weight=3]; 3097[label="xuu1833",fontsize=16,color="green",shape="box"];3098[label="xuu3941",fontsize=16,color="green",shape="box"];3099[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3100[label="xuu15",fontsize=16,color="green",shape="box"];3101[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3102 -> 3096[label="",style="dashed", color="red", weight=0]; 3102[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu390 xuu391 xuu393 xuu3943",fontsize=16,color="magenta"];3102 -> 3108[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3109[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3110[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3111[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3112[label="",style="dashed", color="magenta", weight=3]; 3103[label="xuu14",fontsize=16,color="green",shape="box"];3104[label="xuu18",fontsize=16,color="green",shape="box"];3105[label="xuu3944",fontsize=16,color="green",shape="box"];3106[label="xuu3940",fontsize=16,color="green",shape="box"];3107 -> 526[label="",style="dashed", color="red", weight=0]; 3107[label="FiniteMap.mkBranchResult xuu229 xuu230 xuu231 xuu232",fontsize=16,color="magenta"];3107 -> 3113[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3114[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3115[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3116[label="",style="dashed", color="magenta", weight=3]; 3108[label="xuu391",fontsize=16,color="green",shape="box"];3109[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3110[label="xuu390",fontsize=16,color="green",shape="box"];3111[label="xuu3943",fontsize=16,color="green",shape="box"];3112[label="xuu393",fontsize=16,color="green",shape="box"];3113[label="xuu231",fontsize=16,color="green",shape="box"];3114[label="xuu230",fontsize=16,color="green",shape="box"];3115[label="xuu229",fontsize=16,color="green",shape="box"];3116[label="xuu232",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(xuu40000), Succ(xuu3000)) -> new_primCmpNat(xuu40000, xuu3000) 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(xuu40000), Succ(xuu3000)) -> new_primCmpNat(xuu40000, xuu3000) 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_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) The TRS R consists of the following rules: new_ltEs7(Left(xuu660), Left(xuu670), app(app(ty_Either, dg), dh), da) -> new_ltEs7(xuu660, xuu670, dg, dh) new_esEs30(xuu92, xuu95, ty_Ordering) -> new_esEs25(xuu92, xuu95) new_ltEs24(xuu66, xuu67, ty_Float) -> new_ltEs12(xuu66, xuu67) new_esEs40(xuu106, xuu108, app(app(app(ty_@3, fgg), fgh), fha)) -> new_esEs19(xuu106, xuu108, fgg, fgh, fha) new_lt8(xuu91, xuu94, app(ty_Ratio, bfh)) -> new_lt11(xuu91, xuu94, bfh) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_ltEs11(Just(xuu660), Just(xuu670), ty_Bool) -> new_ltEs15(xuu660, xuu670) new_esEs7(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_pePe(True, xuu196) -> True new_ltEs18(xuu93, xuu96, app(app(ty_Either, bdh), bea)) -> new_ltEs7(xuu93, xuu96, bdh, bea) new_ltEs24(xuu66, xuu67, app(app(ty_@2, dad), dae)) -> new_ltEs10(xuu66, xuu67, dad, dae) new_ltEs24(xuu66, xuu67, ty_Ordering) -> new_ltEs14(xuu66, xuu67) new_lt20(xuu661, xuu671, ty_Ordering) -> new_lt17(xuu661, xuu671) new_esEs7(xuu4000, xuu300, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs19(xuu4000, xuu300, gf, gg, gh) new_esEs40(xuu106, xuu108, ty_@0) -> new_esEs20(xuu106, xuu108) new_esEs9(xuu4002, xuu302, app(ty_Maybe, dda)) -> new_esEs18(xuu4002, xuu302, dda) new_esEs38(xuu40001, xuu3001, ty_Bool) -> new_esEs21(xuu40001, xuu3001) new_esEs34(xuu40001, xuu3001, ty_Float) -> new_esEs22(xuu40001, xuu3001) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_addToFM_C20(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, ce, cf) -> new_mkBalBranch(xuu14, xuu15, new_addToFM_C0(xuu17, xuu19, xuu20, ce, cf), xuu18, ce, cf) new_mkBalBranch6MkBalBranch3(xuu14, xuu15, xuu39, xuu18, False, ce, cf) -> new_mkBranchResult(xuu14, xuu15, xuu39, xuu18, ce, cf) new_compare26(xuu73, xuu74, True, fch, fda) -> EQ new_emptyFM(h, ba) -> EmptyFM new_compare18(LT, LT) -> EQ new_esEs10(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) new_esEs6(xuu4000, xuu300, app(ty_[], fab)) -> new_esEs16(xuu4000, xuu300, fab) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Int, dcb) -> new_esEs13(xuu40000, xuu3000) new_esEs32(xuu661, xuu671, ty_Char) -> new_esEs15(xuu661, xuu671) new_esEs30(xuu92, xuu95, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs19(xuu92, xuu95, bfd, bfe, bff) new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, False, dgf, dgg, dgh) -> GT new_ltEs20(xuu661, xuu671, ty_Int) -> new_ltEs4(xuu661, xuu671) new_esEs35(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_mkBalBranch6MkBalBranch4(xuu14, xuu15, xuu39, Branch(xuu180, xuu181, xuu182, xuu183, xuu184), True, ce, cf) -> new_mkBalBranch6MkBalBranch01(xuu14, xuu15, xuu39, xuu180, xuu181, xuu182, xuu183, xuu184, new_lt16(new_sizeFM(xuu183, ce, cf), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu184, ce, cf))), ce, cf) new_lt23(xuu106, xuu108, ty_Char) -> new_lt19(xuu106, xuu108) new_lt22(xuu660, xuu670, ty_Int) -> new_lt16(xuu660, xuu670) new_esEs4(xuu4001, xuu301, app(app(ty_@2, dbf), dbg)) -> new_esEs23(xuu4001, xuu301, dbf, dbg) new_esEs21(False, False) -> True new_esEs17(Right(xuu40000), Right(xuu3000), dca, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_lt23(xuu106, xuu108, app(app(ty_Either, fge), fgf)) -> new_lt15(xuu106, xuu108, fge, fgf) new_ltEs7(Right(xuu660), Right(xuu670), ed, ty_Float) -> new_ltEs12(xuu660, xuu670) new_ltEs20(xuu661, xuu671, app(ty_Ratio, efg)) -> new_ltEs9(xuu661, xuu671, efg) new_esEs5(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_not(True) -> False new_ltEs18(xuu93, xuu96, ty_Double) -> new_ltEs17(xuu93, xuu96) new_fsEs(xuu191) -> new_not(new_esEs25(xuu191, GT)) new_esEs38(xuu40001, xuu3001, ty_@0) -> new_esEs20(xuu40001, xuu3001) new_esEs4(xuu4001, xuu301, app(ty_Maybe, dbb)) -> new_esEs18(xuu4001, xuu301, dbb) new_primCompAux00(xuu49, LT) -> LT new_lt7(xuu92, xuu95, app(app(ty_Either, bfb), bfc)) -> new_lt15(xuu92, xuu95, bfb, bfc) new_lt22(xuu660, xuu670, app(ty_[], egh)) -> new_lt10(xuu660, xuu670, egh) new_esEs35(xuu40000, xuu3000, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_compare8(xuu4000, xuu300, app(app(ty_@2, be), bf)) -> new_compare13(xuu4000, xuu300, be, bf) new_lt19(xuu400, xuu30) -> new_esEs12(new_compare7(xuu400, xuu30)) new_ltEs22(xuu73, xuu74, ty_Bool) -> new_ltEs15(xuu73, xuu74) new_esEs17(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ebg), dcb) -> new_esEs24(xuu40000, xuu3000, ebg) new_esEs7(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_compare5(False, False) -> EQ new_lt24(xuu400, xuu30, ty_Double) -> new_lt18(xuu400, xuu30) new_esEs35(xuu40000, xuu3000, app(app(ty_@2, efc), efd)) -> new_esEs23(xuu40000, xuu3000, efc, efd) new_esEs10(xuu4001, xuu301, ty_Ordering) -> new_esEs25(xuu4001, xuu301) new_esEs8(xuu4000, xuu300, app(app(ty_Either, he), hf)) -> new_esEs17(xuu4000, xuu300, he, hf) new_ltEs20(xuu661, xuu671, app(app(ty_Either, egc), egd)) -> new_ltEs7(xuu661, xuu671, egc, egd) new_compare27(xuu80, xuu81, False, fbd, fbe) -> new_compare110(xuu80, xuu81, new_ltEs21(xuu80, xuu81, fbe), fbd, fbe) new_esEs32(xuu661, xuu671, app(ty_[], caf)) -> new_esEs16(xuu661, xuu671, caf) new_esEs11(xuu4000, xuu300, app(app(ty_Either, dfc), dfd)) -> new_esEs17(xuu4000, xuu300, dfc, dfd) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_compare10(xuu144, xuu145, True, dgd, dge) -> LT new_lt20(xuu661, xuu671, ty_Integer) -> new_lt14(xuu661, xuu671) new_lt7(xuu92, xuu95, ty_Ordering) -> new_lt17(xuu92, xuu95) new_esEs17(Right(xuu40000), Right(xuu3000), dca, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_esEs6(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_ltEs7(Left(xuu660), Left(xuu670), ty_@0, da) -> new_ltEs8(xuu660, xuu670) new_lt23(xuu106, xuu108, ty_Float) -> new_lt13(xuu106, xuu108) new_ltEs14(EQ, EQ) -> True new_esEs37(xuu40002, xuu3002, ty_Char) -> new_esEs15(xuu40002, xuu3002) new_ltEs7(Right(xuu660), Right(xuu670), ed, app(ty_Ratio, ef)) -> new_ltEs9(xuu660, xuu670, ef) new_gt(xuu19, xuu14, ty_Double) -> new_esEs41(new_compare25(xuu19, xuu14)) new_primPlusInt(Pos(xuu3920), Pos(xuu1260)) -> Pos(new_primPlusNat0(xuu3920, xuu1260)) new_primCmpInt(Pos(Succ(xuu40000)), Neg(xuu300)) -> GT new_esEs37(xuu40002, xuu3002, app(ty_[], cdg)) -> new_esEs16(xuu40002, xuu3002, cdg) new_ltEs22(xuu73, xuu74, ty_@0) -> new_ltEs8(xuu73, xuu74) new_gt(xuu19, xuu14, app(app(ty_Either, gba), gbb)) -> new_esEs41(new_compare17(xuu19, xuu14, gba, gbb)) new_esEs39(xuu40000, xuu3000, app(ty_Ratio, chd)) -> new_esEs24(xuu40000, xuu3000, chd) new_lt7(xuu92, xuu95, ty_@0) -> new_lt9(xuu92, xuu95) new_mkBalBranch6MkBalBranch5(xuu14, xuu15, xuu39, xuu18, True, ce, cf) -> new_mkBranchResult(xuu14, xuu15, xuu39, xuu18, ce, cf) new_esEs34(xuu40001, xuu3001, app(ty_Ratio, eec)) -> new_esEs24(xuu40001, xuu3001, eec) new_esEs36(xuu660, xuu670, ty_Integer) -> new_esEs14(xuu660, xuu670) new_esEs17(Right(xuu40000), Right(xuu3000), dca, app(app(ty_@2, ecg), ech)) -> new_esEs23(xuu40000, xuu3000, ecg, ech) new_esEs18(Just(xuu40000), Just(xuu3000), app(ty_Ratio, eae)) -> new_esEs24(xuu40000, xuu3000, eae) new_lt8(xuu91, xuu94, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt6(xuu91, xuu94, bgf, bgg, bgh) new_ltEs18(xuu93, xuu96, ty_Int) -> new_ltEs4(xuu93, xuu96) new_esEs31(xuu91, xuu94, ty_Integer) -> new_esEs14(xuu91, xuu94) new_primCmpNat0(Zero, Succ(xuu3000)) -> LT new_esEs4(xuu4001, xuu301, ty_Ordering) -> new_esEs25(xuu4001, xuu301) new_esEs40(xuu106, xuu108, ty_Ordering) -> new_esEs25(xuu106, xuu108) new_ltEs20(xuu661, xuu671, ty_Double) -> new_ltEs17(xuu661, xuu671) new_sizeFM(EmptyFM, ce, cf) -> Pos(Zero) new_ltEs23(xuu107, xuu109, app(app(app(ty_@3, gaa), gab), gac)) -> new_ltEs16(xuu107, xuu109, gaa, gab, gac) new_ltEs21(xuu80, xuu81, ty_Integer) -> new_ltEs13(xuu80, xuu81) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_esEs33(xuu660, xuu670, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs19(xuu660, xuu670, ccg, cch, cda) new_compare18(GT, GT) -> EQ new_esEs30(xuu92, xuu95, app(app(ty_@2, beg), beh)) -> new_esEs23(xuu92, xuu95, beg, beh) new_esEs37(xuu40002, xuu3002, ty_Double) -> new_esEs26(xuu40002, xuu3002) new_esEs32(xuu661, xuu671, ty_Int) -> new_esEs13(xuu661, xuu671) new_esEs10(xuu4001, xuu301, app(app(app(ty_@3, ded), dee), def)) -> new_esEs19(xuu4001, xuu301, ded, dee, def) new_esEs37(xuu40002, xuu3002, app(ty_Ratio, ceh)) -> new_esEs24(xuu40002, xuu3002, ceh) new_ltEs7(Left(xuu660), Left(xuu670), ty_Bool, da) -> new_ltEs15(xuu660, xuu670) new_esEs39(xuu40000, xuu3000, app(app(ty_Either, cgd), cge)) -> new_esEs17(xuu40000, xuu3000, cgd, cge) new_compare111(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, False, xuu185, dgf, dgg, dgh) -> new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, xuu185, dgf, dgg, dgh) new_ltEs23(xuu107, xuu109, ty_Double) -> new_ltEs17(xuu107, xuu109) new_lt24(xuu400, xuu30, app(ty_Ratio, cdb)) -> new_lt11(xuu400, xuu30, cdb) new_compare8(xuu4000, xuu300, ty_Int) -> new_compare6(xuu4000, xuu300) new_esEs17(Right(xuu40000), Right(xuu3000), dca, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu662, xuu672, app(app(ty_@2, bhf), bhg)) -> new_ltEs10(xuu662, xuu672, bhf, bhg) new_esEs30(xuu92, xuu95, ty_Bool) -> new_esEs21(xuu92, xuu95) new_compare28(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, bch, bda, bdb) -> new_compare111(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, new_lt8(xuu91, xuu94, bch), new_asAs(new_esEs31(xuu91, xuu94, bch), new_pePe(new_lt7(xuu92, xuu95, bda), new_asAs(new_esEs30(xuu92, xuu95, bda), new_ltEs18(xuu93, xuu96, bdb)))), bch, bda, bdb) new_ltEs11(Just(xuu660), Just(xuu670), app(ty_[], fed)) -> new_ltEs5(xuu660, xuu670, fed) new_ltEs7(Right(xuu660), Right(xuu670), ed, app(app(ty_@2, eg), eh)) -> new_ltEs10(xuu660, xuu670, eg, eh) new_ltEs19(xuu662, xuu672, ty_Ordering) -> new_ltEs14(xuu662, xuu672) new_esEs32(xuu661, xuu671, app(app(ty_@2, cah), cba)) -> new_esEs23(xuu661, xuu671, cah, cba) new_compare13(@2(xuu4000, xuu4001), @2(xuu300, xuu301), bah, bba) -> new_compare210(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs5(xuu4000, xuu300, bah), new_esEs4(xuu4001, xuu301, bba)), bah, bba) new_ltEs20(xuu661, xuu671, ty_Bool) -> new_ltEs15(xuu661, xuu671) new_esEs29(xuu40000, xuu3000, app(app(ty_Either, bbd), bbe)) -> new_esEs17(xuu40000, xuu3000, bbd, bbe) new_ltEs14(EQ, GT) -> True new_mkBalBranch6MkBalBranch01(xuu14, xuu15, xuu39, xuu180, xuu181, xuu182, EmptyFM, xuu184, False, ce, cf) -> error([]) new_lt20(xuu661, xuu671, app(ty_Maybe, cbb)) -> new_lt12(xuu661, xuu671, cbb) new_esEs10(xuu4001, xuu301, app(ty_Maybe, dec)) -> new_esEs18(xuu4001, xuu301, dec) new_ltEs23(xuu107, xuu109, app(ty_Ratio, fhc)) -> new_ltEs9(xuu107, xuu109, fhc) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs4(xuu4001, xuu301, ty_@0) -> new_esEs20(xuu4001, xuu301) new_esEs33(xuu660, xuu670, ty_Ordering) -> new_esEs25(xuu660, xuu670) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3000))) -> LT new_ltEs18(xuu93, xuu96, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs16(xuu93, xuu96, beb, bec, bed) new_primMulInt(Pos(xuu40000), Pos(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) new_ltEs14(LT, GT) -> True new_esEs17(Left(xuu40000), Left(xuu3000), app(ty_[], eaf), dcb) -> new_esEs16(xuu40000, xuu3000, eaf) new_ltEs14(GT, GT) -> True new_lt7(xuu92, xuu95, ty_Integer) -> new_lt14(xuu92, xuu95) new_esEs21(False, True) -> False new_esEs21(True, False) -> False new_mkBalBranch6MkBalBranch11(xuu14, xuu15, xuu390, xuu391, xuu392, xuu393, Branch(xuu3940, xuu3941, xuu3942, xuu3943, xuu3944), xuu18, False, ce, cf) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu3940, xuu3941, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu390, xuu391, xuu393, xuu3943, ce, cf), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xuu14, xuu15, xuu3944, xuu18, ce, cf) new_esEs5(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_primMulNat0(Succ(xuu400000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu30100)) -> Zero new_esEs29(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_ltEs7(Left(xuu660), Left(xuu670), ty_Ordering, da) -> new_ltEs14(xuu660, xuu670) new_lt22(xuu660, xuu670, ty_Integer) -> new_lt14(xuu660, xuu670) new_ltEs23(xuu107, xuu109, ty_Int) -> new_ltEs4(xuu107, xuu109) new_esEs8(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_esEs7(xuu4000, xuu300, app(app(ty_@2, ha), hb)) -> new_esEs23(xuu4000, xuu300, ha, hb) new_esEs5(xuu4000, xuu300, app(app(ty_Either, dca), dcb)) -> new_esEs17(xuu4000, xuu300, dca, dcb) new_ltEs19(xuu662, xuu672, ty_Integer) -> new_ltEs13(xuu662, xuu672) new_lt23(xuu106, xuu108, ty_Ordering) -> new_lt17(xuu106, xuu108) new_addListToFM_CAdd(xuu3, @2(xuu400, xuu401), h, ba) -> new_addToFM_C0(xuu3, xuu400, xuu401, h, ba) new_ltEs19(xuu662, xuu672, ty_Float) -> new_ltEs12(xuu662, xuu672) new_gt(xuu19, xuu14, app(ty_Maybe, gah)) -> new_esEs41(new_compare14(xuu19, xuu14, gah)) new_lt22(xuu660, xuu670, app(ty_Maybe, ehd)) -> new_lt12(xuu660, xuu670, ehd) new_ltEs11(Just(xuu660), Just(xuu670), ty_Char) -> new_ltEs6(xuu660, xuu670) new_ltEs7(Right(xuu660), Right(xuu670), ed, app(ty_[], ee)) -> new_ltEs5(xuu660, xuu670, ee) new_primPlusNat0(Succ(xuu39200), Zero) -> Succ(xuu39200) new_primPlusNat0(Zero, Succ(xuu12600)) -> Succ(xuu12600) new_esEs9(xuu4002, xuu302, ty_Int) -> new_esEs13(xuu4002, xuu302) new_esEs38(xuu40001, xuu3001, ty_Integer) -> new_esEs14(xuu40001, xuu3001) new_esEs25(GT, GT) -> True new_esEs30(xuu92, xuu95, app(ty_Maybe, bfa)) -> new_esEs18(xuu92, xuu95, bfa) new_esEs32(xuu661, xuu671, app(ty_Maybe, cbb)) -> new_esEs18(xuu661, xuu671, cbb) new_esEs40(xuu106, xuu108, ty_Bool) -> new_esEs21(xuu106, xuu108) new_compare8(xuu4000, xuu300, ty_Bool) -> new_compare5(xuu4000, xuu300) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs26(xuu40000, xuu3000) new_esEs9(xuu4002, xuu302, app(app(ty_@2, dde), ddf)) -> new_esEs23(xuu4002, xuu302, dde, ddf) new_ltEs21(xuu80, xuu81, app(app(app(ty_@3, fce), fcf), fcg)) -> new_ltEs16(xuu80, xuu81, fce, fcf, fcg) new_lt20(xuu661, xuu671, ty_Int) -> new_lt16(xuu661, xuu671) new_esEs34(xuu40001, xuu3001, ty_Double) -> new_esEs26(xuu40001, xuu3001) new_esEs30(xuu92, xuu95, ty_@0) -> new_esEs20(xuu92, xuu95) new_esEs12(LT) -> True new_lt8(xuu91, xuu94, ty_Bool) -> new_lt4(xuu91, xuu94) new_lt20(xuu661, xuu671, ty_@0) -> new_lt9(xuu661, xuu671) new_esEs6(xuu4000, xuu300, app(ty_Maybe, fae)) -> new_esEs18(xuu4000, xuu300, fae) new_ltEs4(xuu66, xuu67) -> new_fsEs(new_compare6(xuu66, xuu67)) new_compare210(xuu106, xuu107, xuu108, xuu109, True, fff, ffg) -> EQ new_ltEs20(xuu661, xuu671, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs16(xuu661, xuu671, ege, egf, egg) new_esEs4(xuu4001, xuu301, ty_Bool) -> new_esEs21(xuu4001, xuu301) new_lt24(xuu400, xuu30, ty_Bool) -> new_lt4(xuu400, xuu30) new_ltEs18(xuu93, xuu96, ty_Bool) -> new_ltEs15(xuu93, xuu96) new_esEs28(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_esEs7(xuu4000, xuu300, app(ty_Maybe, ge)) -> new_esEs18(xuu4000, xuu300, ge) new_compare14(Just(xuu4000), Nothing, dhc) -> GT new_compare17(Left(xuu4000), Right(xuu300), fh, ga) -> LT new_esEs31(xuu91, xuu94, app(app(ty_Either, bgd), bge)) -> new_esEs17(xuu91, xuu94, bgd, bge) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs22(xuu40000, xuu3000) new_gt(xuu19, xuu14, ty_Ordering) -> new_esEs41(new_compare18(xuu19, xuu14)) new_lt10(xuu400, xuu30, bb) -> new_esEs12(new_compare0(xuu400, xuu30, bb)) new_ltEs9(xuu66, xuu67, dac) -> new_fsEs(new_compare12(xuu66, xuu67, dac)) new_esEs10(xuu4001, xuu301, app(app(ty_@2, deg), deh)) -> new_esEs23(xuu4001, xuu301, deg, deh) new_esEs39(xuu40000, xuu3000, app(ty_[], cgc)) -> new_esEs16(xuu40000, xuu3000, cgc) new_esEs7(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_esEs5(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_compare14(Nothing, Nothing, dhc) -> EQ new_ltEs21(xuu80, xuu81, ty_Float) -> new_ltEs12(xuu80, xuu81) new_esEs39(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_mkBalBranch6MkBalBranch11(xuu14, xuu15, xuu390, xuu391, xuu392, xuu393, EmptyFM, xuu18, False, ce, cf) -> error([]) new_ltEs8(xuu66, xuu67) -> new_fsEs(new_compare9(xuu66, xuu67)) new_compare6(xuu400, xuu30) -> new_primCmpInt(xuu400, xuu30) new_esEs4(xuu4001, xuu301, app(ty_[], dag)) -> new_esEs16(xuu4001, xuu301, dag) new_ltEs7(Left(xuu660), Left(xuu670), ty_Char, da) -> new_ltEs6(xuu660, xuu670) new_esEs4(xuu4001, xuu301, ty_Char) -> new_esEs15(xuu4001, xuu301) new_esEs30(xuu92, xuu95, ty_Char) -> new_esEs15(xuu92, xuu95) new_lt22(xuu660, xuu670, ty_Bool) -> new_lt4(xuu660, xuu670) new_ltEs7(Left(xuu660), Right(xuu670), ed, da) -> True new_esEs11(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_esEs39(xuu40000, xuu3000, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_esEs12(GT) -> False new_esEs12(EQ) -> False new_ltEs15(True, True) -> True new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, chg, chh) -> new_mkBalBranch(xuu31, xuu32, xuu34, new_addToFM_C0(xuu35, xuu36, xuu37, chg, chh), chg, chh) new_lt21(xuu660, xuu670, ty_Float) -> new_lt13(xuu660, xuu670) new_lt22(xuu660, xuu670, ty_Ordering) -> new_lt17(xuu660, xuu670) new_lt23(xuu106, xuu108, ty_Integer) -> new_lt14(xuu106, xuu108) new_esEs33(xuu660, xuu670, ty_Int) -> new_esEs13(xuu660, xuu670) new_primPlusInt(Neg(xuu3920), Neg(xuu1260)) -> Neg(new_primPlusNat0(xuu3920, xuu1260)) new_esEs34(xuu40001, xuu3001, ty_Integer) -> new_esEs14(xuu40001, xuu3001) new_ltEs22(xuu73, xuu74, ty_Int) -> new_ltEs4(xuu73, xuu74) new_lt8(xuu91, xuu94, app(ty_[], bfg)) -> new_lt10(xuu91, xuu94, bfg) new_lt21(xuu660, xuu670, app(app(ty_Either, cce), ccf)) -> new_lt15(xuu660, xuu670, cce, ccf) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_esEs11(xuu4000, xuu300, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs19(xuu4000, xuu300, dff, dfg, dfh) new_ltEs19(xuu662, xuu672, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs16(xuu662, xuu672, cac, cad, cae) new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_ltEs11(Just(xuu660), Just(xuu670), app(app(ty_@2, fef), feg)) -> new_ltEs10(xuu660, xuu670, fef, feg) new_lt24(xuu400, xuu30, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt6(xuu400, xuu30, bce, bcf, bcg) new_esEs36(xuu660, xuu670, app(ty_Ratio, eha)) -> new_esEs24(xuu660, xuu670, eha) new_esEs38(xuu40001, xuu3001, app(app(ty_Either, cfb), cfc)) -> new_esEs17(xuu40001, xuu3001, cfb, cfc) new_compare8(xuu4000, xuu300, app(ty_[], bc)) -> new_compare0(xuu4000, xuu300, bc) new_esEs38(xuu40001, xuu3001, app(ty_Maybe, cfd)) -> new_esEs18(xuu40001, xuu3001, cfd) new_compare18(GT, LT) -> GT new_mkBranch(xuu224, xuu225, xuu226, xuu227, xuu228, xuu229, xuu230, xuu231, xuu232, baf, bag) -> new_mkBranchResult(xuu225, xuu226, xuu227, new_mkBranch0(xuu228, xuu229, xuu230, xuu231, xuu232, baf, bag), baf, bag) new_compare18(EQ, LT) -> GT new_compare28(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, True, bch, bda, bdb) -> EQ new_lt7(xuu92, xuu95, app(app(app(ty_@3, bfd), bfe), bff)) -> new_lt6(xuu92, xuu95, bfd, bfe, bff) new_compare114(xuu137, xuu138, True, cdc) -> LT new_esEs5(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_compare0([], :(xuu300, xuu301), bb) -> LT new_esEs30(xuu92, xuu95, ty_Integer) -> new_esEs14(xuu92, xuu95) new_compare10(xuu144, xuu145, False, dgd, dge) -> GT new_esEs32(xuu661, xuu671, ty_Ordering) -> new_esEs25(xuu661, xuu671) new_esEs5(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_esEs36(xuu660, xuu670, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs19(xuu660, xuu670, ehg, ehh, faa) new_ltEs22(xuu73, xuu74, app(app(ty_@2, fdd), fde)) -> new_ltEs10(xuu73, xuu74, fdd, fde) new_ltEs12(xuu66, xuu67) -> new_fsEs(new_compare15(xuu66, xuu67)) new_gt(xuu19, xuu14, app(app(ty_@2, gaf), gag)) -> new_esEs41(new_compare13(xuu19, xuu14, gaf, gag)) new_esEs36(xuu660, xuu670, ty_@0) -> new_esEs20(xuu660, xuu670) new_esEs11(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_ltEs16(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bha, bhb, bhc) -> new_pePe(new_lt21(xuu660, xuu670, bha), new_asAs(new_esEs33(xuu660, xuu670, bha), new_pePe(new_lt20(xuu661, xuu671, bhb), new_asAs(new_esEs32(xuu661, xuu671, bhb), new_ltEs19(xuu662, xuu672, bhc))))) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Bool, dcb) -> new_esEs21(xuu40000, xuu3000) new_gt(xuu19, xuu14, app(ty_Ratio, gae)) -> new_esEs41(new_compare12(xuu19, xuu14, gae)) new_esEs8(xuu4000, xuu300, app(ty_[], hd)) -> new_esEs16(xuu4000, xuu300, hd) new_primCmpInt(Pos(Succ(xuu40000)), Pos(xuu300)) -> new_primCmpNat0(Succ(xuu40000), xuu300) new_compare5(True, True) -> EQ new_lt20(xuu661, xuu671, app(ty_[], caf)) -> new_lt10(xuu661, xuu671, caf) new_esEs29(xuu40000, xuu3000, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_primCompAux00(xuu49, EQ) -> xuu49 new_compare113(xuu163, xuu164, xuu165, xuu166, False, che, chf) -> GT new_mkBalBranch6MkBalBranch4(xuu14, xuu15, xuu39, EmptyFM, True, ce, cf) -> error([]) new_ltEs11(Just(xuu660), Just(xuu670), ty_Double) -> new_ltEs17(xuu660, xuu670) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Float, dcb) -> new_esEs22(xuu40000, xuu3000) new_lt21(xuu660, xuu670, ty_@0) -> new_lt9(xuu660, xuu670) new_mkBranchResult(xuu14, xuu15, xuu39, xuu18, ce, cf) -> Branch(xuu14, xuu15, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu39, ce, cf)), new_sizeFM(xuu18, ce, cf)), xuu39, xuu18) new_gt(xuu19, xuu14, app(ty_[], gad)) -> new_esEs41(new_compare0(xuu19, xuu14, gad)) new_ltEs23(xuu107, xuu109, app(ty_[], fhb)) -> new_ltEs5(xuu107, xuu109, fhb) new_compare25(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_lt21(xuu660, xuu670, app(ty_[], cbh)) -> new_lt10(xuu660, xuu670, cbh) new_primMulNat0(Succ(xuu400000), Succ(xuu30100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu30100)), Succ(xuu30100)) new_compare17(Right(xuu4000), Left(xuu300), fh, ga) -> GT new_esEs10(xuu4001, xuu301, ty_Double) -> new_esEs26(xuu4001, xuu301) new_esEs10(xuu4001, xuu301, app(ty_Ratio, dfa)) -> new_esEs24(xuu4001, xuu301, dfa) new_compare8(xuu4000, xuu300, ty_Char) -> new_compare7(xuu4000, xuu300) new_esEs33(xuu660, xuu670, app(app(ty_Either, cce), ccf)) -> new_esEs17(xuu660, xuu670, cce, ccf) new_esEs18(Just(xuu40000), Just(xuu3000), app(ty_Maybe, dhg)) -> new_esEs18(xuu40000, xuu3000, dhg) new_compare8(xuu4000, xuu300, ty_Integer) -> new_compare16(xuu4000, xuu300) new_ltEs11(Nothing, Just(xuu670), daf) -> True new_ltEs21(xuu80, xuu81, app(app(ty_@2, fbh), fca)) -> new_ltEs10(xuu80, xuu81, fbh, fca) new_esEs31(xuu91, xuu94, ty_Double) -> new_esEs26(xuu91, xuu94) new_lt8(xuu91, xuu94, ty_Char) -> new_lt19(xuu91, xuu94) new_ltEs22(xuu73, xuu74, app(ty_[], fdb)) -> new_ltEs5(xuu73, xuu74, fdb) new_ltEs11(Just(xuu660), Just(xuu670), app(ty_Ratio, fee)) -> new_ltEs9(xuu660, xuu670, fee) new_esEs24(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), cg) -> new_asAs(new_esEs28(xuu40000, xuu3000, cg), new_esEs27(xuu40001, xuu3001, cg)) new_esEs37(xuu40002, xuu3002, ty_Float) -> new_esEs22(xuu40002, xuu3002) new_esEs33(xuu660, xuu670, app(ty_Maybe, ccd)) -> new_esEs18(xuu660, xuu670, ccd) new_esEs40(xuu106, xuu108, app(app(ty_Either, fge), fgf)) -> new_esEs17(xuu106, xuu108, fge, fgf) new_esEs37(xuu40002, xuu3002, ty_@0) -> new_esEs20(xuu40002, xuu3002) new_esEs18(Just(xuu40000), Just(xuu3000), app(app(ty_Either, dhe), dhf)) -> new_esEs17(xuu40000, xuu3000, dhe, dhf) new_esEs34(xuu40001, xuu3001, app(app(ty_Either, edc), edd)) -> new_esEs17(xuu40001, xuu3001, edc, edd) new_esEs4(xuu4001, xuu301, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs19(xuu4001, xuu301, dbc, dbd, dbe) new_esEs31(xuu91, xuu94, ty_Bool) -> new_esEs21(xuu91, xuu94) new_lt22(xuu660, xuu670, app(app(ty_Either, ehe), ehf)) -> new_lt15(xuu660, xuu670, ehe, ehf) new_esEs36(xuu660, xuu670, ty_Float) -> new_esEs22(xuu660, xuu670) new_mkBalBranch6MkBalBranch3(xuu14, xuu15, EmptyFM, xuu18, True, ce, cf) -> error([]) new_esEs36(xuu660, xuu670, ty_Bool) -> new_esEs21(xuu660, xuu670) new_esEs17(Left(xuu40000), Right(xuu3000), dca, dcb) -> False new_esEs17(Right(xuu40000), Left(xuu3000), dca, dcb) -> False new_esEs40(xuu106, xuu108, app(ty_Maybe, fgd)) -> new_esEs18(xuu106, xuu108, fgd) new_esEs34(xuu40001, xuu3001, app(ty_Maybe, ede)) -> new_esEs18(xuu40001, xuu3001, ede) new_lt23(xuu106, xuu108, app(app(app(ty_@3, fgg), fgh), fha)) -> new_lt6(xuu106, xuu108, fgg, fgh, fha) new_esEs5(xuu4000, xuu300, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs19(xuu4000, xuu300, cdd, cde, cdf) new_esEs39(xuu40000, xuu3000, app(ty_Maybe, cgf)) -> new_esEs18(xuu40000, xuu3000, cgf) new_esEs32(xuu661, xuu671, ty_@0) -> new_esEs20(xuu661, xuu671) new_lt22(xuu660, xuu670, ty_@0) -> new_lt9(xuu660, xuu670) new_compare17(Left(xuu4000), Left(xuu300), fh, ga) -> new_compare26(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, fh), fh, ga) new_esEs7(xuu4000, xuu300, app(ty_[], gb)) -> new_esEs16(xuu4000, xuu300, gb) new_lt8(xuu91, xuu94, ty_Float) -> new_lt13(xuu91, xuu94) new_esEs32(xuu661, xuu671, ty_Double) -> new_esEs26(xuu661, xuu671) new_esEs41(GT) -> True new_mkBranch0(xuu228, xuu229, xuu230, xuu231, xuu232, baf, bag) -> new_mkBranchResult(xuu229, xuu230, xuu231, xuu232, baf, bag) new_lt21(xuu660, xuu670, ty_Bool) -> new_lt4(xuu660, xuu670) new_esEs31(xuu91, xuu94, ty_Char) -> new_esEs15(xuu91, xuu94) new_esEs11(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_mkBalBranch6MkBalBranch3(xuu14, xuu15, Branch(xuu390, xuu391, xuu392, xuu393, xuu394), xuu18, True, ce, cf) -> new_mkBalBranch6MkBalBranch11(xuu14, xuu15, xuu390, xuu391, xuu392, xuu393, xuu394, xuu18, new_lt16(new_sizeFM(xuu394, ce, cf), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu393, ce, cf))), ce, cf) new_esEs11(xuu4000, xuu300, app(ty_Ratio, dgc)) -> new_esEs24(xuu4000, xuu300, dgc) new_esEs17(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, ebb), ebc), ebd), dcb) -> new_esEs19(xuu40000, xuu3000, ebb, ebc, ebd) new_mkBalBranch(xuu14, xuu15, xuu39, xuu18, ce, cf) -> new_mkBalBranch6MkBalBranch5(xuu14, xuu15, xuu39, xuu18, new_lt16(new_primPlusInt(new_mkBalBranch6Size_l(xuu14, xuu15, xuu39, xuu18, ce, cf), new_mkBalBranch6Size_r(xuu14, xuu15, xuu39, xuu18, ce, cf)), Pos(Succ(Succ(Zero)))), ce, cf) new_lt21(xuu660, xuu670, ty_Ordering) -> new_lt17(xuu660, xuu670) new_compare8(xuu4000, xuu300, ty_Ordering) -> new_compare18(xuu4000, xuu300) new_esEs33(xuu660, xuu670, ty_Integer) -> new_esEs14(xuu660, xuu670) new_compare18(EQ, EQ) -> EQ new_esEs9(xuu4002, xuu302, app(ty_[], dcf)) -> new_esEs16(xuu4002, xuu302, dcf) new_ltEs10(@2(xuu660, xuu661), @2(xuu670, xuu671), dad, dae) -> new_pePe(new_lt22(xuu660, xuu670, dad), new_asAs(new_esEs36(xuu660, xuu670, dad), new_ltEs20(xuu661, xuu671, dae))) new_sizeFM(Branch(xuu180, xuu181, xuu182, xuu183, xuu184), ce, cf) -> xuu182 new_mkBalBranch6MkBalBranch11(xuu14, xuu15, xuu390, xuu391, xuu392, xuu393, xuu394, xuu18, True, ce, cf) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu390, xuu391, xuu393, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xuu14, xuu15, xuu394, xuu18, ce, cf) new_compare16(Integer(xuu4000), Integer(xuu300)) -> new_primCmpInt(xuu4000, xuu300) new_esEs17(Right(xuu40000), Right(xuu3000), dca, app(ty_[], ebh)) -> new_esEs16(xuu40000, xuu3000, ebh) new_esEs10(xuu4001, xuu301, ty_Integer) -> new_esEs14(xuu4001, xuu301) new_compare18(LT, EQ) -> LT new_esEs29(xuu40000, xuu3000, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_lt20(xuu661, xuu671, ty_Float) -> new_lt13(xuu661, xuu671) new_esEs35(xuu40000, xuu3000, app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs19(xuu40000, xuu3000, eeh, efa, efb) new_compare0(:(xuu4000, xuu4001), [], bb) -> GT new_esEs33(xuu660, xuu670, ty_@0) -> new_esEs20(xuu660, xuu670) new_lt17(xuu400, xuu30) -> new_esEs12(new_compare18(xuu400, xuu30)) new_esEs6(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_primPlusNat0(Succ(xuu39200), Succ(xuu12600)) -> Succ(Succ(new_primPlusNat0(xuu39200, xuu12600))) new_esEs37(xuu40002, xuu3002, app(ty_Maybe, ceb)) -> new_esEs18(xuu40002, xuu3002, ceb) new_esEs10(xuu4001, xuu301, ty_@0) -> new_esEs20(xuu4001, xuu301) new_compare12(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Int) -> new_compare6(new_sr(xuu4000, xuu301), new_sr(xuu300, xuu4001)) new_esEs35(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_compare8(xuu4000, xuu300, ty_@0) -> new_compare9(xuu4000, xuu300) new_compare27(xuu80, xuu81, True, fbd, fbe) -> EQ new_lt23(xuu106, xuu108, ty_@0) -> new_lt9(xuu106, xuu108) new_lt7(xuu92, xuu95, app(ty_[], bee)) -> new_lt10(xuu92, xuu95, bee) new_esEs30(xuu92, xuu95, ty_Double) -> new_esEs26(xuu92, xuu95) new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_esEs30(xuu92, xuu95, app(ty_Ratio, bef)) -> new_esEs24(xuu92, xuu95, bef) new_ltEs18(xuu93, xuu96, app(ty_[], bdc)) -> new_ltEs5(xuu93, xuu96, bdc) new_ltEs21(xuu80, xuu81, app(ty_[], fbf)) -> new_ltEs5(xuu80, xuu81, fbf) new_ltEs15(False, True) -> True new_esEs30(xuu92, xuu95, ty_Int) -> new_esEs13(xuu92, xuu95) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Integer, dcb) -> new_esEs14(xuu40000, xuu3000) new_lt7(xuu92, xuu95, ty_Float) -> new_lt13(xuu92, xuu95) new_esEs37(xuu40002, xuu3002, app(app(ty_Either, cdh), cea)) -> new_esEs17(xuu40002, xuu3002, cdh, cea) new_esEs35(xuu40000, xuu3000, app(app(ty_Either, eee), eef)) -> new_esEs17(xuu40000, xuu3000, eee, eef) new_compare210(xuu106, xuu107, xuu108, xuu109, False, fff, ffg) -> new_compare112(xuu106, xuu107, xuu108, xuu109, new_lt23(xuu106, xuu108, fff), new_asAs(new_esEs40(xuu106, xuu108, fff), new_ltEs23(xuu107, xuu109, ffg)), fff, ffg) new_esEs32(xuu661, xuu671, ty_Bool) -> new_esEs21(xuu661, xuu671) new_esEs38(xuu40001, xuu3001, ty_Ordering) -> new_esEs25(xuu40001, xuu3001) new_esEs29(xuu40000, xuu3000, app(ty_Ratio, bcd)) -> new_esEs24(xuu40000, xuu3000, bcd) new_compare19(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), bce, bcf, bcg) -> new_compare28(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs11(xuu4000, xuu300, bce), new_asAs(new_esEs10(xuu4001, xuu301, bcf), new_esEs9(xuu4002, xuu302, bcg))), bce, bcf, bcg) new_compare0(:(xuu4000, xuu4001), :(xuu300, xuu301), bb) -> new_primCompAux0(xuu4000, xuu300, new_compare0(xuu4001, xuu301, bb), bb) new_lt20(xuu661, xuu671, app(app(ty_Either, cbc), cbd)) -> new_lt15(xuu661, xuu671, cbc, cbd) new_lt8(xuu91, xuu94, ty_@0) -> new_lt9(xuu91, xuu94) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Ordering, dcb) -> new_esEs25(xuu40000, xuu3000) new_esEs35(xuu40000, xuu3000, app(ty_Maybe, eeg)) -> new_esEs18(xuu40000, xuu3000, eeg) new_lt20(xuu661, xuu671, ty_Char) -> new_lt19(xuu661, xuu671) new_compare8(xuu4000, xuu300, app(app(ty_Either, bh), ca)) -> new_compare17(xuu4000, xuu300, bh, ca) new_esEs21(True, True) -> True new_esEs35(xuu40000, xuu3000, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_lt22(xuu660, xuu670, ty_Float) -> new_lt13(xuu660, xuu670) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Char, dcb) -> new_esEs15(xuu40000, xuu3000) new_lt18(xuu400, xuu30) -> new_esEs12(new_compare25(xuu400, xuu30)) new_esEs39(xuu40000, xuu3000, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_esEs38(xuu40001, xuu3001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs19(xuu40001, xuu3001, cfe, cff, cfg) new_esEs35(xuu40000, xuu3000, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_lt7(xuu92, xuu95, ty_Char) -> new_lt19(xuu92, xuu95) new_esEs11(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_esEs34(xuu40001, xuu3001, ty_Bool) -> new_esEs21(xuu40001, xuu3001) new_esEs34(xuu40001, xuu3001, ty_Char) -> new_esEs15(xuu40001, xuu3001) new_esEs38(xuu40001, xuu3001, ty_Float) -> new_esEs22(xuu40001, xuu3001) new_primCmpNat0(Succ(xuu40000), Succ(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) new_lt21(xuu660, xuu670, app(app(app(ty_@3, ccg), cch), cda)) -> new_lt6(xuu660, xuu670, ccg, cch, cda) new_esEs28(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_esEs36(xuu660, xuu670, ty_Ordering) -> new_esEs25(xuu660, xuu670) new_ltEs7(Left(xuu660), Left(xuu670), ty_Float, da) -> new_ltEs12(xuu660, xuu670) new_ltEs11(Just(xuu660), Nothing, daf) -> False new_ltEs11(Just(xuu660), Just(xuu670), ty_Int) -> new_ltEs4(xuu660, xuu670) new_esEs32(xuu661, xuu671, app(ty_Ratio, cag)) -> new_esEs24(xuu661, xuu671, cag) new_compare111(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, True, xuu185, dgf, dgg, dgh) -> new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, True, dgf, dgg, dgh) new_primMinusNat0(Zero, Succ(xuu12600)) -> Neg(Succ(xuu12600)) new_ltEs11(Nothing, Nothing, daf) -> True new_esEs10(xuu4001, xuu301, ty_Char) -> new_esEs15(xuu4001, xuu301) new_lt15(xuu400, xuu30, fh, ga) -> new_esEs12(new_compare17(xuu400, xuu30, fh, ga)) new_compare8(xuu4000, xuu300, ty_Float) -> new_compare15(xuu4000, xuu300) new_esEs33(xuu660, xuu670, ty_Bool) -> new_esEs21(xuu660, xuu670) new_esEs33(xuu660, xuu670, ty_Char) -> new_esEs15(xuu660, xuu670) new_lt22(xuu660, xuu670, ty_Char) -> new_lt19(xuu660, xuu670) new_esEs10(xuu4001, xuu301, ty_Bool) -> new_esEs21(xuu4001, xuu301) new_lt20(xuu661, xuu671, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt6(xuu661, xuu671, cbe, cbf, cbg) new_esEs36(xuu660, xuu670, app(app(ty_Either, ehe), ehf)) -> new_esEs17(xuu660, xuu670, ehe, ehf) new_ltEs5(xuu66, xuu67, dab) -> new_fsEs(new_compare0(xuu66, xuu67, dab)) new_lt14(xuu400, xuu30) -> new_esEs12(new_compare16(xuu400, xuu30)) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) new_lt24(xuu400, xuu30, app(ty_[], bb)) -> new_lt10(xuu400, xuu30, bb) new_esEs37(xuu40002, xuu3002, ty_Ordering) -> new_esEs25(xuu40002, xuu3002) new_compare8(xuu4000, xuu300, app(app(app(ty_@3, cb), cc), cd)) -> new_compare19(xuu4000, xuu300, cb, cc, cd) new_ltEs15(True, False) -> False new_esEs15(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_ltEs20(xuu661, xuu671, app(ty_[], eff)) -> new_ltEs5(xuu661, xuu671, eff) new_lt21(xuu660, xuu670, ty_Char) -> new_lt19(xuu660, xuu670) new_esEs31(xuu91, xuu94, app(ty_Ratio, bfh)) -> new_esEs24(xuu91, xuu94, bfh) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, True, dgf, dgg, dgh) -> LT new_esEs11(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs15(xuu40000, xuu3000) new_ltEs14(LT, LT) -> True new_esEs11(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_ltEs7(Left(xuu660), Left(xuu670), app(ty_Maybe, df), da) -> new_ltEs11(xuu660, xuu670, df) new_esEs40(xuu106, xuu108, ty_Float) -> new_esEs22(xuu106, xuu108) new_esEs4(xuu4001, xuu301, ty_Float) -> new_esEs22(xuu4001, xuu301) new_esEs14(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs17(Left(xuu40000), Left(xuu3000), ty_@0, dcb) -> new_esEs20(xuu40000, xuu3000) new_ltEs15(False, False) -> True new_esEs37(xuu40002, xuu3002, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs19(xuu40002, xuu3002, cec, ced, cee) new_esEs35(xuu40000, xuu3000, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_ltEs23(xuu107, xuu109, app(app(ty_@2, fhd), fhe)) -> new_ltEs10(xuu107, xuu109, fhd, fhe) new_lt13(xuu400, xuu30) -> new_esEs12(new_compare15(xuu400, xuu30)) new_ltEs7(Right(xuu660), Left(xuu670), ed, da) -> False new_primCmpInt(Neg(Succ(xuu40000)), Pos(xuu300)) -> LT new_ltEs18(xuu93, xuu96, app(app(ty_@2, bde), bdf)) -> new_ltEs10(xuu93, xuu96, bde, bdf) new_esEs32(xuu661, xuu671, ty_Integer) -> new_esEs14(xuu661, xuu671) new_ltEs18(xuu93, xuu96, ty_Ordering) -> new_ltEs14(xuu93, xuu96) new_esEs7(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_ltEs24(xuu66, xuu67, ty_Int) -> new_ltEs4(xuu66, xuu67) new_esEs39(xuu40000, xuu3000, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_esEs34(xuu40001, xuu3001, ty_@0) -> new_esEs20(xuu40001, xuu3001) new_ltEs7(Left(xuu660), Left(xuu670), app(app(ty_@2, dd), de), da) -> new_ltEs10(xuu660, xuu670, dd, de) new_esEs36(xuu660, xuu670, app(ty_Maybe, ehd)) -> new_esEs18(xuu660, xuu670, ehd) new_ltEs18(xuu93, xuu96, ty_Float) -> new_ltEs12(xuu93, xuu96) new_lt24(xuu400, xuu30, ty_@0) -> new_lt9(xuu400, xuu30) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3000))) -> GT new_esEs34(xuu40001, xuu3001, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs19(xuu40001, xuu3001, edf, edg, edh) new_ltEs19(xuu662, xuu672, app(ty_[], bhd)) -> new_ltEs5(xuu662, xuu672, bhd) new_compare113(xuu163, xuu164, xuu165, xuu166, True, che, chf) -> LT new_ltEs24(xuu66, xuu67, app(app(ty_Either, ed), da)) -> new_ltEs7(xuu66, xuu67, ed, da) new_primCmpInt(Neg(Succ(xuu40000)), Neg(xuu300)) -> new_primCmpNat0(xuu300, Succ(xuu40000)) new_esEs38(xuu40001, xuu3001, ty_Double) -> new_esEs26(xuu40001, xuu3001) new_ltEs21(xuu80, xuu81, ty_Char) -> new_ltEs6(xuu80, xuu81) new_esEs41(EQ) -> False new_lt4(xuu400, xuu30) -> new_esEs12(new_compare5(xuu400, xuu30)) new_esEs33(xuu660, xuu670, app(ty_[], cbh)) -> new_esEs16(xuu660, xuu670, cbh) new_lt7(xuu92, xuu95, ty_Bool) -> new_lt4(xuu92, xuu95) new_esEs5(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_lt20(xuu661, xuu671, ty_Bool) -> new_lt4(xuu661, xuu671) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_esEs18(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs20(xuu40000, xuu3000) new_lt21(xuu660, xuu670, app(app(ty_@2, ccb), ccc)) -> new_lt5(xuu660, xuu670, ccb, ccc) new_esEs31(xuu91, xuu94, app(app(ty_@2, bga), bgb)) -> new_esEs23(xuu91, xuu94, bga, bgb) new_lt23(xuu106, xuu108, app(ty_[], ffh)) -> new_lt10(xuu106, xuu108, ffh) new_esEs8(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_esEs17(Right(xuu40000), Right(xuu3000), dca, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs19(xuu40000, xuu3000, ecd, ece, ecf) new_esEs29(xuu40000, xuu3000, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_esEs38(xuu40001, xuu3001, app(ty_Ratio, cgb)) -> new_esEs24(xuu40001, xuu3001, cgb) new_addToFM_C20(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, ce, cf) -> new_addToFM_C10(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_gt(xuu19, xuu14, ce), ce, cf) new_compare15(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_ltEs24(xuu66, xuu67, ty_Double) -> new_ltEs17(xuu66, xuu67) new_compare25(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_compare25(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_esEs39(xuu40000, xuu3000, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_lt22(xuu660, xuu670, app(app(app(ty_@3, ehg), ehh), faa)) -> new_lt6(xuu660, xuu670, ehg, ehh, faa) new_lt24(xuu400, xuu30, ty_Char) -> new_lt19(xuu400, xuu30) new_ltEs22(xuu73, xuu74, app(app(app(ty_@3, fea), feb), fec)) -> new_ltEs16(xuu73, xuu74, fea, feb, fec) new_ltEs20(xuu661, xuu671, ty_Ordering) -> new_ltEs14(xuu661, xuu671) new_compare14(Nothing, Just(xuu300), dhc) -> LT new_esEs40(xuu106, xuu108, app(ty_Ratio, fga)) -> new_esEs24(xuu106, xuu108, fga) new_ltEs20(xuu661, xuu671, app(app(ty_@2, efh), ega)) -> new_ltEs10(xuu661, xuu671, efh, ega) new_esEs33(xuu660, xuu670, app(ty_Ratio, cca)) -> new_esEs24(xuu660, xuu670, cca) new_primCmpNat0(Zero, Zero) -> EQ new_esEs37(xuu40002, xuu3002, ty_Integer) -> new_esEs14(xuu40002, xuu3002) new_esEs10(xuu4001, xuu301, app(app(ty_Either, dea), deb)) -> new_esEs17(xuu4001, xuu301, dea, deb) new_esEs29(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_esEs20(@0, @0) -> True new_esEs33(xuu660, xuu670, ty_Double) -> new_esEs26(xuu660, xuu670) new_esEs30(xuu92, xuu95, ty_Float) -> new_esEs22(xuu92, xuu95) new_esEs5(xuu4000, xuu300, app(ty_Maybe, dcc)) -> new_esEs18(xuu4000, xuu300, dcc) new_ltEs22(xuu73, xuu74, ty_Integer) -> new_ltEs13(xuu73, xuu74) new_esEs36(xuu660, xuu670, ty_Int) -> new_esEs13(xuu660, xuu670) new_ltEs19(xuu662, xuu672, ty_Double) -> new_ltEs17(xuu662, xuu672) new_esEs7(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_esEs17(Right(xuu40000), Right(xuu3000), dca, app(ty_Ratio, eda)) -> new_esEs24(xuu40000, xuu3000, eda) new_esEs36(xuu660, xuu670, ty_Char) -> new_esEs15(xuu660, xuu670) new_ltEs21(xuu80, xuu81, ty_Bool) -> new_ltEs15(xuu80, xuu81) new_esEs39(xuu40000, xuu3000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs19(xuu40000, xuu3000, cgg, cgh, cha) new_compare114(xuu137, xuu138, False, cdc) -> GT new_addToFM_C0(Branch(xuu30, xuu31, xuu32, xuu33, xuu34), xuu400, xuu401, h, ba) -> new_addToFM_C20(xuu30, xuu31, xuu32, xuu33, xuu34, xuu400, xuu401, new_lt24(xuu400, xuu30, h), h, ba) new_ltEs19(xuu662, xuu672, ty_Char) -> new_ltEs6(xuu662, xuu672) new_esEs6(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_esEs29(xuu40000, xuu3000, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs19(xuu40000, xuu3000, bbg, bbh, bca) new_esEs36(xuu660, xuu670, app(app(ty_@2, ehb), ehc)) -> new_esEs23(xuu660, xuu670, ehb, ehc) new_compare17(Right(xuu4000), Right(xuu300), fh, ga) -> new_compare27(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, ga), fh, ga) new_primCompAux00(xuu49, GT) -> GT new_lt24(xuu400, xuu30, ty_Float) -> new_lt13(xuu400, xuu30) new_primMinusNat0(Succ(xuu39200), Zero) -> Pos(Succ(xuu39200)) new_compare112(xuu163, xuu164, xuu165, xuu166, False, xuu168, che, chf) -> new_compare113(xuu163, xuu164, xuu165, xuu166, xuu168, che, chf) new_esEs17(Right(xuu40000), Right(xuu3000), dca, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_lt6(xuu400, xuu30, bce, bcf, bcg) -> new_esEs12(new_compare19(xuu400, xuu30, bce, bcf, bcg)) new_esEs4(xuu4001, xuu301, app(app(ty_Either, dah), dba)) -> new_esEs17(xuu4001, xuu301, dah, dba) new_mkBalBranch6MkBalBranch01(xuu14, xuu15, xuu39, xuu180, xuu181, xuu182, xuu183, xuu184, True, ce, cf) -> new_mkBranchResult(xuu180, xuu181, new_mkBranchResult(xuu14, xuu15, xuu39, xuu183, ce, cf), xuu184, ce, cf) new_esEs18(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, dhh), eaa), eab)) -> new_esEs19(xuu40000, xuu3000, dhh, eaa, eab) new_ltEs14(EQ, LT) -> False new_esEs29(xuu40000, xuu3000, app(app(ty_@2, bcb), bcc)) -> new_esEs23(xuu40000, xuu3000, bcb, bcc) new_lt21(xuu660, xuu670, ty_Integer) -> new_lt14(xuu660, xuu670) new_compare110(xuu151, xuu152, True, dha, dhb) -> LT new_esEs11(xuu4000, xuu300, app(ty_Maybe, dfe)) -> new_esEs18(xuu4000, xuu300, dfe) new_esEs8(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_esEs34(xuu40001, xuu3001, ty_Ordering) -> new_esEs25(xuu40001, xuu3001) new_lt8(xuu91, xuu94, ty_Int) -> new_lt16(xuu91, xuu94) new_esEs31(xuu91, xuu94, ty_Int) -> new_esEs13(xuu91, xuu94) new_ltEs11(Just(xuu660), Just(xuu670), ty_Integer) -> new_ltEs13(xuu660, xuu670) new_esEs9(xuu4002, xuu302, app(app(ty_Either, dcg), dch)) -> new_esEs17(xuu4002, xuu302, dcg, dch) new_ltEs7(Left(xuu660), Left(xuu670), app(ty_Ratio, dc), da) -> new_ltEs9(xuu660, xuu670, dc) new_compare29(xuu66, xuu67, False, daa) -> new_compare114(xuu66, xuu67, new_ltEs24(xuu66, xuu67, daa), daa) new_primCmpNat0(Succ(xuu40000), Zero) -> GT new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, chg, chh) -> Branch(xuu36, xuu37, xuu33, xuu34, xuu35) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) new_primCompAux0(xuu4000, xuu300, xuu45, bb) -> new_primCompAux00(xuu45, new_compare8(xuu4000, xuu300, bb)) new_ltEs19(xuu662, xuu672, app(app(ty_Either, caa), cab)) -> new_ltEs7(xuu662, xuu672, caa, cab) new_pePe(False, xuu196) -> xuu196 new_esEs6(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_mkBalBranch6MkBalBranch4(xuu14, xuu15, xuu39, xuu18, False, ce, cf) -> new_mkBalBranch6MkBalBranch3(xuu14, xuu15, xuu39, xuu18, new_gt0(new_mkBalBranch6Size_l(xuu14, xuu15, xuu39, xuu18, ce, cf), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu14, xuu15, xuu39, xuu18, ce, cf))), ce, cf) new_ltEs13(xuu66, xuu67) -> new_fsEs(new_compare16(xuu66, xuu67)) new_compare18(LT, GT) -> LT new_primMinusNat0(Succ(xuu39200), Succ(xuu12600)) -> new_primMinusNat0(xuu39200, xuu12600) new_ltEs21(xuu80, xuu81, ty_Double) -> new_ltEs17(xuu80, xuu81) new_lt23(xuu106, xuu108, ty_Bool) -> new_lt4(xuu106, xuu108) new_esEs17(Right(xuu40000), Right(xuu3000), dca, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_esEs30(xuu92, xuu95, app(app(ty_Either, bfb), bfc)) -> new_esEs17(xuu92, xuu95, bfb, bfc) new_esEs17(Right(xuu40000), Right(xuu3000), dca, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs14(xuu40001, xuu3001) new_ltEs19(xuu662, xuu672, ty_Bool) -> new_ltEs15(xuu662, xuu672) new_esEs8(xuu4000, xuu300, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs19(xuu4000, xuu300, hh, baa, bab) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs6(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_gt0(xuu19, xuu14) -> new_esEs41(new_compare6(xuu19, xuu14)) new_ltEs7(Left(xuu660), Left(xuu670), ty_Integer, da) -> new_ltEs13(xuu660, xuu670) new_esEs10(xuu4001, xuu301, ty_Float) -> new_esEs22(xuu4001, xuu301) new_esEs31(xuu91, xuu94, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs19(xuu91, xuu94, bgf, bgg, bgh) new_lt8(xuu91, xuu94, app(ty_Maybe, bgc)) -> new_lt12(xuu91, xuu94, bgc) new_lt16(xuu400, xuu30) -> new_esEs12(new_compare6(xuu400, xuu30)) new_ltEs23(xuu107, xuu109, ty_Float) -> new_ltEs12(xuu107, xuu109) new_esEs33(xuu660, xuu670, ty_Float) -> new_esEs22(xuu660, xuu670) new_esEs17(Left(xuu40000), Left(xuu3000), app(app(ty_@2, ebe), ebf), dcb) -> new_esEs23(xuu40000, xuu3000, ebe, ebf) new_esEs37(xuu40002, xuu3002, ty_Bool) -> new_esEs21(xuu40002, xuu3002) new_lt24(xuu400, xuu30, ty_Integer) -> new_lt14(xuu400, xuu30) new_esEs31(xuu91, xuu94, ty_@0) -> new_esEs20(xuu91, xuu94) new_mkBalBranch6Size_r(xuu14, xuu15, xuu39, xuu18, ce, cf) -> new_sizeFM(xuu18, ce, cf) new_ltEs14(GT, EQ) -> False new_esEs17(Right(xuu40000), Right(xuu3000), dca, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_esEs35(xuu40000, xuu3000, app(ty_Ratio, efe)) -> new_esEs24(xuu40000, xuu3000, efe) new_ltEs19(xuu662, xuu672, ty_Int) -> new_ltEs4(xuu662, xuu672) new_esEs6(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_gt(xuu19, xuu14, ty_@0) -> new_esEs41(new_compare9(xuu19, xuu14)) new_ltEs17(xuu66, xuu67) -> new_fsEs(new_compare25(xuu66, xuu67)) new_ltEs7(Right(xuu660), Right(xuu670), ed, app(app(ty_Either, fb), fc)) -> new_ltEs7(xuu660, xuu670, fb, fc) new_ltEs24(xuu66, xuu67, app(ty_[], dab)) -> new_ltEs5(xuu66, xuu67, dab) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_esEs38(xuu40001, xuu3001, ty_Char) -> new_esEs15(xuu40001, xuu3001) new_esEs34(xuu40001, xuu3001, app(app(ty_@2, eea), eeb)) -> new_esEs23(xuu40001, xuu3001, eea, eeb) new_ltEs21(xuu80, xuu81, ty_@0) -> new_ltEs8(xuu80, xuu81) new_esEs32(xuu661, xuu671, app(app(ty_Either, cbc), cbd)) -> new_esEs17(xuu661, xuu671, cbc, cbd) new_compare8(xuu4000, xuu300, app(ty_Maybe, bg)) -> new_compare14(xuu4000, xuu300, bg) new_esEs38(xuu40001, xuu3001, app(ty_[], cfa)) -> new_esEs16(xuu40001, xuu3001, cfa) new_esEs29(xuu40000, xuu3000, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_compare5(False, True) -> LT new_esEs8(xuu4000, xuu300, app(ty_Maybe, hg)) -> new_esEs18(xuu4000, xuu300, hg) new_esEs18(Just(xuu40000), Just(xuu3000), app(app(ty_@2, eac), ead)) -> new_esEs23(xuu40000, xuu3000, eac, ead) new_esEs29(xuu40000, xuu3000, app(ty_Maybe, bbf)) -> new_esEs18(xuu40000, xuu3000, bbf) new_esEs35(xuu40000, xuu3000, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_esEs6(xuu4000, xuu300, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs19(xuu4000, xuu300, faf, fag, fah) new_esEs11(xuu4000, xuu300, app(app(ty_@2, dga), dgb)) -> new_esEs23(xuu4000, xuu300, dga, dgb) new_ltEs18(xuu93, xuu96, ty_@0) -> new_ltEs8(xuu93, xuu96) new_esEs31(xuu91, xuu94, app(ty_Maybe, bgc)) -> new_esEs18(xuu91, xuu94, bgc) new_compare15(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_compare15(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_lt21(xuu660, xuu670, ty_Int) -> new_lt16(xuu660, xuu670) new_esEs7(xuu4000, xuu300, app(app(ty_Either, gc), gd)) -> new_esEs17(xuu4000, xuu300, gc, gd) new_compare18(EQ, GT) -> LT new_lt24(xuu400, xuu30, app(app(ty_Either, fh), ga)) -> new_lt15(xuu400, xuu30, fh, ga) new_gt(xuu19, xuu14, ty_Bool) -> new_esEs41(new_compare5(xuu19, xuu14)) new_esEs8(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_lt8(xuu91, xuu94, app(app(ty_Either, bgd), bge)) -> new_lt15(xuu91, xuu94, bgd, bge) new_lt8(xuu91, xuu94, ty_Ordering) -> new_lt17(xuu91, xuu94) new_esEs6(xuu4000, xuu300, app(app(ty_Either, fac), fad)) -> new_esEs17(xuu4000, xuu300, fac, fad) new_esEs8(xuu4000, xuu300, app(app(ty_@2, bac), bad)) -> new_esEs23(xuu4000, xuu300, bac, bad) new_ltEs20(xuu661, xuu671, ty_Float) -> new_ltEs12(xuu661, xuu671) new_ltEs7(Right(xuu660), Right(xuu670), ed, ty_Int) -> new_ltEs4(xuu660, xuu670) new_esEs5(xuu4000, xuu300, app(ty_[], bbb)) -> new_esEs16(xuu4000, xuu300, bbb) new_compare112(xuu163, xuu164, xuu165, xuu166, True, xuu168, che, chf) -> new_compare113(xuu163, xuu164, xuu165, xuu166, True, che, chf) new_ltEs7(Left(xuu660), Left(xuu670), app(app(app(ty_@3, ea), eb), ec), da) -> new_ltEs16(xuu660, xuu670, ea, eb, ec) new_esEs11(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_ltEs11(Just(xuu660), Just(xuu670), app(ty_Maybe, feh)) -> new_ltEs11(xuu660, xuu670, feh) new_esEs34(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) new_ltEs7(Right(xuu660), Right(xuu670), ed, ty_Double) -> new_ltEs17(xuu660, xuu670) new_esEs35(xuu40000, xuu3000, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_esEs40(xuu106, xuu108, app(ty_[], ffh)) -> new_esEs16(xuu106, xuu108, ffh) new_lt8(xuu91, xuu94, ty_Integer) -> new_lt14(xuu91, xuu94) new_gt(xuu19, xuu14, ty_Float) -> new_esEs41(new_compare15(xuu19, xuu14)) new_esEs16([], [], bbb) -> True new_esEs18(Nothing, Nothing, dcc) -> True new_ltEs7(Right(xuu660), Right(xuu670), ed, app(ty_Maybe, fa)) -> new_ltEs11(xuu660, xuu670, fa) new_ltEs21(xuu80, xuu81, ty_Int) -> new_ltEs4(xuu80, xuu81) new_esEs26(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primMulInt(Neg(xuu40000), Neg(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) new_esEs4(xuu4001, xuu301, ty_Integer) -> new_esEs14(xuu4001, xuu301) new_esEs11(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3000))) -> new_primCmpNat0(Zero, Succ(xuu3000)) new_esEs18(Nothing, Just(xuu3000), dcc) -> False new_esEs18(Just(xuu40000), Nothing, dcc) -> False new_esEs40(xuu106, xuu108, ty_Char) -> new_esEs15(xuu106, xuu108) new_esEs33(xuu660, xuu670, app(app(ty_@2, ccb), ccc)) -> new_esEs23(xuu660, xuu670, ccb, ccc) new_esEs9(xuu4002, xuu302, ty_Float) -> new_esEs22(xuu4002, xuu302) new_lt24(xuu400, xuu30, ty_Ordering) -> new_lt17(xuu400, xuu30) new_lt21(xuu660, xuu670, app(ty_Maybe, ccd)) -> new_lt12(xuu660, xuu670, ccd) new_lt12(xuu400, xuu30, dhc) -> new_esEs12(new_compare14(xuu400, xuu30, dhc)) new_esEs32(xuu661, xuu671, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs19(xuu661, xuu671, cbe, cbf, cbg) new_ltEs19(xuu662, xuu672, ty_@0) -> new_ltEs8(xuu662, xuu672) new_esEs31(xuu91, xuu94, ty_Ordering) -> new_esEs25(xuu91, xuu94) new_ltEs24(xuu66, xuu67, app(ty_Ratio, dac)) -> new_ltEs9(xuu66, xuu67, dac) new_esEs29(xuu40000, xuu3000, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_esEs39(xuu40000, xuu3000, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_ltEs14(GT, LT) -> False new_ltEs6(xuu66, xuu67) -> new_fsEs(new_compare7(xuu66, xuu67)) new_primMulInt(Pos(xuu40000), Neg(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) new_primMulInt(Neg(xuu40000), Pos(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) new_esEs35(xuu40000, xuu3000, app(ty_[], eed)) -> new_esEs16(xuu40000, xuu3000, eed) new_ltEs20(xuu661, xuu671, ty_@0) -> new_ltEs8(xuu661, xuu671) new_ltEs20(xuu661, xuu671, app(ty_Maybe, egb)) -> new_ltEs11(xuu661, xuu671, egb) new_esEs40(xuu106, xuu108, ty_Integer) -> new_esEs14(xuu106, xuu108) new_ltEs18(xuu93, xuu96, ty_Integer) -> new_ltEs13(xuu93, xuu96) new_ltEs22(xuu73, xuu74, app(ty_Ratio, fdc)) -> new_ltEs9(xuu73, xuu74, fdc) new_sr0(Integer(xuu40000), Integer(xuu3010)) -> Integer(new_primMulInt(xuu40000, xuu3010)) new_esEs7(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_esEs6(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_ltEs11(Just(xuu660), Just(xuu670), app(app(ty_Either, ffa), ffb)) -> new_ltEs7(xuu660, xuu670, ffa, ffb) new_esEs9(xuu4002, xuu302, app(ty_Ratio, ddg)) -> new_esEs24(xuu4002, xuu302, ddg) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Double, dcb) -> new_esEs26(xuu40000, xuu3000) new_esEs17(Right(xuu40000), Right(xuu3000), dca, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_esEs17(Right(xuu40000), Right(xuu3000), dca, app(ty_Maybe, ecc)) -> new_esEs18(xuu40000, xuu3000, ecc) new_ltEs22(xuu73, xuu74, ty_Double) -> new_ltEs17(xuu73, xuu74) new_esEs17(Left(xuu40000), Left(xuu3000), app(ty_Maybe, eba), dcb) -> new_esEs18(xuu40000, xuu3000, eba) new_esEs25(LT, LT) -> True new_esEs9(xuu4002, xuu302, ty_@0) -> new_esEs20(xuu4002, xuu302) new_lt7(xuu92, xuu95, ty_Int) -> new_lt16(xuu92, xuu95) new_asAs(True, xuu124) -> xuu124 new_compare8(xuu4000, xuu300, ty_Double) -> new_compare25(xuu4000, xuu300) new_lt24(xuu400, xuu30, ty_Int) -> new_lt16(xuu400, xuu30) new_esEs10(xuu4001, xuu301, app(ty_[], ddh)) -> new_esEs16(xuu4001, xuu301, ddh) new_ltEs22(xuu73, xuu74, ty_Ordering) -> new_ltEs14(xuu73, xuu74) new_esEs9(xuu4002, xuu302, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs19(xuu4002, xuu302, ddb, ddc, ddd) new_ltEs22(xuu73, xuu74, ty_Float) -> new_ltEs12(xuu73, xuu74) new_lt7(xuu92, xuu95, app(ty_Maybe, bfa)) -> new_lt12(xuu92, xuu95, bfa) new_esEs32(xuu661, xuu671, ty_Float) -> new_esEs22(xuu661, xuu671) new_esEs38(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) new_ltEs23(xuu107, xuu109, ty_Char) -> new_ltEs6(xuu107, xuu109) new_esEs36(xuu660, xuu670, ty_Double) -> new_esEs26(xuu660, xuu670) new_esEs29(xuu40000, xuu3000, app(ty_[], bbc)) -> new_esEs16(xuu40000, xuu3000, bbc) new_ltEs22(xuu73, xuu74, app(app(ty_Either, fdg), fdh)) -> new_ltEs7(xuu73, xuu74, fdg, fdh) new_primPlusInt(Pos(xuu3920), Neg(xuu1260)) -> new_primMinusNat0(xuu3920, xuu1260) new_primPlusInt(Neg(xuu3920), Pos(xuu1260)) -> new_primMinusNat0(xuu1260, xuu3920) new_esEs9(xuu4002, xuu302, ty_Double) -> new_esEs26(xuu4002, xuu302) new_gt(xuu19, xuu14, ty_Integer) -> new_esEs41(new_compare16(xuu19, xuu14)) new_lt21(xuu660, xuu670, ty_Double) -> new_lt18(xuu660, xuu670) new_compare0([], [], bb) -> EQ new_sr(xuu4000, xuu301) -> new_primMulInt(xuu4000, xuu301) new_esEs8(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_ltEs21(xuu80, xuu81, app(app(ty_Either, fcc), fcd)) -> new_ltEs7(xuu80, xuu81, fcc, fcd) new_mkBalBranch6MkBalBranch01(xuu14, xuu15, xuu39, xuu180, xuu181, xuu182, Branch(xuu1830, xuu1831, xuu1832, xuu1833, xuu1834), xuu184, False, ce, cf) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu1830, xuu1831, new_mkBranchResult(xuu14, xuu15, xuu39, xuu1833, ce, cf), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu180, xuu181, xuu1834, xuu184, ce, cf) new_primMulNat0(Zero, Zero) -> Zero new_esEs23(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), dcd, dce) -> new_asAs(new_esEs35(xuu40000, xuu3000, dcd), new_esEs34(xuu40001, xuu3001, dce)) new_esEs30(xuu92, xuu95, app(ty_[], bee)) -> new_esEs16(xuu92, xuu95, bee) new_lt11(xuu400, xuu30, cdb) -> new_esEs12(new_compare12(xuu400, xuu30, cdb)) new_ltEs18(xuu93, xuu96, app(ty_Maybe, bdg)) -> new_ltEs11(xuu93, xuu96, bdg) new_lt23(xuu106, xuu108, app(ty_Maybe, fgd)) -> new_lt12(xuu106, xuu108, fgd) new_esEs7(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_compare9(@0, @0) -> EQ new_ltEs20(xuu661, xuu671, ty_Integer) -> new_ltEs13(xuu661, xuu671) new_ltEs21(xuu80, xuu81, ty_Ordering) -> new_ltEs14(xuu80, xuu81) new_compare14(Just(xuu4000), Just(xuu300), dhc) -> new_compare29(xuu4000, xuu300, new_esEs6(xuu4000, xuu300, dhc), dhc) new_esEs5(xuu4000, xuu300, app(ty_Ratio, cg)) -> new_esEs24(xuu4000, xuu300, cg) new_compare5(True, False) -> GT new_esEs9(xuu4002, xuu302, ty_Ordering) -> new_esEs25(xuu4002, xuu302) new_esEs37(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) new_lt24(xuu400, xuu30, app(app(ty_@2, bah), bba)) -> new_lt5(xuu400, xuu30, bah, bba) new_ltEs19(xuu662, xuu672, app(ty_Maybe, bhh)) -> new_ltEs11(xuu662, xuu672, bhh) new_ltEs11(Just(xuu660), Just(xuu670), ty_Ordering) -> new_ltEs14(xuu660, xuu670) new_esEs4(xuu4001, xuu301, app(ty_Ratio, dbh)) -> new_esEs24(xuu4001, xuu301, dbh) new_esEs7(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_esEs8(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_esEs6(xuu4000, xuu300, app(app(ty_@2, fba), fbb)) -> new_esEs23(xuu4000, xuu300, fba, fbb) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_ltEs18(xuu93, xuu96, ty_Char) -> new_ltEs6(xuu93, xuu96) new_ltEs24(xuu66, xuu67, ty_Char) -> new_ltEs6(xuu66, xuu67) new_ltEs24(xuu66, xuu67, app(ty_Maybe, daf)) -> new_ltEs11(xuu66, xuu67, daf) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_ltEs7(Right(xuu660), Right(xuu670), ed, ty_@0) -> new_ltEs8(xuu660, xuu670) new_gt(xuu19, xuu14, ty_Int) -> new_gt0(xuu19, xuu14) new_esEs31(xuu91, xuu94, app(ty_[], bfg)) -> new_esEs16(xuu91, xuu94, bfg) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3000))) -> new_primCmpNat0(Succ(xuu3000), Zero) new_lt23(xuu106, xuu108, ty_Int) -> new_lt16(xuu106, xuu108) new_esEs31(xuu91, xuu94, ty_Float) -> new_esEs22(xuu91, xuu94) new_lt24(xuu400, xuu30, app(ty_Maybe, dhc)) -> new_lt12(xuu400, xuu30, dhc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_mkBalBranch6Size_l(xuu14, xuu15, xuu39, xuu18, ce, cf) -> new_sizeFM(xuu39, ce, cf) new_lt23(xuu106, xuu108, app(ty_Ratio, fga)) -> new_lt11(xuu106, xuu108, fga) new_ltEs11(Just(xuu660), Just(xuu670), app(app(app(ty_@3, ffc), ffd), ffe)) -> new_ltEs16(xuu660, xuu670, ffc, ffd, ffe) new_ltEs22(xuu73, xuu74, ty_Char) -> new_ltEs6(xuu73, xuu74) new_esEs5(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_ltEs21(xuu80, xuu81, app(ty_Ratio, fbg)) -> new_ltEs9(xuu80, xuu81, fbg) new_esEs39(xuu40000, xuu3000, app(app(ty_@2, chb), chc)) -> new_esEs23(xuu40000, xuu3000, chb, chc) new_compare15(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_lt20(xuu661, xuu671, ty_Double) -> new_lt18(xuu661, xuu671) new_esEs40(xuu106, xuu108, ty_Int) -> new_esEs13(xuu106, xuu108) new_not(False) -> True new_mkBalBranch6MkBalBranch5(xuu14, xuu15, xuu39, xuu18, False, ce, cf) -> new_mkBalBranch6MkBalBranch4(xuu14, xuu15, xuu39, xuu18, new_gt0(new_mkBalBranch6Size_r(xuu14, xuu15, xuu39, xuu18, ce, cf), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu14, xuu15, xuu39, xuu18, ce, cf))), ce, cf) new_esEs36(xuu660, xuu670, app(ty_[], egh)) -> new_esEs16(xuu660, xuu670, egh) new_esEs5(xuu4000, xuu300, app(app(ty_@2, dcd), dce)) -> new_esEs23(xuu4000, xuu300, dcd, dce) new_compare18(GT, EQ) -> GT new_ltEs21(xuu80, xuu81, app(ty_Maybe, fcb)) -> new_ltEs11(xuu80, xuu81, fcb) new_ltEs7(Right(xuu660), Right(xuu670), ed, ty_Char) -> new_ltEs6(xuu660, xuu670) new_lt7(xuu92, xuu95, app(ty_Ratio, bef)) -> new_lt11(xuu92, xuu95, bef) new_lt20(xuu661, xuu671, app(app(ty_@2, cah), cba)) -> new_lt5(xuu661, xuu671, cah, cba) new_lt5(xuu400, xuu30, bah, bba) -> new_esEs12(new_compare13(xuu400, xuu30, bah, bba)) new_ltEs23(xuu107, xuu109, ty_@0) -> new_ltEs8(xuu107, xuu109) new_esEs8(xuu4000, xuu300, app(ty_Ratio, bae)) -> new_esEs24(xuu4000, xuu300, bae) new_esEs41(LT) -> False new_ltEs7(Right(xuu660), Right(xuu670), ed, ty_Bool) -> new_ltEs15(xuu660, xuu670) new_esEs8(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_esEs39(xuu40000, xuu3000, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_ltEs24(xuu66, xuu67, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs16(xuu66, xuu67, bha, bhb, bhc) new_ltEs20(xuu661, xuu671, ty_Char) -> new_ltEs6(xuu661, xuu671) new_esEs37(xuu40002, xuu3002, app(app(ty_@2, cef), ceg)) -> new_esEs23(xuu40002, xuu3002, cef, ceg) new_lt22(xuu660, xuu670, app(ty_Ratio, eha)) -> new_lt11(xuu660, xuu670, eha) new_esEs22(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_esEs17(Left(xuu40000), Left(xuu3000), app(app(ty_Either, eag), eah), dcb) -> new_esEs17(xuu40000, xuu3000, eag, eah) new_esEs8(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs23(xuu107, xuu109, ty_Bool) -> new_ltEs15(xuu107, xuu109) new_ltEs14(LT, EQ) -> True new_esEs19(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cdd, cde, cdf) -> new_asAs(new_esEs39(xuu40000, xuu3000, cdd), new_asAs(new_esEs38(xuu40001, xuu3001, cde), new_esEs37(xuu40002, xuu3002, cdf))) new_lt8(xuu91, xuu94, app(app(ty_@2, bga), bgb)) -> new_lt5(xuu91, xuu94, bga, bgb) new_ltEs11(Just(xuu660), Just(xuu670), ty_@0) -> new_ltEs8(xuu660, xuu670) new_ltEs7(Right(xuu660), Right(xuu670), ed, ty_Integer) -> new_ltEs13(xuu660, xuu670) new_esEs29(xuu40000, xuu3000, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_esEs40(xuu106, xuu108, app(app(ty_@2, fgb), fgc)) -> new_esEs23(xuu106, xuu108, fgb, fgc) new_ltEs7(Left(xuu660), Left(xuu670), app(ty_[], db), da) -> new_ltEs5(xuu660, xuu670, db) new_ltEs23(xuu107, xuu109, app(ty_Maybe, fhf)) -> new_ltEs11(xuu107, xuu109, fhf) new_ltEs18(xuu93, xuu96, app(ty_Ratio, bdd)) -> new_ltEs9(xuu93, xuu96, bdd) new_lt20(xuu661, xuu671, app(ty_Ratio, cag)) -> new_lt11(xuu661, xuu671, cag) new_gt(xuu19, xuu14, ty_Char) -> new_esEs41(new_compare7(xuu19, xuu14)) new_ltEs7(Right(xuu660), Right(xuu670), ed, ty_Ordering) -> new_ltEs14(xuu660, xuu670) new_esEs40(xuu106, xuu108, ty_Double) -> new_esEs26(xuu106, xuu108) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_esEs6(xuu4000, xuu300, app(ty_Ratio, fbc)) -> new_esEs24(xuu4000, xuu300, fbc) new_lt7(xuu92, xuu95, app(app(ty_@2, beg), beh)) -> new_lt5(xuu92, xuu95, beg, beh) new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bbb) -> new_asAs(new_esEs29(xuu40000, xuu3000, bbb), new_esEs16(xuu40001, xuu3001, bbb)) new_compare7(Char(xuu4000), Char(xuu300)) -> new_primCmpNat0(xuu4000, xuu300) new_ltEs7(Left(xuu660), Left(xuu670), ty_Double, da) -> new_ltEs17(xuu660, xuu670) new_compare29(xuu66, xuu67, True, daa) -> EQ new_lt23(xuu106, xuu108, app(app(ty_@2, fgb), fgc)) -> new_lt5(xuu106, xuu108, fgb, fgc) new_lt9(xuu400, xuu30) -> new_esEs12(new_compare9(xuu400, xuu30)) new_compare8(xuu4000, xuu300, app(ty_Ratio, bd)) -> new_compare12(xuu4000, xuu300, bd) new_ltEs24(xuu66, xuu67, ty_@0) -> new_ltEs8(xuu66, xuu67) new_lt8(xuu91, xuu94, ty_Double) -> new_lt18(xuu91, xuu94) new_esEs9(xuu4002, xuu302, ty_Char) -> new_esEs15(xuu4002, xuu302) new_ltEs19(xuu662, xuu672, app(ty_Ratio, bhe)) -> new_ltEs9(xuu662, xuu672, bhe) new_addToFM_C0(EmptyFM, xuu400, xuu401, h, ba) -> Branch(xuu400, xuu401, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_compare25(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_esEs16(:(xuu40000, xuu40001), [], bbb) -> False new_esEs16([], :(xuu3000, xuu3001), bbb) -> False new_gt(xuu19, xuu14, app(app(app(ty_@3, gbc), gbd), gbe)) -> new_esEs41(new_compare19(xuu19, xuu14, gbc, gbd, gbe)) new_esEs17(Right(xuu40000), Right(xuu3000), dca, app(app(ty_Either, eca), ecb)) -> new_esEs17(xuu40000, xuu3000, eca, ecb) new_esEs4(xuu4001, xuu301, ty_Double) -> new_esEs26(xuu4001, xuu301) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt21(xuu660, xuu670, app(ty_Ratio, cca)) -> new_lt11(xuu660, xuu670, cca) new_ltEs23(xuu107, xuu109, ty_Integer) -> new_ltEs13(xuu107, xuu109) new_lt23(xuu106, xuu108, ty_Double) -> new_lt18(xuu106, xuu108) new_compare110(xuu151, xuu152, False, dha, dhb) -> GT new_primEqNat0(Zero, Zero) -> True new_esEs9(xuu4002, xuu302, ty_Bool) -> new_esEs21(xuu4002, xuu302) new_ltEs23(xuu107, xuu109, app(app(ty_Either, fhg), fhh)) -> new_ltEs7(xuu107, xuu109, fhg, fhh) new_compare26(xuu73, xuu74, False, fch, fda) -> new_compare10(xuu73, xuu74, new_ltEs22(xuu73, xuu74, fch), fch, fda) new_ltEs24(xuu66, xuu67, ty_Integer) -> new_ltEs13(xuu66, xuu67) new_ltEs24(xuu66, xuu67, ty_Bool) -> new_ltEs15(xuu66, xuu67) new_ltEs7(Right(xuu660), Right(xuu670), ed, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs16(xuu660, xuu670, fd, ff, fg) new_lt22(xuu660, xuu670, ty_Double) -> new_lt18(xuu660, xuu670) new_asAs(False, xuu124) -> False new_ltEs22(xuu73, xuu74, app(ty_Maybe, fdf)) -> new_ltEs11(xuu73, xuu74, fdf) new_lt22(xuu660, xuu670, app(app(ty_@2, ehb), ehc)) -> new_lt5(xuu660, xuu670, ehb, ehc) new_esEs38(xuu40001, xuu3001, app(app(ty_@2, cfh), cga)) -> new_esEs23(xuu40001, xuu3001, cfh, cga) new_esEs4(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) new_esEs18(Just(xuu40000), Just(xuu3000), app(ty_[], dhd)) -> new_esEs16(xuu40000, xuu3000, dhd) new_esEs5(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_ltEs7(Left(xuu660), Left(xuu670), ty_Int, da) -> new_ltEs4(xuu660, xuu670) new_esEs7(xuu4000, xuu300, app(ty_Ratio, hc)) -> new_esEs24(xuu4000, xuu300, hc) new_esEs25(EQ, EQ) -> True new_esEs9(xuu4002, xuu302, ty_Integer) -> new_esEs14(xuu4002, xuu302) new_esEs34(xuu40001, xuu3001, app(ty_[], edb)) -> new_esEs16(xuu40001, xuu3001, edb) new_compare12(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Integer) -> new_compare16(new_sr0(xuu4000, xuu301), new_sr0(xuu300, xuu4001)) new_ltEs23(xuu107, xuu109, ty_Ordering) -> new_ltEs14(xuu107, xuu109) new_esEs11(xuu4000, xuu300, app(ty_[], dfb)) -> new_esEs16(xuu4000, xuu300, dfb) new_esEs39(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_lt7(xuu92, xuu95, ty_Double) -> new_lt18(xuu92, xuu95) new_ltEs11(Just(xuu660), Just(xuu670), ty_Float) -> new_ltEs12(xuu660, xuu670) The set Q consists of the following terms: new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Float) new_lt22(x0, x1, ty_Float) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_lt23(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare8(x0, x1, ty_Bool) new_compare14(Nothing, Nothing, x0) new_gt(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_lt24(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_lt20(x0, x1, ty_Int) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt24(x0, x1, ty_Bool) new_esEs20(@0, @0) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, ty_Float) new_compare8(x0, x1, ty_@0) new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs25(LT, LT) new_esEs36(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs15(False, True) new_ltEs15(True, False) new_ltEs22(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Bool) new_compare8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Int) new_primMulNat0(Zero, Succ(x0)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, False, x2) new_esEs32(x0, x1, ty_Double) new_esEs6(x0, x1, ty_@0) new_esEs16(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, app(ty_[], x2)) new_compare14(Just(x0), Just(x1), x2) new_ltEs19(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs27(x0, x1, ty_Int) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_lt23(x0, x1, ty_Integer) new_gt(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Integer) new_sr(x0, x1) new_compare18(GT, GT) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_esEs36(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_fsEs(x0) new_esEs21(True, True) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Double) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_gt(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_ltEs23(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt24(x0, x1, ty_Float) new_gt(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_lt8(x0, x1, ty_Char) new_esEs12(GT) new_primCmpNat0(Zero, Succ(x0)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Integer) new_esEs18(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_@0) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Right(x0), Right(x1), x2, ty_Char) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Bool) new_ltEs6(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_esEs4(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Int) new_lt20(x0, x1, ty_@0) new_lt16(x0, x1) new_ltEs18(x0, x1, ty_Bool) new_primPlusNat0(Succ(x0), Zero) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(Just(x0), Nothing, x1) new_ltEs18(x0, x1, ty_Ordering) new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_ltEs23(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_@0) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1, x2) new_esEs10(x0, x1, ty_Float) new_lt23(x0, x1, ty_Int) new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) new_esEs27(x0, x1, ty_Integer) new_ltEs11(Nothing, Just(x0), x1) new_primCompAux0(x0, x1, x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Int) new_compare16(Integer(x0), Integer(x1)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_lt24(x0, x1, ty_Int) new_esEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Char) new_lt22(x0, x1, ty_Integer) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_ltEs19(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_gt(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Bool) new_esEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_lt22(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_esEs26(Double(x0, x1), Double(x2, x3)) new_esEs7(x0, x1, ty_Int) new_compare18(GT, LT) new_compare18(LT, GT) new_ltEs21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Char) new_esEs21(False, True) new_esEs21(True, False) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Int) new_esEs18(Just(x0), Just(x1), ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Int) new_esEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs40(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Just(x0), Nothing, x1) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_compare27(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(@0, @0) new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, False, x2, x3) new_esEs32(x0, x1, ty_Bool) new_compare7(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs33(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Int) new_primPlusNat0(Zero, Zero) new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare113(x0, x1, x2, x3, True, x4, x5) new_esEs25(EQ, EQ) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_not(True) new_lt20(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Char) new_lt23(x0, x1, app(ty_[], x2)) new_primPlusInt(Pos(x0), Pos(x1)) new_esEs35(x0, x1, ty_@0) new_lt18(x0, x1) new_esEs33(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Int) new_esEs24(:%(x0, x1), :%(x2, x3), x4) new_esEs38(x0, x1, ty_@0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt22(x0, x1, ty_Char) new_mkBalBranch6MkBalBranch3(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) new_esEs25(LT, GT) new_esEs25(GT, LT) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Float) new_lt22(x0, x1, ty_Int) new_esEs31(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs38(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, GT) new_esEs32(x0, x1, ty_Float) new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs38(x0, x1, ty_Char) new_lt8(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Bool) new_primCompAux00(x0, LT) new_ltEs23(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs35(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs14(GT, GT) new_esEs30(x0, x1, ty_Char) new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs21(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Integer) new_gt0(x0, x1) new_compare8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(False, False) new_lt21(x0, x1, ty_@0) new_compare110(x0, x1, False, x2, x3) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_compare0(:(x0, x1), :(x2, x3), x4) new_compare8(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs34(x0, x1, ty_Double) new_compare0(:(x0, x1), [], x2) new_ltEs21(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_gt(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs4(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Float) new_esEs7(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_ltEs11(Just(x0), Just(x1), ty_Char) new_esEs9(x0, x1, ty_Float) new_compare8(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs16([], :(x0, x1), x2) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(Left(x0), Right(x1), x2, x3) new_compare17(Right(x0), Left(x1), x2, x3) new_gt(x0, x1, app(ty_[], x2)) new_not(False) new_lt20(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT) new_ltEs22(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs5(x0, x1, ty_Bool) new_esEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_lt8(x0, x1, ty_Double) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, x2) new_esEs8(x0, x1, ty_Double) new_lt24(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_ltEs4(x0, x1) new_esEs29(x0, x1, ty_@0) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs41(LT) new_esEs11(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs11(x0, x1, ty_Char) new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4) new_ltEs19(x0, x1, ty_Char) new_lt23(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Int) new_lt20(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_compare112(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs20(x0, x1, ty_@0) new_lt7(x0, x1, ty_Float) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs23(x0, x1, ty_Ordering) new_compare110(x0, x1, True, x2, x3) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_primMinusNat0(Zero, Zero) new_esEs17(Left(x0), Left(x1), ty_Float, x2) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(x0, x1) new_lt13(x0, x1) new_ltEs20(x0, x1, ty_Integer) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs9(x0, x1, x2) new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_emptyFM(x0, x1) new_compare210(x0, x1, x2, x3, True, x4, x5) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_ltEs14(LT, LT) new_esEs6(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare28(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs6(x0, x1, ty_Char) new_lt5(x0, x1, x2, x3) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_ltEs23(x0, x1, ty_Double) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(x0, x1) new_primMinusNat0(Succ(x0), Succ(x1)) new_sIZE_RATIO new_compare113(x0, x1, x2, x3, False, x4, x5) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_ltEs15(True, True) new_compare18(EQ, LT) new_compare18(LT, EQ) new_lt20(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs7(Right(x0), Left(x1), x2, x3) new_lt7(x0, x1, ty_Integer) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs36(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_mkBranchResult(x0, x1, x2, x3, x4, x5) new_compare18(LT, LT) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Int) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt9(x0, x1) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs25(GT, GT) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Float) new_lt23(x0, x1, ty_Ordering) new_esEs18(Just(x0), Just(x1), ty_Float) new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) new_compare26(x0, x1, True, x2, x3) new_compare19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs21(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Char) new_esEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs41(GT) new_ltEs20(x0, x1, ty_Float) new_lt7(x0, x1, ty_@0) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare8(x0, x1, ty_Double) new_compare13(@2(x0, x1), @2(x2, x3), x4, x5) new_compare8(x0, x1, app(ty_Maybe, x2)) new_compare27(x0, x1, False, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt24(x0, x1, ty_Ordering) new_compare6(x0, x1) new_esEs32(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_esEs39(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Ordering) new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt24(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_esEs8(x0, x1, ty_Integer) new_compare18(EQ, GT) new_compare18(GT, EQ) new_lt22(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Int) new_esEs39(x0, x1, ty_@0) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_primMinusNat0(Zero, Succ(x0)) new_ltEs5(x0, x1, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_compare5(True, True) new_lt24(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs18(Just(x0), Nothing, x1) new_compare0([], [], x0) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs17(Left(x0), Right(x1), x2, x3) new_esEs17(Right(x0), Left(x1), x2, x3) new_primEqNat0(Zero, Succ(x0)) new_esEs34(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs36(x0, x1, ty_Ordering) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs18(Just(x0), Just(x1), ty_Integer) new_lt17(x0, x1) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_ltEs14(EQ, GT) new_esEs5(x0, x1, ty_@0) new_ltEs14(GT, EQ) new_lt20(x0, x1, ty_Double) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) new_lt8(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs30(x0, x1, ty_Double) new_primMinusNat0(Succ(x0), Zero) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Integer) new_esEs16([], [], x0) new_esEs5(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusInt(Neg(x0), Neg(x1)) new_lt8(x0, x1, ty_Float) new_compare25(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs40(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_esEs17(Right(x0), Right(x1), x2, ty_Int) new_lt23(x0, x1, ty_Char) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_pePe(True, x0) new_ltEs19(x0, x1, ty_@0) new_ltEs15(False, False) new_esEs10(x0, x1, ty_Int) new_esEs18(Just(x0), Just(x1), ty_Ordering) new_lt8(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Bool) new_esEs6(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_esEs4(x0, x1, ty_Float) new_lt24(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Integer) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs17(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Integer) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Ordering) new_lt24(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs14(Integer(x0), Integer(x1)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Float) new_compare114(x0, x1, False, x2) new_ltEs24(x0, x1, ty_Ordering) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Int) new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_lt21(x0, x1, app(ty_Ratio, x2)) new_asAs(True, x0) new_esEs10(x0, x1, ty_@0) new_esEs18(Nothing, Just(x0), x1) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_lt7(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_lt4(x0, x1) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Bool) new_esEs18(Just(x0), Just(x1), ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Float) new_gt(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Char) new_compare25(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_gt(x0, x1, ty_Double) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_compare14(Nothing, Just(x0), x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_gt(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, True, x2, x3) new_esEs34(x0, x1, ty_@0) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_esEs32(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Integer) new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs11(Nothing, Nothing, x0) new_esEs22(Float(x0, x1), Float(x2, x3)) new_ltEs18(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, x2) new_esEs40(x0, x1, ty_Int) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_ltEs8(x0, x1) new_esEs18(Just(x0), Just(x1), ty_Char) new_esEs17(Right(x0), Right(x1), x2, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_lt8(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs11(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Double) new_esEs18(Just(x0), Just(x1), ty_Int) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs40(x0, x1, ty_Bool) new_esEs17(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs5(x0, x1, ty_Ordering) new_esEs16(:(x0, x1), [], x2) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs31(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Integer) new_compare5(False, True) new_compare5(True, False) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs40(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs6(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, ty_Bool) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt22(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Double) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare114(x0, x1, True, x2) new_lt23(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare18(EQ, EQ) new_compare8(x0, x1, ty_Int) new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_[], x2)) new_compare5(False, False) new_compare17(Left(x0), Left(x1), x2, x3) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_pePe(False, x0) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_esEs18(Just(x0), Just(x1), ty_Double) new_esEs17(Left(x0), Left(x1), ty_@0, x2) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(EQ) new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare112(x0, x1, x2, x3, True, x4, x5, x6) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs41(EQ) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_primMulInt(Pos(x0), Pos(x1)) new_esEs38(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_ltEs12(x0, x1) new_compare8(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Integer) new_esEs15(Char(x0), Char(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_sizeFM(EmptyFM, x0, x1) new_compare8(x0, x1, ty_Integer) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_lt14(x0, x1) new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs17(Right(x0), Right(x1), x2, ty_@0) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare25(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare29(x0, x1, True, x2) new_lt24(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare10(x0, x1, False, x2, x3) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_sr0(Integer(x0), Integer(x1)) new_esEs35(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_esEs39(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch3(x0, x1, EmptyFM, x2, True, x3, x4) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt15(x0, x1, x2, x3) new_primCmpNat0(Zero, Zero) new_lt21(x0, x1, ty_Double) new_lt8(x0, x1, ty_@0) new_compare17(Right(x0), Right(x1), x2, x3) 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_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cf), cc) -> new_esEs1(xuu40000, xuu3000, cf) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, bdc), bdd), bdb) -> new_esEs0(xuu40000, xuu3000, bdc, bdd) new_esEs1(Just(xuu40000), Just(xuu3000), app(app(ty_Either, eh), fa)) -> new_esEs0(xuu40000, xuu3000, eh, fa) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bbg, app(app(ty_Either, bca), bcb)) -> new_esEs0(xuu40001, xuu3001, bca, bcb) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, app(app(ty_@2, hb), hc)) -> new_esEs3(xuu40002, xuu3002, hb, hc) new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu40000, xuu3000, dg, dh) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), h) -> new_esEs(xuu40001, xuu3001, h) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, bba), gb, he) -> new_esEs1(xuu40000, xuu3000, bba) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bh), ca)) -> new_esEs3(xuu40000, xuu3000, bh, ca) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, app(ty_[], gc)) -> new_esEs(xuu40002, xuu3002, gc) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bd)) -> new_esEs1(xuu40000, xuu3000, bd) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, app(ty_Maybe, hh), he) -> new_esEs1(xuu40001, xuu3001, hh) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, app(ty_[], hd), he) -> new_esEs(xuu40001, xuu3001, hd) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], ba)) -> new_esEs(xuu40000, xuu3000, ba) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, bbe), bbf), gb, he) -> new_esEs3(xuu40000, xuu3000, bbe, bbf) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, app(ty_Maybe, gf)) -> new_esEs1(xuu40002, xuu3002, gf) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, app(app(ty_@2, bad), bae), he) -> new_esEs3(xuu40001, xuu3001, bad, bae) new_esEs0(Right(xuu40000), Right(xuu3000), de, app(ty_[], df)) -> new_esEs(xuu40000, xuu3000, df) new_esEs1(Just(xuu40000), Just(xuu3000), app(app(ty_@2, fg), fh)) -> new_esEs3(xuu40000, xuu3000, fg, fh) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], baf), gb, he) -> new_esEs(xuu40000, xuu3000, baf) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bde), bdb) -> new_esEs1(xuu40000, xuu3000, bde) new_esEs0(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cg), da), db), cc) -> new_esEs2(xuu40000, xuu3000, cg, da, db) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, app(app(app(ty_@3, baa), bab), bac), he) -> new_esEs2(xuu40001, xuu3001, baa, bab, bac) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bbg, app(app(ty_@2, bcg), bch)) -> new_esEs3(xuu40001, xuu3001, bcg, bch) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bbg, app(ty_Maybe, bcc)) -> new_esEs1(xuu40001, xuu3001, bcc) new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_@2, dc), dd), cc) -> new_esEs3(xuu40000, xuu3000, dc, dd) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, bbb), bbc), bbd), gb, he) -> new_esEs2(xuu40000, xuu3000, bbb, bbc, bbd) new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(ty_@2, ee), ef)) -> new_esEs3(xuu40000, xuu3000, ee, ef) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, app(app(ty_Either, hf), hg), he) -> new_esEs0(xuu40001, xuu3001, hf, hg) new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu40000, xuu3000, cd, ce) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, app(app(ty_Either, gd), ge)) -> new_esEs0(xuu40002, xuu3002, gd, ge) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, bag), bah), gb, he) -> new_esEs0(xuu40000, xuu3000, bag, bah) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, bea), beb), bdb) -> new_esEs3(xuu40000, xuu3000, bea, beb) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bbg, app(ty_[], bbh)) -> new_esEs(xuu40001, xuu3001, bbh) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, bdf), bdg), bdh), bdb) -> new_esEs2(xuu40000, xuu3000, bdf, bdg, bdh) new_esEs0(Right(xuu40000), Right(xuu3000), de, app(ty_Maybe, ea)) -> new_esEs1(xuu40000, xuu3000, ea) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, bb), bc)) -> new_esEs0(xuu40000, xuu3000, bb, bc) new_esEs1(Just(xuu40000), Just(xuu3000), app(ty_[], eg)) -> new_esEs(xuu40000, xuu3000, eg) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], bda), bdb) -> new_esEs(xuu40000, xuu3000, bda) new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xuu40000, xuu3000, eb, ec, ed) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs2(xuu40002, xuu3002, gg, gh, ha) new_esEs1(Just(xuu40000), Just(xuu3000), app(ty_Maybe, fb)) -> new_esEs1(xuu40000, xuu3000, fb) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bbg, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs2(xuu40001, xuu3001, bcd, bce, bcf) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, be), bf), bg)) -> new_esEs2(xuu40000, xuu3000, be, bf, bg) new_esEs1(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs2(xuu40000, xuu3000, fc, fd, ff) new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_[], cb), cc) -> new_esEs(xuu40000, xuu3000, cb) 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_esEs1(Just(xuu40000), Just(xuu3000), app(app(ty_Either, eh), fa)) -> new_esEs0(xuu40000, xuu3000, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu40000), Just(xuu3000), app(app(ty_@2, fg), fh)) -> new_esEs3(xuu40000, xuu3000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu40000), Just(xuu3000), app(ty_Maybe, fb)) -> new_esEs1(xuu40000, xuu3000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs2(xuu40000, xuu3000, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(xuu40000), Just(xuu3000), app(ty_[], eg)) -> new_esEs(xuu40000, xuu3000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, bb), bc)) -> new_esEs0(xuu40000, xuu3000, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bh), ca)) -> new_esEs3(xuu40000, xuu3000, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bd)) -> new_esEs1(xuu40000, xuu3000, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, be), bf), bg)) -> new_esEs2(xuu40000, xuu3000, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu40000, xuu3000, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu40000, xuu3000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, bdc), bdd), bdb) -> new_esEs0(xuu40000, xuu3000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bbg, app(app(ty_Either, bca), bcb)) -> new_esEs0(xuu40001, xuu3001, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, app(app(ty_Either, hf), hg), he) -> new_esEs0(xuu40001, xuu3001, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, app(app(ty_Either, gd), ge)) -> new_esEs0(xuu40002, xuu3002, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, bag), bah), gb, he) -> new_esEs0(xuu40000, xuu3000, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_@2, dc), dd), cc) -> new_esEs3(xuu40000, xuu3000, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(ty_@2, ee), ef)) -> new_esEs3(xuu40000, xuu3000, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cf), cc) -> new_esEs1(xuu40000, xuu3000, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(xuu40000), Right(xuu3000), de, app(ty_Maybe, ea)) -> new_esEs1(xuu40000, xuu3000, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cg), da), db), cc) -> new_esEs2(xuu40000, xuu3000, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xuu40000, xuu3000, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(xuu40000), Right(xuu3000), de, app(ty_[], df)) -> new_esEs(xuu40000, xuu3000, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_[], cb), cc) -> new_esEs(xuu40000, xuu3000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bbg, app(app(ty_@2, bcg), bch)) -> new_esEs3(xuu40001, xuu3001, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, bea), beb), bdb) -> new_esEs3(xuu40000, xuu3000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, app(app(ty_@2, hb), hc)) -> new_esEs3(xuu40002, xuu3002, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, bbe), bbf), gb, he) -> new_esEs3(xuu40000, xuu3000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, app(app(ty_@2, bad), bae), he) -> new_esEs3(xuu40001, xuu3001, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bde), bdb) -> new_esEs1(xuu40000, xuu3000, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bbg, app(ty_Maybe, bcc)) -> new_esEs1(xuu40001, xuu3001, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, bba), gb, he) -> new_esEs1(xuu40000, xuu3000, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, app(ty_Maybe, hh), he) -> new_esEs1(xuu40001, xuu3001, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, app(ty_Maybe, gf)) -> new_esEs1(xuu40002, xuu3002, gf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, bdf), bdg), bdh), bdb) -> new_esEs2(xuu40000, xuu3000, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bbg, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs2(xuu40001, xuu3001, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bbg, app(ty_[], bbh)) -> new_esEs(xuu40001, xuu3001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], bda), bdb) -> new_esEs(xuu40000, xuu3000, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, app(app(app(ty_@3, baa), bab), bac), he) -> new_esEs2(xuu40001, xuu3001, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, bbb), bbc), bbd), gb, he) -> new_esEs2(xuu40000, xuu3000, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs2(xuu40002, xuu3002, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), h) -> new_esEs(xuu40001, xuu3001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], ba)) -> new_esEs(xuu40000, xuu3000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, gb, app(ty_[], gc)) -> new_esEs(xuu40002, xuu3002, gc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ga, app(ty_[], hd), he) -> new_esEs(xuu40001, xuu3001, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], baf), gb, he) -> new_esEs(xuu40000, xuu3000, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xuu400000), Succ(xuu30100)) -> new_primMulNat(xuu400000, Succ(xuu30100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(xuu400000), Succ(xuu30100)) -> new_primMulNat(xuu400000, Succ(xuu30100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bb, bc) -> new_addToFM_C(xuu35, xuu36, xuu37, bb, bc) new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba) -> new_addToFM_C(xuu17, xuu19, xuu20, h, ba) new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, h, ba) -> new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_gt(xuu19, xuu14, h), h, ba) new_addToFM_C(Branch(xuu30, xuu31, xuu32, xuu33, xuu34), xuu400, xuu401, bd, be) -> new_addToFM_C2(xuu30, xuu31, xuu32, xuu33, xuu34, xuu400, xuu401, new_lt24(xuu400, xuu30, bd), bd, be) The TRS R consists of the following rules: new_ltEs7(Left(xuu660), Left(xuu670), app(app(ty_Either, fa), fb), ec) -> new_ltEs7(xuu660, xuu670, fa, fb) new_esEs30(xuu92, xuu95, ty_Ordering) -> new_esEs25(xuu92, xuu95) new_ltEs24(xuu66, xuu67, ty_Float) -> new_ltEs12(xuu66, xuu67) new_esEs40(xuu106, xuu108, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs19(xuu106, xuu108, fcf, fcg, fch) new_lt8(xuu91, xuu94, app(ty_Ratio, cda)) -> new_lt11(xuu91, xuu94, cda) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_ltEs11(Just(xuu660), Just(xuu670), ty_Bool) -> new_ltEs15(xuu660, xuu670) new_esEs7(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_pePe(True, xuu196) -> True new_ltEs18(xuu93, xuu96, app(app(ty_Either, cba), cbb)) -> new_ltEs7(xuu93, xuu96, cba, cbb) new_ltEs24(xuu66, xuu67, app(app(ty_@2, deh), dfa)) -> new_ltEs10(xuu66, xuu67, deh, dfa) new_ltEs24(xuu66, xuu67, ty_Ordering) -> new_ltEs14(xuu66, xuu67) new_lt20(xuu661, xuu671, ty_Ordering) -> new_lt17(xuu661, xuu671) new_esEs7(xuu4000, xuu300, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs19(xuu4000, xuu300, hh, baa, bab) new_esEs40(xuu106, xuu108, ty_@0) -> new_esEs20(xuu106, xuu108) new_esEs9(xuu4002, xuu302, app(ty_Maybe, fga)) -> new_esEs18(xuu4002, xuu302, fga) new_esEs34(xuu40001, xuu3001, ty_Float) -> new_esEs22(xuu40001, xuu3001) new_esEs38(xuu40001, xuu3001, ty_Bool) -> new_esEs21(xuu40001, xuu3001) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare26(xuu73, xuu74, True, egf, egg) -> EQ new_compare18(LT, LT) -> EQ new_esEs10(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) new_esEs6(xuu4000, xuu300, app(ty_[], edh)) -> new_esEs16(xuu4000, xuu300, edh) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Int, bfc) -> new_esEs13(xuu40000, xuu3000) new_esEs32(xuu661, xuu671, ty_Char) -> new_esEs15(xuu661, xuu671) new_esEs30(xuu92, xuu95, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs19(xuu92, xuu95, cce, ccf, ccg) new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, False, bh, ca, cb) -> GT new_ltEs20(xuu661, xuu671, ty_Int) -> new_ltEs4(xuu661, xuu671) new_esEs35(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_lt23(xuu106, xuu108, ty_Char) -> new_lt19(xuu106, xuu108) new_lt22(xuu660, xuu670, ty_Int) -> new_lt16(xuu660, xuu670) new_esEs4(xuu4001, xuu301, app(app(ty_@2, ffc), ffd)) -> new_esEs23(xuu4001, xuu301, ffc, ffd) new_esEs21(False, False) -> True new_esEs17(Right(xuu40000), Right(xuu3000), bgf, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_lt23(xuu106, xuu108, app(app(ty_Either, fcd), fce)) -> new_lt15(xuu106, xuu108, fcd, fce) new_ltEs7(Right(xuu660), Right(xuu670), fg, ty_Float) -> new_ltEs12(xuu660, xuu670) new_ltEs20(xuu661, xuu671, app(ty_Ratio, dfc)) -> new_ltEs9(xuu661, xuu671, dfc) new_esEs5(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_not(True) -> False new_ltEs18(xuu93, xuu96, ty_Double) -> new_ltEs17(xuu93, xuu96) new_fsEs(xuu191) -> new_not(new_esEs25(xuu191, GT)) new_esEs38(xuu40001, xuu3001, ty_@0) -> new_esEs20(xuu40001, xuu3001) new_esEs4(xuu4001, xuu301, app(ty_Maybe, feg)) -> new_esEs18(xuu4001, xuu301, feg) new_primCompAux00(xuu49, LT) -> LT new_lt7(xuu92, xuu95, app(app(ty_Either, ccc), ccd)) -> new_lt15(xuu92, xuu95, ccc, ccd) new_lt22(xuu660, xuu670, app(ty_[], dgd)) -> new_lt10(xuu660, xuu670, dgd) new_esEs35(xuu40000, xuu3000, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_compare8(xuu4000, xuu300, app(app(ty_@2, cf), cg)) -> new_compare13(xuu4000, xuu300, cf, cg) new_lt19(xuu400, xuu30) -> new_esEs12(new_compare7(xuu400, xuu30)) new_ltEs22(xuu73, xuu74, ty_Bool) -> new_ltEs15(xuu73, xuu74) new_esEs17(Left(xuu40000), Left(xuu3000), app(ty_Ratio, bge), bfc) -> new_esEs24(xuu40000, xuu3000, bge) new_esEs7(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_compare5(False, False) -> EQ new_lt24(xuu400, xuu30, ty_Double) -> new_lt18(xuu400, xuu30) new_esEs35(xuu40000, xuu3000, app(app(ty_@2, dee), def)) -> new_esEs23(xuu40000, xuu3000, dee, def) new_esEs10(xuu4001, xuu301, ty_Ordering) -> new_esEs25(xuu4001, xuu301) new_esEs8(xuu4000, xuu300, app(app(ty_Either, bag), bah)) -> new_esEs17(xuu4000, xuu300, bag, bah) new_ltEs20(xuu661, xuu671, app(app(ty_Either, dfg), dfh)) -> new_ltEs7(xuu661, xuu671, dfg, dfh) new_compare27(xuu80, xuu81, False, efb, efc) -> new_compare110(xuu80, xuu81, new_ltEs21(xuu80, xuu81, efc), efb, efc) new_esEs32(xuu661, xuu671, app(ty_[], cgb)) -> new_esEs16(xuu661, xuu671, cgb) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs11(xuu4000, xuu300, app(app(ty_Either, gac), gad)) -> new_esEs17(xuu4000, xuu300, gac, gad) new_compare10(xuu144, xuu145, True, bf, bg) -> LT new_lt20(xuu661, xuu671, ty_Integer) -> new_lt14(xuu661, xuu671) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_lt7(xuu92, xuu95, ty_Ordering) -> new_lt17(xuu92, xuu95) new_esEs6(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_ltEs7(Left(xuu660), Left(xuu670), ty_@0, ec) -> new_ltEs8(xuu660, xuu670) new_lt23(xuu106, xuu108, ty_Float) -> new_lt13(xuu106, xuu108) new_ltEs14(EQ, EQ) -> True new_esEs37(xuu40002, xuu3002, ty_Char) -> new_esEs15(xuu40002, xuu3002) new_ltEs7(Right(xuu660), Right(xuu670), fg, app(ty_Ratio, ga)) -> new_ltEs9(xuu660, xuu670, ga) new_gt(xuu19, xuu14, ty_Double) -> new_esEs41(new_compare25(xuu19, xuu14)) new_primCmpInt(Pos(Succ(xuu40000)), Neg(xuu300)) -> GT new_esEs37(xuu40002, xuu3002, app(ty_[], eab)) -> new_esEs16(xuu40002, xuu3002, eab) new_gt(xuu19, xuu14, app(app(ty_Either, dbc), dbd)) -> new_esEs41(new_compare17(xuu19, xuu14, dbc, dbd)) new_ltEs22(xuu73, xuu74, ty_@0) -> new_ltEs8(xuu73, xuu74) new_esEs39(xuu40000, xuu3000, app(ty_Ratio, edg)) -> new_esEs24(xuu40000, xuu3000, edg) new_lt7(xuu92, xuu95, ty_@0) -> new_lt9(xuu92, xuu95) new_esEs34(xuu40001, xuu3001, app(ty_Ratio, dde)) -> new_esEs24(xuu40001, xuu3001, dde) new_esEs36(xuu660, xuu670, ty_Integer) -> new_esEs14(xuu660, xuu670) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, app(app(ty_@2, bhf), bhg)) -> new_esEs23(xuu40000, xuu3000, bhf, bhg) new_esEs18(Just(xuu40000), Just(xuu3000), app(ty_Ratio, beg)) -> new_esEs24(xuu40000, xuu3000, beg) new_lt8(xuu91, xuu94, app(app(app(ty_@3, cdg), cdh), cea)) -> new_lt6(xuu91, xuu94, cdg, cdh, cea) new_ltEs18(xuu93, xuu96, ty_Int) -> new_ltEs4(xuu93, xuu96) new_esEs31(xuu91, xuu94, ty_Integer) -> new_esEs14(xuu91, xuu94) new_primCmpNat0(Zero, Succ(xuu3000)) -> LT new_esEs4(xuu4001, xuu301, ty_Ordering) -> new_esEs25(xuu4001, xuu301) new_esEs40(xuu106, xuu108, ty_Ordering) -> new_esEs25(xuu106, xuu108) new_ltEs20(xuu661, xuu671, ty_Double) -> new_ltEs17(xuu661, xuu671) new_ltEs23(xuu107, xuu109, app(app(app(ty_@3, fdh), fea), feb)) -> new_ltEs16(xuu107, xuu109, fdh, fea, feb) new_ltEs21(xuu80, xuu81, ty_Integer) -> new_ltEs13(xuu80, xuu81) new_compare18(GT, GT) -> EQ new_esEs33(xuu660, xuu670, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs19(xuu660, xuu670, dac, dad, dae) new_esEs30(xuu92, xuu95, app(app(ty_@2, cbh), cca)) -> new_esEs23(xuu92, xuu95, cbh, cca) new_esEs37(xuu40002, xuu3002, ty_Double) -> new_esEs26(xuu40002, xuu3002) new_esEs32(xuu661, xuu671, ty_Int) -> new_esEs13(xuu661, xuu671) new_esEs10(xuu4001, xuu301, app(app(app(ty_@3, fhd), fhe), fhf)) -> new_esEs19(xuu4001, xuu301, fhd, fhe, fhf) new_esEs37(xuu40002, xuu3002, app(ty_Ratio, ebc)) -> new_esEs24(xuu40002, xuu3002, ebc) new_ltEs7(Left(xuu660), Left(xuu670), ty_Bool, ec) -> new_ltEs15(xuu660, xuu670) new_esEs39(xuu40000, xuu3000, app(app(ty_Either, ecg), ech)) -> new_esEs17(xuu40000, xuu3000, ecg, ech) new_compare111(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, False, xuu185, bh, ca, cb) -> new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, xuu185, bh, ca, cb) new_ltEs23(xuu107, xuu109, ty_Double) -> new_ltEs17(xuu107, xuu109) new_lt24(xuu400, xuu30, app(ty_Ratio, cec)) -> new_lt11(xuu400, xuu30, cec) new_compare8(xuu4000, xuu300, ty_Int) -> new_compare6(xuu4000, xuu300) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu662, xuu672, app(app(ty_@2, cfb), cfc)) -> new_ltEs10(xuu662, xuu672, cfb, cfc) new_esEs30(xuu92, xuu95, ty_Bool) -> new_esEs21(xuu92, xuu95) new_compare28(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, caa, cab, cac) -> new_compare111(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, new_lt8(xuu91, xuu94, caa), new_asAs(new_esEs31(xuu91, xuu94, caa), new_pePe(new_lt7(xuu92, xuu95, cab), new_asAs(new_esEs30(xuu92, xuu95, cab), new_ltEs18(xuu93, xuu96, cac)))), caa, cab, cac) new_ltEs11(Just(xuu660), Just(xuu670), app(ty_[], fac)) -> new_ltEs5(xuu660, xuu670, fac) new_ltEs7(Right(xuu660), Right(xuu670), fg, app(app(ty_@2, gb), gc)) -> new_ltEs10(xuu660, xuu670, gb, gc) new_ltEs19(xuu662, xuu672, ty_Ordering) -> new_ltEs14(xuu662, xuu672) new_esEs32(xuu661, xuu671, app(app(ty_@2, cgd), cge)) -> new_esEs23(xuu661, xuu671, cgd, cge) new_compare13(@2(xuu4000, xuu4001), @2(xuu300, xuu301), bbh, bca) -> new_compare210(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs5(xuu4000, xuu300, bbh), new_esEs4(xuu4001, xuu301, bca)), bbh, bca) new_ltEs20(xuu661, xuu671, ty_Bool) -> new_ltEs15(xuu661, xuu671) new_esEs29(xuu40000, xuu3000, app(app(ty_Either, bcd), bce)) -> new_esEs17(xuu40000, xuu3000, bcd, bce) new_ltEs14(EQ, GT) -> True new_lt20(xuu661, xuu671, app(ty_Maybe, cgf)) -> new_lt12(xuu661, xuu671, cgf) new_esEs10(xuu4001, xuu301, app(ty_Maybe, fhc)) -> new_esEs18(xuu4001, xuu301, fhc) new_ltEs23(xuu107, xuu109, app(ty_Ratio, fdb)) -> new_ltEs9(xuu107, xuu109, fdb) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs4(xuu4001, xuu301, ty_@0) -> new_esEs20(xuu4001, xuu301) new_esEs33(xuu660, xuu670, ty_Ordering) -> new_esEs25(xuu660, xuu670) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3000))) -> LT new_ltEs18(xuu93, xuu96, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs16(xuu93, xuu96, cbc, cbd, cbe) new_primMulInt(Pos(xuu40000), Pos(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) new_esEs17(Left(xuu40000), Left(xuu3000), app(ty_[], bfd), bfc) -> new_esEs16(xuu40000, xuu3000, bfd) new_ltEs14(LT, GT) -> True new_ltEs14(GT, GT) -> True new_lt7(xuu92, xuu95, ty_Integer) -> new_lt14(xuu92, xuu95) new_esEs21(False, True) -> False new_esEs21(True, False) -> False new_esEs5(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_primMulNat0(Succ(xuu400000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu30100)) -> Zero new_esEs29(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_ltEs7(Left(xuu660), Left(xuu670), ty_Ordering, ec) -> new_ltEs14(xuu660, xuu670) new_lt22(xuu660, xuu670, ty_Integer) -> new_lt14(xuu660, xuu670) new_ltEs23(xuu107, xuu109, ty_Int) -> new_ltEs4(xuu107, xuu109) new_esEs8(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_esEs7(xuu4000, xuu300, app(app(ty_@2, bac), bad)) -> new_esEs23(xuu4000, xuu300, bac, bad) new_esEs5(xuu4000, xuu300, app(app(ty_Either, bgf), bfc)) -> new_esEs17(xuu4000, xuu300, bgf, bfc) new_ltEs19(xuu662, xuu672, ty_Integer) -> new_ltEs13(xuu662, xuu672) new_lt23(xuu106, xuu108, ty_Ordering) -> new_lt17(xuu106, xuu108) new_ltEs19(xuu662, xuu672, ty_Float) -> new_ltEs12(xuu662, xuu672) new_gt(xuu19, xuu14, app(ty_Maybe, dbb)) -> new_esEs41(new_compare14(xuu19, xuu14, dbb)) new_lt22(xuu660, xuu670, app(ty_Maybe, dgh)) -> new_lt12(xuu660, xuu670, dgh) new_ltEs11(Just(xuu660), Just(xuu670), ty_Char) -> new_ltEs6(xuu660, xuu670) new_ltEs7(Right(xuu660), Right(xuu670), fg, app(ty_[], fh)) -> new_ltEs5(xuu660, xuu670, fh) new_primPlusNat0(Succ(xuu39200), Zero) -> Succ(xuu39200) new_primPlusNat0(Zero, Succ(xuu12600)) -> Succ(xuu12600) new_esEs9(xuu4002, xuu302, ty_Int) -> new_esEs13(xuu4002, xuu302) new_esEs38(xuu40001, xuu3001, ty_Integer) -> new_esEs14(xuu40001, xuu3001) new_esEs25(GT, GT) -> True new_esEs30(xuu92, xuu95, app(ty_Maybe, ccb)) -> new_esEs18(xuu92, xuu95, ccb) new_esEs32(xuu661, xuu671, app(ty_Maybe, cgf)) -> new_esEs18(xuu661, xuu671, cgf) new_esEs40(xuu106, xuu108, ty_Bool) -> new_esEs21(xuu106, xuu108) new_compare8(xuu4000, xuu300, ty_Bool) -> new_compare5(xuu4000, xuu300) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs26(xuu40000, xuu3000) new_esEs9(xuu4002, xuu302, app(app(ty_@2, fge), fgf)) -> new_esEs23(xuu4002, xuu302, fge, fgf) new_ltEs21(xuu80, xuu81, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs16(xuu80, xuu81, egc, egd, ege) new_lt20(xuu661, xuu671, ty_Int) -> new_lt16(xuu661, xuu671) new_esEs34(xuu40001, xuu3001, ty_Double) -> new_esEs26(xuu40001, xuu3001) new_esEs30(xuu92, xuu95, ty_@0) -> new_esEs20(xuu92, xuu95) new_esEs12(LT) -> True new_lt8(xuu91, xuu94, ty_Bool) -> new_lt4(xuu91, xuu94) new_lt20(xuu661, xuu671, ty_@0) -> new_lt9(xuu661, xuu671) new_esEs6(xuu4000, xuu300, app(ty_Maybe, eec)) -> new_esEs18(xuu4000, xuu300, eec) new_ltEs4(xuu66, xuu67) -> new_fsEs(new_compare6(xuu66, xuu67)) new_compare210(xuu106, xuu107, xuu108, xuu109, True, fbe, fbf) -> EQ new_ltEs20(xuu661, xuu671, app(app(app(ty_@3, dga), dgb), dgc)) -> new_ltEs16(xuu661, xuu671, dga, dgb, dgc) new_esEs4(xuu4001, xuu301, ty_Bool) -> new_esEs21(xuu4001, xuu301) new_lt24(xuu400, xuu30, ty_Bool) -> new_lt4(xuu400, xuu30) new_ltEs18(xuu93, xuu96, ty_Bool) -> new_ltEs15(xuu93, xuu96) new_esEs28(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_esEs7(xuu4000, xuu300, app(ty_Maybe, hg)) -> new_esEs18(xuu4000, xuu300, hg) new_compare14(Just(xuu4000), Nothing, ced) -> GT new_compare17(Left(xuu4000), Right(xuu300), hb, hc) -> LT new_esEs31(xuu91, xuu94, app(app(ty_Either, cde), cdf)) -> new_esEs17(xuu91, xuu94, cde, cdf) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs22(xuu40000, xuu3000) new_gt(xuu19, xuu14, ty_Ordering) -> new_esEs41(new_compare18(xuu19, xuu14)) new_lt10(xuu400, xuu30, cc) -> new_esEs12(new_compare0(xuu400, xuu30, cc)) new_ltEs9(xuu66, xuu67, ceb) -> new_fsEs(new_compare12(xuu66, xuu67, ceb)) new_esEs10(xuu4001, xuu301, app(app(ty_@2, fhg), fhh)) -> new_esEs23(xuu4001, xuu301, fhg, fhh) new_esEs39(xuu40000, xuu3000, app(ty_[], ecf)) -> new_esEs16(xuu40000, xuu3000, ecf) new_esEs7(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_esEs5(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_compare14(Nothing, Nothing, ced) -> EQ new_ltEs21(xuu80, xuu81, ty_Float) -> new_ltEs12(xuu80, xuu81) new_esEs39(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_compare6(xuu400, xuu30) -> new_primCmpInt(xuu400, xuu30) new_ltEs8(xuu66, xuu67) -> new_fsEs(new_compare9(xuu66, xuu67)) new_esEs4(xuu4001, xuu301, app(ty_[], fed)) -> new_esEs16(xuu4001, xuu301, fed) new_ltEs7(Left(xuu660), Left(xuu670), ty_Char, ec) -> new_ltEs6(xuu660, xuu670) new_esEs4(xuu4001, xuu301, ty_Char) -> new_esEs15(xuu4001, xuu301) new_esEs30(xuu92, xuu95, ty_Char) -> new_esEs15(xuu92, xuu95) new_lt22(xuu660, xuu670, ty_Bool) -> new_lt4(xuu660, xuu670) new_ltEs7(Left(xuu660), Right(xuu670), fg, ec) -> True new_esEs11(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_esEs39(xuu40000, xuu3000, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_esEs12(GT) -> False new_esEs12(EQ) -> False new_ltEs15(True, True) -> True new_lt21(xuu660, xuu670, ty_Float) -> new_lt13(xuu660, xuu670) new_lt22(xuu660, xuu670, ty_Ordering) -> new_lt17(xuu660, xuu670) new_lt23(xuu106, xuu108, ty_Integer) -> new_lt14(xuu106, xuu108) new_esEs33(xuu660, xuu670, ty_Int) -> new_esEs13(xuu660, xuu670) new_esEs34(xuu40001, xuu3001, ty_Integer) -> new_esEs14(xuu40001, xuu3001) new_ltEs22(xuu73, xuu74, ty_Int) -> new_ltEs4(xuu73, xuu74) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_lt8(xuu91, xuu94, app(ty_[], cch)) -> new_lt10(xuu91, xuu94, cch) new_lt21(xuu660, xuu670, app(app(ty_Either, daa), dab)) -> new_lt15(xuu660, xuu670, daa, dab) new_esEs11(xuu4000, xuu300, app(app(app(ty_@3, gaf), gag), gah)) -> new_esEs19(xuu4000, xuu300, gaf, gag, gah) new_ltEs19(xuu662, xuu672, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs16(xuu662, xuu672, cfg, cfh, cga) new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_ltEs11(Just(xuu660), Just(xuu670), app(app(ty_@2, fae), faf)) -> new_ltEs10(xuu660, xuu670, fae, faf) new_lt24(xuu400, xuu30, app(app(app(ty_@3, beh), bfa), bfb)) -> new_lt6(xuu400, xuu30, beh, bfa, bfb) new_esEs36(xuu660, xuu670, app(ty_Ratio, dge)) -> new_esEs24(xuu660, xuu670, dge) new_esEs38(xuu40001, xuu3001, app(app(ty_Either, ebe), ebf)) -> new_esEs17(xuu40001, xuu3001, ebe, ebf) new_compare8(xuu4000, xuu300, app(ty_[], cd)) -> new_compare0(xuu4000, xuu300, cd) new_compare18(GT, LT) -> GT new_esEs38(xuu40001, xuu3001, app(ty_Maybe, ebg)) -> new_esEs18(xuu40001, xuu3001, ebg) new_compare18(EQ, LT) -> GT new_compare28(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, True, caa, cab, cac) -> EQ new_lt7(xuu92, xuu95, app(app(app(ty_@3, cce), ccf), ccg)) -> new_lt6(xuu92, xuu95, cce, ccf, ccg) new_compare114(xuu137, xuu138, True, dhf) -> LT new_esEs5(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_compare0([], :(xuu300, xuu301), cc) -> LT new_esEs30(xuu92, xuu95, ty_Integer) -> new_esEs14(xuu92, xuu95) new_compare10(xuu144, xuu145, False, bf, bg) -> GT new_esEs32(xuu661, xuu671, ty_Ordering) -> new_esEs25(xuu661, xuu671) new_esEs5(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_esEs36(xuu660, xuu670, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_esEs19(xuu660, xuu670, dhc, dhd, dhe) new_ltEs22(xuu73, xuu74, app(app(ty_@2, ehb), ehc)) -> new_ltEs10(xuu73, xuu74, ehb, ehc) new_ltEs12(xuu66, xuu67) -> new_fsEs(new_compare15(xuu66, xuu67)) new_gt(xuu19, xuu14, app(app(ty_@2, dah), dba)) -> new_esEs41(new_compare13(xuu19, xuu14, dah, dba)) new_esEs36(xuu660, xuu670, ty_@0) -> new_esEs20(xuu660, xuu670) new_esEs11(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_ltEs16(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), cee, cef, ceg) -> new_pePe(new_lt21(xuu660, xuu670, cee), new_asAs(new_esEs33(xuu660, xuu670, cee), new_pePe(new_lt20(xuu661, xuu671, cef), new_asAs(new_esEs32(xuu661, xuu671, cef), new_ltEs19(xuu662, xuu672, ceg))))) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Bool, bfc) -> new_esEs21(xuu40000, xuu3000) new_gt(xuu19, xuu14, app(ty_Ratio, dag)) -> new_esEs41(new_compare12(xuu19, xuu14, dag)) new_esEs8(xuu4000, xuu300, app(ty_[], baf)) -> new_esEs16(xuu4000, xuu300, baf) new_primCmpInt(Pos(Succ(xuu40000)), Pos(xuu300)) -> new_primCmpNat0(Succ(xuu40000), xuu300) new_compare5(True, True) -> EQ new_lt20(xuu661, xuu671, app(ty_[], cgb)) -> new_lt10(xuu661, xuu671, cgb) new_esEs29(xuu40000, xuu3000, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_primCompAux00(xuu49, EQ) -> xuu49 new_compare113(xuu163, xuu164, xuu165, xuu166, False, dbh, dca) -> GT new_ltEs11(Just(xuu660), Just(xuu670), ty_Double) -> new_ltEs17(xuu660, xuu670) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Float, bfc) -> new_esEs22(xuu40000, xuu3000) new_lt21(xuu660, xuu670, ty_@0) -> new_lt9(xuu660, xuu670) new_gt(xuu19, xuu14, app(ty_[], daf)) -> new_esEs41(new_compare0(xuu19, xuu14, daf)) new_ltEs23(xuu107, xuu109, app(ty_[], fda)) -> new_ltEs5(xuu107, xuu109, fda) new_compare25(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_lt21(xuu660, xuu670, app(ty_[], chd)) -> new_lt10(xuu660, xuu670, chd) new_primMulNat0(Succ(xuu400000), Succ(xuu30100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu30100)), Succ(xuu30100)) new_compare17(Right(xuu4000), Left(xuu300), hb, hc) -> GT new_esEs10(xuu4001, xuu301, ty_Double) -> new_esEs26(xuu4001, xuu301) new_esEs10(xuu4001, xuu301, app(ty_Ratio, gaa)) -> new_esEs24(xuu4001, xuu301, gaa) new_compare8(xuu4000, xuu300, ty_Char) -> new_compare7(xuu4000, xuu300) new_esEs18(Just(xuu40000), Just(xuu3000), app(ty_Maybe, bea)) -> new_esEs18(xuu40000, xuu3000, bea) new_esEs33(xuu660, xuu670, app(app(ty_Either, daa), dab)) -> new_esEs17(xuu660, xuu670, daa, dab) new_compare8(xuu4000, xuu300, ty_Integer) -> new_compare16(xuu4000, xuu300) new_ltEs11(Nothing, Just(xuu670), fab) -> True new_ltEs21(xuu80, xuu81, app(app(ty_@2, eff), efg)) -> new_ltEs10(xuu80, xuu81, eff, efg) new_esEs31(xuu91, xuu94, ty_Double) -> new_esEs26(xuu91, xuu94) new_lt8(xuu91, xuu94, ty_Char) -> new_lt19(xuu91, xuu94) new_ltEs22(xuu73, xuu74, app(ty_[], egh)) -> new_ltEs5(xuu73, xuu74, egh) new_ltEs11(Just(xuu660), Just(xuu670), app(ty_Ratio, fad)) -> new_ltEs9(xuu660, xuu670, fad) new_esEs24(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), eb) -> new_asAs(new_esEs28(xuu40000, xuu3000, eb), new_esEs27(xuu40001, xuu3001, eb)) new_esEs37(xuu40002, xuu3002, ty_Float) -> new_esEs22(xuu40002, xuu3002) new_esEs33(xuu660, xuu670, app(ty_Maybe, chh)) -> new_esEs18(xuu660, xuu670, chh) new_esEs40(xuu106, xuu108, app(app(ty_Either, fcd), fce)) -> new_esEs17(xuu106, xuu108, fcd, fce) new_esEs37(xuu40002, xuu3002, ty_@0) -> new_esEs20(xuu40002, xuu3002) new_esEs18(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bdg), bdh)) -> new_esEs17(xuu40000, xuu3000, bdg, bdh) new_esEs34(xuu40001, xuu3001, app(app(ty_Either, dce), dcf)) -> new_esEs17(xuu40001, xuu3001, dce, dcf) new_esEs4(xuu4001, xuu301, app(app(app(ty_@3, feh), ffa), ffb)) -> new_esEs19(xuu4001, xuu301, feh, ffa, ffb) new_esEs31(xuu91, xuu94, ty_Bool) -> new_esEs21(xuu91, xuu94) new_lt22(xuu660, xuu670, app(app(ty_Either, dha), dhb)) -> new_lt15(xuu660, xuu670, dha, dhb) new_esEs36(xuu660, xuu670, ty_Float) -> new_esEs22(xuu660, xuu670) new_esEs36(xuu660, xuu670, ty_Bool) -> new_esEs21(xuu660, xuu670) new_esEs17(Left(xuu40000), Right(xuu3000), bgf, bfc) -> False new_esEs17(Right(xuu40000), Left(xuu3000), bgf, bfc) -> False new_esEs40(xuu106, xuu108, app(ty_Maybe, fcc)) -> new_esEs18(xuu106, xuu108, fcc) new_esEs34(xuu40001, xuu3001, app(ty_Maybe, dcg)) -> new_esEs18(xuu40001, xuu3001, dcg) new_lt23(xuu106, xuu108, app(app(app(ty_@3, fcf), fcg), fch)) -> new_lt6(xuu106, xuu108, fcf, fcg, fch) new_esEs5(xuu4000, xuu300, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs19(xuu4000, xuu300, dhg, dhh, eaa) new_esEs39(xuu40000, xuu3000, app(ty_Maybe, eda)) -> new_esEs18(xuu40000, xuu3000, eda) new_esEs32(xuu661, xuu671, ty_@0) -> new_esEs20(xuu661, xuu671) new_lt22(xuu660, xuu670, ty_@0) -> new_lt9(xuu660, xuu670) new_compare17(Left(xuu4000), Left(xuu300), hb, hc) -> new_compare26(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, hb), hb, hc) new_esEs7(xuu4000, xuu300, app(ty_[], hd)) -> new_esEs16(xuu4000, xuu300, hd) new_lt8(xuu91, xuu94, ty_Float) -> new_lt13(xuu91, xuu94) new_esEs32(xuu661, xuu671, ty_Double) -> new_esEs26(xuu661, xuu671) new_esEs41(GT) -> True new_lt21(xuu660, xuu670, ty_Bool) -> new_lt4(xuu660, xuu670) new_esEs31(xuu91, xuu94, ty_Char) -> new_esEs15(xuu91, xuu94) new_esEs11(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_esEs17(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, bfh), bga), bgb), bfc) -> new_esEs19(xuu40000, xuu3000, bfh, bga, bgb) new_esEs11(xuu4000, xuu300, app(ty_Ratio, gbc)) -> new_esEs24(xuu4000, xuu300, gbc) new_lt21(xuu660, xuu670, ty_Ordering) -> new_lt17(xuu660, xuu670) new_compare8(xuu4000, xuu300, ty_Ordering) -> new_compare18(xuu4000, xuu300) new_esEs33(xuu660, xuu670, ty_Integer) -> new_esEs14(xuu660, xuu670) new_compare18(EQ, EQ) -> EQ new_esEs9(xuu4002, xuu302, app(ty_[], fff)) -> new_esEs16(xuu4002, xuu302, fff) new_ltEs10(@2(xuu660, xuu661), @2(xuu670, xuu671), deh, dfa) -> new_pePe(new_lt22(xuu660, xuu670, deh), new_asAs(new_esEs36(xuu660, xuu670, deh), new_ltEs20(xuu661, xuu671, dfa))) new_compare16(Integer(xuu4000), Integer(xuu300)) -> new_primCmpInt(xuu4000, xuu300) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, app(ty_[], bgg)) -> new_esEs16(xuu40000, xuu3000, bgg) new_esEs10(xuu4001, xuu301, ty_Integer) -> new_esEs14(xuu4001, xuu301) new_compare18(LT, EQ) -> LT new_esEs29(xuu40000, xuu3000, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_lt20(xuu661, xuu671, ty_Float) -> new_lt13(xuu661, xuu671) new_esEs35(xuu40000, xuu3000, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs19(xuu40000, xuu3000, deb, dec, ded) new_compare0(:(xuu4000, xuu4001), [], cc) -> GT new_esEs33(xuu660, xuu670, ty_@0) -> new_esEs20(xuu660, xuu670) new_esEs6(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_lt17(xuu400, xuu30) -> new_esEs12(new_compare18(xuu400, xuu30)) new_primPlusNat0(Succ(xuu39200), Succ(xuu12600)) -> Succ(Succ(new_primPlusNat0(xuu39200, xuu12600))) new_esEs37(xuu40002, xuu3002, app(ty_Maybe, eae)) -> new_esEs18(xuu40002, xuu3002, eae) new_esEs10(xuu4001, xuu301, ty_@0) -> new_esEs20(xuu4001, xuu301) new_compare12(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Int) -> new_compare6(new_sr(xuu4000, xuu301), new_sr(xuu300, xuu4001)) new_esEs35(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_compare8(xuu4000, xuu300, ty_@0) -> new_compare9(xuu4000, xuu300) new_compare27(xuu80, xuu81, True, efb, efc) -> EQ new_lt23(xuu106, xuu108, ty_@0) -> new_lt9(xuu106, xuu108) new_lt7(xuu92, xuu95, app(ty_[], cbf)) -> new_lt10(xuu92, xuu95, cbf) new_esEs30(xuu92, xuu95, ty_Double) -> new_esEs26(xuu92, xuu95) new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_esEs30(xuu92, xuu95, app(ty_Ratio, cbg)) -> new_esEs24(xuu92, xuu95, cbg) new_ltEs18(xuu93, xuu96, app(ty_[], cad)) -> new_ltEs5(xuu93, xuu96, cad) new_ltEs21(xuu80, xuu81, app(ty_[], efd)) -> new_ltEs5(xuu80, xuu81, efd) new_ltEs15(False, True) -> True new_esEs30(xuu92, xuu95, ty_Int) -> new_esEs13(xuu92, xuu95) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Integer, bfc) -> new_esEs14(xuu40000, xuu3000) new_lt7(xuu92, xuu95, ty_Float) -> new_lt13(xuu92, xuu95) new_esEs37(xuu40002, xuu3002, app(app(ty_Either, eac), ead)) -> new_esEs17(xuu40002, xuu3002, eac, ead) new_esEs35(xuu40000, xuu3000, app(app(ty_Either, ddg), ddh)) -> new_esEs17(xuu40000, xuu3000, ddg, ddh) new_compare210(xuu106, xuu107, xuu108, xuu109, False, fbe, fbf) -> new_compare112(xuu106, xuu107, xuu108, xuu109, new_lt23(xuu106, xuu108, fbe), new_asAs(new_esEs40(xuu106, xuu108, fbe), new_ltEs23(xuu107, xuu109, fbf)), fbe, fbf) new_esEs32(xuu661, xuu671, ty_Bool) -> new_esEs21(xuu661, xuu671) new_esEs38(xuu40001, xuu3001, ty_Ordering) -> new_esEs25(xuu40001, xuu3001) new_esEs29(xuu40000, xuu3000, app(ty_Ratio, bdd)) -> new_esEs24(xuu40000, xuu3000, bdd) new_compare0(:(xuu4000, xuu4001), :(xuu300, xuu301), cc) -> new_primCompAux0(xuu4000, xuu300, new_compare0(xuu4001, xuu301, cc), cc) new_compare19(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), beh, bfa, bfb) -> new_compare28(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs11(xuu4000, xuu300, beh), new_asAs(new_esEs10(xuu4001, xuu301, bfa), new_esEs9(xuu4002, xuu302, bfb))), beh, bfa, bfb) new_lt20(xuu661, xuu671, app(app(ty_Either, cgg), cgh)) -> new_lt15(xuu661, xuu671, cgg, cgh) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Ordering, bfc) -> new_esEs25(xuu40000, xuu3000) new_lt8(xuu91, xuu94, ty_@0) -> new_lt9(xuu91, xuu94) new_esEs35(xuu40000, xuu3000, app(ty_Maybe, dea)) -> new_esEs18(xuu40000, xuu3000, dea) new_lt20(xuu661, xuu671, ty_Char) -> new_lt19(xuu661, xuu671) new_compare8(xuu4000, xuu300, app(app(ty_Either, db), dc)) -> new_compare17(xuu4000, xuu300, db, dc) new_esEs21(True, True) -> True new_esEs35(xuu40000, xuu3000, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_lt22(xuu660, xuu670, ty_Float) -> new_lt13(xuu660, xuu670) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Char, bfc) -> new_esEs15(xuu40000, xuu3000) new_lt18(xuu400, xuu30) -> new_esEs12(new_compare25(xuu400, xuu30)) new_esEs39(xuu40000, xuu3000, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_esEs35(xuu40000, xuu3000, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_esEs38(xuu40001, xuu3001, app(app(app(ty_@3, ebh), eca), ecb)) -> new_esEs19(xuu40001, xuu3001, ebh, eca, ecb) new_lt7(xuu92, xuu95, ty_Char) -> new_lt19(xuu92, xuu95) new_esEs11(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_esEs34(xuu40001, xuu3001, ty_Bool) -> new_esEs21(xuu40001, xuu3001) new_esEs34(xuu40001, xuu3001, ty_Char) -> new_esEs15(xuu40001, xuu3001) new_esEs38(xuu40001, xuu3001, ty_Float) -> new_esEs22(xuu40001, xuu3001) new_primCmpNat0(Succ(xuu40000), Succ(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) new_lt21(xuu660, xuu670, app(app(app(ty_@3, dac), dad), dae)) -> new_lt6(xuu660, xuu670, dac, dad, dae) new_esEs28(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_esEs36(xuu660, xuu670, ty_Ordering) -> new_esEs25(xuu660, xuu670) new_ltEs7(Left(xuu660), Left(xuu670), ty_Float, ec) -> new_ltEs12(xuu660, xuu670) new_ltEs11(Just(xuu660), Nothing, fab) -> False new_ltEs11(Just(xuu660), Just(xuu670), ty_Int) -> new_ltEs4(xuu660, xuu670) new_esEs32(xuu661, xuu671, app(ty_Ratio, cgc)) -> new_esEs24(xuu661, xuu671, cgc) new_compare111(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, True, xuu185, bh, ca, cb) -> new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, True, bh, ca, cb) new_ltEs11(Nothing, Nothing, fab) -> True new_esEs10(xuu4001, xuu301, ty_Char) -> new_esEs15(xuu4001, xuu301) new_lt15(xuu400, xuu30, hb, hc) -> new_esEs12(new_compare17(xuu400, xuu30, hb, hc)) new_compare8(xuu4000, xuu300, ty_Float) -> new_compare15(xuu4000, xuu300) new_esEs33(xuu660, xuu670, ty_Bool) -> new_esEs21(xuu660, xuu670) new_esEs33(xuu660, xuu670, ty_Char) -> new_esEs15(xuu660, xuu670) new_lt22(xuu660, xuu670, ty_Char) -> new_lt19(xuu660, xuu670) new_esEs10(xuu4001, xuu301, ty_Bool) -> new_esEs21(xuu4001, xuu301) new_lt20(xuu661, xuu671, app(app(app(ty_@3, cha), chb), chc)) -> new_lt6(xuu661, xuu671, cha, chb, chc) new_esEs36(xuu660, xuu670, app(app(ty_Either, dha), dhb)) -> new_esEs17(xuu660, xuu670, dha, dhb) new_ltEs5(xuu66, xuu67, dg) -> new_fsEs(new_compare0(xuu66, xuu67, dg)) new_lt14(xuu400, xuu30) -> new_esEs12(new_compare16(xuu400, xuu30)) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) new_lt24(xuu400, xuu30, app(ty_[], cc)) -> new_lt10(xuu400, xuu30, cc) new_esEs37(xuu40002, xuu3002, ty_Ordering) -> new_esEs25(xuu40002, xuu3002) new_compare8(xuu4000, xuu300, app(app(app(ty_@3, dd), de), df)) -> new_compare19(xuu4000, xuu300, dd, de, df) new_ltEs15(True, False) -> False new_esEs15(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_ltEs20(xuu661, xuu671, app(ty_[], dfb)) -> new_ltEs5(xuu661, xuu671, dfb) new_lt21(xuu660, xuu670, ty_Char) -> new_lt19(xuu660, xuu670) new_esEs31(xuu91, xuu94, app(ty_Ratio, cda)) -> new_esEs24(xuu91, xuu94, cda) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, True, bh, ca, cb) -> LT new_esEs18(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs15(xuu40000, xuu3000) new_esEs11(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_ltEs14(LT, LT) -> True new_esEs11(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_ltEs7(Left(xuu660), Left(xuu670), app(ty_Maybe, eh), ec) -> new_ltEs11(xuu660, xuu670, eh) new_esEs40(xuu106, xuu108, ty_Float) -> new_esEs22(xuu106, xuu108) new_esEs4(xuu4001, xuu301, ty_Float) -> new_esEs22(xuu4001, xuu301) new_esEs14(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs17(Left(xuu40000), Left(xuu3000), ty_@0, bfc) -> new_esEs20(xuu40000, xuu3000) new_ltEs15(False, False) -> True new_esEs37(xuu40002, xuu3002, app(app(app(ty_@3, eaf), eag), eah)) -> new_esEs19(xuu40002, xuu3002, eaf, eag, eah) new_esEs35(xuu40000, xuu3000, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_ltEs23(xuu107, xuu109, app(app(ty_@2, fdc), fdd)) -> new_ltEs10(xuu107, xuu109, fdc, fdd) new_lt13(xuu400, xuu30) -> new_esEs12(new_compare15(xuu400, xuu30)) new_ltEs7(Right(xuu660), Left(xuu670), fg, ec) -> False new_primCmpInt(Neg(Succ(xuu40000)), Pos(xuu300)) -> LT new_ltEs18(xuu93, xuu96, app(app(ty_@2, caf), cag)) -> new_ltEs10(xuu93, xuu96, caf, cag) new_esEs32(xuu661, xuu671, ty_Integer) -> new_esEs14(xuu661, xuu671) new_ltEs18(xuu93, xuu96, ty_Ordering) -> new_ltEs14(xuu93, xuu96) new_esEs7(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_ltEs24(xuu66, xuu67, ty_Int) -> new_ltEs4(xuu66, xuu67) new_esEs39(xuu40000, xuu3000, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_esEs34(xuu40001, xuu3001, ty_@0) -> new_esEs20(xuu40001, xuu3001) new_ltEs7(Left(xuu660), Left(xuu670), app(app(ty_@2, ef), eg), ec) -> new_ltEs10(xuu660, xuu670, ef, eg) new_esEs36(xuu660, xuu670, app(ty_Maybe, dgh)) -> new_esEs18(xuu660, xuu670, dgh) new_ltEs18(xuu93, xuu96, ty_Float) -> new_ltEs12(xuu93, xuu96) new_lt24(xuu400, xuu30, ty_@0) -> new_lt9(xuu400, xuu30) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3000))) -> GT new_esEs34(xuu40001, xuu3001, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs19(xuu40001, xuu3001, dch, dda, ddb) new_ltEs19(xuu662, xuu672, app(ty_[], ceh)) -> new_ltEs5(xuu662, xuu672, ceh) new_compare113(xuu163, xuu164, xuu165, xuu166, True, dbh, dca) -> LT new_ltEs24(xuu66, xuu67, app(app(ty_Either, fg), ec)) -> new_ltEs7(xuu66, xuu67, fg, ec) new_primCmpInt(Neg(Succ(xuu40000)), Neg(xuu300)) -> new_primCmpNat0(xuu300, Succ(xuu40000)) new_esEs38(xuu40001, xuu3001, ty_Double) -> new_esEs26(xuu40001, xuu3001) new_ltEs21(xuu80, xuu81, ty_Char) -> new_ltEs6(xuu80, xuu81) new_esEs41(EQ) -> False new_lt4(xuu400, xuu30) -> new_esEs12(new_compare5(xuu400, xuu30)) new_esEs33(xuu660, xuu670, app(ty_[], chd)) -> new_esEs16(xuu660, xuu670, chd) new_lt7(xuu92, xuu95, ty_Bool) -> new_lt4(xuu92, xuu95) new_esEs5(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_lt20(xuu661, xuu671, ty_Bool) -> new_lt4(xuu661, xuu671) new_esEs18(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs20(xuu40000, xuu3000) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_lt21(xuu660, xuu670, app(app(ty_@2, chf), chg)) -> new_lt5(xuu660, xuu670, chf, chg) new_esEs31(xuu91, xuu94, app(app(ty_@2, cdb), cdc)) -> new_esEs23(xuu91, xuu94, cdb, cdc) new_lt23(xuu106, xuu108, app(ty_[], fbg)) -> new_lt10(xuu106, xuu108, fbg) new_esEs8(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs19(xuu40000, xuu3000, bhc, bhd, bhe) new_esEs29(xuu40000, xuu3000, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_esEs38(xuu40001, xuu3001, app(ty_Ratio, ece)) -> new_esEs24(xuu40001, xuu3001, ece) new_compare15(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_compare25(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_compare25(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_ltEs24(xuu66, xuu67, ty_Double) -> new_ltEs17(xuu66, xuu67) new_lt22(xuu660, xuu670, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_lt6(xuu660, xuu670, dhc, dhd, dhe) new_esEs39(xuu40000, xuu3000, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_lt24(xuu400, xuu30, ty_Char) -> new_lt19(xuu400, xuu30) new_ltEs22(xuu73, xuu74, app(app(app(ty_@3, ehg), ehh), faa)) -> new_ltEs16(xuu73, xuu74, ehg, ehh, faa) new_ltEs20(xuu661, xuu671, ty_Ordering) -> new_ltEs14(xuu661, xuu671) new_compare14(Nothing, Just(xuu300), ced) -> LT new_esEs40(xuu106, xuu108, app(ty_Ratio, fbh)) -> new_esEs24(xuu106, xuu108, fbh) new_ltEs20(xuu661, xuu671, app(app(ty_@2, dfd), dfe)) -> new_ltEs10(xuu661, xuu671, dfd, dfe) new_esEs33(xuu660, xuu670, app(ty_Ratio, che)) -> new_esEs24(xuu660, xuu670, che) new_primCmpNat0(Zero, Zero) -> EQ new_esEs37(xuu40002, xuu3002, ty_Integer) -> new_esEs14(xuu40002, xuu3002) new_esEs10(xuu4001, xuu301, app(app(ty_Either, fha), fhb)) -> new_esEs17(xuu4001, xuu301, fha, fhb) new_esEs29(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_esEs20(@0, @0) -> True new_esEs33(xuu660, xuu670, ty_Double) -> new_esEs26(xuu660, xuu670) new_esEs30(xuu92, xuu95, ty_Float) -> new_esEs22(xuu92, xuu95) new_esEs5(xuu4000, xuu300, app(ty_Maybe, bde)) -> new_esEs18(xuu4000, xuu300, bde) new_ltEs22(xuu73, xuu74, ty_Integer) -> new_ltEs13(xuu73, xuu74) new_esEs36(xuu660, xuu670, ty_Int) -> new_esEs13(xuu660, xuu670) new_ltEs19(xuu662, xuu672, ty_Double) -> new_ltEs17(xuu662, xuu672) new_esEs7(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, app(ty_Ratio, bhh)) -> new_esEs24(xuu40000, xuu3000, bhh) new_esEs36(xuu660, xuu670, ty_Char) -> new_esEs15(xuu660, xuu670) new_ltEs21(xuu80, xuu81, ty_Bool) -> new_ltEs15(xuu80, xuu81) new_esEs39(xuu40000, xuu3000, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs19(xuu40000, xuu3000, edb, edc, edd) new_compare114(xuu137, xuu138, False, dhf) -> GT new_ltEs19(xuu662, xuu672, ty_Char) -> new_ltEs6(xuu662, xuu672) new_esEs6(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_esEs29(xuu40000, xuu3000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs19(xuu40000, xuu3000, bcg, bch, bda) new_esEs36(xuu660, xuu670, app(app(ty_@2, dgf), dgg)) -> new_esEs23(xuu660, xuu670, dgf, dgg) new_compare17(Right(xuu4000), Right(xuu300), hb, hc) -> new_compare27(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, hc), hb, hc) new_primCompAux00(xuu49, GT) -> GT new_lt24(xuu400, xuu30, ty_Float) -> new_lt13(xuu400, xuu30) new_compare112(xuu163, xuu164, xuu165, xuu166, False, xuu168, dbh, dca) -> new_compare113(xuu163, xuu164, xuu165, xuu166, xuu168, dbh, dca) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_lt6(xuu400, xuu30, beh, bfa, bfb) -> new_esEs12(new_compare19(xuu400, xuu30, beh, bfa, bfb)) new_esEs4(xuu4001, xuu301, app(app(ty_Either, fee), fef)) -> new_esEs17(xuu4001, xuu301, fee, fef) new_esEs18(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, beb), bec), bed)) -> new_esEs19(xuu40000, xuu3000, beb, bec, bed) new_ltEs14(EQ, LT) -> False new_esEs29(xuu40000, xuu3000, app(app(ty_@2, bdb), bdc)) -> new_esEs23(xuu40000, xuu3000, bdb, bdc) new_lt21(xuu660, xuu670, ty_Integer) -> new_lt14(xuu660, xuu670) new_compare110(xuu151, xuu152, True, dh, ea) -> LT new_esEs11(xuu4000, xuu300, app(ty_Maybe, gae)) -> new_esEs18(xuu4000, xuu300, gae) new_esEs8(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_esEs34(xuu40001, xuu3001, ty_Ordering) -> new_esEs25(xuu40001, xuu3001) new_lt8(xuu91, xuu94, ty_Int) -> new_lt16(xuu91, xuu94) new_esEs31(xuu91, xuu94, ty_Int) -> new_esEs13(xuu91, xuu94) new_ltEs11(Just(xuu660), Just(xuu670), ty_Integer) -> new_ltEs13(xuu660, xuu670) new_esEs9(xuu4002, xuu302, app(app(ty_Either, ffg), ffh)) -> new_esEs17(xuu4002, xuu302, ffg, ffh) new_ltEs7(Left(xuu660), Left(xuu670), app(ty_Ratio, ee), ec) -> new_ltEs9(xuu660, xuu670, ee) new_primCmpNat0(Succ(xuu40000), Zero) -> GT new_compare29(xuu66, xuu67, False, fec) -> new_compare114(xuu66, xuu67, new_ltEs24(xuu66, xuu67, fec), fec) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) new_primCompAux0(xuu4000, xuu300, xuu45, cc) -> new_primCompAux00(xuu45, new_compare8(xuu4000, xuu300, cc)) new_ltEs19(xuu662, xuu672, app(app(ty_Either, cfe), cff)) -> new_ltEs7(xuu662, xuu672, cfe, cff) new_pePe(False, xuu196) -> xuu196 new_esEs6(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_ltEs13(xuu66, xuu67) -> new_fsEs(new_compare16(xuu66, xuu67)) new_compare18(LT, GT) -> LT new_ltEs21(xuu80, xuu81, ty_Double) -> new_ltEs17(xuu80, xuu81) new_lt23(xuu106, xuu108, ty_Bool) -> new_lt4(xuu106, xuu108) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_esEs30(xuu92, xuu95, app(app(ty_Either, ccc), ccd)) -> new_esEs17(xuu92, xuu95, ccc, ccd) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs14(xuu40001, xuu3001) new_ltEs19(xuu662, xuu672, ty_Bool) -> new_ltEs15(xuu662, xuu672) new_esEs8(xuu4000, xuu300, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs19(xuu4000, xuu300, bbb, bbc, bbd) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs6(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_gt0(xuu19, xuu14) -> new_esEs41(new_compare6(xuu19, xuu14)) new_ltEs7(Left(xuu660), Left(xuu670), ty_Integer, ec) -> new_ltEs13(xuu660, xuu670) new_esEs10(xuu4001, xuu301, ty_Float) -> new_esEs22(xuu4001, xuu301) new_esEs31(xuu91, xuu94, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs19(xuu91, xuu94, cdg, cdh, cea) new_lt8(xuu91, xuu94, app(ty_Maybe, cdd)) -> new_lt12(xuu91, xuu94, cdd) new_lt16(xuu400, xuu30) -> new_esEs12(new_compare6(xuu400, xuu30)) new_ltEs23(xuu107, xuu109, ty_Float) -> new_ltEs12(xuu107, xuu109) new_esEs17(Left(xuu40000), Left(xuu3000), app(app(ty_@2, bgc), bgd), bfc) -> new_esEs23(xuu40000, xuu3000, bgc, bgd) new_esEs33(xuu660, xuu670, ty_Float) -> new_esEs22(xuu660, xuu670) new_lt24(xuu400, xuu30, ty_Integer) -> new_lt14(xuu400, xuu30) new_esEs37(xuu40002, xuu3002, ty_Bool) -> new_esEs21(xuu40002, xuu3002) new_esEs31(xuu91, xuu94, ty_@0) -> new_esEs20(xuu91, xuu94) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_ltEs14(GT, EQ) -> False new_esEs35(xuu40000, xuu3000, app(ty_Ratio, deg)) -> new_esEs24(xuu40000, xuu3000, deg) new_ltEs19(xuu662, xuu672, ty_Int) -> new_ltEs4(xuu662, xuu672) new_esEs6(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_gt(xuu19, xuu14, ty_@0) -> new_esEs41(new_compare9(xuu19, xuu14)) new_ltEs17(xuu66, xuu67) -> new_fsEs(new_compare25(xuu66, xuu67)) new_ltEs7(Right(xuu660), Right(xuu670), fg, app(app(ty_Either, ge), gf)) -> new_ltEs7(xuu660, xuu670, ge, gf) new_ltEs24(xuu66, xuu67, app(ty_[], dg)) -> new_ltEs5(xuu66, xuu67, dg) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_esEs38(xuu40001, xuu3001, ty_Char) -> new_esEs15(xuu40001, xuu3001) new_esEs34(xuu40001, xuu3001, app(app(ty_@2, ddc), ddd)) -> new_esEs23(xuu40001, xuu3001, ddc, ddd) new_ltEs21(xuu80, xuu81, ty_@0) -> new_ltEs8(xuu80, xuu81) new_esEs32(xuu661, xuu671, app(app(ty_Either, cgg), cgh)) -> new_esEs17(xuu661, xuu671, cgg, cgh) new_compare8(xuu4000, xuu300, app(ty_Maybe, da)) -> new_compare14(xuu4000, xuu300, da) new_esEs38(xuu40001, xuu3001, app(ty_[], ebd)) -> new_esEs16(xuu40001, xuu3001, ebd) new_esEs29(xuu40000, xuu3000, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_compare5(False, True) -> LT new_esEs8(xuu4000, xuu300, app(ty_Maybe, bba)) -> new_esEs18(xuu4000, xuu300, bba) new_esEs18(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bee), bef)) -> new_esEs23(xuu40000, xuu3000, bee, bef) new_esEs29(xuu40000, xuu3000, app(ty_Maybe, bcf)) -> new_esEs18(xuu40000, xuu3000, bcf) new_esEs35(xuu40000, xuu3000, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_esEs6(xuu4000, xuu300, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs19(xuu4000, xuu300, eed, eee, eef) new_esEs11(xuu4000, xuu300, app(app(ty_@2, gba), gbb)) -> new_esEs23(xuu4000, xuu300, gba, gbb) new_ltEs18(xuu93, xuu96, ty_@0) -> new_ltEs8(xuu93, xuu96) new_esEs31(xuu91, xuu94, app(ty_Maybe, cdd)) -> new_esEs18(xuu91, xuu94, cdd) new_compare15(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_compare15(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_lt21(xuu660, xuu670, ty_Int) -> new_lt16(xuu660, xuu670) new_esEs7(xuu4000, xuu300, app(app(ty_Either, he), hf)) -> new_esEs17(xuu4000, xuu300, he, hf) new_compare18(EQ, GT) -> LT new_lt24(xuu400, xuu30, app(app(ty_Either, hb), hc)) -> new_lt15(xuu400, xuu30, hb, hc) new_gt(xuu19, xuu14, ty_Bool) -> new_esEs41(new_compare5(xuu19, xuu14)) new_esEs8(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_lt8(xuu91, xuu94, app(app(ty_Either, cde), cdf)) -> new_lt15(xuu91, xuu94, cde, cdf) new_lt8(xuu91, xuu94, ty_Ordering) -> new_lt17(xuu91, xuu94) new_esEs6(xuu4000, xuu300, app(app(ty_Either, eea), eeb)) -> new_esEs17(xuu4000, xuu300, eea, eeb) new_esEs8(xuu4000, xuu300, app(app(ty_@2, bbe), bbf)) -> new_esEs23(xuu4000, xuu300, bbe, bbf) new_ltEs20(xuu661, xuu671, ty_Float) -> new_ltEs12(xuu661, xuu671) new_ltEs7(Right(xuu660), Right(xuu670), fg, ty_Int) -> new_ltEs4(xuu660, xuu670) new_esEs5(xuu4000, xuu300, app(ty_[], bcb)) -> new_esEs16(xuu4000, xuu300, bcb) new_compare112(xuu163, xuu164, xuu165, xuu166, True, xuu168, dbh, dca) -> new_compare113(xuu163, xuu164, xuu165, xuu166, True, dbh, dca) new_ltEs7(Left(xuu660), Left(xuu670), app(app(app(ty_@3, fc), fd), ff), ec) -> new_ltEs16(xuu660, xuu670, fc, fd, ff) new_esEs11(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_ltEs11(Just(xuu660), Just(xuu670), app(ty_Maybe, fag)) -> new_ltEs11(xuu660, xuu670, fag) new_esEs34(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) new_ltEs7(Right(xuu660), Right(xuu670), fg, ty_Double) -> new_ltEs17(xuu660, xuu670) new_esEs35(xuu40000, xuu3000, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_esEs40(xuu106, xuu108, app(ty_[], fbg)) -> new_esEs16(xuu106, xuu108, fbg) new_lt8(xuu91, xuu94, ty_Integer) -> new_lt14(xuu91, xuu94) new_gt(xuu19, xuu14, ty_Float) -> new_esEs41(new_compare15(xuu19, xuu14)) new_esEs16([], [], bcb) -> True new_esEs18(Nothing, Nothing, bde) -> True new_ltEs7(Right(xuu660), Right(xuu670), fg, app(ty_Maybe, gd)) -> new_ltEs11(xuu660, xuu670, gd) new_ltEs21(xuu80, xuu81, ty_Int) -> new_ltEs4(xuu80, xuu81) new_esEs26(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primMulInt(Neg(xuu40000), Neg(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3000))) -> new_primCmpNat0(Zero, Succ(xuu3000)) new_esEs4(xuu4001, xuu301, ty_Integer) -> new_esEs14(xuu4001, xuu301) new_esEs11(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_esEs18(Nothing, Just(xuu3000), bde) -> False new_esEs18(Just(xuu40000), Nothing, bde) -> False new_esEs40(xuu106, xuu108, ty_Char) -> new_esEs15(xuu106, xuu108) new_esEs33(xuu660, xuu670, app(app(ty_@2, chf), chg)) -> new_esEs23(xuu660, xuu670, chf, chg) new_esEs9(xuu4002, xuu302, ty_Float) -> new_esEs22(xuu4002, xuu302) new_lt24(xuu400, xuu30, ty_Ordering) -> new_lt17(xuu400, xuu30) new_lt21(xuu660, xuu670, app(ty_Maybe, chh)) -> new_lt12(xuu660, xuu670, chh) new_lt12(xuu400, xuu30, ced) -> new_esEs12(new_compare14(xuu400, xuu30, ced)) new_esEs32(xuu661, xuu671, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs19(xuu661, xuu671, cha, chb, chc) new_ltEs19(xuu662, xuu672, ty_@0) -> new_ltEs8(xuu662, xuu672) new_esEs31(xuu91, xuu94, ty_Ordering) -> new_esEs25(xuu91, xuu94) new_ltEs24(xuu66, xuu67, app(ty_Ratio, ceb)) -> new_ltEs9(xuu66, xuu67, ceb) new_esEs29(xuu40000, xuu3000, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_esEs39(xuu40000, xuu3000, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_ltEs14(GT, LT) -> False new_ltEs6(xuu66, xuu67) -> new_fsEs(new_compare7(xuu66, xuu67)) new_primMulInt(Pos(xuu40000), Neg(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) new_primMulInt(Neg(xuu40000), Pos(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) new_esEs35(xuu40000, xuu3000, app(ty_[], ddf)) -> new_esEs16(xuu40000, xuu3000, ddf) new_ltEs20(xuu661, xuu671, ty_@0) -> new_ltEs8(xuu661, xuu671) new_ltEs20(xuu661, xuu671, app(ty_Maybe, dff)) -> new_ltEs11(xuu661, xuu671, dff) new_esEs40(xuu106, xuu108, ty_Integer) -> new_esEs14(xuu106, xuu108) new_ltEs18(xuu93, xuu96, ty_Integer) -> new_ltEs13(xuu93, xuu96) new_ltEs22(xuu73, xuu74, app(ty_Ratio, eha)) -> new_ltEs9(xuu73, xuu74, eha) new_sr0(Integer(xuu40000), Integer(xuu3010)) -> Integer(new_primMulInt(xuu40000, xuu3010)) new_esEs7(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_esEs6(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_ltEs11(Just(xuu660), Just(xuu670), app(app(ty_Either, fah), fba)) -> new_ltEs7(xuu660, xuu670, fah, fba) new_esEs9(xuu4002, xuu302, app(ty_Ratio, fgg)) -> new_esEs24(xuu4002, xuu302, fgg) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Double, bfc) -> new_esEs26(xuu40000, xuu3000) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, app(ty_Maybe, bhb)) -> new_esEs18(xuu40000, xuu3000, bhb) new_ltEs22(xuu73, xuu74, ty_Double) -> new_ltEs17(xuu73, xuu74) new_esEs17(Left(xuu40000), Left(xuu3000), app(ty_Maybe, bfg), bfc) -> new_esEs18(xuu40000, xuu3000, bfg) new_esEs25(LT, LT) -> True new_esEs9(xuu4002, xuu302, ty_@0) -> new_esEs20(xuu4002, xuu302) new_lt7(xuu92, xuu95, ty_Int) -> new_lt16(xuu92, xuu95) new_asAs(True, xuu124) -> xuu124 new_compare8(xuu4000, xuu300, ty_Double) -> new_compare25(xuu4000, xuu300) new_lt24(xuu400, xuu30, ty_Int) -> new_lt16(xuu400, xuu30) new_esEs10(xuu4001, xuu301, app(ty_[], fgh)) -> new_esEs16(xuu4001, xuu301, fgh) new_ltEs22(xuu73, xuu74, ty_Ordering) -> new_ltEs14(xuu73, xuu74) new_esEs9(xuu4002, xuu302, app(app(app(ty_@3, fgb), fgc), fgd)) -> new_esEs19(xuu4002, xuu302, fgb, fgc, fgd) new_ltEs22(xuu73, xuu74, ty_Float) -> new_ltEs12(xuu73, xuu74) new_lt7(xuu92, xuu95, app(ty_Maybe, ccb)) -> new_lt12(xuu92, xuu95, ccb) new_esEs32(xuu661, xuu671, ty_Float) -> new_esEs22(xuu661, xuu671) new_esEs38(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) new_ltEs23(xuu107, xuu109, ty_Char) -> new_ltEs6(xuu107, xuu109) new_esEs36(xuu660, xuu670, ty_Double) -> new_esEs26(xuu660, xuu670) new_esEs29(xuu40000, xuu3000, app(ty_[], bcc)) -> new_esEs16(xuu40000, xuu3000, bcc) new_ltEs22(xuu73, xuu74, app(app(ty_Either, ehe), ehf)) -> new_ltEs7(xuu73, xuu74, ehe, ehf) new_esEs9(xuu4002, xuu302, ty_Double) -> new_esEs26(xuu4002, xuu302) new_gt(xuu19, xuu14, ty_Integer) -> new_esEs41(new_compare16(xuu19, xuu14)) new_lt21(xuu660, xuu670, ty_Double) -> new_lt18(xuu660, xuu670) new_compare0([], [], cc) -> EQ new_sr(xuu4000, xuu301) -> new_primMulInt(xuu4000, xuu301) new_esEs8(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_ltEs21(xuu80, xuu81, app(app(ty_Either, ega), egb)) -> new_ltEs7(xuu80, xuu81, ega, egb) new_primMulNat0(Zero, Zero) -> Zero new_esEs23(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), dcb, dcc) -> new_asAs(new_esEs35(xuu40000, xuu3000, dcb), new_esEs34(xuu40001, xuu3001, dcc)) new_esEs30(xuu92, xuu95, app(ty_[], cbf)) -> new_esEs16(xuu92, xuu95, cbf) new_lt11(xuu400, xuu30, cec) -> new_esEs12(new_compare12(xuu400, xuu30, cec)) new_ltEs18(xuu93, xuu96, app(ty_Maybe, cah)) -> new_ltEs11(xuu93, xuu96, cah) new_lt23(xuu106, xuu108, app(ty_Maybe, fcc)) -> new_lt12(xuu106, xuu108, fcc) new_esEs7(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_compare9(@0, @0) -> EQ new_ltEs20(xuu661, xuu671, ty_Integer) -> new_ltEs13(xuu661, xuu671) new_ltEs21(xuu80, xuu81, ty_Ordering) -> new_ltEs14(xuu80, xuu81) new_compare14(Just(xuu4000), Just(xuu300), ced) -> new_compare29(xuu4000, xuu300, new_esEs6(xuu4000, xuu300, ced), ced) new_esEs5(xuu4000, xuu300, app(ty_Ratio, eb)) -> new_esEs24(xuu4000, xuu300, eb) new_compare5(True, False) -> GT new_esEs9(xuu4002, xuu302, ty_Ordering) -> new_esEs25(xuu4002, xuu302) new_esEs37(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) new_lt24(xuu400, xuu30, app(app(ty_@2, bbh), bca)) -> new_lt5(xuu400, xuu30, bbh, bca) new_ltEs19(xuu662, xuu672, app(ty_Maybe, cfd)) -> new_ltEs11(xuu662, xuu672, cfd) new_ltEs11(Just(xuu660), Just(xuu670), ty_Ordering) -> new_ltEs14(xuu660, xuu670) new_esEs4(xuu4001, xuu301, app(ty_Ratio, ffe)) -> new_esEs24(xuu4001, xuu301, ffe) new_esEs7(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_esEs8(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_esEs6(xuu4000, xuu300, app(app(ty_@2, eeg), eeh)) -> new_esEs23(xuu4000, xuu300, eeg, eeh) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_ltEs18(xuu93, xuu96, ty_Char) -> new_ltEs6(xuu93, xuu96) new_ltEs24(xuu66, xuu67, ty_Char) -> new_ltEs6(xuu66, xuu67) new_ltEs24(xuu66, xuu67, app(ty_Maybe, fab)) -> new_ltEs11(xuu66, xuu67, fab) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_ltEs7(Right(xuu660), Right(xuu670), fg, ty_@0) -> new_ltEs8(xuu660, xuu670) new_gt(xuu19, xuu14, ty_Int) -> new_gt0(xuu19, xuu14) new_esEs31(xuu91, xuu94, app(ty_[], cch)) -> new_esEs16(xuu91, xuu94, cch) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3000))) -> new_primCmpNat0(Succ(xuu3000), Zero) new_lt23(xuu106, xuu108, ty_Int) -> new_lt16(xuu106, xuu108) new_esEs31(xuu91, xuu94, ty_Float) -> new_esEs22(xuu91, xuu94) new_lt24(xuu400, xuu30, app(ty_Maybe, ced)) -> new_lt12(xuu400, xuu30, ced) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt23(xuu106, xuu108, app(ty_Ratio, fbh)) -> new_lt11(xuu106, xuu108, fbh) new_ltEs11(Just(xuu660), Just(xuu670), app(app(app(ty_@3, fbb), fbc), fbd)) -> new_ltEs16(xuu660, xuu670, fbb, fbc, fbd) new_ltEs22(xuu73, xuu74, ty_Char) -> new_ltEs6(xuu73, xuu74) new_esEs5(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_ltEs21(xuu80, xuu81, app(ty_Ratio, efe)) -> new_ltEs9(xuu80, xuu81, efe) new_esEs39(xuu40000, xuu3000, app(app(ty_@2, ede), edf)) -> new_esEs23(xuu40000, xuu3000, ede, edf) new_compare15(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_lt20(xuu661, xuu671, ty_Double) -> new_lt18(xuu661, xuu671) new_esEs40(xuu106, xuu108, ty_Int) -> new_esEs13(xuu106, xuu108) new_not(False) -> True new_esEs36(xuu660, xuu670, app(ty_[], dgd)) -> new_esEs16(xuu660, xuu670, dgd) new_esEs5(xuu4000, xuu300, app(app(ty_@2, dcb), dcc)) -> new_esEs23(xuu4000, xuu300, dcb, dcc) new_compare18(GT, EQ) -> GT new_ltEs21(xuu80, xuu81, app(ty_Maybe, efh)) -> new_ltEs11(xuu80, xuu81, efh) new_ltEs7(Right(xuu660), Right(xuu670), fg, ty_Char) -> new_ltEs6(xuu660, xuu670) new_lt7(xuu92, xuu95, app(ty_Ratio, cbg)) -> new_lt11(xuu92, xuu95, cbg) new_lt20(xuu661, xuu671, app(app(ty_@2, cgd), cge)) -> new_lt5(xuu661, xuu671, cgd, cge) new_lt5(xuu400, xuu30, bbh, bca) -> new_esEs12(new_compare13(xuu400, xuu30, bbh, bca)) new_ltEs23(xuu107, xuu109, ty_@0) -> new_ltEs8(xuu107, xuu109) new_esEs8(xuu4000, xuu300, app(ty_Ratio, bbg)) -> new_esEs24(xuu4000, xuu300, bbg) new_esEs41(LT) -> False new_ltEs7(Right(xuu660), Right(xuu670), fg, ty_Bool) -> new_ltEs15(xuu660, xuu670) new_esEs8(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_esEs39(xuu40000, xuu3000, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_ltEs24(xuu66, xuu67, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs16(xuu66, xuu67, cee, cef, ceg) new_ltEs20(xuu661, xuu671, ty_Char) -> new_ltEs6(xuu661, xuu671) new_esEs37(xuu40002, xuu3002, app(app(ty_@2, eba), ebb)) -> new_esEs23(xuu40002, xuu3002, eba, ebb) new_lt22(xuu660, xuu670, app(ty_Ratio, dge)) -> new_lt11(xuu660, xuu670, dge) new_esEs22(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_esEs17(Left(xuu40000), Left(xuu3000), app(app(ty_Either, bfe), bff), bfc) -> new_esEs17(xuu40000, xuu3000, bfe, bff) new_esEs8(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs23(xuu107, xuu109, ty_Bool) -> new_ltEs15(xuu107, xuu109) new_ltEs14(LT, EQ) -> True new_esEs19(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), dhg, dhh, eaa) -> new_asAs(new_esEs39(xuu40000, xuu3000, dhg), new_asAs(new_esEs38(xuu40001, xuu3001, dhh), new_esEs37(xuu40002, xuu3002, eaa))) new_lt8(xuu91, xuu94, app(app(ty_@2, cdb), cdc)) -> new_lt5(xuu91, xuu94, cdb, cdc) new_ltEs11(Just(xuu660), Just(xuu670), ty_@0) -> new_ltEs8(xuu660, xuu670) new_ltEs7(Right(xuu660), Right(xuu670), fg, ty_Integer) -> new_ltEs13(xuu660, xuu670) new_esEs29(xuu40000, xuu3000, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_esEs40(xuu106, xuu108, app(app(ty_@2, fca), fcb)) -> new_esEs23(xuu106, xuu108, fca, fcb) new_ltEs7(Left(xuu660), Left(xuu670), app(ty_[], ed), ec) -> new_ltEs5(xuu660, xuu670, ed) new_ltEs23(xuu107, xuu109, app(ty_Maybe, fde)) -> new_ltEs11(xuu107, xuu109, fde) new_ltEs18(xuu93, xuu96, app(ty_Ratio, cae)) -> new_ltEs9(xuu93, xuu96, cae) new_lt20(xuu661, xuu671, app(ty_Ratio, cgc)) -> new_lt11(xuu661, xuu671, cgc) new_gt(xuu19, xuu14, ty_Char) -> new_esEs41(new_compare7(xuu19, xuu14)) new_ltEs7(Right(xuu660), Right(xuu670), fg, ty_Ordering) -> new_ltEs14(xuu660, xuu670) new_esEs40(xuu106, xuu108, ty_Double) -> new_esEs26(xuu106, xuu108) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_esEs6(xuu4000, xuu300, app(ty_Ratio, efa)) -> new_esEs24(xuu4000, xuu300, efa) new_lt7(xuu92, xuu95, app(app(ty_@2, cbh), cca)) -> new_lt5(xuu92, xuu95, cbh, cca) new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bcb) -> new_asAs(new_esEs29(xuu40000, xuu3000, bcb), new_esEs16(xuu40001, xuu3001, bcb)) new_compare7(Char(xuu4000), Char(xuu300)) -> new_primCmpNat0(xuu4000, xuu300) new_ltEs7(Left(xuu660), Left(xuu670), ty_Double, ec) -> new_ltEs17(xuu660, xuu670) new_lt23(xuu106, xuu108, app(app(ty_@2, fca), fcb)) -> new_lt5(xuu106, xuu108, fca, fcb) new_compare29(xuu66, xuu67, True, fec) -> EQ new_lt9(xuu400, xuu30) -> new_esEs12(new_compare9(xuu400, xuu30)) new_compare8(xuu4000, xuu300, app(ty_Ratio, ce)) -> new_compare12(xuu4000, xuu300, ce) new_ltEs24(xuu66, xuu67, ty_@0) -> new_ltEs8(xuu66, xuu67) new_lt8(xuu91, xuu94, ty_Double) -> new_lt18(xuu91, xuu94) new_esEs9(xuu4002, xuu302, ty_Char) -> new_esEs15(xuu4002, xuu302) new_ltEs19(xuu662, xuu672, app(ty_Ratio, cfa)) -> new_ltEs9(xuu662, xuu672, cfa) new_compare25(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_esEs16(:(xuu40000, xuu40001), [], bcb) -> False new_esEs16([], :(xuu3000, xuu3001), bcb) -> False new_gt(xuu19, xuu14, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs41(new_compare19(xuu19, xuu14, dbe, dbf, dbg)) new_esEs17(Right(xuu40000), Right(xuu3000), bgf, app(app(ty_Either, bgh), bha)) -> new_esEs17(xuu40000, xuu3000, bgh, bha) new_esEs4(xuu4001, xuu301, ty_Double) -> new_esEs26(xuu4001, xuu301) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt21(xuu660, xuu670, app(ty_Ratio, che)) -> new_lt11(xuu660, xuu670, che) new_ltEs23(xuu107, xuu109, ty_Integer) -> new_ltEs13(xuu107, xuu109) new_lt23(xuu106, xuu108, ty_Double) -> new_lt18(xuu106, xuu108) new_compare110(xuu151, xuu152, False, dh, ea) -> GT new_primEqNat0(Zero, Zero) -> True new_esEs9(xuu4002, xuu302, ty_Bool) -> new_esEs21(xuu4002, xuu302) new_ltEs23(xuu107, xuu109, app(app(ty_Either, fdf), fdg)) -> new_ltEs7(xuu107, xuu109, fdf, fdg) new_compare26(xuu73, xuu74, False, egf, egg) -> new_compare10(xuu73, xuu74, new_ltEs22(xuu73, xuu74, egf), egf, egg) new_ltEs24(xuu66, xuu67, ty_Integer) -> new_ltEs13(xuu66, xuu67) new_ltEs24(xuu66, xuu67, ty_Bool) -> new_ltEs15(xuu66, xuu67) new_ltEs7(Right(xuu660), Right(xuu670), fg, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs16(xuu660, xuu670, gg, gh, ha) new_lt22(xuu660, xuu670, ty_Double) -> new_lt18(xuu660, xuu670) new_asAs(False, xuu124) -> False new_ltEs22(xuu73, xuu74, app(ty_Maybe, ehd)) -> new_ltEs11(xuu73, xuu74, ehd) new_lt22(xuu660, xuu670, app(app(ty_@2, dgf), dgg)) -> new_lt5(xuu660, xuu670, dgf, dgg) new_esEs38(xuu40001, xuu3001, app(app(ty_@2, ecc), ecd)) -> new_esEs23(xuu40001, xuu3001, ecc, ecd) new_esEs4(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) new_esEs18(Just(xuu40000), Just(xuu3000), app(ty_[], bdf)) -> new_esEs16(xuu40000, xuu3000, bdf) new_esEs5(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_ltEs7(Left(xuu660), Left(xuu670), ty_Int, ec) -> new_ltEs4(xuu660, xuu670) new_esEs7(xuu4000, xuu300, app(ty_Ratio, bae)) -> new_esEs24(xuu4000, xuu300, bae) new_esEs25(EQ, EQ) -> True new_esEs34(xuu40001, xuu3001, app(ty_[], dcd)) -> new_esEs16(xuu40001, xuu3001, dcd) new_esEs9(xuu4002, xuu302, ty_Integer) -> new_esEs14(xuu4002, xuu302) new_compare12(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Integer) -> new_compare16(new_sr0(xuu4000, xuu301), new_sr0(xuu300, xuu4001)) new_ltEs23(xuu107, xuu109, ty_Ordering) -> new_ltEs14(xuu107, xuu109) new_esEs11(xuu4000, xuu300, app(ty_[], gab)) -> new_esEs16(xuu4000, xuu300, gab) new_esEs39(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_lt7(xuu92, xuu95, ty_Double) -> new_lt18(xuu92, xuu95) new_ltEs11(Just(xuu660), Just(xuu670), ty_Float) -> new_ltEs12(xuu660, xuu670) The set Q consists of the following terms: new_ltEs24(x0, x1, ty_Float) new_lt22(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare8(x0, x1, ty_Bool) new_gt(x0, x1, ty_Float) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt24(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Int) new_compare110(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Int) new_lt23(x0, x1, app(ty_[], x2)) new_esEs18(Just(x0), Nothing, x1) new_lt24(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs20(@0, @0) new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Float) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_compare8(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs25(LT, LT) new_esEs36(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(False, True) new_ltEs15(True, False) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt24(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Int) new_lt6(x0, x1, x2, x3, x4) new_esEs36(x0, x1, ty_Integer) new_lt7(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Int) new_primMulNat0(Zero, Succ(x0)) new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs32(x0, x1, ty_Double) new_esEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs6(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_ltEs18(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Integer) new_gt(x0, x1, ty_Integer) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt20(x0, x1, ty_Integer) new_sr(x0, x1) new_compare18(GT, GT) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_esEs36(x0, x1, ty_Bool) new_fsEs(x0) new_esEs21(True, True) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs16([], [], x0) new_lt23(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs9(x0, x1, ty_Double) new_compare14(Just(x0), Just(x1), x2) new_ltEs24(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_asAs(False, x0) new_ltEs23(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare29(x0, x1, False, x2) new_lt24(x0, x1, ty_Float) new_gt(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_lt8(x0, x1, ty_Char) new_esEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs12(GT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_primCmpNat0(Zero, Succ(x0)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1) new_esEs9(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Bool) new_ltEs6(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs4(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Int) new_lt20(x0, x1, ty_@0) new_lt16(x0, x1) new_ltEs18(x0, x1, ty_Bool) new_primPlusNat0(Succ(x0), Zero) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs29(x0, x1, ty_Float) new_esEs16(:(x0, x1), [], x2) new_ltEs23(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Bool) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Float) new_lt23(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, ty_Int) new_compare16(Integer(x0), Integer(x1)) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs17(Right(x0), Right(x1), x2, ty_Int) new_lt24(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Char) new_lt22(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_compare210(x0, x1, x2, x3, False, x4, x5) new_gt(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Double) new_lt22(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Integer) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(Double(x0, x1), Double(x2, x3)) new_esEs7(x0, x1, ty_Int) new_compare18(GT, LT) new_compare18(LT, GT) new_ltEs21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Char) new_esEs21(False, True) new_esEs21(True, False) new_esEs35(x0, x1, ty_Int) new_esEs18(Just(x0), Just(x1), ty_@0) new_ltEs5(x0, x1, x2) new_esEs39(x0, x1, ty_Ordering) new_lt12(x0, x1, x2) new_esEs11(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Char) new_esEs18(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Left(x0), Right(x1), x2, x3) new_esEs17(Right(x0), Left(x1), x2, x3) new_compare9(@0, @0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_compare13(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1, x2) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare7(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), ty_Double) new_lt7(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs33(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Int) new_primPlusNat0(Zero, Zero) new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs25(EQ, EQ) new_ltEs9(x0, x1, x2) new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_not(True) new_lt15(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_[], x2)) new_lt18(x0, x1) new_esEs33(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Int) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_@0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Char) new_esEs25(LT, GT) new_esEs25(GT, LT) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs37(x0, x1, ty_Int) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs30(x0, x1, ty_Float) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Int) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs38(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, GT) new_esEs32(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Char) new_lt8(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3) new_compare14(Nothing, Nothing, x0) new_esEs9(x0, x1, ty_Bool) new_primCompAux00(x0, LT) new_ltEs23(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Integer) new_ltEs14(GT, GT) new_esEs30(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Int) new_lt11(x0, x1, x2) new_esEs7(x0, x1, ty_Integer) new_gt0(x0, x1) new_esEs21(False, False) new_lt21(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Float) new_esEs7(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs17(Left(x0), Left(x1), ty_Float, x2) new_ltEs11(Just(x0), Just(x1), ty_Char) new_esEs9(x0, x1, ty_Float) new_compare8(x0, x1, ty_Ordering) new_esEs18(Nothing, Just(x0), x1) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Bool) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_compare113(x0, x1, x2, x3, False, x4, x5) new_esEs30(x0, x1, ty_Bool) new_compare17(Left(x0), Left(x1), x2, x3) new_primEqNat0(Zero, Zero) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_not(False) new_lt20(x0, x1, ty_Float) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs11(Nothing, Nothing, x0) new_ltEs18(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs12(LT) new_ltEs22(x0, x1, ty_Ordering) new_compare10(x0, x1, False, x2, x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs5(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_lt8(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Double) new_lt24(x0, x1, ty_Double) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs4(x0, x1) new_esEs29(x0, x1, ty_@0) new_esEs41(LT) new_esEs11(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Int) new_esEs24(:%(x0, x1), :%(x2, x3), x4) new_esEs16(:(x0, x1), :(x2, x3), x4) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs11(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_lt23(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare0([], :(x0, x1), x2) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_[], x2)) new_compare17(Right(x0), Right(x1), x2, x3) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_lt7(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare29(x0, x1, True, x2) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs23(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare8(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, EQ) new_ltEs17(x0, x1) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1) new_ltEs20(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs14(LT, LT) new_esEs6(x0, x1, ty_Double) new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, True, x2, x3) new_esEs6(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs23(x0, x1, ty_Double) new_compare0(:(x0, x1), [], x2) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(x0, x1) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs38(x0, x1, ty_Float) new_ltEs15(True, True) new_compare18(EQ, LT) new_gt(x0, x1, app(ty_Ratio, x2)) new_compare18(LT, EQ) new_lt20(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare14(Just(x0), Nothing, x1) new_compare18(LT, LT) new_primMulInt(Neg(x0), Neg(x1)) new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, True, x2, x3) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_lt9(x0, x1) new_esEs25(GT, GT) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_Integer) new_compare10(x0, x1, True, x2, x3) new_esEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs35(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt23(x0, x1, ty_Ordering) new_esEs18(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Char) new_compare8(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs41(GT) new_ltEs20(x0, x1, ty_Float) new_lt7(x0, x1, ty_@0) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare8(x0, x1, ty_Double) new_lt24(x0, x1, ty_Ordering) new_compare6(x0, x1) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_esEs16([], :(x0, x1), x2) new_gt(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) new_esEs8(x0, x1, ty_Integer) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(EQ, GT) new_compare18(GT, EQ) new_esEs8(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs34(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Int) new_esEs39(x0, x1, ty_@0) new_ltEs14(LT, GT) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(GT, LT) new_lt21(x0, x1, app(ty_[], x2)) new_compare8(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(True, True) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare112(x0, x1, x2, x3, True, x4, x5, x6) new_primEqNat0(Zero, Succ(x0)) new_esEs34(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Ordering) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs18(Just(x0), Just(x1), ty_Integer) new_lt17(x0, x1) new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare113(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_ltEs14(EQ, GT) new_esEs5(x0, x1, ty_@0) new_ltEs14(GT, EQ) new_esEs17(Right(x0), Right(x1), x2, ty_Char) new_lt20(x0, x1, ty_Double) new_lt8(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt8(x0, x1, ty_Float) new_compare25(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs40(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Double) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Char) new_esEs40(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_pePe(True, x0) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs15(False, False) new_esEs10(x0, x1, ty_Int) new_esEs18(Just(x0), Just(x1), ty_Ordering) new_lt8(x0, x1, ty_Int) new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_primEqNat0(Succ(x0), Zero) new_esEs4(x0, x1, ty_Float) new_lt24(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Integer) new_compare114(x0, x1, False, x2) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs14(Integer(x0), Integer(x1)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs17(Right(x0), Right(x1), x2, ty_@0) new_lt21(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Int) new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Bool) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_asAs(True, x0) new_esEs10(x0, x1, ty_@0) new_lt7(x0, x1, ty_Double) new_gt(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, EQ) new_lt4(x0, x1) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Bool) new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) new_esEs18(Just(x0), Just(x1), ty_Bool) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Float) new_gt(x0, x1, ty_Int) new_compare28(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs28(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Char) new_compare25(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare26(x0, x1, True, x2, x3) new_gt(x0, x1, ty_Double) new_compare114(x0, x1, True, x2) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Int) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs4(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Double) new_gt(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_@0) new_lt7(x0, x1, ty_Char) new_esEs32(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs17(Right(x0), Right(x1), x2, ty_Integer) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Float(x0, x1), Float(x2, x3)) new_ltEs18(x0, x1, ty_@0) new_ltEs11(Nothing, Just(x0), x1) new_esEs29(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs40(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1) new_esEs18(Just(x0), Just(x1), ty_Char) new_primMulNat0(Succ(x0), Zero) new_lt8(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs11(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs18(Just(x0), Just(x1), ty_Int) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_@0) new_esEs40(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Integer) new_compare5(False, True) new_compare5(True, False) new_compare112(x0, x1, x2, x3, False, x4, x5, x6) new_lt21(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs40(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(x0, x1, ty_Float) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_gt(x0, x1, ty_Bool) new_lt24(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, False, x2, x3) new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt22(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs33(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs31(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt23(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(EQ, EQ) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare17(Left(x0), Right(x1), x2, x3) new_compare17(Right(x0), Left(x1), x2, x3) new_compare8(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare5(False, False) new_esEs40(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_pePe(False, x0) new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs23(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs7(Right(x0), Left(x1), x2, x3) new_esEs18(Just(x0), Just(x1), ty_Double) new_esEs12(EQ) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs41(EQ) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(Nothing, Just(x0), x1) new_ltEs12(x0, x1) new_compare8(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_esEs15(Char(x0), Char(x1)) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1) new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare8(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_@0) new_lt14(x0, x1) new_compare25(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare25(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt24(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Just(x0), Nothing, x1) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs35(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Float) new_lt7(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat0(Zero, Zero) new_lt21(x0, x1, ty_Double) new_lt8(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) 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_addToFM_C(Branch(xuu30, xuu31, xuu32, xuu33, xuu34), xuu400, xuu401, bd, be) -> new_addToFM_C2(xuu30, xuu31, xuu32, xuu33, xuu34, xuu400, xuu401, new_lt24(xuu400, xuu30, bd), bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 7, 4 >= 9, 5 >= 10 *new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, h, ba) -> new_addToFM_C1(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_gt(xuu19, xuu14, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 *new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bb, bc) -> new_addToFM_C(xuu35, xuu36, xuu37, bb, bc) The graph contains the following edges 5 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba) -> new_addToFM_C(xuu17, xuu19, xuu20, h, ba) The graph contains the following edges 4 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, app(ty_[], ccf)) -> new_ltEs(xuu93, xuu96, ccf) new_ltEs(xuu66, xuu67, fb) -> new_compare(xuu66, xuu67, fb) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(ty_@2, bgc), bgd), bdf, bfa) -> new_lt0(xuu660, xuu670, bgc, bgd) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(app(ty_@3, bgh), bha), bhb)), bdf), bfa)) -> new_lt3(xuu660, xuu670, bgh, bha, bhb) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, app(ty_[], beh), bfa) -> new_lt(xuu661, xuu671, beh) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, app(app(app(ty_@3, cfg), cfh), cga), cce, cdh) -> new_lt3(xuu91, xuu94, cfg, cfh, cga) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), app(ty_Maybe, bfd)), bfa)) -> new_lt1(xuu661, xuu671, bfd) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), app(app(ty_Either, bfe), bff)), bfa)) -> new_lt2(xuu661, xuu671, bfe, bff) new_compare2(Just(xuu4000), Just(xuu300), fa) -> new_compare21(xuu4000, xuu300, new_esEs6(xuu4000, xuu300, fa), fa) new_compare22(xuu73, xuu74, False, app(ty_Maybe, caa), bhf) -> new_ltEs1(xuu73, xuu74, caa) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(ty_Maybe, bge), bdf, bfa) -> new_lt1(xuu660, xuu670, bge) new_compare23(xuu80, xuu81, False, cag, app(ty_Maybe, cbc)) -> new_ltEs1(xuu80, xuu81, cbc) new_compare21(Right(xuu660), Right(xuu670), False, app(app(ty_Either, bcc), app(app(app(ty_@3, bdb), bdc), bdd))) -> new_ltEs3(xuu660, xuu670, bdb, bdc, bdd) new_ltEs1(Just(xuu660), Just(xuu670), app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs3(xuu660, xuu670, baf, bag, bah) new_primCompAux(xuu4000, xuu300, xuu45, app(ty_Maybe, bd)) -> new_compare2(xuu4000, xuu300, bd) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), bdf), app(app(ty_Either, bec), bed))) -> new_ltEs2(xuu662, xuu672, bec, bed) new_ltEs2(Left(xuu660), Left(xuu670), app(ty_[], bba), bbb) -> new_ltEs(xuu660, xuu670, bba) new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, app(app(ty_@2, ff), fg)) -> new_ltEs0(xuu661, xuu671, ff, fg) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), bdf), app(ty_Maybe, beb))) -> new_ltEs1(xuu662, xuu672, beb) new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, fc), app(app(ty_@2, ff), fg))) -> new_ltEs0(xuu661, xuu671, ff, fg) new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(ty_@2, gh), ha)), gg)) -> new_lt0(xuu660, xuu670, gh, ha) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), bdf), app(app(ty_@2, bdh), bea))) -> new_ltEs0(xuu662, xuu672, bdh, bea) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs3(xuu93, xuu96, cdd, cde, cdf) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), app(app(ty_@2, bfb), bfc)), bfa)) -> new_lt0(xuu661, xuu671, bfb, bfc) new_compare3(Right(xuu4000), Right(xuu300), bhc, bhd) -> new_compare23(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, bhd), bhc, bhd) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, app(ty_Maybe, cfd), cce, cdh) -> new_lt1(xuu91, xuu94, cfd) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(ty_[], bgb)), bdf), bfa)) -> new_lt(xuu660, xuu670, bgb) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs3(xuu662, xuu672, bee, bef, beg) new_compare20(xuu106, xuu107, xuu108, xuu109, False, app(ty_[], cd), ce) -> new_lt(xuu106, xuu108, cd) new_compare20(xuu106, xuu107, xuu108, xuu109, False, dg, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs3(xuu107, xuu109, ef, eg, eh) new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, fc), app(ty_Maybe, fh))) -> new_ltEs1(xuu661, xuu671, fh) new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(app(ty_@3, he), hf), hg), gg) -> new_lt3(xuu660, xuu670, he, hf, hg) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, app(app(ty_@2, bdh), bea)) -> new_ltEs0(xuu662, xuu672, bdh, bea) new_lt1(Just(xuu4000), Just(xuu300), fa) -> new_compare21(xuu4000, xuu300, new_esEs6(xuu4000, xuu300, fa), fa) new_compare21(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(ty_Maybe, bac))) -> new_ltEs1(xuu660, xuu670, bac) new_compare21(Right(xuu660), Right(xuu670), False, app(app(ty_Either, bcc), app(ty_[], bcd))) -> new_ltEs(xuu660, xuu670, bcd) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, app(ty_[], cfa), cce, cdh) -> new_lt(xuu91, xuu94, cfa) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, app(app(ty_@2, bfb), bfc), bfa) -> new_lt0(xuu661, xuu671, bfb, bfc) new_compare20(xuu106, xuu107, xuu108, xuu109, False, app(app(app(ty_@3, dd), de), df), ce) -> new_lt3(xuu106, xuu108, dd, de, df) new_lt0(@2(xuu4000, xuu4001), @2(xuu300, xuu301), cb, cc) -> new_compare20(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs5(xuu4000, xuu300, cb), new_esEs4(xuu4001, xuu301, cc)), cb, cc) new_lt2(Right(xuu4000), Right(xuu300), bhc, bhd) -> new_compare23(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, bhd), bhc, bhd) new_ltEs2(Right(xuu660), Right(xuu670), bcc, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs3(xuu660, xuu670, bdb, bdc, bdd) new_lt2(Left(xuu4000), Left(xuu300), bhc, bhd) -> new_compare22(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, bhc), bhc, bhd) new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, fc), app(app(ty_Either, ga), gb))) -> new_ltEs2(xuu661, xuu671, ga, gb) new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(ty_@2, gh), ha), gg) -> new_lt0(xuu660, xuu670, gh, ha) new_compare21(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(ty_@2, baa), bab))) -> new_ltEs0(xuu660, xuu670, baa, bab) new_ltEs2(Right(xuu660), Right(xuu670), bcc, app(ty_Maybe, bcg)) -> new_ltEs1(xuu660, xuu670, bcg) new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), app(ty_Maybe, hb), gg) -> new_lt1(xuu660, xuu670, hb) new_compare23(xuu80, xuu81, False, cag, app(app(ty_Either, cbd), cbe)) -> new_ltEs2(xuu80, xuu81, cbd, cbe) new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(ty_Either, hc), hd), gg) -> new_lt2(xuu660, xuu670, hc, hd) new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs3(xuu661, xuu671, gc, gd, ge) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(app(ty_@3, bgh), bha), bhb), bdf, bfa) -> new_lt3(xuu660, xuu670, bgh, bha, bhb) new_lt(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_compare(xuu4001, xuu301, h) new_compare23(xuu80, xuu81, False, cag, app(app(ty_@2, cba), cbb)) -> new_ltEs0(xuu80, xuu81, cba, cbb) new_ltEs1(Just(xuu660), Just(xuu670), app(ty_Maybe, bac)) -> new_ltEs1(xuu660, xuu670, bac) new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, app(ty_Maybe, fh)) -> new_ltEs1(xuu661, xuu671, fh) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, app(app(app(ty_@3, cef), ceg), ceh), cdh) -> new_lt3(xuu92, xuu95, cef, ceg, ceh) new_compare21(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(ty_Either, bbf), bbg)), bbb)) -> new_ltEs2(xuu660, xuu670, bbf, bbg) new_ltEs2(Left(xuu660), Left(xuu670), app(ty_Maybe, bbe), bbb) -> new_ltEs1(xuu660, xuu670, bbe) new_compare21(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(ty_Maybe, bbe)), bbb)) -> new_ltEs1(xuu660, xuu670, bbe) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(ty_Either, bgf), bgg), bdf, bfa) -> new_lt2(xuu660, xuu670, bgf, bgg) new_compare21(Right(xuu660), Right(xuu670), False, app(app(ty_Either, bcc), app(app(ty_Either, bch), bda))) -> new_ltEs2(xuu660, xuu670, bch, bda) new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, fc), app(app(app(ty_@3, gc), gd), ge))) -> new_ltEs3(xuu661, xuu671, gc, gd, ge) new_compare20(xuu106, xuu107, xuu108, xuu109, False, dg, app(app(ty_Either, ed), ee)) -> new_ltEs2(xuu107, xuu109, ed, ee) new_ltEs2(Right(xuu660), Right(xuu670), bcc, app(app(ty_@2, bce), bcf)) -> new_ltEs0(xuu660, xuu670, bce, bcf) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, app(ty_Maybe, beb)) -> new_ltEs1(xuu662, xuu672, beb) new_compare23(xuu80, xuu81, False, cag, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs3(xuu80, xuu81, cbf, cbg, cbh) new_compare20(xuu106, xuu107, xuu108, xuu109, False, app(app(ty_@2, cf), cg), ce) -> new_lt0(xuu106, xuu108, cf, cg) new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), app(ty_[], gf), gg) -> new_lt(xuu660, xuu670, gf) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, app(ty_Maybe, bfd), bfa) -> new_lt1(xuu661, xuu671, bfd) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(ty_[], bgb), bdf, bfa) -> new_lt(xuu660, xuu670, bgb) new_compare22(xuu73, xuu74, False, app(app(app(ty_@3, cad), cae), caf), bhf) -> new_ltEs3(xuu73, xuu74, cad, cae, caf) new_primCompAux(xuu4000, xuu300, xuu45, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(xuu4000, xuu300, bg, bh, ca) new_lt3(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cca, ccb, ccc) -> new_compare24(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs11(xuu4000, xuu300, cca), new_asAs(new_esEs10(xuu4001, xuu301, ccb), new_esEs9(xuu4002, xuu302, ccc))), cca, ccb, ccc) new_compare3(Left(xuu4000), Left(xuu300), bhc, bhd) -> new_compare22(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, bhc), bhc, bhd) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(ty_@2, bgc), bgd)), bdf), bfa)) -> new_lt0(xuu660, xuu670, bgc, bgd) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, app(app(ty_Either, ced), cee), cdh) -> new_lt2(xuu92, xuu95, ced, cee) new_compare1(@2(xuu4000, xuu4001), @2(xuu300, xuu301), cb, cc) -> new_compare20(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs5(xuu4000, xuu300, cb), new_esEs4(xuu4001, xuu301, cc)), cb, cc) new_compare21(xuu66, xuu67, False, app(ty_[], fb)) -> new_compare(xuu66, xuu67, fb) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, app(app(ty_Either, bfe), bff), bfa) -> new_lt2(xuu661, xuu671, bfe, bff) new_compare20(xuu106, xuu107, xuu108, xuu109, False, app(app(ty_Either, db), dc), ce) -> new_lt2(xuu106, xuu108, db, dc) new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, fc), app(ty_[], fd))) -> new_ltEs(xuu661, xuu671, fd) new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(ty_Either, hc), hd)), gg)) -> new_lt2(xuu660, xuu670, hc, hd) new_ltEs2(Left(xuu660), Left(xuu670), app(app(app(ty_@3, bbh), bca), bcb), bbb) -> new_ltEs3(xuu660, xuu670, bbh, bca, bcb) new_compare(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_primCompAux(xuu4000, xuu300, new_compare0(xuu4001, xuu301, h), h) new_compare20(xuu106, xuu107, xuu108, xuu109, False, dg, app(ty_[], dh)) -> new_ltEs(xuu107, xuu109, dh) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, app(app(ty_@2, cea), ceb), cdh) -> new_lt0(xuu92, xuu95, cea, ceb) new_ltEs2(Right(xuu660), Right(xuu670), bcc, app(app(ty_Either, bch), bda)) -> new_ltEs2(xuu660, xuu670, bch, bda) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, app(app(ty_Either, cdb), cdc)) -> new_ltEs2(xuu93, xuu96, cdb, cdc) new_compare21(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(app(ty_@3, baf), bag), bah))) -> new_ltEs3(xuu660, xuu670, baf, bag, bah) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, app(app(ty_Either, bec), bed)) -> new_ltEs2(xuu662, xuu672, bec, bed) new_compare21(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(ty_Either, bad), bae))) -> new_ltEs2(xuu660, xuu670, bad, bae) new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, app(ty_[], fd)) -> new_ltEs(xuu661, xuu671, fd) new_compare20(xuu106, xuu107, xuu108, xuu109, False, dg, app(ty_Maybe, ec)) -> new_ltEs1(xuu107, xuu109, ec) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, app(app(ty_@2, ccg), cch)) -> new_ltEs0(xuu93, xuu96, ccg, cch) new_primCompAux(xuu4000, xuu300, xuu45, app(ty_[], ba)) -> new_compare(xuu4000, xuu300, ba) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, app(ty_Maybe, cda)) -> new_ltEs1(xuu93, xuu96, cda) new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(ty_Maybe, hb)), gg)) -> new_lt1(xuu660, xuu670, hb) new_compare23(xuu80, xuu81, False, cag, app(ty_[], cah)) -> new_ltEs(xuu80, xuu81, cah) new_compare22(xuu73, xuu74, False, app(ty_[], bhe), bhf) -> new_ltEs(xuu73, xuu74, bhe) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), bdf), app(ty_[], bdg))) -> new_ltEs(xuu662, xuu672, bdg) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, app(ty_[], cdg), cdh) -> new_lt(xuu92, xuu95, cdg) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, app(ty_[], bdg)) -> new_ltEs(xuu662, xuu672, bdg) new_compare20(xuu106, xuu107, xuu108, xuu109, False, dg, app(app(ty_@2, ea), eb)) -> new_ltEs0(xuu107, xuu109, ea, eb) new_compare20(xuu106, xuu107, xuu108, xuu109, False, app(ty_Maybe, da), ce) -> new_lt1(xuu106, xuu108, da) new_compare4(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cca, ccb, ccc) -> new_compare24(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs11(xuu4000, xuu300, cca), new_asAs(new_esEs10(xuu4001, xuu301, ccb), new_esEs9(xuu4002, xuu302, ccc))), cca, ccb, ccc) new_compare21(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(ty_[], hh))) -> new_ltEs(xuu660, xuu670, hh) new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, app(app(ty_Either, ga), gb)) -> new_ltEs2(xuu661, xuu671, ga, gb) new_compare(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_compare(xuu4001, xuu301, h) new_compare21(Right(xuu660), Right(xuu670), False, app(app(ty_Either, bcc), app(app(ty_@2, bce), bcf))) -> new_ltEs0(xuu660, xuu670, bce, bcf) new_compare21(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(ty_[], bba)), bbb)) -> new_ltEs(xuu660, xuu670, bba) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(ty_Either, bgf), bgg)), bdf), bfa)) -> new_lt2(xuu660, xuu670, bgf, bgg) new_ltEs2(Left(xuu660), Left(xuu670), app(app(ty_Either, bbf), bbg), bbb) -> new_ltEs2(xuu660, xuu670, bbf, bbg) new_primCompAux(xuu4000, xuu300, xuu45, app(app(ty_Either, be), bf)) -> new_compare3(xuu4000, xuu300, be, bf) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, app(app(ty_Either, cfe), cff), cce, cdh) -> new_lt2(xuu91, xuu94, cfe, cff) new_lt(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_primCompAux(xuu4000, xuu300, new_compare0(xuu4001, xuu301, h), h) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), bdf), app(app(app(ty_@3, bee), bef), beg))) -> new_ltEs3(xuu662, xuu672, bee, bef, beg) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, app(ty_Maybe, cec), cdh) -> new_lt1(xuu92, xuu95, cec) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), app(ty_[], beh)), bfa)) -> new_lt(xuu661, xuu671, beh) new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(app(ty_@3, he), hf), hg)), gg)) -> new_lt3(xuu660, xuu670, he, hf, hg) new_ltEs1(Just(xuu660), Just(xuu670), app(ty_[], hh)) -> new_ltEs(xuu660, xuu670, hh) new_compare21(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(app(ty_@3, bbh), bca), bcb)), bbb)) -> new_ltEs3(xuu660, xuu670, bbh, bca, bcb) new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(ty_[], gf)), gg)) -> new_lt(xuu660, xuu670, gf) new_compare21(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(ty_@2, bbc), bbd)), bbb)) -> new_ltEs0(xuu660, xuu670, bbc, bbd) new_primCompAux(xuu4000, xuu300, xuu45, app(app(ty_@2, bb), bc)) -> new_compare1(xuu4000, xuu300, bb, bc) new_ltEs2(Left(xuu660), Left(xuu670), app(app(ty_@2, bbc), bbd), bbb) -> new_ltEs0(xuu660, xuu670, bbc, bbd) new_compare22(xuu73, xuu74, False, app(app(ty_@2, bhg), bhh), bhf) -> new_ltEs0(xuu73, xuu74, bhg, bhh) new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, app(app(ty_@2, cfb), cfc), cce, cdh) -> new_lt0(xuu91, xuu94, cfb, cfc) new_ltEs2(Right(xuu660), Right(xuu670), bcc, app(ty_[], bcd)) -> new_ltEs(xuu660, xuu670, bcd) new_compare21(Right(xuu660), Right(xuu670), False, app(app(ty_Either, bcc), app(ty_Maybe, bcg))) -> new_ltEs1(xuu660, xuu670, bcg) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(ty_Maybe, bge)), bdf), bfa)) -> new_lt1(xuu660, xuu670, bge) new_compare22(xuu73, xuu74, False, app(app(ty_Either, cab), cac), bhf) -> new_ltEs2(xuu73, xuu74, cab, cac) new_ltEs1(Just(xuu660), Just(xuu670), app(app(ty_Either, bad), bae)) -> new_ltEs2(xuu660, xuu670, bad, bae) new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, app(app(app(ty_@3, bfg), bfh), bga), bfa) -> new_lt3(xuu661, xuu671, bfg, bfh, bga) new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), app(app(app(ty_@3, bfg), bfh), bga)), bfa)) -> new_lt3(xuu661, xuu671, bfg, bfh, bga) new_ltEs1(Just(xuu660), Just(xuu670), app(app(ty_@2, baa), bab)) -> new_ltEs0(xuu660, xuu670, baa, bab) The TRS R consists of the following rules: new_ltEs7(Left(xuu660), Left(xuu670), app(app(ty_Either, bbf), bbg), bbb) -> new_ltEs7(xuu660, xuu670, bbf, bbg) new_ltEs7(Right(xuu660), Left(xuu670), bcc, bbb) -> False new_esEs30(xuu92, xuu95, ty_Ordering) -> new_esEs25(xuu92, xuu95) new_ltEs24(xuu66, xuu67, ty_Float) -> new_ltEs12(xuu66, xuu67) new_esEs40(xuu106, xuu108, app(app(app(ty_@3, dd), de), df)) -> new_esEs19(xuu106, xuu108, dd, de, df) new_lt8(xuu91, xuu94, app(ty_Ratio, eba)) -> new_lt11(xuu91, xuu94, eba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu40000)), Pos(xuu300)) -> LT new_ltEs18(xuu93, xuu96, app(app(ty_@2, ccg), cch)) -> new_ltEs10(xuu93, xuu96, ccg, cch) new_primPlusNat0(Zero, Zero) -> Zero new_ltEs11(Just(xuu660), Just(xuu670), ty_Bool) -> new_ltEs15(xuu660, xuu670) new_esEs7(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_pePe(True, xuu196) -> True new_esEs32(xuu661, xuu671, ty_Integer) -> new_esEs14(xuu661, xuu671) new_ltEs18(xuu93, xuu96, app(app(ty_Either, cdb), cdc)) -> new_ltEs7(xuu93, xuu96, cdb, cdc) new_ltEs18(xuu93, xuu96, ty_Ordering) -> new_ltEs14(xuu93, xuu96) new_esEs7(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_ltEs24(xuu66, xuu67, ty_Int) -> new_ltEs4(xuu66, xuu67) new_esEs39(xuu40000, xuu3000, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_esEs34(xuu40001, xuu3001, ty_@0) -> new_esEs20(xuu40001, xuu3001) new_ltEs24(xuu66, xuu67, app(app(ty_@2, fc), gg)) -> new_ltEs10(xuu66, xuu67, fc, gg) new_ltEs24(xuu66, xuu67, ty_Ordering) -> new_ltEs14(xuu66, xuu67) new_ltEs7(Left(xuu660), Left(xuu670), app(app(ty_@2, bbc), bbd), bbb) -> new_ltEs10(xuu660, xuu670, bbc, bbd) new_lt20(xuu661, xuu671, ty_Ordering) -> new_lt17(xuu661, xuu671) new_esEs36(xuu660, xuu670, app(ty_Maybe, hb)) -> new_esEs18(xuu660, xuu670, hb) new_esEs7(xuu4000, xuu300, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs19(xuu4000, xuu300, dbc, dbd, dbe) new_esEs40(xuu106, xuu108, ty_@0) -> new_esEs20(xuu106, xuu108) new_esEs9(xuu4002, xuu302, app(ty_Maybe, fgd)) -> new_esEs18(xuu4002, xuu302, fgd) new_esEs34(xuu40001, xuu3001, ty_Float) -> new_esEs22(xuu40001, xuu3001) new_esEs38(xuu40001, xuu3001, ty_Bool) -> new_esEs21(xuu40001, xuu3001) new_ltEs18(xuu93, xuu96, ty_Float) -> new_ltEs12(xuu93, xuu96) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3000))) -> GT new_esEs34(xuu40001, xuu3001, app(app(app(ty_@3, efb), efc), efd)) -> new_esEs19(xuu40001, xuu3001, efb, efc, efd) new_compare26(xuu73, xuu74, True, ffc, bhf) -> EQ new_ltEs19(xuu662, xuu672, app(ty_[], bdg)) -> new_ltEs5(xuu662, xuu672, bdg) new_compare113(xuu163, xuu164, xuu165, xuu166, True, eeb, eec) -> LT new_ltEs24(xuu66, xuu67, app(app(ty_Either, bcc), bbb)) -> new_ltEs7(xuu66, xuu67, bcc, bbb) new_primCmpInt(Neg(Succ(xuu40000)), Neg(xuu300)) -> new_primCmpNat0(xuu300, Succ(xuu40000)) new_esEs38(xuu40001, xuu3001, ty_Double) -> new_esEs26(xuu40001, xuu3001) new_ltEs21(xuu80, xuu81, ty_Char) -> new_ltEs6(xuu80, xuu81) new_compare18(LT, LT) -> EQ new_esEs10(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) new_esEs6(xuu4000, xuu300, app(ty_[], ech)) -> new_esEs16(xuu4000, xuu300, ech) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Int, dga) -> new_esEs13(xuu40000, xuu3000) new_lt4(xuu400, xuu30) -> new_esEs12(new_compare5(xuu400, xuu30)) new_esEs33(xuu660, xuu670, app(ty_[], bgb)) -> new_esEs16(xuu660, xuu670, bgb) new_lt7(xuu92, xuu95, ty_Bool) -> new_lt4(xuu92, xuu95) new_esEs5(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_lt20(xuu661, xuu671, ty_Bool) -> new_lt4(xuu661, xuu671) new_esEs18(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs20(xuu40000, xuu3000) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_esEs32(xuu661, xuu671, ty_Char) -> new_esEs15(xuu661, xuu671) new_esEs30(xuu92, xuu95, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs19(xuu92, xuu95, cef, ceg, ceh) new_lt21(xuu660, xuu670, app(app(ty_@2, bgc), bgd)) -> new_lt5(xuu660, xuu670, bgc, bgd) new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, False, cgd, cge, cgf) -> GT new_esEs31(xuu91, xuu94, app(app(ty_@2, cfb), cfc)) -> new_esEs23(xuu91, xuu94, cfb, cfc) new_ltEs20(xuu661, xuu671, ty_Int) -> new_ltEs4(xuu661, xuu671) new_lt23(xuu106, xuu108, app(ty_[], cd)) -> new_lt10(xuu106, xuu108, cd) new_esEs35(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_lt23(xuu106, xuu108, ty_Char) -> new_lt19(xuu106, xuu108) new_lt22(xuu660, xuu670, ty_Int) -> new_lt16(xuu660, xuu670) new_esEs4(xuu4001, xuu301, app(app(ty_@2, fab), fac)) -> new_esEs23(xuu4001, xuu301, fab, fac) new_esEs8(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_esEs21(False, False) -> True new_esEs17(Right(xuu40000), Right(xuu3000), dhd, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs19(xuu40000, xuu3000, eaa, eab, eac) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_lt23(xuu106, xuu108, app(app(ty_Either, db), dc)) -> new_lt15(xuu106, xuu108, db, dc) new_esEs29(xuu40000, xuu3000, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_ltEs7(Right(xuu660), Right(xuu670), bcc, ty_Float) -> new_ltEs12(xuu660, xuu670) new_ltEs20(xuu661, xuu671, app(ty_Ratio, fae)) -> new_ltEs9(xuu661, xuu671, fae) new_esEs38(xuu40001, xuu3001, app(ty_Ratio, fdf)) -> new_esEs24(xuu40001, xuu3001, fdf) new_esEs5(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_compare15(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_compare25(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_compare25(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_ltEs24(xuu66, xuu67, ty_Double) -> new_ltEs17(xuu66, xuu67) new_not(True) -> False new_ltEs18(xuu93, xuu96, ty_Double) -> new_ltEs17(xuu93, xuu96) new_lt22(xuu660, xuu670, app(app(app(ty_@3, he), hf), hg)) -> new_lt6(xuu660, xuu670, he, hf, hg) new_esEs39(xuu40000, xuu3000, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_fsEs(xuu191) -> new_not(new_esEs25(xuu191, GT)) new_esEs38(xuu40001, xuu3001, ty_@0) -> new_esEs20(xuu40001, xuu3001) new_ltEs22(xuu73, xuu74, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs16(xuu73, xuu74, cad, cae, caf) new_ltEs20(xuu661, xuu671, ty_Ordering) -> new_ltEs14(xuu661, xuu671) new_compare14(Nothing, Just(xuu300), fa) -> LT new_esEs40(xuu106, xuu108, app(ty_Ratio, ffg)) -> new_esEs24(xuu106, xuu108, ffg) new_ltEs20(xuu661, xuu671, app(app(ty_@2, ff), fg)) -> new_ltEs10(xuu661, xuu671, ff, fg) new_esEs4(xuu4001, xuu301, app(ty_Maybe, ehf)) -> new_esEs18(xuu4001, xuu301, ehf) new_esEs33(xuu660, xuu670, app(ty_Ratio, ecg)) -> new_esEs24(xuu660, xuu670, ecg) new_primCompAux00(xuu49, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs10(xuu4001, xuu301, app(app(ty_Either, cgh), cha)) -> new_esEs17(xuu4001, xuu301, cgh, cha) new_esEs37(xuu40002, xuu3002, ty_Integer) -> new_esEs14(xuu40002, xuu3002) new_esEs29(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_lt7(xuu92, xuu95, app(app(ty_Either, ced), cee)) -> new_lt15(xuu92, xuu95, ced, cee) new_lt22(xuu660, xuu670, app(ty_[], gf)) -> new_lt10(xuu660, xuu670, gf) new_esEs35(xuu40000, xuu3000, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_compare8(xuu4000, xuu300, app(app(ty_@2, bb), bc)) -> new_compare13(xuu4000, xuu300, bb, bc) new_esEs20(@0, @0) -> True new_esEs33(xuu660, xuu670, ty_Double) -> new_esEs26(xuu660, xuu670) new_lt19(xuu400, xuu30) -> new_esEs12(new_compare7(xuu400, xuu30)) new_ltEs22(xuu73, xuu74, ty_Bool) -> new_ltEs15(xuu73, xuu74) new_esEs17(Left(xuu40000), Left(xuu3000), app(ty_Ratio, dhc), dga) -> new_esEs24(xuu40000, xuu3000, dhc) new_esEs30(xuu92, xuu95, ty_Float) -> new_esEs22(xuu92, xuu95) new_esEs7(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_esEs5(xuu4000, xuu300, app(ty_Maybe, def)) -> new_esEs18(xuu4000, xuu300, def) new_ltEs22(xuu73, xuu74, ty_Integer) -> new_ltEs13(xuu73, xuu74) new_compare5(False, False) -> EQ new_esEs36(xuu660, xuu670, ty_Int) -> new_esEs13(xuu660, xuu670) new_ltEs19(xuu662, xuu672, ty_Double) -> new_ltEs17(xuu662, xuu672) new_esEs35(xuu40000, xuu3000, app(app(ty_@2, egg), egh)) -> new_esEs23(xuu40000, xuu3000, egg, egh) new_esEs10(xuu4001, xuu301, ty_Ordering) -> new_esEs25(xuu4001, xuu301) new_esEs7(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_esEs8(xuu4000, xuu300, app(app(ty_Either, dcb), dcc)) -> new_esEs17(xuu4000, xuu300, dcb, dcc) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, app(ty_Ratio, eaf)) -> new_esEs24(xuu40000, xuu3000, eaf) new_ltEs20(xuu661, xuu671, app(app(ty_Either, ga), gb)) -> new_ltEs7(xuu661, xuu671, ga, gb) new_esEs36(xuu660, xuu670, ty_Char) -> new_esEs15(xuu660, xuu670) new_compare27(xuu80, xuu81, False, cag, ffa) -> new_compare110(xuu80, xuu81, new_ltEs21(xuu80, xuu81, ffa), cag, ffa) new_esEs11(xuu4000, xuu300, app(app(ty_Either, ebc), ebd)) -> new_esEs17(xuu4000, xuu300, ebc, ebd) new_esEs32(xuu661, xuu671, app(ty_[], beh)) -> new_esEs16(xuu661, xuu671, beh) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_ltEs21(xuu80, xuu81, ty_Bool) -> new_ltEs15(xuu80, xuu81) new_esEs39(xuu40000, xuu3000, app(app(app(ty_@3, fec), fed), fee)) -> new_esEs19(xuu40000, xuu3000, fec, fed, fee) new_compare114(xuu137, xuu138, False, fag) -> GT new_ltEs19(xuu662, xuu672, ty_Char) -> new_ltEs6(xuu662, xuu672) new_esEs6(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_compare10(xuu144, xuu145, True, cgb, cgc) -> LT new_esEs29(xuu40000, xuu3000, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs19(xuu40000, xuu3000, ddh, dea, deb) new_esEs36(xuu660, xuu670, app(app(ty_@2, gh), ha)) -> new_esEs23(xuu660, xuu670, gh, ha) new_lt20(xuu661, xuu671, ty_Integer) -> new_lt14(xuu661, xuu671) new_compare17(Right(xuu4000), Right(xuu300), bhc, bhd) -> new_compare27(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, bhd), bhc, bhd) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_lt7(xuu92, xuu95, ty_Ordering) -> new_lt17(xuu92, xuu95) new_esEs6(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_primCompAux00(xuu49, GT) -> GT new_compare112(xuu163, xuu164, xuu165, xuu166, False, xuu168, eeb, eec) -> new_compare113(xuu163, xuu164, xuu165, xuu166, xuu168, eeb, eec) new_ltEs7(Left(xuu660), Left(xuu670), ty_@0, bbb) -> new_ltEs8(xuu660, xuu670) new_lt23(xuu106, xuu108, ty_Float) -> new_lt13(xuu106, xuu108) new_ltEs14(EQ, EQ) -> True new_esEs17(Right(xuu40000), Right(xuu3000), dhd, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_esEs37(xuu40002, xuu3002, ty_Char) -> new_esEs15(xuu40002, xuu3002) new_ltEs7(Right(xuu660), Right(xuu670), bcc, app(ty_Ratio, daf)) -> new_ltEs9(xuu660, xuu670, daf) new_lt6(xuu400, xuu30, cca, ccb, ccc) -> new_esEs12(new_compare19(xuu400, xuu30, cca, ccb, ccc)) new_esEs4(xuu4001, xuu301, app(app(ty_Either, ehd), ehe)) -> new_esEs17(xuu4001, xuu301, ehd, ehe) new_primCmpInt(Pos(Succ(xuu40000)), Neg(xuu300)) -> GT new_esEs37(xuu40002, xuu3002, app(ty_[], fbc)) -> new_esEs16(xuu40002, xuu3002, fbc) new_esEs18(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs19(xuu40000, xuu3000, dfc, dfd, dfe) new_ltEs22(xuu73, xuu74, ty_@0) -> new_ltEs8(xuu73, xuu74) new_ltEs14(EQ, LT) -> False new_esEs39(xuu40000, xuu3000, app(ty_Ratio, feh)) -> new_esEs24(xuu40000, xuu3000, feh) new_lt7(xuu92, xuu95, ty_@0) -> new_lt9(xuu92, xuu95) new_esEs29(xuu40000, xuu3000, app(app(ty_@2, dec), ded)) -> new_esEs23(xuu40000, xuu3000, dec, ded) new_lt21(xuu660, xuu670, ty_Integer) -> new_lt14(xuu660, xuu670) new_compare110(xuu151, xuu152, True, dab, dac) -> LT new_esEs34(xuu40001, xuu3001, app(ty_Ratio, efg)) -> new_esEs24(xuu40001, xuu3001, efg) new_esEs36(xuu660, xuu670, ty_Integer) -> new_esEs14(xuu660, xuu670) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, app(app(ty_@2, ead), eae)) -> new_esEs23(xuu40000, xuu3000, ead, eae) new_esEs18(Just(xuu40000), Just(xuu3000), app(ty_Ratio, dfh)) -> new_esEs24(xuu40000, xuu3000, dfh) new_esEs11(xuu4000, xuu300, app(ty_Maybe, ebe)) -> new_esEs18(xuu4000, xuu300, ebe) new_lt8(xuu91, xuu94, app(app(app(ty_@3, cfg), cfh), cga)) -> new_lt6(xuu91, xuu94, cfg, cfh, cga) new_esEs8(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_ltEs18(xuu93, xuu96, ty_Int) -> new_ltEs4(xuu93, xuu96) new_esEs34(xuu40001, xuu3001, ty_Ordering) -> new_esEs25(xuu40001, xuu3001) new_lt8(xuu91, xuu94, ty_Int) -> new_lt16(xuu91, xuu94) new_esEs31(xuu91, xuu94, ty_Integer) -> new_esEs14(xuu91, xuu94) new_primCmpNat0(Zero, Succ(xuu3000)) -> LT new_esEs31(xuu91, xuu94, ty_Int) -> new_esEs13(xuu91, xuu94) new_esEs4(xuu4001, xuu301, ty_Ordering) -> new_esEs25(xuu4001, xuu301) new_esEs40(xuu106, xuu108, ty_Ordering) -> new_esEs25(xuu106, xuu108) new_ltEs20(xuu661, xuu671, ty_Double) -> new_ltEs17(xuu661, xuu671) new_ltEs11(Just(xuu660), Just(xuu670), ty_Integer) -> new_ltEs13(xuu660, xuu670) new_ltEs23(xuu107, xuu109, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs16(xuu107, xuu109, ef, eg, eh) new_esEs9(xuu4002, xuu302, app(app(ty_Either, fgb), fgc)) -> new_esEs17(xuu4002, xuu302, fgb, fgc) new_ltEs7(Left(xuu660), Left(xuu670), app(ty_Ratio, dae), bbb) -> new_ltEs9(xuu660, xuu670, dae) new_ltEs21(xuu80, xuu81, ty_Integer) -> new_ltEs13(xuu80, xuu81) new_compare18(GT, GT) -> EQ new_esEs33(xuu660, xuu670, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs19(xuu660, xuu670, bgh, bha, bhb) new_esEs30(xuu92, xuu95, app(app(ty_@2, cea), ceb)) -> new_esEs23(xuu92, xuu95, cea, ceb) new_primCmpNat0(Succ(xuu40000), Zero) -> GT new_compare29(xuu66, xuu67, False, fhc) -> new_compare114(xuu66, xuu67, new_ltEs24(xuu66, xuu67, fhc), fhc) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) new_esEs37(xuu40002, xuu3002, ty_Double) -> new_esEs26(xuu40002, xuu3002) new_primCompAux0(xuu4000, xuu300, xuu45, h) -> new_primCompAux00(xuu45, new_compare8(xuu4000, xuu300, h)) new_ltEs19(xuu662, xuu672, app(app(ty_Either, bec), bed)) -> new_ltEs7(xuu662, xuu672, bec, bed) new_esEs32(xuu661, xuu671, ty_Int) -> new_esEs13(xuu661, xuu671) new_pePe(False, xuu196) -> xuu196 new_esEs6(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_esEs10(xuu4001, xuu301, app(app(app(ty_@3, chc), chd), che)) -> new_esEs19(xuu4001, xuu301, chc, chd, che) new_esEs37(xuu40002, xuu3002, app(ty_Ratio, fcd)) -> new_esEs24(xuu40002, xuu3002, fcd) new_ltEs13(xuu66, xuu67) -> new_fsEs(new_compare16(xuu66, xuu67)) new_ltEs7(Left(xuu660), Left(xuu670), ty_Bool, bbb) -> new_ltEs15(xuu660, xuu670) new_compare18(LT, GT) -> LT new_esEs39(xuu40000, xuu3000, app(app(ty_Either, fdh), fea)) -> new_esEs17(xuu40000, xuu3000, fdh, fea) new_compare111(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, False, xuu185, cgd, cge, cgf) -> new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, xuu185, cgd, cge, cgf) new_ltEs23(xuu107, xuu109, ty_Double) -> new_ltEs17(xuu107, xuu109) new_ltEs21(xuu80, xuu81, ty_Double) -> new_ltEs17(xuu80, xuu81) new_compare8(xuu4000, xuu300, ty_Int) -> new_compare6(xuu4000, xuu300) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_lt23(xuu106, xuu108, ty_Bool) -> new_lt4(xuu106, xuu108) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, ty_Ordering) -> new_esEs25(xuu40000, xuu3000) new_esEs30(xuu92, xuu95, app(app(ty_Either, ced), cee)) -> new_esEs17(xuu92, xuu95, ced, cee) new_ltEs19(xuu662, xuu672, app(app(ty_@2, bdh), bea)) -> new_ltEs10(xuu662, xuu672, bdh, bea) new_esEs30(xuu92, xuu95, ty_Bool) -> new_esEs21(xuu92, xuu95) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_compare28(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, cdh) -> new_compare111(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, new_lt8(xuu91, xuu94, ccd), new_asAs(new_esEs31(xuu91, xuu94, ccd), new_pePe(new_lt7(xuu92, xuu95, cce), new_asAs(new_esEs30(xuu92, xuu95, cce), new_ltEs18(xuu93, xuu96, cdh)))), ccd, cce, cdh) new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs14(xuu40001, xuu3001) new_ltEs11(Just(xuu660), Just(xuu670), app(ty_[], hh)) -> new_ltEs5(xuu660, xuu670, hh) new_ltEs19(xuu662, xuu672, ty_Bool) -> new_ltEs15(xuu662, xuu672) new_esEs8(xuu4000, xuu300, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs19(xuu4000, xuu300, dce, dcf, dcg) new_ltEs7(Right(xuu660), Right(xuu670), bcc, app(app(ty_@2, bce), bcf)) -> new_ltEs10(xuu660, xuu670, bce, bcf) new_esEs6(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_ltEs7(Left(xuu660), Left(xuu670), ty_Integer, bbb) -> new_ltEs13(xuu660, xuu670) new_esEs10(xuu4001, xuu301, ty_Float) -> new_esEs22(xuu4001, xuu301) new_esEs31(xuu91, xuu94, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs19(xuu91, xuu94, cfg, cfh, cga) new_lt8(xuu91, xuu94, app(ty_Maybe, cfd)) -> new_lt12(xuu91, xuu94, cfd) new_lt16(xuu400, xuu30) -> new_esEs12(new_compare6(xuu400, xuu30)) new_ltEs19(xuu662, xuu672, ty_Ordering) -> new_ltEs14(xuu662, xuu672) new_ltEs23(xuu107, xuu109, ty_Float) -> new_ltEs12(xuu107, xuu109) new_esEs32(xuu661, xuu671, app(app(ty_@2, bfb), bfc)) -> new_esEs23(xuu661, xuu671, bfb, bfc) new_esEs17(Left(xuu40000), Left(xuu3000), app(app(ty_@2, dha), dhb), dga) -> new_esEs23(xuu40000, xuu3000, dha, dhb) new_esEs33(xuu660, xuu670, ty_Float) -> new_esEs22(xuu660, xuu670) new_esEs37(xuu40002, xuu3002, ty_Bool) -> new_esEs21(xuu40002, xuu3002) new_compare13(@2(xuu4000, xuu4001), @2(xuu300, xuu301), cb, cc) -> new_compare210(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs5(xuu4000, xuu300, cb), new_esEs4(xuu4001, xuu301, cc)), cb, cc) new_esEs31(xuu91, xuu94, ty_@0) -> new_esEs20(xuu91, xuu94) new_ltEs20(xuu661, xuu671, ty_Bool) -> new_ltEs15(xuu661, xuu671) new_esEs29(xuu40000, xuu3000, app(app(ty_Either, dde), ddf)) -> new_esEs17(xuu40000, xuu3000, dde, ddf) new_ltEs14(EQ, GT) -> True new_esEs17(Right(xuu40000), Right(xuu3000), dhd, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_ltEs14(GT, EQ) -> False new_lt20(xuu661, xuu671, app(ty_Maybe, bfd)) -> new_lt12(xuu661, xuu671, bfd) new_esEs10(xuu4001, xuu301, app(ty_Maybe, chb)) -> new_esEs18(xuu4001, xuu301, chb) new_esEs35(xuu40000, xuu3000, app(ty_Ratio, eha)) -> new_esEs24(xuu40000, xuu3000, eha) new_ltEs19(xuu662, xuu672, ty_Int) -> new_ltEs4(xuu662, xuu672) new_esEs6(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_ltEs23(xuu107, xuu109, app(ty_Ratio, ffh)) -> new_ltEs9(xuu107, xuu109, ffh) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs4(xuu4001, xuu301, ty_@0) -> new_esEs20(xuu4001, xuu301) new_esEs33(xuu660, xuu670, ty_Ordering) -> new_esEs25(xuu660, xuu670) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3000))) -> LT new_ltEs18(xuu93, xuu96, app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs16(xuu93, xuu96, cdd, cde, cdf) new_ltEs17(xuu66, xuu67) -> new_fsEs(new_compare25(xuu66, xuu67)) new_primMulInt(Pos(xuu40000), Pos(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) new_ltEs7(Right(xuu660), Right(xuu670), bcc, app(app(ty_Either, bch), bda)) -> new_ltEs7(xuu660, xuu670, bch, bda) new_esEs17(Left(xuu40000), Left(xuu3000), app(ty_[], dgb), dga) -> new_esEs16(xuu40000, xuu3000, dgb) new_ltEs14(LT, GT) -> True new_ltEs14(GT, GT) -> True new_lt7(xuu92, xuu95, ty_Integer) -> new_lt14(xuu92, xuu95) new_ltEs24(xuu66, xuu67, app(ty_[], fb)) -> new_ltEs5(xuu66, xuu67, fb) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_esEs21(False, True) -> False new_esEs21(True, False) -> False new_esEs38(xuu40001, xuu3001, ty_Char) -> new_esEs15(xuu40001, xuu3001) new_esEs5(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_primMulNat0(Succ(xuu400000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu30100)) -> Zero new_esEs29(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_ltEs7(Left(xuu660), Left(xuu670), ty_Ordering, bbb) -> new_ltEs14(xuu660, xuu670) new_esEs34(xuu40001, xuu3001, app(app(ty_@2, efe), eff)) -> new_esEs23(xuu40001, xuu3001, efe, eff) new_lt22(xuu660, xuu670, ty_Integer) -> new_lt14(xuu660, xuu670) new_ltEs21(xuu80, xuu81, ty_@0) -> new_ltEs8(xuu80, xuu81) new_ltEs23(xuu107, xuu109, ty_Int) -> new_ltEs4(xuu107, xuu109) new_esEs32(xuu661, xuu671, app(app(ty_Either, bfe), bff)) -> new_esEs17(xuu661, xuu671, bfe, bff) new_esEs8(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_compare8(xuu4000, xuu300, app(ty_Maybe, bd)) -> new_compare14(xuu4000, xuu300, bd) new_esEs7(xuu4000, xuu300, app(app(ty_@2, dbf), dbg)) -> new_esEs23(xuu4000, xuu300, dbf, dbg) new_esEs38(xuu40001, xuu3001, app(ty_[], fce)) -> new_esEs16(xuu40001, xuu3001, fce) new_esEs5(xuu4000, xuu300, app(app(ty_Either, dhd), dga)) -> new_esEs17(xuu4000, xuu300, dhd, dga) new_esEs29(xuu40000, xuu3000, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_compare5(False, True) -> LT new_ltEs19(xuu662, xuu672, ty_Integer) -> new_ltEs13(xuu662, xuu672) new_lt23(xuu106, xuu108, ty_Ordering) -> new_lt17(xuu106, xuu108) new_esEs8(xuu4000, xuu300, app(ty_Maybe, dcd)) -> new_esEs18(xuu4000, xuu300, dcd) new_esEs18(Just(xuu40000), Just(xuu3000), app(app(ty_@2, dff), dfg)) -> new_esEs23(xuu40000, xuu3000, dff, dfg) new_ltEs19(xuu662, xuu672, ty_Float) -> new_ltEs12(xuu662, xuu672) new_esEs29(xuu40000, xuu3000, app(ty_Maybe, ddg)) -> new_esEs18(xuu40000, xuu3000, ddg) new_esEs35(xuu40000, xuu3000, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_esEs6(xuu4000, xuu300, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs19(xuu4000, xuu300, edd, ede, edf) new_esEs11(xuu4000, xuu300, app(app(ty_@2, eca), ecb)) -> new_esEs23(xuu4000, xuu300, eca, ecb) new_ltEs18(xuu93, xuu96, ty_@0) -> new_ltEs8(xuu93, xuu96) new_esEs31(xuu91, xuu94, app(ty_Maybe, cfd)) -> new_esEs18(xuu91, xuu94, cfd) new_compare15(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_compare15(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_lt21(xuu660, xuu670, ty_Int) -> new_lt16(xuu660, xuu670) new_lt22(xuu660, xuu670, app(ty_Maybe, hb)) -> new_lt12(xuu660, xuu670, hb) new_ltEs11(Just(xuu660), Just(xuu670), ty_Char) -> new_ltEs6(xuu660, xuu670) new_esEs7(xuu4000, xuu300, app(app(ty_Either, dah), dba)) -> new_esEs17(xuu4000, xuu300, dah, dba) new_ltEs7(Right(xuu660), Right(xuu670), bcc, app(ty_[], bcd)) -> new_ltEs5(xuu660, xuu670, bcd) new_primPlusNat0(Succ(xuu39200), Zero) -> Succ(xuu39200) new_primPlusNat0(Zero, Succ(xuu12600)) -> Succ(xuu12600) new_compare18(EQ, GT) -> LT new_esEs8(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_esEs9(xuu4002, xuu302, ty_Int) -> new_esEs13(xuu4002, xuu302) new_lt8(xuu91, xuu94, app(app(ty_Either, cfe), cff)) -> new_lt15(xuu91, xuu94, cfe, cff) new_esEs38(xuu40001, xuu3001, ty_Integer) -> new_esEs14(xuu40001, xuu3001) new_lt8(xuu91, xuu94, ty_Ordering) -> new_lt17(xuu91, xuu94) new_esEs6(xuu4000, xuu300, app(app(ty_Either, eda), edb)) -> new_esEs17(xuu4000, xuu300, eda, edb) new_esEs25(GT, GT) -> True new_esEs8(xuu4000, xuu300, app(app(ty_@2, dch), dda)) -> new_esEs23(xuu4000, xuu300, dch, dda) new_esEs30(xuu92, xuu95, app(ty_Maybe, cec)) -> new_esEs18(xuu92, xuu95, cec) new_esEs32(xuu661, xuu671, app(ty_Maybe, bfd)) -> new_esEs18(xuu661, xuu671, bfd) new_ltEs20(xuu661, xuu671, ty_Float) -> new_ltEs12(xuu661, xuu671) new_esEs40(xuu106, xuu108, ty_Bool) -> new_esEs21(xuu106, xuu108) new_compare8(xuu4000, xuu300, ty_Bool) -> new_compare5(xuu4000, xuu300) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs26(xuu40000, xuu3000) new_esEs9(xuu4002, xuu302, app(app(ty_@2, fgh), fha)) -> new_esEs23(xuu4002, xuu302, fgh, fha) new_ltEs21(xuu80, xuu81, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs16(xuu80, xuu81, cbf, cbg, cbh) new_ltEs7(Right(xuu660), Right(xuu670), bcc, ty_Int) -> new_ltEs4(xuu660, xuu670) new_esEs5(xuu4000, xuu300, app(ty_[], ddc)) -> new_esEs16(xuu4000, xuu300, ddc) new_lt20(xuu661, xuu671, ty_Int) -> new_lt16(xuu661, xuu671) new_compare112(xuu163, xuu164, xuu165, xuu166, True, xuu168, eeb, eec) -> new_compare113(xuu163, xuu164, xuu165, xuu166, True, eeb, eec) new_esEs34(xuu40001, xuu3001, ty_Double) -> new_esEs26(xuu40001, xuu3001) new_esEs30(xuu92, xuu95, ty_@0) -> new_esEs20(xuu92, xuu95) new_esEs12(LT) -> True new_lt8(xuu91, xuu94, ty_Bool) -> new_lt4(xuu91, xuu94) new_ltEs7(Left(xuu660), Left(xuu670), app(app(app(ty_@3, bbh), bca), bcb), bbb) -> new_ltEs16(xuu660, xuu670, bbh, bca, bcb) new_lt20(xuu661, xuu671, ty_@0) -> new_lt9(xuu661, xuu671) new_esEs6(xuu4000, xuu300, app(ty_Maybe, edc)) -> new_esEs18(xuu4000, xuu300, edc) new_ltEs4(xuu66, xuu67) -> new_fsEs(new_compare6(xuu66, xuu67)) new_esEs11(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_ltEs11(Just(xuu660), Just(xuu670), app(ty_Maybe, bac)) -> new_ltEs11(xuu660, xuu670, bac) new_esEs34(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) new_ltEs7(Right(xuu660), Right(xuu670), bcc, ty_Double) -> new_ltEs17(xuu660, xuu670) new_esEs35(xuu40000, xuu3000, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_esEs40(xuu106, xuu108, app(ty_[], cd)) -> new_esEs16(xuu106, xuu108, cd) new_lt8(xuu91, xuu94, ty_Integer) -> new_lt14(xuu91, xuu94) new_compare210(xuu106, xuu107, xuu108, xuu109, True, dg, ce) -> EQ new_esEs16([], [], ddc) -> True new_esEs18(Nothing, Nothing, def) -> True new_ltEs20(xuu661, xuu671, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs16(xuu661, xuu671, gc, gd, ge) new_ltEs7(Right(xuu660), Right(xuu670), bcc, app(ty_Maybe, bcg)) -> new_ltEs11(xuu660, xuu670, bcg) new_esEs4(xuu4001, xuu301, ty_Bool) -> new_esEs21(xuu4001, xuu301) new_ltEs21(xuu80, xuu81, ty_Int) -> new_ltEs4(xuu80, xuu81) new_ltEs18(xuu93, xuu96, ty_Bool) -> new_ltEs15(xuu93, xuu96) new_esEs26(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_esEs28(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_primMulInt(Neg(xuu40000), Neg(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) new_esEs11(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_esEs4(xuu4001, xuu301, ty_Integer) -> new_esEs14(xuu4001, xuu301) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3000))) -> new_primCmpNat0(Zero, Succ(xuu3000)) new_esEs7(xuu4000, xuu300, app(ty_Maybe, dbb)) -> new_esEs18(xuu4000, xuu300, dbb) new_esEs18(Nothing, Just(xuu3000), def) -> False new_esEs18(Just(xuu40000), Nothing, def) -> False new_esEs40(xuu106, xuu108, ty_Char) -> new_esEs15(xuu106, xuu108) new_compare14(Just(xuu4000), Nothing, fa) -> GT new_compare17(Left(xuu4000), Right(xuu300), bhc, bhd) -> LT new_esEs33(xuu660, xuu670, app(app(ty_@2, bgc), bgd)) -> new_esEs23(xuu660, xuu670, bgc, bgd) new_esEs9(xuu4002, xuu302, ty_Float) -> new_esEs22(xuu4002, xuu302) new_esEs31(xuu91, xuu94, app(app(ty_Either, cfe), cff)) -> new_esEs17(xuu91, xuu94, cfe, cff) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs22(xuu40000, xuu3000) new_lt21(xuu660, xuu670, app(ty_Maybe, bge)) -> new_lt12(xuu660, xuu670, bge) new_lt10(xuu400, xuu30, h) -> new_esEs12(new_compare0(xuu400, xuu30, h)) new_ltEs9(xuu66, xuu67, ecd) -> new_fsEs(new_compare12(xuu66, xuu67, ecd)) new_lt12(xuu400, xuu30, fa) -> new_esEs12(new_compare14(xuu400, xuu30, fa)) new_esEs32(xuu661, xuu671, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs19(xuu661, xuu671, bfg, bfh, bga) new_esEs10(xuu4001, xuu301, app(app(ty_@2, chf), chg)) -> new_esEs23(xuu4001, xuu301, chf, chg) new_ltEs19(xuu662, xuu672, ty_@0) -> new_ltEs8(xuu662, xuu672) new_esEs39(xuu40000, xuu3000, app(ty_[], fdg)) -> new_esEs16(xuu40000, xuu3000, fdg) new_esEs7(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_esEs31(xuu91, xuu94, ty_Ordering) -> new_esEs25(xuu91, xuu94) new_esEs5(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_ltEs24(xuu66, xuu67, app(ty_Ratio, ecd)) -> new_ltEs9(xuu66, xuu67, ecd) new_compare14(Nothing, Nothing, fa) -> EQ new_ltEs21(xuu80, xuu81, ty_Float) -> new_ltEs12(xuu80, xuu81) new_esEs39(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_esEs29(xuu40000, xuu3000, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_compare6(xuu400, xuu30) -> new_primCmpInt(xuu400, xuu30) new_ltEs8(xuu66, xuu67) -> new_fsEs(new_compare9(xuu66, xuu67)) new_esEs4(xuu4001, xuu301, app(ty_[], ehc)) -> new_esEs16(xuu4001, xuu301, ehc) new_esEs39(xuu40000, xuu3000, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_ltEs7(Left(xuu660), Left(xuu670), ty_Char, bbb) -> new_ltEs6(xuu660, xuu670) new_esEs4(xuu4001, xuu301, ty_Char) -> new_esEs15(xuu4001, xuu301) new_ltEs14(GT, LT) -> False new_esEs30(xuu92, xuu95, ty_Char) -> new_esEs15(xuu92, xuu95) new_lt22(xuu660, xuu670, ty_Bool) -> new_lt4(xuu660, xuu670) new_ltEs7(Left(xuu660), Right(xuu670), bcc, bbb) -> True new_esEs11(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_ltEs6(xuu66, xuu67) -> new_fsEs(new_compare7(xuu66, xuu67)) new_primMulInt(Pos(xuu40000), Neg(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) new_primMulInt(Neg(xuu40000), Pos(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) new_esEs35(xuu40000, xuu3000, app(ty_[], efh)) -> new_esEs16(xuu40000, xuu3000, efh) new_esEs39(xuu40000, xuu3000, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_esEs12(GT) -> False new_esEs12(EQ) -> False new_ltEs15(True, True) -> True new_ltEs20(xuu661, xuu671, ty_@0) -> new_ltEs8(xuu661, xuu671) new_ltEs20(xuu661, xuu671, app(ty_Maybe, fh)) -> new_ltEs11(xuu661, xuu671, fh) new_esEs40(xuu106, xuu108, ty_Integer) -> new_esEs14(xuu106, xuu108) new_lt21(xuu660, xuu670, ty_Float) -> new_lt13(xuu660, xuu670) new_ltEs18(xuu93, xuu96, ty_Integer) -> new_ltEs13(xuu93, xuu96) new_lt22(xuu660, xuu670, ty_Ordering) -> new_lt17(xuu660, xuu670) new_lt23(xuu106, xuu108, ty_Integer) -> new_lt14(xuu106, xuu108) new_esEs33(xuu660, xuu670, ty_Int) -> new_esEs13(xuu660, xuu670) new_ltEs22(xuu73, xuu74, app(ty_Ratio, ffd)) -> new_ltEs9(xuu73, xuu74, ffd) new_sr0(Integer(xuu40000), Integer(xuu3010)) -> Integer(new_primMulInt(xuu40000, xuu3010)) new_esEs34(xuu40001, xuu3001, ty_Integer) -> new_esEs14(xuu40001, xuu3001) new_ltEs22(xuu73, xuu74, ty_Int) -> new_ltEs4(xuu73, xuu74) new_esEs7(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_lt8(xuu91, xuu94, app(ty_[], cfa)) -> new_lt10(xuu91, xuu94, cfa) new_lt21(xuu660, xuu670, app(app(ty_Either, bgf), bgg)) -> new_lt15(xuu660, xuu670, bgf, bgg) new_esEs6(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_esEs11(xuu4000, xuu300, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs19(xuu4000, xuu300, ebf, ebg, ebh) new_ltEs11(Just(xuu660), Just(xuu670), app(app(ty_Either, bad), bae)) -> new_ltEs7(xuu660, xuu670, bad, bae) new_ltEs19(xuu662, xuu672, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs16(xuu662, xuu672, bee, bef, beg) new_esEs9(xuu4002, xuu302, app(ty_Ratio, fhb)) -> new_esEs24(xuu4002, xuu302, fhb) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Double, dga) -> new_esEs26(xuu40000, xuu3000) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, app(ty_Maybe, dhh)) -> new_esEs18(xuu40000, xuu3000, dhh) new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_ltEs11(Just(xuu660), Just(xuu670), app(app(ty_@2, baa), bab)) -> new_ltEs10(xuu660, xuu670, baa, bab) new_esEs36(xuu660, xuu670, app(ty_Ratio, faf)) -> new_esEs24(xuu660, xuu670, faf) new_esEs38(xuu40001, xuu3001, app(app(ty_Either, fcf), fcg)) -> new_esEs17(xuu40001, xuu3001, fcf, fcg) new_compare8(xuu4000, xuu300, app(ty_[], ba)) -> new_compare0(xuu4000, xuu300, ba) new_ltEs22(xuu73, xuu74, ty_Double) -> new_ltEs17(xuu73, xuu74) new_compare18(GT, LT) -> GT new_esEs17(Left(xuu40000), Left(xuu3000), app(ty_Maybe, dge), dga) -> new_esEs18(xuu40000, xuu3000, dge) new_esEs38(xuu40001, xuu3001, app(ty_Maybe, fch)) -> new_esEs18(xuu40001, xuu3001, fch) new_esEs25(LT, LT) -> True new_compare18(EQ, LT) -> GT new_compare28(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, True, ccd, cce, cdh) -> EQ new_esEs9(xuu4002, xuu302, ty_@0) -> new_esEs20(xuu4002, xuu302) new_lt7(xuu92, xuu95, app(app(app(ty_@3, cef), ceg), ceh)) -> new_lt6(xuu92, xuu95, cef, ceg, ceh) new_compare114(xuu137, xuu138, True, fag) -> LT new_esEs5(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_lt7(xuu92, xuu95, ty_Int) -> new_lt16(xuu92, xuu95) new_compare0([], :(xuu300, xuu301), h) -> LT new_asAs(True, xuu124) -> xuu124 new_esEs30(xuu92, xuu95, ty_Integer) -> new_esEs14(xuu92, xuu95) new_compare10(xuu144, xuu145, False, cgb, cgc) -> GT new_compare8(xuu4000, xuu300, ty_Double) -> new_compare25(xuu4000, xuu300) new_esEs32(xuu661, xuu671, ty_Ordering) -> new_esEs25(xuu661, xuu671) new_esEs5(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_esEs36(xuu660, xuu670, app(app(app(ty_@3, he), hf), hg)) -> new_esEs19(xuu660, xuu670, he, hf, hg) new_ltEs22(xuu73, xuu74, app(app(ty_@2, bhg), bhh)) -> new_ltEs10(xuu73, xuu74, bhg, bhh) new_esEs10(xuu4001, xuu301, app(ty_[], cgg)) -> new_esEs16(xuu4001, xuu301, cgg) new_ltEs12(xuu66, xuu67) -> new_fsEs(new_compare15(xuu66, xuu67)) new_ltEs22(xuu73, xuu74, ty_Ordering) -> new_ltEs14(xuu73, xuu74) new_esEs36(xuu660, xuu670, ty_@0) -> new_esEs20(xuu660, xuu670) new_esEs9(xuu4002, xuu302, app(app(app(ty_@3, fge), fgf), fgg)) -> new_esEs19(xuu4002, xuu302, fge, fgf, fgg) new_ltEs22(xuu73, xuu74, ty_Float) -> new_ltEs12(xuu73, xuu74) new_lt7(xuu92, xuu95, app(ty_Maybe, cec)) -> new_lt12(xuu92, xuu95, cec) new_esEs32(xuu661, xuu671, ty_Float) -> new_esEs22(xuu661, xuu671) new_esEs38(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) new_esEs11(xuu4000, xuu300, ty_@0) -> new_esEs20(xuu4000, xuu300) new_ltEs23(xuu107, xuu109, ty_Char) -> new_ltEs6(xuu107, xuu109) new_esEs36(xuu660, xuu670, ty_Double) -> new_esEs26(xuu660, xuu670) new_ltEs16(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, bfa) -> new_pePe(new_lt21(xuu660, xuu670, bde), new_asAs(new_esEs33(xuu660, xuu670, bde), new_pePe(new_lt20(xuu661, xuu671, bdf), new_asAs(new_esEs32(xuu661, xuu671, bdf), new_ltEs19(xuu662, xuu672, bfa))))) new_esEs29(xuu40000, xuu3000, app(ty_[], ddd)) -> new_esEs16(xuu40000, xuu3000, ddd) new_ltEs22(xuu73, xuu74, app(app(ty_Either, cab), cac)) -> new_ltEs7(xuu73, xuu74, cab, cac) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Bool, dga) -> new_esEs21(xuu40000, xuu3000) new_esEs9(xuu4002, xuu302, ty_Double) -> new_esEs26(xuu4002, xuu302) new_esEs8(xuu4000, xuu300, app(ty_[], dca)) -> new_esEs16(xuu4000, xuu300, dca) new_primCmpInt(Pos(Succ(xuu40000)), Pos(xuu300)) -> new_primCmpNat0(Succ(xuu40000), xuu300) new_compare5(True, True) -> EQ new_lt20(xuu661, xuu671, app(ty_[], beh)) -> new_lt10(xuu661, xuu671, beh) new_esEs29(xuu40000, xuu3000, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_lt21(xuu660, xuu670, ty_Double) -> new_lt18(xuu660, xuu670) new_primCompAux00(xuu49, EQ) -> xuu49 new_compare113(xuu163, xuu164, xuu165, xuu166, False, eeb, eec) -> GT new_compare0([], [], h) -> EQ new_sr(xuu4000, xuu301) -> new_primMulInt(xuu4000, xuu301) new_ltEs11(Just(xuu660), Just(xuu670), ty_Double) -> new_ltEs17(xuu660, xuu670) new_esEs8(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_ltEs21(xuu80, xuu81, app(app(ty_Either, cbd), cbe)) -> new_ltEs7(xuu80, xuu81, cbd, cbe) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Float, dga) -> new_esEs22(xuu40000, xuu3000) new_primMulNat0(Zero, Zero) -> Zero new_lt21(xuu660, xuu670, ty_@0) -> new_lt9(xuu660, xuu670) new_esEs23(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), eed, eee) -> new_asAs(new_esEs35(xuu40000, xuu3000, eed), new_esEs34(xuu40001, xuu3001, eee)) new_ltEs23(xuu107, xuu109, app(ty_[], dh)) -> new_ltEs5(xuu107, xuu109, dh) new_compare25(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare6(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) new_esEs30(xuu92, xuu95, app(ty_[], cdg)) -> new_esEs16(xuu92, xuu95, cdg) new_lt11(xuu400, xuu30, ehb) -> new_esEs12(new_compare12(xuu400, xuu30, ehb)) new_lt21(xuu660, xuu670, app(ty_[], bgb)) -> new_lt10(xuu660, xuu670, bgb) new_primMulNat0(Succ(xuu400000), Succ(xuu30100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu30100)), Succ(xuu30100)) new_ltEs18(xuu93, xuu96, app(ty_Maybe, cda)) -> new_ltEs11(xuu93, xuu96, cda) new_lt23(xuu106, xuu108, app(ty_Maybe, da)) -> new_lt12(xuu106, xuu108, da) new_esEs7(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_esEs10(xuu4001, xuu301, ty_Double) -> new_esEs26(xuu4001, xuu301) new_compare17(Right(xuu4000), Left(xuu300), bhc, bhd) -> GT new_compare9(@0, @0) -> EQ new_esEs10(xuu4001, xuu301, app(ty_Ratio, chh)) -> new_esEs24(xuu4001, xuu301, chh) new_compare8(xuu4000, xuu300, ty_Char) -> new_compare7(xuu4000, xuu300) new_esEs18(Just(xuu40000), Just(xuu3000), app(ty_Maybe, dfb)) -> new_esEs18(xuu40000, xuu3000, dfb) new_esEs33(xuu660, xuu670, app(app(ty_Either, bgf), bgg)) -> new_esEs17(xuu660, xuu670, bgf, bgg) new_compare8(xuu4000, xuu300, ty_Integer) -> new_compare16(xuu4000, xuu300) new_ltEs11(Nothing, Just(xuu670), ffe) -> True new_ltEs20(xuu661, xuu671, ty_Integer) -> new_ltEs13(xuu661, xuu671) new_ltEs21(xuu80, xuu81, ty_Ordering) -> new_ltEs14(xuu80, xuu81) new_ltEs21(xuu80, xuu81, app(app(ty_@2, cba), cbb)) -> new_ltEs10(xuu80, xuu81, cba, cbb) new_compare14(Just(xuu4000), Just(xuu300), fa) -> new_compare29(xuu4000, xuu300, new_esEs6(xuu4000, xuu300, fa), fa) new_esEs31(xuu91, xuu94, ty_Double) -> new_esEs26(xuu91, xuu94) new_esEs5(xuu4000, xuu300, app(ty_Ratio, dad)) -> new_esEs24(xuu4000, xuu300, dad) new_compare5(True, False) -> GT new_lt8(xuu91, xuu94, ty_Char) -> new_lt19(xuu91, xuu94) new_ltEs22(xuu73, xuu74, app(ty_[], bhe)) -> new_ltEs5(xuu73, xuu74, bhe) new_ltEs11(Just(xuu660), Just(xuu670), app(ty_Ratio, fff)) -> new_ltEs9(xuu660, xuu670, fff) new_esEs9(xuu4002, xuu302, ty_Ordering) -> new_esEs25(xuu4002, xuu302) new_esEs24(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), dad) -> new_asAs(new_esEs28(xuu40000, xuu3000, dad), new_esEs27(xuu40001, xuu3001, dad)) new_esEs37(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) new_esEs37(xuu40002, xuu3002, ty_Float) -> new_esEs22(xuu40002, xuu3002) new_esEs33(xuu660, xuu670, app(ty_Maybe, bge)) -> new_esEs18(xuu660, xuu670, bge) new_esEs40(xuu106, xuu108, app(app(ty_Either, db), dc)) -> new_esEs17(xuu106, xuu108, db, dc) new_esEs37(xuu40002, xuu3002, ty_@0) -> new_esEs20(xuu40002, xuu3002) new_esEs18(Just(xuu40000), Just(xuu3000), app(app(ty_Either, deh), dfa)) -> new_esEs17(xuu40000, xuu3000, deh, dfa) new_ltEs19(xuu662, xuu672, app(ty_Maybe, beb)) -> new_ltEs11(xuu662, xuu672, beb) new_esEs34(xuu40001, xuu3001, app(app(ty_Either, eeg), eeh)) -> new_esEs17(xuu40001, xuu3001, eeg, eeh) new_esEs4(xuu4001, xuu301, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs19(xuu4001, xuu301, ehg, ehh, faa) new_esEs31(xuu91, xuu94, ty_Bool) -> new_esEs21(xuu91, xuu94) new_ltEs11(Just(xuu660), Just(xuu670), ty_Ordering) -> new_ltEs14(xuu660, xuu670) new_esEs4(xuu4001, xuu301, app(ty_Ratio, fad)) -> new_esEs24(xuu4001, xuu301, fad) new_esEs7(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_esEs8(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_lt22(xuu660, xuu670, app(app(ty_Either, hc), hd)) -> new_lt15(xuu660, xuu670, hc, hd) new_esEs6(xuu4000, xuu300, app(app(ty_@2, edg), edh)) -> new_esEs23(xuu4000, xuu300, edg, edh) new_esEs36(xuu660, xuu670, ty_Float) -> new_esEs22(xuu660, xuu670) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_ltEs18(xuu93, xuu96, ty_Char) -> new_ltEs6(xuu93, xuu96) new_esEs36(xuu660, xuu670, ty_Bool) -> new_esEs21(xuu660, xuu670) new_ltEs24(xuu66, xuu67, ty_Char) -> new_ltEs6(xuu66, xuu67) new_esEs17(Left(xuu40000), Right(xuu3000), dhd, dga) -> False new_esEs17(Right(xuu40000), Left(xuu3000), dhd, dga) -> False new_esEs40(xuu106, xuu108, app(ty_Maybe, da)) -> new_esEs18(xuu106, xuu108, da) new_esEs34(xuu40001, xuu3001, app(ty_Maybe, efa)) -> new_esEs18(xuu40001, xuu3001, efa) new_lt23(xuu106, xuu108, app(app(app(ty_@3, dd), de), df)) -> new_lt6(xuu106, xuu108, dd, de, df) new_ltEs24(xuu66, xuu67, app(ty_Maybe, ffe)) -> new_ltEs11(xuu66, xuu67, ffe) new_esEs5(xuu4000, xuu300, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs19(xuu4000, xuu300, fah, fba, fbb) new_esEs39(xuu40000, xuu3000, app(ty_Maybe, feb)) -> new_esEs18(xuu40000, xuu3000, feb) new_esEs32(xuu661, xuu671, ty_@0) -> new_esEs20(xuu661, xuu671) new_lt22(xuu660, xuu670, ty_@0) -> new_lt9(xuu660, xuu670) new_compare17(Left(xuu4000), Left(xuu300), bhc, bhd) -> new_compare26(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, bhc), bhc, bhd) new_esEs7(xuu4000, xuu300, app(ty_[], dag)) -> new_esEs16(xuu4000, xuu300, dag) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_lt8(xuu91, xuu94, ty_Float) -> new_lt13(xuu91, xuu94) new_esEs32(xuu661, xuu671, ty_Double) -> new_esEs26(xuu661, xuu671) new_ltEs7(Right(xuu660), Right(xuu670), bcc, ty_@0) -> new_ltEs8(xuu660, xuu670) new_esEs31(xuu91, xuu94, app(ty_[], cfa)) -> new_esEs16(xuu91, xuu94, cfa) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3000))) -> new_primCmpNat0(Succ(xuu3000), Zero) new_lt23(xuu106, xuu108, ty_Int) -> new_lt16(xuu106, xuu108) new_lt21(xuu660, xuu670, ty_Bool) -> new_lt4(xuu660, xuu670) new_esEs31(xuu91, xuu94, ty_Float) -> new_esEs22(xuu91, xuu94) new_esEs31(xuu91, xuu94, ty_Char) -> new_esEs15(xuu91, xuu94) new_esEs11(xuu4000, xuu300, ty_Ordering) -> new_esEs25(xuu4000, xuu300) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs17(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, dgf), dgg), dgh), dga) -> new_esEs19(xuu40000, xuu3000, dgf, dgg, dgh) new_esEs11(xuu4000, xuu300, app(ty_Ratio, ecc)) -> new_esEs24(xuu4000, xuu300, ecc) new_lt23(xuu106, xuu108, app(ty_Ratio, ffg)) -> new_lt11(xuu106, xuu108, ffg) new_ltEs11(Just(xuu660), Just(xuu670), app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs16(xuu660, xuu670, baf, bag, bah) new_lt21(xuu660, xuu670, ty_Ordering) -> new_lt17(xuu660, xuu670) new_ltEs22(xuu73, xuu74, ty_Char) -> new_ltEs6(xuu73, xuu74) new_compare8(xuu4000, xuu300, ty_Ordering) -> new_compare18(xuu4000, xuu300) new_esEs33(xuu660, xuu670, ty_Integer) -> new_esEs14(xuu660, xuu670) new_compare18(EQ, EQ) -> EQ new_esEs5(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) new_esEs9(xuu4002, xuu302, app(ty_[], fga)) -> new_esEs16(xuu4002, xuu302, fga) new_ltEs21(xuu80, xuu81, app(ty_Ratio, ffb)) -> new_ltEs9(xuu80, xuu81, ffb) new_ltEs10(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, gg) -> new_pePe(new_lt22(xuu660, xuu670, fc), new_asAs(new_esEs36(xuu660, xuu670, fc), new_ltEs20(xuu661, xuu671, gg))) new_esEs39(xuu40000, xuu3000, app(app(ty_@2, fef), feg)) -> new_esEs23(xuu40000, xuu3000, fef, feg) new_compare15(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_compare16(Integer(xuu4000), Integer(xuu300)) -> new_primCmpInt(xuu4000, xuu300) new_lt20(xuu661, xuu671, ty_Double) -> new_lt18(xuu661, xuu671) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, app(ty_[], dhe)) -> new_esEs16(xuu40000, xuu3000, dhe) new_esEs40(xuu106, xuu108, ty_Int) -> new_esEs13(xuu106, xuu108) new_esEs10(xuu4001, xuu301, ty_Integer) -> new_esEs14(xuu4001, xuu301) new_not(False) -> True new_compare18(LT, EQ) -> LT new_esEs36(xuu660, xuu670, app(ty_[], gf)) -> new_esEs16(xuu660, xuu670, gf) new_esEs29(xuu40000, xuu3000, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_lt20(xuu661, xuu671, ty_Float) -> new_lt13(xuu661, xuu671) new_esEs5(xuu4000, xuu300, app(app(ty_@2, eed), eee)) -> new_esEs23(xuu4000, xuu300, eed, eee) new_esEs35(xuu40000, xuu3000, app(app(app(ty_@3, egd), ege), egf)) -> new_esEs19(xuu40000, xuu3000, egd, ege, egf) new_compare0(:(xuu4000, xuu4001), [], h) -> GT new_compare18(GT, EQ) -> GT new_esEs33(xuu660, xuu670, ty_@0) -> new_esEs20(xuu660, xuu670) new_esEs6(xuu4000, xuu300, ty_Float) -> new_esEs22(xuu4000, xuu300) new_ltEs21(xuu80, xuu81, app(ty_Maybe, cbc)) -> new_ltEs11(xuu80, xuu81, cbc) new_lt17(xuu400, xuu30) -> new_esEs12(new_compare18(xuu400, xuu30)) new_ltEs7(Right(xuu660), Right(xuu670), bcc, ty_Char) -> new_ltEs6(xuu660, xuu670) new_primPlusNat0(Succ(xuu39200), Succ(xuu12600)) -> Succ(Succ(new_primPlusNat0(xuu39200, xuu12600))) new_lt7(xuu92, xuu95, app(ty_Ratio, eah)) -> new_lt11(xuu92, xuu95, eah) new_lt20(xuu661, xuu671, app(app(ty_@2, bfb), bfc)) -> new_lt5(xuu661, xuu671, bfb, bfc) new_esEs37(xuu40002, xuu3002, app(ty_Maybe, fbf)) -> new_esEs18(xuu40002, xuu3002, fbf) new_esEs10(xuu4001, xuu301, ty_@0) -> new_esEs20(xuu4001, xuu301) new_lt5(xuu400, xuu30, cb, cc) -> new_esEs12(new_compare13(xuu400, xuu30, cb, cc)) new_compare12(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Int) -> new_compare6(new_sr(xuu4000, xuu301), new_sr(xuu300, xuu4001)) new_esEs35(xuu40000, xuu3000, ty_Integer) -> new_esEs14(xuu40000, xuu3000) new_compare8(xuu4000, xuu300, ty_@0) -> new_compare9(xuu4000, xuu300) new_compare27(xuu80, xuu81, True, cag, ffa) -> EQ new_lt23(xuu106, xuu108, ty_@0) -> new_lt9(xuu106, xuu108) new_ltEs23(xuu107, xuu109, ty_@0) -> new_ltEs8(xuu107, xuu109) new_lt7(xuu92, xuu95, app(ty_[], cdg)) -> new_lt10(xuu92, xuu95, cdg) new_esEs30(xuu92, xuu95, ty_Double) -> new_esEs26(xuu92, xuu95) new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_esEs8(xuu4000, xuu300, app(ty_Ratio, ddb)) -> new_esEs24(xuu4000, xuu300, ddb) new_ltEs7(Right(xuu660), Right(xuu670), bcc, ty_Bool) -> new_ltEs15(xuu660, xuu670) new_esEs30(xuu92, xuu95, app(ty_Ratio, eah)) -> new_esEs24(xuu92, xuu95, eah) new_esEs8(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_ltEs18(xuu93, xuu96, app(ty_[], ccf)) -> new_ltEs5(xuu93, xuu96, ccf) new_ltEs21(xuu80, xuu81, app(ty_[], cah)) -> new_ltEs5(xuu80, xuu81, cah) new_ltEs15(False, True) -> True new_esEs39(xuu40000, xuu3000, ty_Double) -> new_esEs26(xuu40000, xuu3000) new_esEs30(xuu92, xuu95, ty_Int) -> new_esEs13(xuu92, xuu95) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Integer, dga) -> new_esEs14(xuu40000, xuu3000) new_ltEs24(xuu66, xuu67, app(app(app(ty_@3, bde), bdf), bfa)) -> new_ltEs16(xuu66, xuu67, bde, bdf, bfa) new_lt7(xuu92, xuu95, ty_Float) -> new_lt13(xuu92, xuu95) new_esEs37(xuu40002, xuu3002, app(app(ty_Either, fbd), fbe)) -> new_esEs17(xuu40002, xuu3002, fbd, fbe) new_esEs35(xuu40000, xuu3000, app(app(ty_Either, ega), egb)) -> new_esEs17(xuu40000, xuu3000, ega, egb) new_ltEs20(xuu661, xuu671, ty_Char) -> new_ltEs6(xuu661, xuu671) new_esEs37(xuu40002, xuu3002, app(app(ty_@2, fcb), fcc)) -> new_esEs23(xuu40002, xuu3002, fcb, fcc) new_lt22(xuu660, xuu670, app(ty_Ratio, faf)) -> new_lt11(xuu660, xuu670, faf) new_compare210(xuu106, xuu107, xuu108, xuu109, False, dg, ce) -> new_compare112(xuu106, xuu107, xuu108, xuu109, new_lt23(xuu106, xuu108, dg), new_asAs(new_esEs40(xuu106, xuu108, dg), new_ltEs23(xuu107, xuu109, ce)), dg, ce) new_esEs22(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_esEs17(Left(xuu40000), Left(xuu3000), app(app(ty_Either, dgc), dgd), dga) -> new_esEs17(xuu40000, xuu3000, dgc, dgd) new_esEs8(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_esEs32(xuu661, xuu671, ty_Bool) -> new_esEs21(xuu661, xuu671) new_esEs38(xuu40001, xuu3001, ty_Ordering) -> new_esEs25(xuu40001, xuu3001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs29(xuu40000, xuu3000, app(ty_Ratio, dee)) -> new_esEs24(xuu40000, xuu3000, dee) new_compare0(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_primCompAux0(xuu4000, xuu300, new_compare0(xuu4001, xuu301, h), h) new_compare19(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cca, ccb, ccc) -> new_compare28(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs11(xuu4000, xuu300, cca), new_asAs(new_esEs10(xuu4001, xuu301, ccb), new_esEs9(xuu4002, xuu302, ccc))), cca, ccb, ccc) new_ltEs23(xuu107, xuu109, ty_Bool) -> new_ltEs15(xuu107, xuu109) new_lt20(xuu661, xuu671, app(app(ty_Either, bfe), bff)) -> new_lt15(xuu661, xuu671, bfe, bff) new_ltEs14(LT, EQ) -> True new_esEs17(Left(xuu40000), Left(xuu3000), ty_Ordering, dga) -> new_esEs25(xuu40000, xuu3000) new_lt8(xuu91, xuu94, ty_@0) -> new_lt9(xuu91, xuu94) new_esEs35(xuu40000, xuu3000, app(ty_Maybe, egc)) -> new_esEs18(xuu40000, xuu3000, egc) new_lt20(xuu661, xuu671, ty_Char) -> new_lt19(xuu661, xuu671) new_esEs19(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), fah, fba, fbb) -> new_asAs(new_esEs39(xuu40000, xuu3000, fah), new_asAs(new_esEs38(xuu40001, xuu3001, fba), new_esEs37(xuu40002, xuu3002, fbb))) new_lt8(xuu91, xuu94, app(app(ty_@2, cfb), cfc)) -> new_lt5(xuu91, xuu94, cfb, cfc) new_compare8(xuu4000, xuu300, app(app(ty_Either, be), bf)) -> new_compare17(xuu4000, xuu300, be, bf) new_ltEs11(Just(xuu660), Just(xuu670), ty_@0) -> new_ltEs8(xuu660, xuu670) new_esEs21(True, True) -> True new_ltEs7(Right(xuu660), Right(xuu670), bcc, ty_Integer) -> new_ltEs13(xuu660, xuu670) new_esEs35(xuu40000, xuu3000, ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_esEs29(xuu40000, xuu3000, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_lt22(xuu660, xuu670, ty_Float) -> new_lt13(xuu660, xuu670) new_esEs40(xuu106, xuu108, app(app(ty_@2, cf), cg)) -> new_esEs23(xuu106, xuu108, cf, cg) new_esEs17(Left(xuu40000), Left(xuu3000), ty_Char, dga) -> new_esEs15(xuu40000, xuu3000) new_ltEs7(Left(xuu660), Left(xuu670), app(ty_[], bba), bbb) -> new_ltEs5(xuu660, xuu670, bba) new_ltEs23(xuu107, xuu109, app(ty_Maybe, ec)) -> new_ltEs11(xuu107, xuu109, ec) new_ltEs18(xuu93, xuu96, app(ty_Ratio, eag)) -> new_ltEs9(xuu93, xuu96, eag) new_lt20(xuu661, xuu671, app(ty_Ratio, ecf)) -> new_lt11(xuu661, xuu671, ecf) new_lt18(xuu400, xuu30) -> new_esEs12(new_compare25(xuu400, xuu30)) new_esEs39(xuu40000, xuu3000, ty_Float) -> new_esEs22(xuu40000, xuu3000) new_ltEs7(Right(xuu660), Right(xuu670), bcc, ty_Ordering) -> new_ltEs14(xuu660, xuu670) new_esEs35(xuu40000, xuu3000, ty_Char) -> new_esEs15(xuu40000, xuu3000) new_esEs38(xuu40001, xuu3001, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs19(xuu40001, xuu3001, fda, fdb, fdc) new_esEs40(xuu106, xuu108, ty_Double) -> new_esEs26(xuu106, xuu108) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt7(xuu92, xuu95, ty_Char) -> new_lt19(xuu92, xuu95) new_esEs6(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_esEs11(xuu4000, xuu300, ty_Char) -> new_esEs15(xuu4000, xuu300) new_esEs6(xuu4000, xuu300, app(ty_Ratio, eea)) -> new_esEs24(xuu4000, xuu300, eea) new_lt7(xuu92, xuu95, app(app(ty_@2, cea), ceb)) -> new_lt5(xuu92, xuu95, cea, ceb) new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ddc) -> new_asAs(new_esEs29(xuu40000, xuu3000, ddc), new_esEs16(xuu40001, xuu3001, ddc)) new_esEs34(xuu40001, xuu3001, ty_Bool) -> new_esEs21(xuu40001, xuu3001) new_compare7(Char(xuu4000), Char(xuu300)) -> new_primCmpNat0(xuu4000, xuu300) new_ltEs7(Left(xuu660), Left(xuu670), ty_Double, bbb) -> new_ltEs17(xuu660, xuu670) new_esEs34(xuu40001, xuu3001, ty_Char) -> new_esEs15(xuu40001, xuu3001) new_esEs38(xuu40001, xuu3001, ty_Float) -> new_esEs22(xuu40001, xuu3001) new_primCmpNat0(Succ(xuu40000), Succ(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) new_lt23(xuu106, xuu108, app(app(ty_@2, cf), cg)) -> new_lt5(xuu106, xuu108, cf, cg) new_compare29(xuu66, xuu67, True, fhc) -> EQ new_lt9(xuu400, xuu30) -> new_esEs12(new_compare9(xuu400, xuu30)) new_lt21(xuu660, xuu670, app(app(app(ty_@3, bgh), bha), bhb)) -> new_lt6(xuu660, xuu670, bgh, bha, bhb) new_compare8(xuu4000, xuu300, app(ty_Ratio, daa)) -> new_compare12(xuu4000, xuu300, daa) new_ltEs24(xuu66, xuu67, ty_@0) -> new_ltEs8(xuu66, xuu67) new_lt8(xuu91, xuu94, ty_Double) -> new_lt18(xuu91, xuu94) new_esEs9(xuu4002, xuu302, ty_Char) -> new_esEs15(xuu4002, xuu302) new_esEs28(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_esEs36(xuu660, xuu670, ty_Ordering) -> new_esEs25(xuu660, xuu670) new_ltEs7(Left(xuu660), Left(xuu670), ty_Float, bbb) -> new_ltEs12(xuu660, xuu670) new_ltEs11(Just(xuu660), Nothing, ffe) -> False new_ltEs19(xuu662, xuu672, app(ty_Ratio, ece)) -> new_ltEs9(xuu662, xuu672, ece) new_ltEs11(Just(xuu660), Just(xuu670), ty_Int) -> new_ltEs4(xuu660, xuu670) new_esEs32(xuu661, xuu671, app(ty_Ratio, ecf)) -> new_esEs24(xuu661, xuu671, ecf) new_compare111(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, True, xuu185, cgd, cge, cgf) -> new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, True, cgd, cge, cgf) new_compare25(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare6(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) new_ltEs11(Nothing, Nothing, ffe) -> True new_esEs10(xuu4001, xuu301, ty_Char) -> new_esEs15(xuu4001, xuu301) new_esEs16(:(xuu40000, xuu40001), [], ddc) -> False new_esEs16([], :(xuu3000, xuu3001), ddc) -> False new_lt15(xuu400, xuu30, bhc, bhd) -> new_esEs12(new_compare17(xuu400, xuu30, bhc, bhd)) new_compare8(xuu4000, xuu300, ty_Float) -> new_compare15(xuu4000, xuu300) new_esEs17(Right(xuu40000), Right(xuu3000), dhd, app(app(ty_Either, dhf), dhg)) -> new_esEs17(xuu40000, xuu3000, dhf, dhg) new_esEs33(xuu660, xuu670, ty_Bool) -> new_esEs21(xuu660, xuu670) new_esEs33(xuu660, xuu670, ty_Char) -> new_esEs15(xuu660, xuu670) new_esEs4(xuu4001, xuu301, ty_Double) -> new_esEs26(xuu4001, xuu301) new_lt22(xuu660, xuu670, ty_Char) -> new_lt19(xuu660, xuu670) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs10(xuu4001, xuu301, ty_Bool) -> new_esEs21(xuu4001, xuu301) new_lt20(xuu661, xuu671, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt6(xuu661, xuu671, bfg, bfh, bga) new_lt21(xuu660, xuu670, app(ty_Ratio, ecg)) -> new_lt11(xuu660, xuu670, ecg) new_ltEs23(xuu107, xuu109, ty_Integer) -> new_ltEs13(xuu107, xuu109) new_lt23(xuu106, xuu108, ty_Double) -> new_lt18(xuu106, xuu108) new_esEs36(xuu660, xuu670, app(app(ty_Either, hc), hd)) -> new_esEs17(xuu660, xuu670, hc, hd) new_ltEs5(xuu66, xuu67, fb) -> new_fsEs(new_compare0(xuu66, xuu67, fb)) new_compare110(xuu151, xuu152, False, dab, dac) -> GT new_lt14(xuu400, xuu30) -> new_esEs12(new_compare16(xuu400, xuu30)) new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) new_primEqNat0(Zero, Zero) -> True new_esEs37(xuu40002, xuu3002, ty_Ordering) -> new_esEs25(xuu40002, xuu3002) new_esEs9(xuu4002, xuu302, ty_Bool) -> new_esEs21(xuu4002, xuu302) new_compare8(xuu4000, xuu300, app(app(app(ty_@3, bg), bh), ca)) -> new_compare19(xuu4000, xuu300, bg, bh, ca) new_ltEs15(True, False) -> False new_esEs15(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_ltEs20(xuu661, xuu671, app(ty_[], fd)) -> new_ltEs5(xuu661, xuu671, fd) new_ltEs23(xuu107, xuu109, app(app(ty_Either, ed), ee)) -> new_ltEs7(xuu107, xuu109, ed, ee) new_compare26(xuu73, xuu74, False, ffc, bhf) -> new_compare10(xuu73, xuu74, new_ltEs22(xuu73, xuu74, ffc), ffc, bhf) new_lt21(xuu660, xuu670, ty_Char) -> new_lt19(xuu660, xuu670) new_esEs31(xuu91, xuu94, app(ty_Ratio, eba)) -> new_esEs24(xuu91, xuu94, eba) new_ltEs24(xuu66, xuu67, ty_Integer) -> new_ltEs13(xuu66, xuu67) new_ltEs24(xuu66, xuu67, ty_Bool) -> new_ltEs15(xuu66, xuu67) new_esEs18(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs21(xuu40000, xuu3000) new_compare11(xuu178, xuu179, xuu180, xuu181, xuu182, xuu183, True, cgd, cge, cgf) -> LT new_esEs18(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs15(xuu40000, xuu3000) new_esEs11(xuu4000, xuu300, ty_Integer) -> new_esEs14(xuu4000, xuu300) new_ltEs7(Right(xuu660), Right(xuu670), bcc, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs16(xuu660, xuu670, bdb, bdc, bdd) new_lt22(xuu660, xuu670, ty_Double) -> new_lt18(xuu660, xuu670) new_asAs(False, xuu124) -> False new_ltEs22(xuu73, xuu74, app(ty_Maybe, caa)) -> new_ltEs11(xuu73, xuu74, caa) new_ltEs14(LT, LT) -> True new_esEs11(xuu4000, xuu300, ty_Bool) -> new_esEs21(xuu4000, xuu300) new_lt22(xuu660, xuu670, app(app(ty_@2, gh), ha)) -> new_lt5(xuu660, xuu670, gh, ha) new_ltEs7(Left(xuu660), Left(xuu670), app(ty_Maybe, bbe), bbb) -> new_ltEs11(xuu660, xuu670, bbe) new_esEs38(xuu40001, xuu3001, app(app(ty_@2, fdd), fde)) -> new_esEs23(xuu40001, xuu3001, fdd, fde) new_esEs40(xuu106, xuu108, ty_Float) -> new_esEs22(xuu106, xuu108) new_esEs4(xuu4001, xuu301, ty_Float) -> new_esEs22(xuu4001, xuu301) new_esEs14(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs4(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) new_esEs18(Just(xuu40000), Just(xuu3000), app(ty_[], deg)) -> new_esEs16(xuu40000, xuu3000, deg) new_esEs5(xuu4000, xuu300, ty_Double) -> new_esEs26(xuu4000, xuu300) new_ltEs7(Left(xuu660), Left(xuu670), ty_Int, bbb) -> new_ltEs4(xuu660, xuu670) new_esEs7(xuu4000, xuu300, app(ty_Ratio, dbh)) -> new_esEs24(xuu4000, xuu300, dbh) new_esEs25(EQ, EQ) -> True new_esEs17(Left(xuu40000), Left(xuu3000), ty_@0, dga) -> new_esEs20(xuu40000, xuu3000) new_esEs34(xuu40001, xuu3001, app(ty_[], eef)) -> new_esEs16(xuu40001, xuu3001, eef) new_esEs9(xuu4002, xuu302, ty_Integer) -> new_esEs14(xuu4002, xuu302) new_ltEs15(False, False) -> True new_compare12(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Integer) -> new_compare16(new_sr0(xuu4000, xuu301), new_sr0(xuu300, xuu4001)) new_esEs37(xuu40002, xuu3002, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs19(xuu40002, xuu3002, fbg, fbh, fca) new_ltEs23(xuu107, xuu109, ty_Ordering) -> new_ltEs14(xuu107, xuu109) new_esEs35(xuu40000, xuu3000, ty_@0) -> new_esEs20(xuu40000, xuu3000) new_esEs11(xuu4000, xuu300, app(ty_[], ebb)) -> new_esEs16(xuu4000, xuu300, ebb) new_ltEs23(xuu107, xuu109, app(app(ty_@2, ea), eb)) -> new_ltEs10(xuu107, xuu109, ea, eb) new_esEs39(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) new_lt13(xuu400, xuu30) -> new_esEs12(new_compare15(xuu400, xuu30)) new_lt7(xuu92, xuu95, ty_Double) -> new_lt18(xuu92, xuu95) new_ltEs11(Just(xuu660), Just(xuu670), ty_Float) -> new_ltEs12(xuu660, xuu670) The set Q consists of the following terms: new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Float) new_lt22(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Int) new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Bool) new_compare29(x0, x1, False, x2) new_lt20(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_[], x2)) new_compare8(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Zero) new_ltEs9(x0, x1, x2) new_ltEs20(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Int) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_lt7(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Int) new_compare27(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs23(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(@0, @0) new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Right(x0), Right(x1), x2, ty_Char) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, EQ) new_esEs29(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs17(Right(x0), Right(x1), x2, ty_Bool) new_ltEs17(x0, x1) new_ltEs20(x0, x1, ty_Integer) new_lt13(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Float) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(LT, LT) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare114(x0, x1, True, x2) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Double) new_esEs25(LT, LT) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_@0) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs15(False, True) new_esEs16([], :(x0, x1), x2) new_ltEs15(True, False) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs22(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(True, True) new_compare18(EQ, LT) new_compare18(LT, EQ) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_lt10(x0, x1, x2) new_esEs36(x0, x1, ty_Int) new_primMulNat0(Zero, Succ(x0)) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs18(Nothing, Nothing, x0) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare18(LT, LT) new_primMulInt(Neg(x0), Neg(x1)) new_esEs6(x0, x1, ty_@0) new_esEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Int) new_lt23(x0, x1, app(ty_[], x2)) new_compare113(x0, x1, x2, x3, True, x4, x5) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Int) new_esEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs25(GT, GT) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, x2) new_lt23(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Integer) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Integer) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_sr(x0, x1) new_compare18(GT, GT) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_esEs36(x0, x1, ty_Bool) new_fsEs(x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(True, True) new_compare14(Just(x0), Nothing, x1) new_esEs35(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare114(x0, x1, False, x2) new_lt23(x0, x1, ty_Ordering) new_esEs18(Just(x0), Just(x1), ty_Float) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Float) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0([], [], x0) new_ltEs22(x0, x1, ty_Char) new_compare29(x0, x1, True, x2) new_lt23(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False, x2, x3) new_ltEs20(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare8(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(x0, x1, ty_Double) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare6(x0, x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(@2(x0, x1), @2(x2, x3), x4, x5) new_asAs(False, x0) new_esEs32(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Succ(x0)) new_esEs39(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3) new_compare18(EQ, GT) new_compare18(GT, EQ) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs24(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_lt8(x0, x1, ty_Char) new_compare28(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs34(x0, x1, ty_Float) new_esEs39(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Int) new_esEs12(GT) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_primCmpNat0(Zero, Succ(x0)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2, x3) new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs11(Just(x0), Just(x1), ty_@0) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs13(x0, x1) new_compare5(True, True) new_esEs9(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Integer) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, app(ty_[], x2)) new_esEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs30(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs11(Nothing, Just(x0), x1) new_esEs6(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_esEs34(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Ordering) new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt22(x0, x1, ty_Bool) new_ltEs6(x0, x1) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_lt22(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs18(Just(x0), Just(x1), ty_Integer) new_lt17(x0, x1) new_esEs24(:%(x0, x1), :%(x2, x3), x4) new_esEs4(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Char) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_lt20(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1) new_lt20(x0, x1, ty_Double) new_ltEs18(x0, x1, ty_Bool) new_lt8(x0, x1, ty_Bool) new_primPlusNat0(Succ(x0), Zero) new_compare112(x0, x1, x2, x3, True, x4, x5, x6) new_esEs30(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs18(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Float) new_compare25(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs40(x0, x1, ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs29(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_esEs40(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_pePe(True, x0) new_esEs29(x0, x1, ty_Bool) new_compare14(Just(x0), Just(x1), x2) new_ltEs19(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs15(False, False) new_esEs10(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs18(Just(x0), Just(x1), ty_Ordering) new_lt8(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Zero) new_esEs4(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs27(x0, x1, ty_Integer) new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Int) new_lt21(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Integer) new_compare16(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, x2) new_esEs17(Left(x0), Left(x1), ty_Float, x2) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Char) new_lt22(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs19(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs14(Integer(x0), Integer(x1)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) new_esEs40(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Bool) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs17(Left(x0), Left(x1), ty_Char, x2) new_ltEs24(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Ordering) new_lt6(x0, x1, x2, x3, x4) new_lt21(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs18(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Integer) new_esEs26(Double(x0, x1), Double(x2, x3)) new_esEs7(x0, x1, ty_Int) new_esEs34(x0, x1, app(ty_[], x2)) new_compare18(LT, GT) new_compare18(GT, LT) new_ltEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Int) new_esEs5(x0, x1, ty_Char) new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs7(x0, x1, ty_Char) new_esEs21(False, True) new_esEs21(True, False) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_esEs18(Just(x0), Just(x1), ty_@0) new_esEs35(x0, x1, ty_Int) new_asAs(True, x0) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(x0, x1, True, x2, x3) new_esEs10(x0, x1, ty_@0) new_esEs17(Left(x0), Right(x1), x2, x3) new_esEs17(Right(x0), Left(x1), x2, x3) new_esEs39(x0, x1, ty_Ordering) new_esEs17(Left(x0), Left(x1), ty_Int, x2) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Int) new_lt7(x0, x1, ty_Double) new_compare110(x0, x1, True, x2, x3) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs40(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Char) new_ltEs14(EQ, EQ) new_lt4(x0, x1) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Bool) new_esEs18(Nothing, Just(x0), x1) new_esEs39(x0, x1, ty_Char) new_compare9(@0, @0) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Bool) new_esEs18(Just(x0), Just(x1), ty_Bool) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Float) new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Char) new_compare25(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_compare7(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), ty_Double) new_lt7(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Char) new_lt7(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs33(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Double) new_ltEs18(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Ordering) new_primPlusNat0(Zero, Zero) new_esEs34(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs18(Just(x0), Nothing, x1) new_esEs25(EQ, EQ) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_lt7(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Char) new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs22(Float(x0, x1), Float(x2, x3)) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt18(x0, x1) new_esEs33(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, ty_Integer) new_esEs40(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Bool) new_ltEs8(x0, x1) new_esEs18(Just(x0), Just(x1), ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs38(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Zero) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Bool) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs25(LT, GT) new_esEs25(GT, LT) new_esEs37(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs11(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs18(Just(x0), Just(x1), ty_Int) new_esEs30(x0, x1, ty_Float) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs40(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Bool) new_esEs16([], [], x0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Char) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs10(x0, x1, ty_Ordering) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0([], :(x0, x1), x2) new_esEs5(x0, x1, ty_Ordering) new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_compare8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_ltEs11(Just(x0), Nothing, x1) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Float) new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Char) new_lt8(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_compare5(False, True) new_compare5(True, False) new_esEs10(x0, x1, ty_Integer) new_esEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs40(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, LT) new_ltEs23(x0, x1, ty_@0) new_compare8(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, ty_Integer) new_esEs16(:(x0, x1), [], x2) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Integer) new_ltEs14(GT, GT) new_esEs30(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Bool) new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs21(False, False) new_compare14(Nothing, Nothing, x0) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_lt21(x0, x1, ty_@0) new_compare26(x0, x1, False, x2, x3) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs38(x0, x1, ty_Integer) new_compare18(EQ, EQ) new_esEs30(x0, x1, ty_Int) new_lt8(x0, x1, app(ty_Ratio, x2)) new_compare8(x0, x1, ty_Int) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Nothing, Nothing, x0) new_compare17(Right(x0), Right(x1), x2, x3) new_compare113(x0, x1, x2, x3, False, x4, x5) new_esEs4(x0, x1, ty_Double) new_lt15(x0, x1, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Double) new_compare5(False, False) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs23(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs6(x0, x1, ty_Bool) new_pePe(False, x0) new_esEs40(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Float) new_esEs7(x0, x1, ty_@0) new_esEs18(Just(x0), Just(x1), ty_Double) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(EQ) new_ltEs11(Just(x0), Just(x1), ty_Char) new_esEs9(x0, x1, ty_Float) new_compare8(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_compare14(Nothing, Just(x0), x1) new_esEs35(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_esEs17(Left(x0), Left(x1), ty_@0, x2) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_compare0(:(x0, x1), :(x2, x3), x4) new_not(False) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Left(x0), Left(x1), ty_Double, x2) new_compare8(x0, x1, ty_Char) new_lt20(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT) new_ltEs22(x0, x1, ty_Ordering) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(Char(x0), Char(x1)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1) new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, x2, x3, False, x4, x5, x6) new_compare8(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) new_esEs5(x0, x1, ty_Bool) new_lt14(x0, x1) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, True, x2, x3) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(Left(x0), Right(x1), x2, x3) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare17(Right(x0), Left(x1), x2, x3) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_lt8(x0, x1, ty_Double) new_compare25(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare25(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs6(x0, x1, ty_Ordering) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr0(Integer(x0), Integer(x1)) new_compare17(Left(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Double) new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Float) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, ty_Bool) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Int) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs17(Right(x0), Right(x1), x2, ty_Integer) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, LT) new_esEs29(x0, x1, ty_Double) new_ltEs14(LT, EQ) new_esEs11(x0, x1, ty_Char) new_lt8(x0, x1, app(ty_[], x2)) new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_primCmpNat0(Zero, Zero) new_lt21(x0, x1, ty_Double) new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt8(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_@0) 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_ltEs(xuu66, xuu67, fb) -> new_compare(xuu66, xuu67, fb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt0(@2(xuu4000, xuu4001), @2(xuu300, xuu301), cb, cc) -> new_compare20(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs5(xuu4000, xuu300, cb), new_esEs4(xuu4001, xuu301, cc)), cb, cc) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_lt3(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cca, ccb, ccc) -> new_compare24(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs11(xuu4000, xuu300, cca), new_asAs(new_esEs10(xuu4001, xuu301, ccb), new_esEs9(xuu4002, xuu302, ccc))), cca, ccb, ccc) 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_compare4(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cca, ccb, ccc) -> new_compare24(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs11(xuu4000, xuu300, cca), new_asAs(new_esEs10(xuu4001, xuu301, ccb), new_esEs9(xuu4002, xuu302, ccc))), cca, ccb, ccc) 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_lt1(Just(xuu4000), Just(xuu300), fa) -> new_compare21(xuu4000, xuu300, new_esEs6(xuu4000, xuu300, fa), fa) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare2(Just(xuu4000), Just(xuu300), fa) -> new_compare21(xuu4000, xuu300, new_esEs6(xuu4000, xuu300, fa), fa) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_primCompAux(xuu4000, xuu300, xuu45, app(ty_Maybe, bd)) -> new_compare2(xuu4000, xuu300, bd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs1(Just(xuu660), Just(xuu670), app(ty_[], hh)) -> new_ltEs(xuu660, xuu670, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(xuu660), Just(xuu670), app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs3(xuu660, xuu670, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt2(Left(xuu4000), Left(xuu300), bhc, bhd) -> new_compare22(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, bhc), bhc, bhd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt2(Right(xuu4000), Right(xuu300), bhc, bhd) -> new_compare23(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, bhd), bhc, bhd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare3(Left(xuu4000), Left(xuu300), bhc, bhd) -> new_compare22(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, bhc), bhc, bhd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare3(Right(xuu4000), Right(xuu300), bhc, bhd) -> new_compare23(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, bhd), bhc, bhd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, app(ty_[], bdg)) -> new_ltEs(xuu662, xuu672, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs3(xuu662, xuu672, bee, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(Just(xuu660), Just(xuu670), app(ty_Maybe, bac)) -> new_ltEs1(xuu660, xuu670, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, app(ty_Maybe, beb)) -> new_ltEs1(xuu662, xuu672, beb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_primCompAux(xuu4000, xuu300, new_compare0(xuu4001, xuu301, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_compare(xuu4001, xuu301, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_primCompAux(xuu4000, xuu300, new_compare0(xuu4001, xuu301, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_compare(xuu4001, xuu301, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs1(Just(xuu660), Just(xuu670), app(app(ty_Either, bad), bae)) -> new_ltEs2(xuu660, xuu670, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(xuu660), Just(xuu670), app(app(ty_@2, baa), bab)) -> new_ltEs0(xuu660, xuu670, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, app(app(ty_Either, bec), bed)) -> new_ltEs2(xuu662, xuu672, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, app(ty_[], fd)) -> new_ltEs(xuu661, xuu671, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs3(xuu661, xuu671, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, bdf, app(app(ty_@2, bdh), bea)) -> new_ltEs0(xuu662, xuu672, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, app(ty_Maybe, fh)) -> new_ltEs1(xuu661, xuu671, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, app(app(ty_Either, ga), gb)) -> new_ltEs2(xuu661, xuu671, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), fc, app(app(ty_@2, ff), fg)) -> new_ltEs0(xuu661, xuu671, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare23(xuu80, xuu81, False, cag, app(ty_[], cah)) -> new_ltEs(xuu80, xuu81, cah) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(xuu80, xuu81, False, cag, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs3(xuu80, xuu81, cbf, cbg, cbh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(xuu80, xuu81, False, cag, app(ty_Maybe, cbc)) -> new_ltEs1(xuu80, xuu81, cbc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(xuu80, xuu81, False, cag, app(app(ty_Either, cbd), cbe)) -> new_ltEs2(xuu80, xuu81, cbd, cbe) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(xuu80, xuu81, False, cag, app(app(ty_@2, cba), cbb)) -> new_ltEs0(xuu80, xuu81, cba, cbb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_primCompAux(xuu4000, xuu300, xuu45, app(app(ty_Either, be), bf)) -> new_compare3(xuu4000, xuu300, be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare1(@2(xuu4000, xuu4001), @2(xuu300, xuu301), cb, cc) -> new_compare20(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs5(xuu4000, xuu300, cb), new_esEs4(xuu4001, xuu301, cc)), cb, cc) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), app(ty_Maybe, hb), gg) -> new_lt1(xuu660, xuu670, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(xuu106, xuu107, xuu108, xuu109, False, dg, app(ty_[], dh)) -> new_ltEs(xuu107, xuu109, dh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare20(xuu106, xuu107, xuu108, xuu109, False, dg, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs3(xuu107, xuu109, ef, eg, eh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare20(xuu106, xuu107, xuu108, xuu109, False, dg, app(ty_Maybe, ec)) -> new_ltEs1(xuu107, xuu109, ec) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare20(xuu106, xuu107, xuu108, xuu109, False, dg, app(app(ty_Either, ed), ee)) -> new_ltEs2(xuu107, xuu109, ed, ee) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(ty_@2, gh), ha), gg) -> new_lt0(xuu660, xuu670, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(xuu106, xuu107, xuu108, xuu109, False, dg, app(app(ty_@2, ea), eb)) -> new_ltEs0(xuu107, xuu109, ea, eb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare20(xuu106, xuu107, xuu108, xuu109, False, app(ty_Maybe, da), ce) -> new_lt1(xuu106, xuu108, da) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare20(xuu106, xuu107, xuu108, xuu109, False, app(app(ty_@2, cf), cg), ce) -> new_lt0(xuu106, xuu108, cf, cg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(ty_Either, hc), hd), gg) -> new_lt2(xuu660, xuu670, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(xuu106, xuu107, xuu108, xuu109, False, app(app(ty_Either, db), dc), ce) -> new_lt2(xuu106, xuu108, db, dc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare22(xuu73, xuu74, False, app(ty_[], bhe), bhf) -> new_ltEs(xuu73, xuu74, bhe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, app(ty_[], ccf)) -> new_ltEs(xuu93, xuu96, ccf) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare22(xuu73, xuu74, False, app(app(app(ty_@3, cad), cae), caf), bhf) -> new_ltEs3(xuu73, xuu74, cad, cae, caf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs3(xuu93, xuu96, cdd, cde, cdf) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare22(xuu73, xuu74, False, app(ty_Maybe, caa), bhf) -> new_ltEs1(xuu73, xuu74, caa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, app(ty_Maybe, cda)) -> new_ltEs1(xuu93, xuu96, cda) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare22(xuu73, xuu74, False, app(app(ty_Either, cab), cac), bhf) -> new_ltEs2(xuu73, xuu74, cab, cac) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, app(app(ty_Either, cdb), cdc)) -> new_ltEs2(xuu93, xuu96, cdb, cdc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(xuu73, xuu74, False, app(app(ty_@2, bhg), bhh), bhf) -> new_ltEs0(xuu73, xuu74, bhg, bhh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, cce, app(app(ty_@2, ccg), cch)) -> new_ltEs0(xuu93, xuu96, ccg, cch) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), app(ty_[], gf), gg) -> new_lt(xuu660, xuu670, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(app(ty_@3, he), hf), hg), gg) -> new_lt3(xuu660, xuu670, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare20(xuu106, xuu107, xuu108, xuu109, False, app(ty_[], cd), ce) -> new_lt(xuu106, xuu108, cd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare20(xuu106, xuu107, xuu108, xuu109, False, app(app(app(ty_@3, dd), de), df), ce) -> new_lt3(xuu106, xuu108, dd, de, df) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare21(xuu66, xuu67, False, app(ty_[], fb)) -> new_compare(xuu66, xuu67, fb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu4000, xuu300, xuu45, app(app(ty_@2, bb), bc)) -> new_compare1(xuu4000, xuu300, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(xuu4000, xuu300, xuu45, app(ty_[], ba)) -> new_compare(xuu4000, xuu300, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu4000, xuu300, xuu45, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(xuu4000, xuu300, bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Right(xuu660), Right(xuu670), False, app(app(ty_Either, bcc), app(ty_[], bcd))) -> new_ltEs(xuu660, xuu670, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, fc), app(ty_[], fd))) -> new_ltEs(xuu661, xuu671, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), bdf), app(ty_[], bdg))) -> new_ltEs(xuu662, xuu672, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(ty_[], hh))) -> new_ltEs(xuu660, xuu670, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(ty_[], bba)), bbb)) -> new_ltEs(xuu660, xuu670, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(xuu660), Left(xuu670), app(ty_[], bba), bbb) -> new_ltEs(xuu660, xuu670, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(xuu660), Right(xuu670), bcc, app(ty_[], bcd)) -> new_ltEs(xuu660, xuu670, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(xuu660), Right(xuu670), False, app(app(ty_Either, bcc), app(app(app(ty_@3, bdb), bdc), bdd))) -> new_ltEs3(xuu660, xuu670, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, fc), app(app(app(ty_@3, gc), gd), ge))) -> new_ltEs3(xuu661, xuu671, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(app(ty_@3, baf), bag), bah))) -> new_ltEs3(xuu660, xuu670, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), bdf), app(app(app(ty_@3, bee), bef), beg))) -> new_ltEs3(xuu662, xuu672, bee, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(app(ty_@3, bbh), bca), bcb)), bbb)) -> new_ltEs3(xuu660, xuu670, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Right(xuu660), Right(xuu670), bcc, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs3(xuu660, xuu670, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Left(xuu660), Left(xuu670), app(app(app(ty_@3, bbh), bca), bcb), bbb) -> new_ltEs3(xuu660, xuu670, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), bdf), app(ty_Maybe, beb))) -> new_ltEs1(xuu662, xuu672, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, fc), app(ty_Maybe, fh))) -> new_ltEs1(xuu661, xuu671, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(ty_Maybe, bac))) -> new_ltEs1(xuu660, xuu670, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(ty_Maybe, bbe)), bbb)) -> new_ltEs1(xuu660, xuu670, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(xuu660), Right(xuu670), False, app(app(ty_Either, bcc), app(ty_Maybe, bcg))) -> new_ltEs1(xuu660, xuu670, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), bdf), app(app(ty_Either, bec), bed))) -> new_ltEs2(xuu662, xuu672, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, fc), app(app(ty_Either, ga), gb))) -> new_ltEs2(xuu661, xuu671, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(ty_Either, bbf), bbg)), bbb)) -> new_ltEs2(xuu660, xuu670, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(xuu660), Right(xuu670), False, app(app(ty_Either, bcc), app(app(ty_Either, bch), bda))) -> new_ltEs2(xuu660, xuu670, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(ty_Either, bad), bae))) -> new_ltEs2(xuu660, xuu670, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, fc), app(app(ty_@2, ff), fg))) -> new_ltEs0(xuu661, xuu671, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), bdf), app(app(ty_@2, bdh), bea))) -> new_ltEs0(xuu662, xuu672, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(ty_@2, baa), bab))) -> new_ltEs0(xuu660, xuu670, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(xuu660), Right(xuu670), False, app(app(ty_Either, bcc), app(app(ty_@2, bce), bcf))) -> new_ltEs0(xuu660, xuu670, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(ty_@2, bbc), bbd)), bbb)) -> new_ltEs0(xuu660, xuu670, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), app(ty_Maybe, bfd)), bfa)) -> new_lt1(xuu661, xuu671, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(ty_Maybe, hb)), gg)) -> new_lt1(xuu660, xuu670, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(ty_Maybe, bge)), bdf), bfa)) -> new_lt1(xuu660, xuu670, bge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(ty_@2, gh), ha)), gg)) -> new_lt0(xuu660, xuu670, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), app(app(ty_@2, bfb), bfc)), bfa)) -> new_lt0(xuu661, xuu671, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(ty_@2, bgc), bgd)), bdf), bfa)) -> new_lt0(xuu660, xuu670, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), app(app(ty_Either, bfe), bff)), bfa)) -> new_lt2(xuu661, xuu671, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(ty_Either, hc), hd)), gg)) -> new_lt2(xuu660, xuu670, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(ty_Either, bgf), bgg)), bdf), bfa)) -> new_lt2(xuu660, xuu670, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(ty_[], bgb)), bdf), bfa)) -> new_lt(xuu660, xuu670, bgb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), app(ty_[], beh)), bfa)) -> new_lt(xuu661, xuu671, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(ty_[], gf)), gg)) -> new_lt(xuu660, xuu670, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(app(ty_@3, bgh), bha), bhb)), bdf), bfa)) -> new_lt3(xuu660, xuu670, bgh, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(app(ty_@3, he), hf), hg)), gg)) -> new_lt3(xuu660, xuu670, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, bde), app(app(app(ty_@3, bfg), bfh), bga)), bfa)) -> new_lt3(xuu661, xuu671, bfg, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(ty_Maybe, bge), bdf, bfa) -> new_lt1(xuu660, xuu670, bge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, app(ty_Maybe, bfd), bfa) -> new_lt1(xuu661, xuu671, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(ty_@2, bgc), bgd), bdf, bfa) -> new_lt0(xuu660, xuu670, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, app(app(ty_@2, bfb), bfc), bfa) -> new_lt0(xuu661, xuu671, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(ty_Either, bgf), bgg), bdf, bfa) -> new_lt2(xuu660, xuu670, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, app(app(ty_Either, bfe), bff), bfa) -> new_lt2(xuu661, xuu671, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, app(ty_[], beh), bfa) -> new_lt(xuu661, xuu671, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(ty_[], bgb), bdf, bfa) -> new_lt(xuu660, xuu670, bgb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(app(ty_@3, bgh), bha), bhb), bdf, bfa) -> new_lt3(xuu660, xuu670, bgh, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), bde, app(app(app(ty_@3, bfg), bfh), bga), bfa) -> new_lt3(xuu661, xuu671, bfg, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Right(xuu660), Right(xuu670), bcc, app(ty_Maybe, bcg)) -> new_ltEs1(xuu660, xuu670, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(xuu660), Left(xuu670), app(ty_Maybe, bbe), bbb) -> new_ltEs1(xuu660, xuu670, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(xuu660), Right(xuu670), bcc, app(app(ty_Either, bch), bda)) -> new_ltEs2(xuu660, xuu670, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(xuu660), Left(xuu670), app(app(ty_Either, bbf), bbg), bbb) -> new_ltEs2(xuu660, xuu670, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(xuu660), Right(xuu670), bcc, app(app(ty_@2, bce), bcf)) -> new_ltEs0(xuu660, xuu670, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(xuu660), Left(xuu670), app(app(ty_@2, bbc), bbd), bbb) -> new_ltEs0(xuu660, xuu670, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, app(ty_Maybe, cfd), cce, cdh) -> new_lt1(xuu91, xuu94, cfd) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, app(ty_Maybe, cec), cdh) -> new_lt1(xuu92, xuu95, cec) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, app(app(ty_@2, cea), ceb), cdh) -> new_lt0(xuu92, xuu95, cea, ceb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, app(app(ty_@2, cfb), cfc), cce, cdh) -> new_lt0(xuu91, xuu94, cfb, cfc) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, app(app(ty_Either, ced), cee), cdh) -> new_lt2(xuu92, xuu95, ced, cee) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, app(app(ty_Either, cfe), cff), cce, cdh) -> new_lt2(xuu91, xuu94, cfe, cff) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, app(ty_[], cfa), cce, cdh) -> new_lt(xuu91, xuu94, cfa) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, app(ty_[], cdg), cdh) -> new_lt(xuu92, xuu95, cdg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, app(app(app(ty_@3, cfg), cfh), cga), cce, cdh) -> new_lt3(xuu91, xuu94, cfg, cfh, cga) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare24(xuu91, xuu92, xuu93, xuu94, xuu95, xuu96, False, ccd, app(app(app(ty_@3, cef), ceg), ceh), cdh) -> new_lt3(xuu92, xuu95, cef, ceg, ceh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) 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_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu39200), Succ(xuu12600)) -> new_primMinusNat(xuu39200, xuu12600) R is empty. Q is empty. 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_primMinusNat(Succ(xuu39200), Succ(xuu12600)) -> new_primMinusNat(xuu39200, xuu12600) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu39200), Succ(xuu12600)) -> new_primPlusNat(xuu39200, xuu12600) 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_primPlusNat(Succ(xuu39200), Succ(xuu12600)) -> new_primPlusNat(xuu39200, xuu12600) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (43) YES