33.54/17.34 YES 36.12/18.05 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 36.12/18.05 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 36.12/18.05 36.12/18.05 36.12/18.05 H-Termination with start terms of the given HASKELL could be proven: 36.12/18.05 36.12/18.05 (0) HASKELL 36.12/18.05 (1) LR [EQUIVALENT, 0 ms] 36.12/18.05 (2) HASKELL 36.12/18.05 (3) CR [EQUIVALENT, 0 ms] 36.12/18.05 (4) HASKELL 36.12/18.05 (5) IFR [EQUIVALENT, 0 ms] 36.12/18.05 (6) HASKELL 36.12/18.05 (7) BR [EQUIVALENT, 3 ms] 36.12/18.05 (8) HASKELL 36.12/18.05 (9) COR [EQUIVALENT, 0 ms] 36.12/18.05 (10) HASKELL 36.12/18.05 (11) LetRed [EQUIVALENT, 4 ms] 36.12/18.05 (12) HASKELL 36.12/18.05 (13) NumRed [SOUND, 0 ms] 36.12/18.05 (14) HASKELL 36.12/18.05 (15) Narrow [SOUND, 0 ms] 36.12/18.05 (16) AND 36.12/18.05 (17) QDP 36.12/18.05 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 36.12/18.05 (19) YES 36.12/18.05 (20) QDP 36.12/18.05 (21) QDPSizeChangeProof [EQUIVALENT, 9 ms] 36.12/18.05 (22) YES 36.12/18.05 (23) QDP 36.12/18.05 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 36.12/18.05 (25) YES 36.12/18.05 (26) QDP 36.12/18.05 (27) QDPSizeChangeProof [EQUIVALENT, 140 ms] 36.12/18.05 (28) YES 36.12/18.05 (29) QDP 36.12/18.05 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 36.12/18.05 (31) YES 36.12/18.05 (32) QDP 36.12/18.05 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 36.12/18.05 (34) YES 36.12/18.05 (35) QDP 36.12/18.05 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 36.12/18.05 (37) YES 36.12/18.05 (38) QDP 36.12/18.05 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 36.12/18.05 (40) YES 36.12/18.05 (41) QDP 36.12/18.05 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 36.12/18.05 (43) YES 36.12/18.05 36.12/18.05 36.12/18.05 ---------------------------------------- 36.12/18.05 36.12/18.05 (0) 36.12/18.05 Obligation: 36.12/18.05 mainModule Main 36.12/18.05 module FiniteMap where { 36.12/18.05 import qualified Main; 36.12/18.05 import qualified Maybe; 36.12/18.05 import qualified Prelude; 36.12/18.05 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 36.12/18.05 36.12/18.05 instance (Eq a, Eq b) => Eq FiniteMap b a where { 36.12/18.05 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.12/18.05 } 36.12/18.05 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 36.12/18.05 addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; 36.12/18.05 36.12/18.05 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 36.12/18.05 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 36.12/18.05 add fmap (key,elt) = addToFM_C combiner fmap key elt; 36.12/18.05 }; 36.12/18.05 36.12/18.05 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 36.12/18.05 addToFM_C combiner EmptyFM key elt = unitFM key elt; 36.12/18.05 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 36.12/18.05 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 36.12/18.05 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 36.12/18.05 36.12/18.05 emptyFM :: FiniteMap a b; 36.12/18.05 emptyFM = EmptyFM; 36.12/18.05 36.12/18.05 findMax :: FiniteMap a b -> (a,b); 36.12/18.05 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 36.12/18.05 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 36.12/18.05 36.12/18.05 findMin :: FiniteMap a b -> (a,b); 36.12/18.05 findMin (Branch key elt _ EmptyFM _) = (key,elt); 36.12/18.05 findMin (Branch key elt _ fm_l _) = findMin fm_l; 36.12/18.05 36.12/18.05 fmToList :: FiniteMap b a -> [(b,a)]; 36.12/18.05 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 36.12/18.05 36.12/18.05 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 36.12/18.05 foldFM k z EmptyFM = z; 36.12/18.05 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.12/18.05 36.12/18.05 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.12/18.05 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 36.12/18.05 | size_r > sIZE_RATIO * size_l = case fm_R of { 36.12/18.05 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 36.12/18.05 | otherwise -> double_L fm_L fm_R; 36.12/18.05 } 36.12/18.05 | size_l > sIZE_RATIO * size_r = case fm_L of { 36.12/18.05 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 36.12/18.05 | otherwise -> double_R fm_L fm_R; 36.12/18.05 } 36.12/18.05 | otherwise = mkBranch 2 key elt fm_L fm_R where { 36.12/18.05 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); 36.12/18.05 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); 36.12/18.05 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; 36.12/18.05 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); 36.12/18.05 size_l = sizeFM fm_L; 36.12/18.05 size_r = sizeFM fm_R; 36.12/18.05 }; 36.12/18.05 36.12/18.05 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.12/18.05 mkBranch which key elt fm_l fm_r = let { 36.12/18.05 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.12/18.05 } in result where { 36.12/18.05 balance_ok = True; 36.12/18.05 left_ok = case fm_l of { 36.12/18.05 EmptyFM-> True; 36.12/18.05 Branch left_key _ _ _ _-> let { 36.12/18.05 biggest_left_key = fst (findMax fm_l); 36.12/18.05 } in biggest_left_key < key; 36.12/18.05 } ; 36.12/18.05 left_size = sizeFM fm_l; 36.12/18.05 right_ok = case fm_r of { 36.12/18.05 EmptyFM-> True; 36.12/18.05 Branch right_key _ _ _ _-> let { 36.12/18.05 smallest_right_key = fst (findMin fm_r); 36.12/18.05 } in key < smallest_right_key; 36.12/18.05 } ; 36.12/18.05 right_size = sizeFM fm_r; 36.12/18.05 unbox :: Int -> Int; 36.12/18.05 unbox x = x; 36.12/18.05 }; 36.12/18.05 36.12/18.05 sIZE_RATIO :: Int; 36.12/18.05 sIZE_RATIO = 5; 36.12/18.05 36.12/18.05 sizeFM :: FiniteMap a b -> Int; 36.12/18.05 sizeFM EmptyFM = 0; 36.12/18.05 sizeFM (Branch _ _ size _ _) = size; 36.12/18.05 36.12/18.05 unitFM :: b -> a -> FiniteMap b a; 36.12/18.05 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 36.12/18.05 36.12/18.05 } 36.12/18.05 module Maybe where { 36.12/18.05 import qualified FiniteMap; 36.12/18.05 import qualified Main; 36.12/18.05 import qualified Prelude; 36.12/18.05 } 36.12/18.05 module Main where { 36.12/18.05 import qualified FiniteMap; 36.12/18.05 import qualified Maybe; 36.12/18.05 import qualified Prelude; 36.12/18.05 } 36.12/18.05 36.12/18.05 ---------------------------------------- 36.12/18.05 36.12/18.05 (1) LR (EQUIVALENT) 36.12/18.05 Lambda Reductions: 36.12/18.05 The following Lambda expression 36.12/18.05 "\oldnew->new" 36.12/18.05 is transformed to 36.12/18.05 "addListToFM0 old new = new; 36.12/18.05 " 36.12/18.05 The following Lambda expression 36.12/18.05 "\keyeltrest->(key,elt) : rest" 36.12/18.05 is transformed to 36.12/18.05 "fmToList0 key elt rest = (key,elt) : rest; 36.12/18.05 " 36.12/18.05 36.12/18.05 ---------------------------------------- 36.12/18.05 36.12/18.05 (2) 36.12/18.05 Obligation: 36.12/18.05 mainModule Main 36.12/18.05 module FiniteMap where { 36.12/18.05 import qualified Main; 36.12/18.05 import qualified Maybe; 36.12/18.05 import qualified Prelude; 36.12/18.05 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 36.12/18.05 36.12/18.05 instance (Eq a, Eq b) => Eq FiniteMap b a where { 36.12/18.05 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.12/18.05 } 36.12/18.05 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 36.12/18.05 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 36.12/18.05 36.12/18.05 addListToFM0 old new = new; 36.12/18.05 36.12/18.05 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 36.12/18.05 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 36.12/18.05 add fmap (key,elt) = addToFM_C combiner fmap key elt; 36.12/18.05 }; 36.12/18.05 36.12/18.05 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 36.12/18.05 addToFM_C combiner EmptyFM key elt = unitFM key elt; 36.12/18.05 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 36.12/18.05 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 36.12/18.05 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 36.12/18.05 36.12/18.05 emptyFM :: FiniteMap b a; 36.12/18.05 emptyFM = EmptyFM; 36.12/18.05 36.12/18.05 findMax :: FiniteMap b a -> (b,a); 36.12/18.05 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 36.12/18.05 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 36.12/18.05 36.12/18.05 findMin :: FiniteMap a b -> (a,b); 36.12/18.05 findMin (Branch key elt _ EmptyFM _) = (key,elt); 36.12/18.05 findMin (Branch key elt _ fm_l _) = findMin fm_l; 36.12/18.05 36.12/18.05 fmToList :: FiniteMap a b -> [(a,b)]; 36.12/18.05 fmToList fm = foldFM fmToList0 [] fm; 36.12/18.05 36.12/18.05 fmToList0 key elt rest = (key,elt) : rest; 36.12/18.05 36.12/18.05 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 36.12/18.05 foldFM k z EmptyFM = z; 36.12/18.05 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.12/18.05 36.12/18.05 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.12/18.05 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 36.12/18.05 | size_r > sIZE_RATIO * size_l = case fm_R of { 36.12/18.05 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 36.12/18.05 | otherwise -> double_L fm_L fm_R; 36.12/18.05 } 36.12/18.05 | size_l > sIZE_RATIO * size_r = case fm_L of { 36.12/18.05 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 36.12/18.05 | otherwise -> double_R fm_L fm_R; 36.12/18.05 } 36.12/18.05 | otherwise = mkBranch 2 key elt fm_L fm_R where { 36.12/18.05 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); 36.57/18.17 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); 36.57/18.17 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; 36.57/18.17 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); 36.57/18.17 size_l = sizeFM fm_L; 36.57/18.17 size_r = sizeFM fm_R; 36.57/18.17 }; 36.57/18.17 36.57/18.17 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.57/18.17 mkBranch which key elt fm_l fm_r = let { 36.57/18.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.57/18.17 } in result where { 36.57/18.17 balance_ok = True; 36.57/18.17 left_ok = case fm_l of { 36.57/18.17 EmptyFM-> True; 36.57/18.17 Branch left_key _ _ _ _-> let { 36.57/18.17 biggest_left_key = fst (findMax fm_l); 36.57/18.17 } in biggest_left_key < key; 36.57/18.17 } ; 36.57/18.17 left_size = sizeFM fm_l; 36.57/18.17 right_ok = case fm_r of { 36.57/18.17 EmptyFM-> True; 36.57/18.17 Branch right_key _ _ _ _-> let { 36.57/18.17 smallest_right_key = fst (findMin fm_r); 36.57/18.17 } in key < smallest_right_key; 36.57/18.17 } ; 36.57/18.17 right_size = sizeFM fm_r; 36.57/18.17 unbox :: Int -> Int; 36.57/18.17 unbox x = x; 36.57/18.17 }; 36.57/18.17 36.57/18.17 sIZE_RATIO :: Int; 36.57/18.17 sIZE_RATIO = 5; 36.57/18.17 36.57/18.17 sizeFM :: FiniteMap b a -> Int; 36.57/18.17 sizeFM EmptyFM = 0; 36.57/18.17 sizeFM (Branch _ _ size _ _) = size; 36.57/18.17 36.57/18.17 unitFM :: b -> a -> FiniteMap b a; 36.57/18.17 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 36.57/18.17 36.57/18.17 } 36.57/18.17 module Maybe where { 36.57/18.17 import qualified FiniteMap; 36.57/18.17 import qualified Main; 36.57/18.17 import qualified Prelude; 36.57/18.17 } 36.57/18.17 module Main where { 36.57/18.17 import qualified FiniteMap; 36.57/18.17 import qualified Maybe; 36.57/18.17 import qualified Prelude; 36.57/18.17 } 36.57/18.17 36.57/18.17 ---------------------------------------- 36.57/18.17 36.57/18.17 (3) CR (EQUIVALENT) 36.57/18.17 Case Reductions: 36.57/18.17 The following Case expression 36.57/18.17 "case compare x y of { 36.57/18.17 EQ -> o; 36.57/18.17 LT -> LT; 36.57/18.17 GT -> GT} 36.57/18.17 " 36.57/18.17 is transformed to 36.57/18.17 "primCompAux0 o EQ = o; 36.57/18.17 primCompAux0 o LT = LT; 36.57/18.17 primCompAux0 o GT = GT; 36.57/18.17 " 36.57/18.17 The following Case expression 36.57/18.17 "case fm_r of { 36.57/18.17 EmptyFM -> True; 36.57/18.17 Branch right_key _ _ _ _ -> let { 36.57/18.17 smallest_right_key = fst (findMin fm_r); 36.57/18.17 } in key < smallest_right_key} 36.57/18.17 " 36.57/18.17 is transformed to 36.57/18.17 "right_ok0 fm_r key EmptyFM = True; 36.57/18.17 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 36.57/18.17 smallest_right_key = fst (findMin fm_r); 36.57/18.17 } in key < smallest_right_key; 36.57/18.17 " 36.57/18.17 The following Case expression 36.57/18.17 "case fm_l of { 36.57/18.17 EmptyFM -> True; 36.57/18.17 Branch left_key _ _ _ _ -> let { 36.57/18.17 biggest_left_key = fst (findMax fm_l); 36.57/18.17 } in biggest_left_key < key} 36.57/18.17 " 36.57/18.17 is transformed to 36.57/18.17 "left_ok0 fm_l key EmptyFM = True; 36.57/18.17 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 36.57/18.17 biggest_left_key = fst (findMax fm_l); 36.57/18.17 } in biggest_left_key < key; 36.57/18.17 " 36.57/18.17 The following Case expression 36.57/18.17 "case fm_R of { 36.57/18.17 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 36.57/18.17 " 36.57/18.17 is transformed to 36.57/18.17 "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; 36.57/18.17 " 36.57/18.17 The following Case expression 36.57/18.17 "case fm_L of { 36.57/18.17 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 36.57/18.17 " 36.57/18.17 is transformed to 36.57/18.17 "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; 36.57/18.17 " 36.57/18.17 36.57/18.17 ---------------------------------------- 36.57/18.17 36.57/18.17 (4) 36.57/18.17 Obligation: 36.57/18.17 mainModule Main 36.57/18.17 module FiniteMap where { 36.57/18.17 import qualified Main; 36.57/18.17 import qualified Maybe; 36.57/18.17 import qualified Prelude; 36.57/18.17 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 36.57/18.17 36.57/18.17 instance (Eq a, Eq b) => Eq FiniteMap a b where { 36.57/18.17 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.57/18.17 } 36.57/18.17 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 36.57/18.17 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 36.57/18.17 36.57/18.17 addListToFM0 old new = new; 36.57/18.17 36.57/18.17 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 36.57/18.17 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 36.57/18.17 add fmap (key,elt) = addToFM_C combiner fmap key elt; 36.57/18.17 }; 36.57/18.17 36.57/18.17 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 36.57/18.17 addToFM_C combiner EmptyFM key elt = unitFM key elt; 36.57/18.17 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 36.57/18.17 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 36.57/18.17 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 36.57/18.17 36.57/18.17 emptyFM :: FiniteMap a b; 36.57/18.17 emptyFM = EmptyFM; 36.57/18.17 36.57/18.17 findMax :: FiniteMap a b -> (a,b); 36.57/18.17 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 36.57/18.17 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 36.57/18.17 36.57/18.17 findMin :: FiniteMap a b -> (a,b); 36.57/18.17 findMin (Branch key elt _ EmptyFM _) = (key,elt); 36.57/18.17 findMin (Branch key elt _ fm_l _) = findMin fm_l; 36.57/18.17 36.57/18.17 fmToList :: FiniteMap a b -> [(a,b)]; 36.57/18.17 fmToList fm = foldFM fmToList0 [] fm; 36.57/18.17 36.57/18.17 fmToList0 key elt rest = (key,elt) : rest; 36.57/18.17 36.57/18.17 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 36.57/18.17 foldFM k z EmptyFM = z; 36.57/18.17 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.57/18.17 36.57/18.17 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.57/18.17 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 36.57/18.17 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 36.57/18.17 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 36.57/18.17 | otherwise = mkBranch 2 key elt fm_L fm_R where { 36.57/18.17 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); 36.57/18.17 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); 36.57/18.17 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 36.57/18.17 | otherwise = double_L fm_L fm_R; 36.57/18.17 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 36.57/18.17 | otherwise = double_R fm_L fm_R; 36.57/18.17 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; 36.57/18.17 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); 36.57/18.17 size_l = sizeFM fm_L; 36.57/18.17 size_r = sizeFM fm_R; 36.57/18.17 }; 36.57/18.17 36.57/18.17 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.57/18.17 mkBranch which key elt fm_l fm_r = let { 36.57/18.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.57/18.17 } in result where { 36.57/18.17 balance_ok = True; 36.57/18.17 left_ok = left_ok0 fm_l key fm_l; 36.57/18.17 left_ok0 fm_l key EmptyFM = True; 36.57/18.17 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 36.57/18.17 biggest_left_key = fst (findMax fm_l); 36.57/18.17 } in biggest_left_key < key; 36.57/18.17 left_size = sizeFM fm_l; 36.57/18.17 right_ok = right_ok0 fm_r key fm_r; 36.57/18.17 right_ok0 fm_r key EmptyFM = True; 36.57/18.17 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 36.57/18.17 smallest_right_key = fst (findMin fm_r); 36.57/18.17 } in key < smallest_right_key; 36.57/18.17 right_size = sizeFM fm_r; 36.57/18.17 unbox :: Int -> Int; 36.57/18.17 unbox x = x; 36.57/18.17 }; 36.57/18.17 36.57/18.17 sIZE_RATIO :: Int; 36.57/18.17 sIZE_RATIO = 5; 36.57/18.17 36.57/18.17 sizeFM :: FiniteMap b a -> Int; 36.57/18.17 sizeFM EmptyFM = 0; 36.57/18.17 sizeFM (Branch _ _ size _ _) = size; 36.57/18.17 36.57/18.17 unitFM :: a -> b -> FiniteMap a b; 36.57/18.17 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 36.57/18.17 36.57/18.17 } 36.57/18.17 module Maybe where { 36.57/18.17 import qualified FiniteMap; 36.57/18.17 import qualified Main; 36.57/18.17 import qualified Prelude; 36.57/18.17 } 36.57/18.17 module Main where { 36.57/18.17 import qualified FiniteMap; 36.57/18.17 import qualified Maybe; 36.57/18.17 import qualified Prelude; 36.57/18.17 } 36.57/18.17 36.57/18.17 ---------------------------------------- 36.57/18.17 36.57/18.17 (5) IFR (EQUIVALENT) 36.57/18.17 If Reductions: 36.57/18.17 The following If expression 36.57/18.17 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 36.57/18.17 is transformed to 36.57/18.17 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 36.57/18.17 primDivNatS0 x y False = Zero; 36.57/18.17 " 36.57/18.17 The following If expression 36.57/18.17 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 36.57/18.17 is transformed to 36.57/18.17 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 36.57/18.17 primModNatS0 x y False = Succ x; 36.57/18.17 " 36.57/18.17 36.57/18.17 ---------------------------------------- 36.57/18.17 36.57/18.17 (6) 36.57/18.17 Obligation: 36.57/18.17 mainModule Main 36.57/18.17 module FiniteMap where { 36.57/18.17 import qualified Main; 36.57/18.18 import qualified Maybe; 36.57/18.18 import qualified Prelude; 36.57/18.18 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 36.57/18.18 36.57/18.18 instance (Eq a, Eq b) => Eq FiniteMap a b where { 36.57/18.18 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.57/18.18 } 36.57/18.18 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 36.57/18.18 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 36.57/18.18 36.57/18.18 addListToFM0 old new = new; 36.57/18.18 36.57/18.18 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 36.57/18.18 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 36.57/18.18 add fmap (key,elt) = addToFM_C combiner fmap key elt; 36.57/18.18 }; 36.57/18.18 36.57/18.18 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 36.57/18.18 addToFM_C combiner EmptyFM key elt = unitFM key elt; 36.57/18.18 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 36.57/18.18 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 36.57/18.18 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 36.57/18.18 36.57/18.18 emptyFM :: FiniteMap a b; 36.57/18.18 emptyFM = EmptyFM; 36.57/18.18 36.57/18.18 findMax :: FiniteMap b a -> (b,a); 36.57/18.18 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 36.57/18.18 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 36.57/18.18 36.57/18.18 findMin :: FiniteMap b a -> (b,a); 36.57/18.18 findMin (Branch key elt _ EmptyFM _) = (key,elt); 36.57/18.18 findMin (Branch key elt _ fm_l _) = findMin fm_l; 36.57/18.18 36.57/18.18 fmToList :: FiniteMap b a -> [(b,a)]; 36.57/18.18 fmToList fm = foldFM fmToList0 [] fm; 36.57/18.18 36.57/18.18 fmToList0 key elt rest = (key,elt) : rest; 36.57/18.18 36.57/18.18 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 36.57/18.18 foldFM k z EmptyFM = z; 36.57/18.18 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.57/18.18 36.57/18.18 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.57/18.18 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 36.57/18.18 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 36.57/18.18 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 36.57/18.18 | otherwise = mkBranch 2 key elt fm_L fm_R where { 36.57/18.18 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); 36.57/18.18 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); 36.57/18.18 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 36.57/18.18 | otherwise = double_L fm_L fm_R; 36.57/18.18 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 36.57/18.18 | otherwise = double_R fm_L fm_R; 36.57/18.18 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; 36.57/18.18 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); 36.57/18.18 size_l = sizeFM fm_L; 36.57/18.18 size_r = sizeFM fm_R; 36.57/18.18 }; 36.57/18.18 36.57/18.18 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.57/18.18 mkBranch which key elt fm_l fm_r = let { 36.57/18.18 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.57/18.18 } in result where { 36.57/18.18 balance_ok = True; 36.57/18.18 left_ok = left_ok0 fm_l key fm_l; 36.57/18.18 left_ok0 fm_l key EmptyFM = True; 36.57/18.18 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 36.57/18.18 biggest_left_key = fst (findMax fm_l); 36.57/18.18 } in biggest_left_key < key; 36.57/18.18 left_size = sizeFM fm_l; 36.57/18.18 right_ok = right_ok0 fm_r key fm_r; 36.57/18.18 right_ok0 fm_r key EmptyFM = True; 36.57/18.18 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 36.57/18.18 smallest_right_key = fst (findMin fm_r); 36.57/18.18 } in key < smallest_right_key; 36.57/18.18 right_size = sizeFM fm_r; 36.57/18.18 unbox :: Int -> Int; 36.57/18.18 unbox x = x; 36.57/18.18 }; 36.57/18.18 36.57/18.18 sIZE_RATIO :: Int; 36.57/18.18 sIZE_RATIO = 5; 36.57/18.18 36.57/18.18 sizeFM :: FiniteMap a b -> Int; 36.57/18.18 sizeFM EmptyFM = 0; 36.57/18.18 sizeFM (Branch _ _ size _ _) = size; 36.57/18.18 36.57/18.18 unitFM :: b -> a -> FiniteMap b a; 36.57/18.18 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 36.57/18.18 36.57/18.18 } 36.57/18.18 module Maybe where { 36.57/18.18 import qualified FiniteMap; 36.57/18.18 import qualified Main; 36.57/18.18 import qualified Prelude; 36.57/18.18 } 36.57/18.18 module Main where { 36.57/18.18 import qualified FiniteMap; 36.57/18.18 import qualified Maybe; 36.57/18.18 import qualified Prelude; 36.57/18.18 } 36.57/18.18 36.57/18.18 ---------------------------------------- 36.57/18.18 36.57/18.18 (7) BR (EQUIVALENT) 36.57/18.18 Replaced joker patterns by fresh variables and removed binding patterns. 36.57/18.18 ---------------------------------------- 36.57/18.18 36.57/18.18 (8) 36.57/18.18 Obligation: 36.57/18.18 mainModule Main 36.57/18.18 module FiniteMap where { 36.57/18.18 import qualified Main; 36.57/18.18 import qualified Maybe; 36.57/18.18 import qualified Prelude; 36.57/18.18 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 36.57/18.18 36.57/18.18 instance (Eq a, Eq b) => Eq FiniteMap b a where { 36.57/18.18 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.57/18.18 } 36.57/18.18 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 36.57/18.18 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 36.57/18.18 36.57/18.18 addListToFM0 old new = new; 36.57/18.18 36.57/18.18 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 36.57/18.18 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 36.57/18.18 add fmap (key,elt) = addToFM_C combiner fmap key elt; 36.57/18.18 }; 36.57/18.18 36.57/18.18 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 36.57/18.18 addToFM_C combiner EmptyFM key elt = unitFM key elt; 36.57/18.18 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 36.57/18.18 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 36.57/18.18 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 36.57/18.18 36.57/18.18 emptyFM :: FiniteMap a b; 36.57/18.18 emptyFM = EmptyFM; 36.57/18.18 36.57/18.18 findMax :: FiniteMap a b -> (a,b); 36.57/18.18 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 36.57/18.18 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 36.57/18.18 36.57/18.18 findMin :: FiniteMap b a -> (b,a); 36.57/18.18 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 36.57/18.18 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 36.57/18.18 36.57/18.18 fmToList :: FiniteMap a b -> [(a,b)]; 36.57/18.18 fmToList fm = foldFM fmToList0 [] fm; 36.57/18.18 36.57/18.18 fmToList0 key elt rest = (key,elt) : rest; 36.57/18.18 36.57/18.18 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 36.57/18.18 foldFM k z EmptyFM = z; 36.57/18.18 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.57/18.18 36.57/18.18 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.57/18.18 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 36.57/18.18 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 36.57/18.18 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 36.57/18.18 | otherwise = mkBranch 2 key elt fm_L fm_R where { 36.57/18.18 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); 36.57/18.18 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); 36.57/18.18 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 36.57/18.18 | otherwise = double_L fm_L fm_R; 36.57/18.18 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 36.57/18.18 | otherwise = double_R fm_L fm_R; 36.57/18.18 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; 36.57/18.18 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); 36.57/18.18 size_l = sizeFM fm_L; 36.57/18.18 size_r = sizeFM fm_R; 36.57/18.18 }; 36.57/18.18 36.57/18.18 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.57/18.18 mkBranch which key elt fm_l fm_r = let { 36.57/18.18 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.57/18.18 } in result where { 36.57/18.18 balance_ok = True; 36.57/18.18 left_ok = left_ok0 fm_l key fm_l; 36.57/18.18 left_ok0 fm_l key EmptyFM = True; 36.57/18.18 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 36.57/18.18 biggest_left_key = fst (findMax fm_l); 36.57/18.18 } in biggest_left_key < key; 36.57/18.18 left_size = sizeFM fm_l; 36.57/18.18 right_ok = right_ok0 fm_r key fm_r; 36.57/18.18 right_ok0 fm_r key EmptyFM = True; 36.57/18.18 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 36.57/18.18 smallest_right_key = fst (findMin fm_r); 36.57/18.18 } in key < smallest_right_key; 36.77/18.25 right_size = sizeFM fm_r; 36.77/18.25 unbox :: Int -> Int; 36.77/18.25 unbox x = x; 36.77/18.25 }; 36.77/18.25 36.77/18.25 sIZE_RATIO :: Int; 36.77/18.25 sIZE_RATIO = 5; 36.77/18.25 36.77/18.25 sizeFM :: FiniteMap a b -> Int; 36.77/18.25 sizeFM EmptyFM = 0; 36.77/18.25 sizeFM (Branch vyu vyv size vyw vyx) = size; 36.77/18.25 36.77/18.25 unitFM :: a -> b -> FiniteMap a b; 36.77/18.25 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 36.77/18.25 36.77/18.25 } 36.77/18.25 module Maybe where { 36.77/18.25 import qualified FiniteMap; 36.77/18.25 import qualified Main; 36.77/18.25 import qualified Prelude; 36.77/18.25 } 36.77/18.25 module Main where { 36.77/18.25 import qualified FiniteMap; 36.77/18.25 import qualified Maybe; 36.77/18.25 import qualified Prelude; 36.77/18.25 } 36.77/18.25 36.77/18.25 ---------------------------------------- 36.77/18.25 36.77/18.25 (9) COR (EQUIVALENT) 36.77/18.25 Cond Reductions: 36.77/18.25 The following Function with conditions 36.77/18.25 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 36.77/18.25 " 36.77/18.25 is transformed to 36.77/18.25 "compare x y = compare3 x y; 36.77/18.25 " 36.77/18.25 "compare1 x y True = LT; 36.77/18.25 compare1 x y False = compare0 x y otherwise; 36.77/18.25 " 36.77/18.25 "compare0 x y True = GT; 36.77/18.25 " 36.77/18.25 "compare2 x y True = EQ; 36.77/18.25 compare2 x y False = compare1 x y (x <= y); 36.77/18.25 " 36.77/18.25 "compare3 x y = compare2 x y (x == y); 36.77/18.25 " 36.77/18.25 The following Function with conditions 36.77/18.25 "absReal x|x >= 0x|otherwise`negate` x; 36.77/18.25 " 36.77/18.25 is transformed to 36.77/18.25 "absReal x = absReal2 x; 36.77/18.25 " 36.77/18.25 "absReal1 x True = x; 36.77/18.25 absReal1 x False = absReal0 x otherwise; 36.77/18.25 " 36.77/18.25 "absReal0 x True = `negate` x; 36.77/18.25 " 36.77/18.25 "absReal2 x = absReal1 x (x >= 0); 36.77/18.25 " 36.77/18.25 The following Function with conditions 36.77/18.25 "gcd' x 0 = x; 36.77/18.25 gcd' x y = gcd' y (x `rem` y); 36.77/18.25 " 36.77/18.25 is transformed to 36.77/18.25 "gcd' x vzw = gcd'2 x vzw; 36.77/18.25 gcd' x y = gcd'0 x y; 36.77/18.25 " 36.77/18.25 "gcd'0 x y = gcd' y (x `rem` y); 36.77/18.25 " 36.77/18.25 "gcd'1 True x vzw = x; 36.77/18.25 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 36.77/18.25 " 36.77/18.25 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 36.77/18.25 gcd'2 wuu wuv = gcd'0 wuu wuv; 36.77/18.25 " 36.77/18.25 The following Function with conditions 36.77/18.25 "gcd 0 0 = error []; 36.77/18.25 gcd x y = gcd' (abs x) (abs y) where { 36.77/18.25 gcd' x 0 = x; 36.77/18.25 gcd' x y = gcd' y (x `rem` y); 36.77/18.25 } 36.77/18.25 ; 36.77/18.25 " 36.77/18.25 is transformed to 36.77/18.25 "gcd wuw wux = gcd3 wuw wux; 36.77/18.25 gcd x y = gcd0 x y; 36.77/18.25 " 36.77/18.25 "gcd0 x y = gcd' (abs x) (abs y) where { 36.77/18.25 gcd' x vzw = gcd'2 x vzw; 36.77/18.25 gcd' x y = gcd'0 x y; 36.77/18.25 ; 36.77/18.25 gcd'0 x y = gcd' y (x `rem` y); 36.77/18.25 ; 36.77/18.25 gcd'1 True x vzw = x; 36.77/18.25 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 36.77/18.25 ; 36.77/18.25 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 36.77/18.25 gcd'2 wuu wuv = gcd'0 wuu wuv; 36.77/18.25 } 36.77/18.25 ; 36.77/18.25 " 36.77/18.25 "gcd1 True wuw wux = error []; 36.77/18.25 gcd1 wuy wuz wvu = gcd0 wuz wvu; 36.77/18.25 " 36.77/18.25 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 36.77/18.25 gcd2 wvv wvw wvx = gcd0 wvw wvx; 36.77/18.25 " 36.77/18.25 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 36.77/18.25 gcd3 wvy wvz = gcd0 wvy wvz; 36.77/18.25 " 36.77/18.25 The following Function with conditions 36.77/18.25 "undefined |Falseundefined; 36.77/18.25 " 36.77/18.25 is transformed to 36.77/18.25 "undefined = undefined1; 36.77/18.25 " 36.77/18.25 "undefined0 True = undefined; 36.77/18.25 " 36.77/18.25 "undefined1 = undefined0 False; 36.77/18.25 " 36.77/18.25 The following Function with conditions 36.77/18.25 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 36.77/18.25 d = gcd x y; 36.77/18.25 } 36.77/18.25 ; 36.77/18.25 " 36.77/18.25 is transformed to 36.77/18.25 "reduce x y = reduce2 x y; 36.77/18.25 " 36.77/18.25 "reduce2 x y = reduce1 x y (y == 0) where { 36.77/18.25 d = gcd x y; 36.77/18.25 ; 36.77/18.25 reduce0 x y True = x `quot` d :% (y `quot` d); 36.77/18.25 ; 36.77/18.25 reduce1 x y True = error []; 36.77/18.25 reduce1 x y False = reduce0 x y otherwise; 36.77/18.25 } 36.77/18.25 ; 36.77/18.25 " 36.77/18.25 The following Function with conditions 36.77/18.25 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 36.77/18.25 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; 36.77/18.25 " 36.77/18.25 is transformed to 36.77/18.25 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 36.77/18.25 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; 36.77/18.25 " 36.77/18.25 "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; 36.77/18.25 " 36.77/18.25 "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; 36.77/18.25 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); 36.77/18.25 " 36.77/18.25 "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); 36.77/18.25 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; 36.77/18.25 " 36.77/18.25 "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); 36.77/18.25 " 36.77/18.25 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 36.77/18.25 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 36.77/18.25 " 36.77/18.25 The following Function with conditions 36.77/18.25 "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; 36.77/18.25 " 36.77/18.25 is transformed to 36.77/18.25 "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); 36.77/18.25 " 36.77/18.25 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 36.77/18.25 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; 36.77/18.25 " 36.77/18.25 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 36.77/18.25 " 36.77/18.25 "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); 36.77/18.25 " 36.77/18.25 The following Function with conditions 36.77/18.25 "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; 36.77/18.25 " 36.77/18.25 is transformed to 36.77/18.25 "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); 36.77/18.25 " 36.77/18.25 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 36.77/18.25 " 36.77/18.25 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 36.77/18.25 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; 36.77/18.25 " 36.77/18.25 "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); 36.77/18.25 " 36.77/18.25 The following Function with conditions 36.77/18.25 "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 { 36.77/18.25 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); 36.77/18.25 ; 36.77/18.25 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); 36.77/18.25 ; 36.77/18.25 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; 36.77/18.25 ; 36.77/18.25 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; 36.77/18.25 ; 36.77/18.25 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; 36.77/18.25 ; 36.77/18.25 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); 36.77/18.25 ; 36.77/18.25 size_l = sizeFM fm_L; 36.77/18.25 ; 36.77/18.25 size_r = sizeFM fm_R; 36.77/18.25 } 36.77/18.25 ; 36.77/18.25 " 36.77/18.25 is transformed to 36.77/18.25 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 36.77/18.25 " 36.77/18.25 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 36.77/18.25 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); 36.77/18.25 ; 36.77/18.25 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); 36.77/18.25 ; 36.77/18.25 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); 36.77/18.25 ; 36.77/18.25 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 36.77/18.25 ; 36.77/18.25 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 36.77/18.25 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; 36.77/18.25 ; 36.77/18.25 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); 36.77/18.25 ; 36.77/18.25 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); 36.77/18.25 ; 36.77/18.25 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 36.77/18.25 ; 36.77/18.25 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 36.77/18.25 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; 36.77/18.25 ; 36.77/18.25 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); 36.77/18.25 ; 36.77/18.25 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 36.77/18.25 ; 36.77/18.25 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 36.77/18.25 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 36.77/18.25 ; 36.77/18.25 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 36.77/18.25 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 36.77/18.25 ; 36.77/18.25 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 36.77/18.25 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 36.77/18.25 ; 36.77/18.25 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; 36.77/18.25 ; 36.77/18.25 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); 36.77/18.25 ; 36.77/18.25 size_l = sizeFM fm_L; 36.77/18.25 ; 36.77/18.25 size_r = sizeFM fm_R; 36.77/18.25 } 36.77/18.25 ; 36.77/18.25 " 36.77/18.25 36.77/18.25 ---------------------------------------- 36.77/18.25 36.77/18.25 (10) 36.77/18.25 Obligation: 36.77/18.25 mainModule Main 36.77/18.25 module FiniteMap where { 36.77/18.25 import qualified Main; 36.77/18.25 import qualified Maybe; 36.77/18.25 import qualified Prelude; 36.77/18.25 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 36.77/18.25 36.77/18.25 instance (Eq a, Eq b) => Eq FiniteMap b a where { 36.77/18.25 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.77/18.25 } 36.77/18.25 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 36.77/18.25 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 36.77/18.25 36.77/18.25 addListToFM0 old new = new; 36.77/18.25 36.77/18.25 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 36.77/18.25 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 36.77/18.25 add fmap (key,elt) = addToFM_C combiner fmap key elt; 36.77/18.25 }; 36.77/18.25 36.77/18.25 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 36.77/18.25 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 36.77/18.25 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; 36.77/18.25 36.77/18.25 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; 36.77/18.25 36.77/18.25 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); 36.77/18.25 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; 36.77/18.25 36.77/18.25 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; 36.77/18.25 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); 36.77/18.25 36.77/18.25 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); 36.77/18.25 36.77/18.25 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 36.77/18.25 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 36.77/18.25 36.77/18.25 emptyFM :: FiniteMap b a; 36.77/18.25 emptyFM = EmptyFM; 36.77/18.25 36.77/18.25 findMax :: FiniteMap b a -> (b,a); 36.77/18.25 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 36.77/18.25 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 36.77/18.25 36.77/18.25 findMin :: FiniteMap a b -> (a,b); 36.77/18.25 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 36.77/18.25 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 36.77/18.25 36.77/18.25 fmToList :: FiniteMap b a -> [(b,a)]; 36.77/18.25 fmToList fm = foldFM fmToList0 [] fm; 36.77/18.25 36.77/18.25 fmToList0 key elt rest = (key,elt) : rest; 36.77/18.25 36.77/18.25 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 36.77/18.25 foldFM k z EmptyFM = z; 36.77/18.25 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.77/18.25 36.77/18.25 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.77/18.25 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 36.77/18.25 36.77/18.25 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 36.77/18.25 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); 36.77/18.25 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); 36.77/18.25 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); 36.77/18.25 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 36.77/18.25 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 36.77/18.25 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; 36.77/18.25 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); 36.77/18.25 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); 36.77/18.25 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 36.77/18.25 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 36.77/18.25 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; 36.77/18.25 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); 36.77/18.25 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 36.77/18.25 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 36.77/18.25 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 36.77/18.25 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 36.77/18.25 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 36.77/18.25 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 36.77/18.25 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 36.77/18.25 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; 36.77/18.25 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); 36.77/18.25 size_l = sizeFM fm_L; 36.77/18.25 size_r = sizeFM fm_R; 36.77/18.25 }; 36.77/18.25 36.77/18.25 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.77/18.25 mkBranch which key elt fm_l fm_r = let { 36.77/18.25 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.77/18.25 } in result where { 36.77/18.25 balance_ok = True; 36.77/18.25 left_ok = left_ok0 fm_l key fm_l; 36.77/18.25 left_ok0 fm_l key EmptyFM = True; 36.77/18.25 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 36.77/18.25 biggest_left_key = fst (findMax fm_l); 36.77/18.25 } in biggest_left_key < key; 36.77/18.25 left_size = sizeFM fm_l; 36.77/18.25 right_ok = right_ok0 fm_r key fm_r; 36.77/18.25 right_ok0 fm_r key EmptyFM = True; 36.77/18.25 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 36.77/18.25 smallest_right_key = fst (findMin fm_r); 36.77/18.25 } in key < smallest_right_key; 36.77/18.25 right_size = sizeFM fm_r; 36.77/18.25 unbox :: Int -> Int; 36.77/18.25 unbox x = x; 36.77/18.25 }; 36.77/18.25 36.77/18.25 sIZE_RATIO :: Int; 36.77/18.25 sIZE_RATIO = 5; 36.77/18.25 36.77/18.25 sizeFM :: FiniteMap a b -> Int; 36.77/18.25 sizeFM EmptyFM = 0; 36.77/18.25 sizeFM (Branch vyu vyv size vyw vyx) = size; 36.77/18.25 36.77/18.25 unitFM :: b -> a -> FiniteMap b a; 36.77/18.25 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 36.77/18.25 36.77/18.25 } 36.77/18.25 module Maybe where { 36.77/18.25 import qualified FiniteMap; 36.77/18.25 import qualified Main; 36.77/18.25 import qualified Prelude; 36.77/18.25 } 36.77/18.25 module Main where { 36.77/18.25 import qualified FiniteMap; 36.77/18.25 import qualified Maybe; 36.77/18.25 import qualified Prelude; 36.77/18.25 } 36.77/18.25 36.77/18.25 ---------------------------------------- 36.77/18.25 36.77/18.25 (11) LetRed (EQUIVALENT) 36.77/18.25 Let/Where Reductions: 36.77/18.25 The bindings of the following Let/Where expression 36.77/18.25 "gcd' (abs x) (abs y) where { 36.77/18.25 gcd' x vzw = gcd'2 x vzw; 36.77/18.25 gcd' x y = gcd'0 x y; 36.77/18.25 ; 36.77/18.25 gcd'0 x y = gcd' y (x `rem` y); 36.77/18.25 ; 36.77/18.25 gcd'1 True x vzw = x; 36.77/18.25 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 36.77/18.25 ; 36.77/18.25 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 36.77/18.25 gcd'2 wuu wuv = gcd'0 wuu wuv; 36.77/18.25 } 36.77/18.25 " 36.77/18.25 are unpacked to the following functions on top level 36.77/18.25 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 36.77/18.25 " 36.77/18.25 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 36.77/18.25 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 36.90/18.25 " 36.90/18.25 "gcd0Gcd'1 True x vzw = x; 36.90/18.25 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 36.90/18.25 " 36.90/18.25 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 36.90/18.25 gcd0Gcd' x y = gcd0Gcd'0 x y; 36.90/18.25 " 36.90/18.25 The bindings of the following Let/Where expression 36.90/18.25 "reduce1 x y (y == 0) where { 36.90/18.25 d = gcd x y; 36.90/18.25 ; 36.90/18.25 reduce0 x y True = x `quot` d :% (y `quot` d); 36.90/18.25 ; 36.90/18.25 reduce1 x y True = error []; 36.90/18.25 reduce1 x y False = reduce0 x y otherwise; 36.90/18.25 } 36.90/18.25 " 36.90/18.25 are unpacked to the following functions on top level 36.90/18.25 "reduce2D wxw wxx = gcd wxw wxx; 36.90/18.25 " 36.90/18.25 "reduce2Reduce1 wxw wxx x y True = error []; 36.90/18.25 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 36.90/18.25 " 36.90/18.25 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 36.90/18.25 " 36.90/18.25 The bindings of the following Let/Where expression 36.90/18.25 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 36.90/18.25 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); 36.90/18.25 ; 36.90/18.25 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); 36.90/18.25 ; 36.90/18.25 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); 36.90/18.25 ; 36.90/18.25 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 36.90/18.25 ; 36.90/18.25 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 36.90/18.25 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; 36.90/18.25 ; 36.90/18.25 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); 36.90/18.25 ; 36.90/18.25 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); 36.90/18.25 ; 36.90/18.25 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 36.90/18.25 ; 36.90/18.25 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 36.90/18.25 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; 36.90/18.25 ; 36.90/18.25 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); 36.90/18.25 ; 36.90/18.25 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 36.90/18.25 ; 36.90/18.25 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 36.90/18.25 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 36.90/18.25 ; 36.90/18.25 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 36.90/18.25 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 36.90/18.25 ; 36.90/18.25 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 36.90/18.25 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 36.90/18.25 ; 36.90/18.25 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; 36.90/18.25 ; 36.90/18.25 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); 36.90/18.25 ; 36.90/18.25 size_l = sizeFM fm_L; 36.90/18.25 ; 36.90/18.25 size_r = sizeFM fm_R; 36.90/18.25 } 36.90/18.25 " 36.90/18.25 are unpacked to the following functions on top level 36.90/18.25 "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); 36.90/18.25 " 36.90/18.25 "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); 36.90/18.25 " 36.90/18.25 "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; 36.90/18.25 " 36.90/18.25 "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); 36.90/18.25 " 36.90/18.25 "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); 36.90/18.25 " 36.90/18.25 "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; 36.90/18.25 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; 36.90/18.25 " 36.90/18.25 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 36.90/18.25 " 36.90/18.25 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 36.90/18.25 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); 36.90/18.25 " 36.90/18.25 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 36.90/18.25 " 36.90/18.25 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 36.90/18.25 " 36.90/18.25 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 36.90/18.25 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); 36.90/18.25 " 36.90/18.25 "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); 36.90/18.25 " 36.90/18.25 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 36.90/18.25 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 36.90/18.25 " 36.90/18.25 "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; 36.90/18.25 " 36.90/18.25 "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); 36.90/18.25 " 36.90/18.25 "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; 36.90/18.25 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; 36.90/18.25 " 36.90/18.25 "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); 36.90/18.25 " 36.90/18.25 "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; 36.90/18.25 " 36.90/18.25 The bindings of the following Let/Where expression 36.90/18.25 "foldl add fm key_elt_pairs where { 36.90/18.25 add fmap (key,elt) = addToFM_C combiner fmap key elt; 36.90/18.25 } 36.90/18.25 " 36.90/18.25 are unpacked to the following functions on top level 36.90/18.25 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 36.90/18.25 " 36.90/18.25 The bindings of the following Let/Where expression 36.90/18.25 "let { 36.90/18.25 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.90/18.25 } in result where { 36.90/18.25 balance_ok = True; 36.90/18.25 ; 36.90/18.25 left_ok = left_ok0 fm_l key fm_l; 36.90/18.25 ; 36.90/18.25 left_ok0 fm_l key EmptyFM = True; 36.90/18.25 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 36.90/18.25 biggest_left_key = fst (findMax fm_l); 36.90/18.25 } in biggest_left_key < key; 36.90/18.25 ; 36.90/18.25 left_size = sizeFM fm_l; 36.90/18.25 ; 36.90/18.25 right_ok = right_ok0 fm_r key fm_r; 36.90/18.25 ; 36.90/18.25 right_ok0 fm_r key EmptyFM = True; 36.90/18.25 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 36.90/18.25 smallest_right_key = fst (findMin fm_r); 36.90/18.25 } in key < smallest_right_key; 36.90/18.25 ; 36.90/18.25 right_size = sizeFM fm_r; 36.90/18.25 ; 36.90/18.25 unbox x = x; 36.90/18.25 } 36.90/18.25 " 36.90/18.25 are unpacked to the following functions on top level 36.90/18.25 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; 36.90/18.25 " 36.90/18.25 "mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 36.90/18.25 " 36.90/18.25 "mkBranchUnbox wyx wyy wyz x = x; 36.90/18.25 " 36.90/18.25 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 36.90/18.25 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 36.90/18.25 " 36.90/18.25 "mkBranchBalance_ok wyx wyy wyz = True; 36.90/18.25 " 36.90/18.25 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 36.90/18.25 " 36.90/18.25 "mkBranchRight_size wyx wyy wyz = sizeFM wyz; 36.90/18.25 " 36.90/18.25 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 36.90/18.25 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 36.90/18.31 " 36.90/18.31 The bindings of the following Let/Where expression 36.90/18.31 "let { 36.90/18.31 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.90/18.31 } in result" 36.90/18.31 are unpacked to the following functions on top level 36.90/18.31 "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; 36.90/18.31 " 36.90/18.31 The bindings of the following Let/Where expression 36.90/18.31 "let { 36.90/18.31 smallest_right_key = fst (findMin fm_r); 36.90/18.31 } in key < smallest_right_key" 36.90/18.31 are unpacked to the following functions on top level 36.90/18.31 "mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); 36.90/18.31 " 36.90/18.31 The bindings of the following Let/Where expression 36.90/18.31 "let { 36.90/18.31 biggest_left_key = fst (findMax fm_l); 36.90/18.31 } in biggest_left_key < key" 36.90/18.31 are unpacked to the following functions on top level 36.90/18.31 "mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); 36.90/18.31 " 36.90/18.31 36.90/18.31 ---------------------------------------- 36.90/18.31 36.90/18.31 (12) 36.90/18.31 Obligation: 36.90/18.31 mainModule Main 36.90/18.31 module FiniteMap where { 36.90/18.31 import qualified Main; 36.90/18.31 import qualified Maybe; 36.90/18.31 import qualified Prelude; 36.90/18.31 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 36.90/18.31 36.90/18.31 instance (Eq a, Eq b) => Eq FiniteMap b a where { 36.90/18.31 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.90/18.31 } 36.90/18.31 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 36.90/18.31 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 36.90/18.31 36.90/18.31 addListToFM0 old new = new; 36.90/18.31 36.90/18.31 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 36.90/18.31 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 36.90/18.31 36.90/18.31 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 36.90/18.31 36.90/18.31 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 36.90/18.31 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 36.90/18.31 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; 36.90/18.31 36.90/18.31 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; 36.90/18.31 36.90/18.31 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); 36.90/18.31 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; 36.90/18.31 36.90/18.31 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; 36.90/18.31 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); 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 36.90/18.31 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 36.90/18.31 36.90/18.31 emptyFM :: FiniteMap a b; 36.90/18.31 emptyFM = EmptyFM; 36.90/18.31 36.90/18.31 findMax :: FiniteMap b a -> (b,a); 36.90/18.31 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 36.90/18.31 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 36.90/18.31 36.90/18.31 findMin :: FiniteMap b a -> (b,a); 36.90/18.31 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 36.90/18.31 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 36.90/18.31 36.90/18.31 fmToList :: FiniteMap b a -> [(b,a)]; 36.90/18.31 fmToList fm = foldFM fmToList0 [] fm; 36.90/18.31 36.90/18.31 fmToList0 key elt rest = (key,elt) : rest; 36.90/18.31 36.90/18.31 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 36.90/18.31 foldFM k z EmptyFM = z; 36.90/18.31 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.90/18.31 36.90/18.31 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.90/18.31 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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; 36.90/18.31 36.90/18.31 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; 36.90/18.31 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; 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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; 36.90/18.31 36.90/18.31 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; 36.90/18.31 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; 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 36.90/18.31 36.90/18.31 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 36.90/18.31 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 36.90/18.31 36.90/18.31 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 36.90/18.31 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); 36.90/18.31 36.90/18.31 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 36.90/18.31 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); 36.90/18.31 36.90/18.31 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; 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 36.90/18.31 36.90/18.31 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 36.90/18.31 36.90/18.31 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.90/18.31 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 36.90/18.31 36.90/18.31 mkBranchBalance_ok wyx wyy wyz = True; 36.90/18.31 36.90/18.31 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; 36.90/18.31 36.90/18.31 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 36.90/18.31 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 36.90/18.31 36.90/18.31 mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); 36.90/18.31 36.90/18.31 mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 36.90/18.31 36.90/18.31 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; 36.90/18.31 36.90/18.31 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 36.90/18.31 36.90/18.31 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 36.90/18.31 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 36.90/18.31 36.90/18.31 mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); 36.90/18.31 36.90/18.31 mkBranchRight_size wyx wyy wyz = sizeFM wyz; 36.90/18.31 36.90/18.31 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 36.90/18.31 mkBranchUnbox wyx wyy wyz x = x; 36.90/18.31 36.90/18.31 sIZE_RATIO :: Int; 36.90/18.31 sIZE_RATIO = 5; 36.90/18.31 36.90/18.31 sizeFM :: FiniteMap b a -> Int; 36.90/18.31 sizeFM EmptyFM = 0; 36.90/18.31 sizeFM (Branch vyu vyv size vyw vyx) = size; 36.90/18.31 36.90/18.31 unitFM :: b -> a -> FiniteMap b a; 36.90/18.31 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 36.90/18.31 36.90/18.31 } 36.90/18.31 module Maybe where { 36.90/18.31 import qualified FiniteMap; 36.90/18.31 import qualified Main; 36.90/18.31 import qualified Prelude; 36.90/18.31 } 36.90/18.31 module Main where { 36.90/18.31 import qualified FiniteMap; 36.90/18.31 import qualified Maybe; 36.90/18.31 import qualified Prelude; 36.90/18.31 } 36.90/18.31 36.90/18.31 ---------------------------------------- 36.90/18.31 36.90/18.31 (13) NumRed (SOUND) 36.90/18.31 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 36.90/18.31 ---------------------------------------- 36.90/18.31 36.90/18.31 (14) 36.90/18.31 Obligation: 36.90/18.31 mainModule Main 36.90/18.31 module FiniteMap where { 36.90/18.31 import qualified Main; 36.90/18.31 import qualified Maybe; 36.90/18.31 import qualified Prelude; 36.90/18.31 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 36.90/18.31 36.90/18.31 instance (Eq a, Eq b) => Eq FiniteMap b a where { 36.90/18.31 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.90/18.31 } 36.90/18.31 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 36.90/18.31 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 36.90/18.31 36.90/18.31 addListToFM0 old new = new; 36.90/18.31 36.90/18.31 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 36.90/18.31 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 36.90/18.31 36.90/18.31 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 36.90/18.31 36.90/18.31 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 36.90/18.31 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 36.90/18.31 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; 36.90/18.31 36.90/18.31 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; 36.90/18.31 36.90/18.31 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); 36.90/18.31 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; 36.90/18.31 36.90/18.31 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; 36.90/18.31 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); 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 36.90/18.31 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 36.90/18.31 36.90/18.31 emptyFM :: FiniteMap a b; 36.90/18.31 emptyFM = EmptyFM; 36.90/18.31 36.90/18.31 findMax :: FiniteMap b a -> (b,a); 36.90/18.31 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 36.90/18.31 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 36.90/18.31 36.90/18.31 findMin :: FiniteMap b a -> (b,a); 36.90/18.31 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 36.90/18.31 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 36.90/18.31 36.90/18.31 fmToList :: FiniteMap b a -> [(b,a)]; 36.90/18.31 fmToList fm = foldFM fmToList0 [] fm; 36.90/18.31 36.90/18.31 fmToList0 key elt rest = (key,elt) : rest; 36.90/18.31 36.90/18.31 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 36.90/18.31 foldFM k z EmptyFM = z; 36.90/18.31 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.90/18.31 36.90/18.31 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.90/18.31 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 36.90/18.31 36.90/18.31 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))); 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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; 36.90/18.31 36.90/18.31 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; 36.90/18.31 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; 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 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; 36.90/18.31 36.90/18.31 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; 36.90/18.31 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; 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 36.90/18.31 36.90/18.31 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 36.90/18.31 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 36.90/18.31 36.90/18.31 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 36.90/18.31 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); 36.90/18.31 36.90/18.31 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 36.90/18.31 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); 36.90/18.31 36.90/18.31 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; 36.90/18.31 36.90/18.31 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); 36.90/18.31 36.90/18.31 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 36.90/18.31 36.90/18.31 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 36.90/18.31 36.90/18.31 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.90/18.31 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 36.90/18.31 36.90/18.31 mkBranchBalance_ok wyx wyy wyz = True; 36.90/18.31 36.90/18.31 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; 36.90/18.31 36.90/18.31 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 36.90/18.31 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 36.90/18.31 36.90/18.31 mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); 36.90/18.31 36.90/18.31 mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 36.90/18.31 36.90/18.31 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; 36.90/18.31 36.90/18.31 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 36.90/18.31 36.90/18.31 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 36.90/18.31 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 36.90/18.31 36.90/18.31 mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); 36.90/18.31 36.90/18.31 mkBranchRight_size wyx wyy wyz = sizeFM wyz; 36.90/18.31 36.90/18.31 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 36.90/18.31 mkBranchUnbox wyx wyy wyz x = x; 36.90/18.31 36.90/18.31 sIZE_RATIO :: Int; 36.90/18.31 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 36.90/18.31 36.90/18.31 sizeFM :: FiniteMap a b -> Int; 36.90/18.31 sizeFM EmptyFM = Pos Zero; 36.90/18.31 sizeFM (Branch vyu vyv size vyw vyx) = size; 36.90/18.31 36.90/18.31 unitFM :: b -> a -> FiniteMap b a; 36.90/18.31 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 36.90/18.31 36.90/18.31 } 36.90/18.31 module Maybe where { 36.90/18.31 import qualified FiniteMap; 36.90/18.31 import qualified Main; 36.90/18.31 import qualified Prelude; 36.90/18.31 } 36.90/18.31 module Main where { 36.90/18.31 import qualified FiniteMap; 36.90/18.31 import qualified Maybe; 36.90/18.31 import qualified Prelude; 36.90/18.31 } 36.90/18.31 36.90/18.31 ---------------------------------------- 36.90/18.31 36.90/18.31 (15) Narrow (SOUND) 36.90/18.31 Haskell To QDPs 36.90/18.31 36.90/18.31 digraph dp_graph { 36.90/18.31 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.addListToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 36.90/18.31 3[label="FiniteMap.addListToFM xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 36.90/18.31 4[label="FiniteMap.addListToFM xuu3 xuu4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 36.90/18.31 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 xuu3 xuu4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 36.90/18.31 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 xuu4",fontsize=16,color="burlywood",shape="triangle"];3207[label="xuu4/xuu40 : xuu41",fontsize=10,color="white",style="solid",shape="box"];6 -> 3207[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3207 -> 7[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3208[label="xuu4/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 3208[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3208 -> 8[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 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]; 36.90/18.31 8[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 36.90/18.31 9 -> 6[label="",style="dashed", color="red", weight=0]; 36.90/18.31 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]; 36.90/18.31 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 10[label="xuu3",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40",fontsize=16,color="burlywood",shape="box"];3209[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];11 -> 3209[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3209 -> 13[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 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]; 36.90/18.31 14[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu3 xuu400 xuu401",fontsize=16,color="burlywood",shape="triangle"];3210[label="xuu3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 3210[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3210 -> 15[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3211[label="xuu3/FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34",fontsize=10,color="white",style="solid",shape="box"];14 -> 3211[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3211 -> 16[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 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]; 36.90/18.31 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]; 36.90/18.31 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]; 36.90/18.31 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]; 36.90/18.31 19[label="FiniteMap.unitFM xuu400 xuu401",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 36.90/18.31 20 -> 22[label="",style="dashed", color="red", weight=0]; 36.90/18.31 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]; 36.90/18.31 20 -> 24[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 20 -> 25[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 20 -> 26[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 20 -> 27[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 20 -> 28[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 20 -> 29[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 20 -> 30[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 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]; 36.90/18.31 21 -> 32[label="",style="dashed", color="green", weight=3]; 36.90/18.31 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"];3212[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3212[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3212 -> 33[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3213[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3213[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3213 -> 34[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3214[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3214[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3214 -> 35[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3215[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3215[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3215 -> 36[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3216[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3216[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3216 -> 37[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3217[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3217[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3217 -> 38[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3218[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3218[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3218 -> 39[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3219[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3219[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3219 -> 40[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3220[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3220[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3220 -> 41[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3221[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3221[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3221 -> 42[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3222[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3222[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3222 -> 43[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3223[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3223[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3223 -> 44[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3224[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3224[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3224 -> 45[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3225[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 3225[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3225 -> 46[label="",style="solid", color="blue", weight=3]; 36.90/18.31 22[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu14 xuu15 xuu16 xuu17 xuu18 xuu19 xuu20 xuu21",fontsize=16,color="burlywood",shape="triangle"];3226[label="xuu21/False",fontsize=10,color="white",style="solid",shape="box"];22 -> 3226[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3226 -> 47[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3227[label="xuu21/True",fontsize=10,color="white",style="solid",shape="box"];22 -> 3227[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3227 -> 48[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 31[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];31 -> 49[label="",style="solid", color="black", weight=3]; 36.90/18.31 32 -> 31[label="",style="dashed", color="red", weight=0]; 36.90/18.31 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]; 36.90/18.31 34[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];34 -> 51[label="",style="solid", color="black", weight=3]; 36.90/18.31 35[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];35 -> 52[label="",style="solid", color="black", weight=3]; 36.90/18.31 36[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];36 -> 53[label="",style="solid", color="black", weight=3]; 36.90/18.31 37[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];37 -> 54[label="",style="solid", color="black", weight=3]; 36.90/18.31 38[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];38 -> 55[label="",style="solid", color="black", weight=3]; 36.90/18.31 39[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];39 -> 56[label="",style="solid", color="black", weight=3]; 36.90/18.31 40[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];40 -> 57[label="",style="solid", color="black", weight=3]; 36.90/18.31 41[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];41 -> 58[label="",style="solid", color="black", weight=3]; 36.90/18.31 42[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];42 -> 59[label="",style="solid", color="black", weight=3]; 36.90/18.31 43[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];43 -> 60[label="",style="solid", color="black", weight=3]; 36.90/18.31 44[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];44 -> 61[label="",style="solid", color="black", weight=3]; 36.90/18.31 45[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];45 -> 62[label="",style="solid", color="black", weight=3]; 36.90/18.31 46[label="xuu400 < xuu30",fontsize=16,color="black",shape="triangle"];46 -> 63[label="",style="solid", color="black", weight=3]; 36.90/18.31 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]; 36.90/18.31 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]; 36.90/18.31 49[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];50 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 50[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];50 -> 193[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 51 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 51[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];51 -> 194[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 52 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 52[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];52 -> 195[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 53 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 53[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];53 -> 196[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 54 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 54[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];54 -> 197[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 55 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 55[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];55 -> 198[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 56 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 56[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];56 -> 199[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 57 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 57[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];57 -> 200[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 58 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 58[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];58 -> 201[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 59 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 59[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];59 -> 202[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 60 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 60[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];60 -> 203[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 61 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 61[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];61 -> 204[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 62 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 62[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];62 -> 205[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 63 -> 192[label="",style="dashed", color="red", weight=0]; 36.90/18.31 63[label="compare xuu400 xuu30 == LT",fontsize=16,color="magenta"];63 -> 206[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 64 -> 81[label="",style="dashed", color="red", weight=0]; 36.90/18.31 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]; 36.90/18.31 64 -> 83[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 64 -> 84[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 64 -> 85[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 64 -> 86[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 64 -> 87[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 64 -> 88[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 64 -> 89[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 65 -> 90[label="",style="dashed", color="red", weight=0]; 36.90/18.31 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]; 36.90/18.31 193[label="compare xuu400 xuu30",fontsize=16,color="burlywood",shape="triangle"];3228[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];193 -> 3228[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3228 -> 232[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3229[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];193 -> 3229[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3229 -> 233[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 192[label="xuu42 == LT",fontsize=16,color="burlywood",shape="triangle"];3230[label="xuu42/LT",fontsize=10,color="white",style="solid",shape="box"];192 -> 3230[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3230 -> 234[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3231[label="xuu42/EQ",fontsize=10,color="white",style="solid",shape="box"];192 -> 3231[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3231 -> 235[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3232[label="xuu42/GT",fontsize=10,color="white",style="solid",shape="box"];192 -> 3232[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3232 -> 236[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 194[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];194 -> 237[label="",style="solid", color="black", weight=3]; 36.90/18.31 195[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];195 -> 238[label="",style="solid", color="black", weight=3]; 36.90/18.31 196[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];196 -> 239[label="",style="solid", color="black", weight=3]; 36.90/18.31 197[label="compare xuu400 xuu30",fontsize=16,color="burlywood",shape="triangle"];3233[label="xuu400/()",fontsize=10,color="white",style="solid",shape="box"];197 -> 3233[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3233 -> 240[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 198[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];198 -> 241[label="",style="solid", color="black", weight=3]; 36.90/18.31 199[label="compare xuu400 xuu30",fontsize=16,color="burlywood",shape="triangle"];3234[label="xuu400/xuu4000 :% xuu4001",fontsize=10,color="white",style="solid",shape="box"];199 -> 3234[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3234 -> 242[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 200[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];200 -> 243[label="",style="solid", color="black", weight=3]; 36.90/18.31 201[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];201 -> 244[label="",style="solid", color="black", weight=3]; 36.90/18.31 202[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];202 -> 245[label="",style="solid", color="black", weight=3]; 36.90/18.31 203[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];203 -> 246[label="",style="solid", color="black", weight=3]; 36.90/18.31 204[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];204 -> 247[label="",style="solid", color="black", weight=3]; 36.90/18.31 205[label="compare xuu400 xuu30",fontsize=16,color="black",shape="triangle"];205 -> 248[label="",style="solid", color="black", weight=3]; 36.90/18.31 206[label="compare xuu400 xuu30",fontsize=16,color="burlywood",shape="triangle"];3235[label="xuu400/Integer xuu4000",fontsize=10,color="white",style="solid",shape="box"];206 -> 3235[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3235 -> 249[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 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"];3236[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3236[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3236 -> 110[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3237[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3237[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3237 -> 111[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3238[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3238[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3238 -> 112[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3239[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3239[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3239 -> 113[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3240[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3240[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3240 -> 114[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3241[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3241[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3241 -> 115[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3242[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3242[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3242 -> 116[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3243[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3243[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3243 -> 117[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3244[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3244[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3244 -> 118[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3245[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3245[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3245 -> 119[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3246[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3246[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3246 -> 120[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3247[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3247[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3247 -> 121[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3248[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3248[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3248 -> 122[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3249[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 3249[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3249 -> 123[label="",style="solid", color="blue", weight=3]; 36.90/18.31 81[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu31 xuu32 xuu33 xuu34 xuu35 xuu36 xuu37 xuu38",fontsize=16,color="burlywood",shape="triangle"];3250[label="xuu38/False",fontsize=10,color="white",style="solid",shape="box"];81 -> 3250[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3250 -> 124[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3251[label="xuu38/True",fontsize=10,color="white",style="solid",shape="box"];81 -> 3251[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3251 -> 125[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 91 -> 14[label="",style="dashed", color="red", weight=0]; 36.90/18.31 91[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 xuu19 xuu20",fontsize=16,color="magenta"];91 -> 126[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 91 -> 127[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 91 -> 128[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 90[label="FiniteMap.mkBalBranch xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="triangle"];90 -> 129[label="",style="solid", color="black", weight=3]; 36.90/18.31 232[label="compare (xuu4000 : xuu4001) xuu30",fontsize=16,color="burlywood",shape="box"];3252[label="xuu30/xuu300 : xuu301",fontsize=10,color="white",style="solid",shape="box"];232 -> 3252[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3252 -> 265[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3253[label="xuu30/[]",fontsize=10,color="white",style="solid",shape="box"];232 -> 3253[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3253 -> 266[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 233[label="compare [] xuu30",fontsize=16,color="burlywood",shape="box"];3254[label="xuu30/xuu300 : xuu301",fontsize=10,color="white",style="solid",shape="box"];233 -> 3254[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3254 -> 267[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3255[label="xuu30/[]",fontsize=10,color="white",style="solid",shape="box"];233 -> 3255[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3255 -> 268[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 234[label="LT == LT",fontsize=16,color="black",shape="box"];234 -> 269[label="",style="solid", color="black", weight=3]; 36.90/18.31 235[label="EQ == LT",fontsize=16,color="black",shape="box"];235 -> 270[label="",style="solid", color="black", weight=3]; 36.90/18.31 236[label="GT == LT",fontsize=16,color="black",shape="box"];236 -> 271[label="",style="solid", color="black", weight=3]; 36.90/18.31 237[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];237 -> 272[label="",style="solid", color="black", weight=3]; 36.90/18.31 238[label="primCmpInt xuu400 xuu30",fontsize=16,color="burlywood",shape="triangle"];3256[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];238 -> 3256[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3256 -> 273[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3257[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];238 -> 3257[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3257 -> 274[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 239[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];239 -> 275[label="",style="solid", color="black", weight=3]; 36.90/18.31 240[label="compare () xuu30",fontsize=16,color="burlywood",shape="box"];3258[label="xuu30/()",fontsize=10,color="white",style="solid",shape="box"];240 -> 3258[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3258 -> 276[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 241[label="primCmpChar xuu400 xuu30",fontsize=16,color="burlywood",shape="box"];3259[label="xuu400/Char xuu4000",fontsize=10,color="white",style="solid",shape="box"];241 -> 3259[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3259 -> 277[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 242[label="compare (xuu4000 :% xuu4001) xuu30",fontsize=16,color="burlywood",shape="box"];3260[label="xuu30/xuu300 :% xuu301",fontsize=10,color="white",style="solid",shape="box"];242 -> 3260[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3260 -> 278[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 243[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];243 -> 279[label="",style="solid", color="black", weight=3]; 36.90/18.31 244[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];244 -> 280[label="",style="solid", color="black", weight=3]; 36.90/18.31 245[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];245 -> 281[label="",style="solid", color="black", weight=3]; 36.90/18.31 246[label="primCmpDouble xuu400 xuu30",fontsize=16,color="burlywood",shape="box"];3261[label="xuu400/Double xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];246 -> 3261[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3261 -> 282[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 247[label="compare3 xuu400 xuu30",fontsize=16,color="black",shape="box"];247 -> 283[label="",style="solid", color="black", weight=3]; 36.90/18.31 248[label="primCmpFloat xuu400 xuu30",fontsize=16,color="burlywood",shape="box"];3262[label="xuu400/Float xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];248 -> 3262[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3262 -> 284[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 249[label="compare (Integer xuu4000) xuu30",fontsize=16,color="burlywood",shape="box"];3263[label="xuu30/Integer xuu300",fontsize=10,color="white",style="solid",shape="box"];249 -> 3263[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3263 -> 285[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 110[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];110 -> 157[label="",style="solid", color="black", weight=3]; 36.90/18.31 111[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];111 -> 158[label="",style="solid", color="black", weight=3]; 36.90/18.31 112[label="xuu19 > xuu14",fontsize=16,color="black",shape="triangle"];112 -> 159[label="",style="solid", color="black", weight=3]; 36.90/18.31 113[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];113 -> 160[label="",style="solid", color="black", weight=3]; 36.90/18.31 114[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];114 -> 161[label="",style="solid", color="black", weight=3]; 36.90/18.31 115[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];115 -> 162[label="",style="solid", color="black", weight=3]; 36.90/18.31 116[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];116 -> 163[label="",style="solid", color="black", weight=3]; 36.90/18.31 117[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];117 -> 164[label="",style="solid", color="black", weight=3]; 36.90/18.31 118[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];118 -> 165[label="",style="solid", color="black", weight=3]; 36.90/18.31 119[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];119 -> 166[label="",style="solid", color="black", weight=3]; 36.90/18.31 120[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];120 -> 167[label="",style="solid", color="black", weight=3]; 36.90/18.31 121[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];121 -> 168[label="",style="solid", color="black", weight=3]; 36.90/18.31 122[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];122 -> 169[label="",style="solid", color="black", weight=3]; 36.90/18.31 123[label="xuu19 > xuu14",fontsize=16,color="black",shape="box"];123 -> 170[label="",style="solid", color="black", weight=3]; 36.90/18.31 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]; 36.90/18.31 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]; 36.90/18.31 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]; 36.90/18.31 265[label="compare (xuu4000 : xuu4001) (xuu300 : xuu301)",fontsize=16,color="black",shape="box"];265 -> 293[label="",style="solid", color="black", weight=3]; 36.90/18.31 266[label="compare (xuu4000 : xuu4001) []",fontsize=16,color="black",shape="box"];266 -> 294[label="",style="solid", color="black", weight=3]; 36.90/18.31 267[label="compare [] (xuu300 : xuu301)",fontsize=16,color="black",shape="box"];267 -> 295[label="",style="solid", color="black", weight=3]; 36.90/18.31 268[label="compare [] []",fontsize=16,color="black",shape="box"];268 -> 296[label="",style="solid", color="black", weight=3]; 36.90/18.31 269[label="True",fontsize=16,color="green",shape="box"];270[label="False",fontsize=16,color="green",shape="box"];271[label="False",fontsize=16,color="green",shape="box"];272[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3264[label="xuu400/(xuu4000,xuu4001,xuu4002)",fontsize=10,color="white",style="solid",shape="box"];272 -> 3264[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3264 -> 297[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 273[label="primCmpInt (Pos xuu4000) xuu30",fontsize=16,color="burlywood",shape="box"];3265[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];273 -> 3265[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3265 -> 298[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3266[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];273 -> 3266[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3266 -> 299[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 274[label="primCmpInt (Neg xuu4000) xuu30",fontsize=16,color="burlywood",shape="box"];3267[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];274 -> 3267[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3267 -> 300[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3268[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];274 -> 3268[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3268 -> 301[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 275[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3269[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];275 -> 3269[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3269 -> 302[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3270[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];275 -> 3270[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3270 -> 303[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 276[label="compare () ()",fontsize=16,color="black",shape="box"];276 -> 304[label="",style="solid", color="black", weight=3]; 36.90/18.31 277[label="primCmpChar (Char xuu4000) xuu30",fontsize=16,color="burlywood",shape="box"];3271[label="xuu30/Char xuu300",fontsize=10,color="white",style="solid",shape="box"];277 -> 3271[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3271 -> 305[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 278[label="compare (xuu4000 :% xuu4001) (xuu300 :% xuu301)",fontsize=16,color="black",shape="box"];278 -> 306[label="",style="solid", color="black", weight=3]; 36.90/18.31 279[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3272[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];279 -> 3272[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3272 -> 307[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3273[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];279 -> 3273[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3273 -> 308[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 280[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3274[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];280 -> 3274[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3274 -> 309[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3275[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];280 -> 3275[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3275 -> 310[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 281[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3276[label="xuu400/(xuu4000,xuu4001)",fontsize=10,color="white",style="solid",shape="box"];281 -> 3276[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3276 -> 311[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 282[label="primCmpDouble (Double xuu4000 xuu4001) xuu30",fontsize=16,color="burlywood",shape="box"];3277[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];282 -> 3277[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3277 -> 312[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3278[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];282 -> 3278[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3278 -> 313[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 283[label="compare2 xuu400 xuu30 (xuu400 == xuu30)",fontsize=16,color="burlywood",shape="box"];3279[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];283 -> 3279[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3279 -> 314[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3280[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];283 -> 3280[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3280 -> 315[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3281[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];283 -> 3281[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3281 -> 316[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 284[label="primCmpFloat (Float xuu4000 xuu4001) xuu30",fontsize=16,color="burlywood",shape="box"];3282[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];284 -> 3282[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3282 -> 317[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3283[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];284 -> 3283[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3283 -> 318[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 285[label="compare (Integer xuu4000) (Integer xuu300)",fontsize=16,color="black",shape="box"];285 -> 319[label="",style="solid", color="black", weight=3]; 36.90/18.31 157 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 157[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];157 -> 251[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 158 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 158[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];158 -> 252[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 159 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 159[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];159 -> 253[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 160 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 160[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];160 -> 254[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 161 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 161[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];161 -> 255[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 162 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 162[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];162 -> 256[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 163 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 163[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];163 -> 257[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 164 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 164[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];164 -> 258[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 165 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 165[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];165 -> 259[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 166 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 166[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];166 -> 260[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 167 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 167[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];167 -> 261[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 168 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 168[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];168 -> 262[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 169 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 169[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];169 -> 263[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 170 -> 250[label="",style="dashed", color="red", weight=0]; 36.90/18.31 170[label="compare xuu19 xuu14 == GT",fontsize=16,color="magenta"];170 -> 264[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 171[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 xuu31 xuu32 xuu33 xuu34 xuu35 xuu36 xuu37 otherwise",fontsize=16,color="black",shape="box"];171 -> 286[label="",style="solid", color="black", weight=3]; 36.90/18.31 172 -> 90[label="",style="dashed", color="red", weight=0]; 36.90/18.31 172[label="FiniteMap.mkBalBranch xuu31 xuu32 xuu34 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu35 xuu36 xuu37)",fontsize=16,color="magenta"];172 -> 287[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 172 -> 288[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 172 -> 289[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 172 -> 290[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 173 -> 291[label="",style="dashed", color="red", weight=0]; 36.90/18.31 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 -> 292[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 293 -> 359[label="",style="dashed", color="red", weight=0]; 36.90/18.31 293[label="primCompAux xuu4000 xuu300 (compare xuu4001 xuu301)",fontsize=16,color="magenta"];293 -> 360[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 294[label="GT",fontsize=16,color="green",shape="box"];295[label="LT",fontsize=16,color="green",shape="box"];296[label="EQ",fontsize=16,color="green",shape="box"];297[label="compare2 (xuu4000,xuu4001,xuu4002) xuu30 ((xuu4000,xuu4001,xuu4002) == xuu30)",fontsize=16,color="burlywood",shape="box"];3284[label="xuu30/(xuu300,xuu301,xuu302)",fontsize=10,color="white",style="solid",shape="box"];297 -> 3284[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3284 -> 361[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 298[label="primCmpInt (Pos (Succ xuu40000)) xuu30",fontsize=16,color="burlywood",shape="box"];3285[label="xuu30/Pos xuu300",fontsize=10,color="white",style="solid",shape="box"];298 -> 3285[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3285 -> 362[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3286[label="xuu30/Neg xuu300",fontsize=10,color="white",style="solid",shape="box"];298 -> 3286[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3286 -> 363[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 299[label="primCmpInt (Pos Zero) xuu30",fontsize=16,color="burlywood",shape="box"];3287[label="xuu30/Pos xuu300",fontsize=10,color="white",style="solid",shape="box"];299 -> 3287[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3287 -> 364[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3288[label="xuu30/Neg xuu300",fontsize=10,color="white",style="solid",shape="box"];299 -> 3288[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3288 -> 365[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 300[label="primCmpInt (Neg (Succ xuu40000)) xuu30",fontsize=16,color="burlywood",shape="box"];3289[label="xuu30/Pos xuu300",fontsize=10,color="white",style="solid",shape="box"];300 -> 3289[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3289 -> 366[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3290[label="xuu30/Neg xuu300",fontsize=10,color="white",style="solid",shape="box"];300 -> 3290[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3290 -> 367[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 301[label="primCmpInt (Neg Zero) xuu30",fontsize=16,color="burlywood",shape="box"];3291[label="xuu30/Pos xuu300",fontsize=10,color="white",style="solid",shape="box"];301 -> 3291[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3291 -> 368[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3292[label="xuu30/Neg xuu300",fontsize=10,color="white",style="solid",shape="box"];301 -> 3292[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3292 -> 369[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 302[label="compare2 (Left xuu4000) xuu30 (Left xuu4000 == xuu30)",fontsize=16,color="burlywood",shape="box"];3293[label="xuu30/Left xuu300",fontsize=10,color="white",style="solid",shape="box"];302 -> 3293[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3293 -> 370[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3294[label="xuu30/Right xuu300",fontsize=10,color="white",style="solid",shape="box"];302 -> 3294[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3294 -> 371[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 303[label="compare2 (Right xuu4000) xuu30 (Right xuu4000 == xuu30)",fontsize=16,color="burlywood",shape="box"];3295[label="xuu30/Left xuu300",fontsize=10,color="white",style="solid",shape="box"];303 -> 3295[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3295 -> 372[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3296[label="xuu30/Right xuu300",fontsize=10,color="white",style="solid",shape="box"];303 -> 3296[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3296 -> 373[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 304[label="EQ",fontsize=16,color="green",shape="box"];305[label="primCmpChar (Char xuu4000) (Char xuu300)",fontsize=16,color="black",shape="box"];305 -> 374[label="",style="solid", color="black", weight=3]; 36.90/18.31 306[label="compare (xuu4000 * xuu301) (xuu300 * xuu4001)",fontsize=16,color="blue",shape="box"];3297[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];306 -> 3297[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3297 -> 375[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3298[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];306 -> 3298[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3298 -> 376[label="",style="solid", color="blue", weight=3]; 36.90/18.31 307[label="compare2 False xuu30 (False == xuu30)",fontsize=16,color="burlywood",shape="box"];3299[label="xuu30/False",fontsize=10,color="white",style="solid",shape="box"];307 -> 3299[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3299 -> 377[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3300[label="xuu30/True",fontsize=10,color="white",style="solid",shape="box"];307 -> 3300[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3300 -> 378[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 308[label="compare2 True xuu30 (True == xuu30)",fontsize=16,color="burlywood",shape="box"];3301[label="xuu30/False",fontsize=10,color="white",style="solid",shape="box"];308 -> 3301[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3301 -> 379[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3302[label="xuu30/True",fontsize=10,color="white",style="solid",shape="box"];308 -> 3302[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3302 -> 380[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 309[label="compare2 Nothing xuu30 (Nothing == xuu30)",fontsize=16,color="burlywood",shape="box"];3303[label="xuu30/Nothing",fontsize=10,color="white",style="solid",shape="box"];309 -> 3303[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3303 -> 381[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3304[label="xuu30/Just xuu300",fontsize=10,color="white",style="solid",shape="box"];309 -> 3304[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3304 -> 382[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 310[label="compare2 (Just xuu4000) xuu30 (Just xuu4000 == xuu30)",fontsize=16,color="burlywood",shape="box"];3305[label="xuu30/Nothing",fontsize=10,color="white",style="solid",shape="box"];310 -> 3305[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3305 -> 383[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3306[label="xuu30/Just xuu300",fontsize=10,color="white",style="solid",shape="box"];310 -> 3306[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3306 -> 384[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 311[label="compare2 (xuu4000,xuu4001) xuu30 ((xuu4000,xuu4001) == xuu30)",fontsize=16,color="burlywood",shape="box"];3307[label="xuu30/(xuu300,xuu301)",fontsize=10,color="white",style="solid",shape="box"];311 -> 3307[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3307 -> 385[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 312[label="primCmpDouble (Double xuu4000 (Pos xuu40010)) xuu30",fontsize=16,color="burlywood",shape="box"];3308[label="xuu30/Double xuu300 xuu301",fontsize=10,color="white",style="solid",shape="box"];312 -> 3308[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3308 -> 386[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 313[label="primCmpDouble (Double xuu4000 (Neg xuu40010)) xuu30",fontsize=16,color="burlywood",shape="box"];3309[label="xuu30/Double xuu300 xuu301",fontsize=10,color="white",style="solid",shape="box"];313 -> 3309[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3309 -> 387[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 314[label="compare2 LT xuu30 (LT == xuu30)",fontsize=16,color="burlywood",shape="box"];3310[label="xuu30/LT",fontsize=10,color="white",style="solid",shape="box"];314 -> 3310[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3310 -> 388[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3311[label="xuu30/EQ",fontsize=10,color="white",style="solid",shape="box"];314 -> 3311[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3311 -> 389[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3312[label="xuu30/GT",fontsize=10,color="white",style="solid",shape="box"];314 -> 3312[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3312 -> 390[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 315[label="compare2 EQ xuu30 (EQ == xuu30)",fontsize=16,color="burlywood",shape="box"];3313[label="xuu30/LT",fontsize=10,color="white",style="solid",shape="box"];315 -> 3313[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3313 -> 391[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3314[label="xuu30/EQ",fontsize=10,color="white",style="solid",shape="box"];315 -> 3314[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3314 -> 392[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3315[label="xuu30/GT",fontsize=10,color="white",style="solid",shape="box"];315 -> 3315[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3315 -> 393[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 316[label="compare2 GT xuu30 (GT == xuu30)",fontsize=16,color="burlywood",shape="box"];3316[label="xuu30/LT",fontsize=10,color="white",style="solid",shape="box"];316 -> 3316[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3316 -> 394[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3317[label="xuu30/EQ",fontsize=10,color="white",style="solid",shape="box"];316 -> 3317[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3317 -> 395[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3318[label="xuu30/GT",fontsize=10,color="white",style="solid",shape="box"];316 -> 3318[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3318 -> 396[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 317[label="primCmpFloat (Float xuu4000 (Pos xuu40010)) xuu30",fontsize=16,color="burlywood",shape="box"];3319[label="xuu30/Float xuu300 xuu301",fontsize=10,color="white",style="solid",shape="box"];317 -> 3319[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3319 -> 397[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 318[label="primCmpFloat (Float xuu4000 (Neg xuu40010)) xuu30",fontsize=16,color="burlywood",shape="box"];3320[label="xuu30/Float xuu300 xuu301",fontsize=10,color="white",style="solid",shape="box"];318 -> 3320[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3320 -> 398[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 319 -> 238[label="",style="dashed", color="red", weight=0]; 36.90/18.31 319[label="primCmpInt xuu4000 xuu300",fontsize=16,color="magenta"];319 -> 399[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 319 -> 400[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 251 -> 193[label="",style="dashed", color="red", weight=0]; 36.90/18.31 251[label="compare xuu19 xuu14",fontsize=16,color="magenta"];251 -> 320[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 251 -> 321[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 250[label="xuu43 == GT",fontsize=16,color="burlywood",shape="triangle"];3321[label="xuu43/LT",fontsize=10,color="white",style="solid",shape="box"];250 -> 3321[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3321 -> 322[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3322[label="xuu43/EQ",fontsize=10,color="white",style="solid",shape="box"];250 -> 3322[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3322 -> 323[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3323[label="xuu43/GT",fontsize=10,color="white",style="solid",shape="box"];250 -> 3323[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3323 -> 324[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 252 -> 194[label="",style="dashed", color="red", weight=0]; 36.90/18.31 252[label="compare xuu19 xuu14",fontsize=16,color="magenta"];252 -> 325[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 252 -> 326[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 253 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.31 253[label="compare xuu19 xuu14",fontsize=16,color="magenta"];253 -> 327[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 253 -> 328[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 254 -> 196[label="",style="dashed", color="red", weight=0]; 36.90/18.31 254[label="compare xuu19 xuu14",fontsize=16,color="magenta"];254 -> 329[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 254 -> 330[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 255 -> 197[label="",style="dashed", color="red", weight=0]; 36.90/18.31 255[label="compare xuu19 xuu14",fontsize=16,color="magenta"];255 -> 331[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 255 -> 332[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 256 -> 198[label="",style="dashed", color="red", weight=0]; 36.90/18.31 256[label="compare xuu19 xuu14",fontsize=16,color="magenta"];256 -> 333[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 256 -> 334[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 257 -> 199[label="",style="dashed", color="red", weight=0]; 36.90/18.31 257[label="compare xuu19 xuu14",fontsize=16,color="magenta"];257 -> 335[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 257 -> 336[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 258 -> 200[label="",style="dashed", color="red", weight=0]; 36.90/18.31 258[label="compare xuu19 xuu14",fontsize=16,color="magenta"];258 -> 337[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 258 -> 338[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 259 -> 201[label="",style="dashed", color="red", weight=0]; 36.90/18.31 259[label="compare xuu19 xuu14",fontsize=16,color="magenta"];259 -> 339[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 259 -> 340[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 260 -> 202[label="",style="dashed", color="red", weight=0]; 36.90/18.31 260[label="compare xuu19 xuu14",fontsize=16,color="magenta"];260 -> 341[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 260 -> 342[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 261 -> 203[label="",style="dashed", color="red", weight=0]; 36.90/18.31 261[label="compare xuu19 xuu14",fontsize=16,color="magenta"];261 -> 343[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 261 -> 344[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 262 -> 204[label="",style="dashed", color="red", weight=0]; 36.90/18.31 262[label="compare xuu19 xuu14",fontsize=16,color="magenta"];262 -> 345[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 262 -> 346[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 263 -> 205[label="",style="dashed", color="red", weight=0]; 36.90/18.31 263[label="compare xuu19 xuu14",fontsize=16,color="magenta"];263 -> 347[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 263 -> 348[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 264 -> 206[label="",style="dashed", color="red", weight=0]; 36.90/18.31 264[label="compare xuu19 xuu14",fontsize=16,color="magenta"];264 -> 349[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 264 -> 350[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 286[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 xuu31 xuu32 xuu33 xuu34 xuu35 xuu36 xuu37 True",fontsize=16,color="black",shape="box"];286 -> 351[label="",style="solid", color="black", weight=3]; 36.90/18.31 287[label="xuu34",fontsize=16,color="green",shape="box"];288[label="xuu32",fontsize=16,color="green",shape="box"];289[label="xuu31",fontsize=16,color="green",shape="box"];290 -> 14[label="",style="dashed", color="red", weight=0]; 36.90/18.31 290[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu35 xuu36 xuu37",fontsize=16,color="magenta"];290 -> 352[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 290 -> 353[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 290 -> 354[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 292 -> 35[label="",style="dashed", color="red", weight=0]; 36.90/18.31 292[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18 + FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];292 -> 355[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 292 -> 356[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 291[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 xuu44",fontsize=16,color="burlywood",shape="triangle"];3324[label="xuu44/False",fontsize=10,color="white",style="solid",shape="box"];291 -> 3324[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3324 -> 357[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3325[label="xuu44/True",fontsize=10,color="white",style="solid",shape="box"];291 -> 3325[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3325 -> 358[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 360 -> 193[label="",style="dashed", color="red", weight=0]; 36.90/18.31 360[label="compare xuu4001 xuu301",fontsize=16,color="magenta"];360 -> 401[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 360 -> 402[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 359[label="primCompAux xuu4000 xuu300 xuu45",fontsize=16,color="black",shape="triangle"];359 -> 403[label="",style="solid", color="black", weight=3]; 36.90/18.31 361[label="compare2 (xuu4000,xuu4001,xuu4002) (xuu300,xuu301,xuu302) ((xuu4000,xuu4001,xuu4002) == (xuu300,xuu301,xuu302))",fontsize=16,color="black",shape="box"];361 -> 411[label="",style="solid", color="black", weight=3]; 36.90/18.31 362[label="primCmpInt (Pos (Succ xuu40000)) (Pos xuu300)",fontsize=16,color="black",shape="box"];362 -> 412[label="",style="solid", color="black", weight=3]; 36.90/18.31 363[label="primCmpInt (Pos (Succ xuu40000)) (Neg xuu300)",fontsize=16,color="black",shape="box"];363 -> 413[label="",style="solid", color="black", weight=3]; 36.90/18.31 364[label="primCmpInt (Pos Zero) (Pos xuu300)",fontsize=16,color="burlywood",shape="box"];3326[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];364 -> 3326[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3326 -> 414[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3327[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];364 -> 3327[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3327 -> 415[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 365[label="primCmpInt (Pos Zero) (Neg xuu300)",fontsize=16,color="burlywood",shape="box"];3328[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];365 -> 3328[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3328 -> 416[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3329[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];365 -> 3329[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3329 -> 417[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 366[label="primCmpInt (Neg (Succ xuu40000)) (Pos xuu300)",fontsize=16,color="black",shape="box"];366 -> 418[label="",style="solid", color="black", weight=3]; 36.90/18.31 367[label="primCmpInt (Neg (Succ xuu40000)) (Neg xuu300)",fontsize=16,color="black",shape="box"];367 -> 419[label="",style="solid", color="black", weight=3]; 36.90/18.31 368[label="primCmpInt (Neg Zero) (Pos xuu300)",fontsize=16,color="burlywood",shape="box"];3330[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];368 -> 3330[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3330 -> 420[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3331[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];368 -> 3331[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3331 -> 421[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 369[label="primCmpInt (Neg Zero) (Neg xuu300)",fontsize=16,color="burlywood",shape="box"];3332[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];369 -> 3332[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3332 -> 422[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3333[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];369 -> 3333[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3333 -> 423[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 370[label="compare2 (Left xuu4000) (Left xuu300) (Left xuu4000 == Left xuu300)",fontsize=16,color="black",shape="box"];370 -> 424[label="",style="solid", color="black", weight=3]; 36.90/18.31 371[label="compare2 (Left xuu4000) (Right xuu300) (Left xuu4000 == Right xuu300)",fontsize=16,color="black",shape="box"];371 -> 425[label="",style="solid", color="black", weight=3]; 36.90/18.31 372[label="compare2 (Right xuu4000) (Left xuu300) (Right xuu4000 == Left xuu300)",fontsize=16,color="black",shape="box"];372 -> 426[label="",style="solid", color="black", weight=3]; 36.90/18.31 373[label="compare2 (Right xuu4000) (Right xuu300) (Right xuu4000 == Right xuu300)",fontsize=16,color="black",shape="box"];373 -> 427[label="",style="solid", color="black", weight=3]; 36.90/18.31 374[label="primCmpNat xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3334[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];374 -> 3334[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3334 -> 428[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3335[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];374 -> 3335[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3335 -> 429[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 375 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.31 375[label="compare (xuu4000 * xuu301) (xuu300 * xuu4001)",fontsize=16,color="magenta"];375 -> 430[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 375 -> 431[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 376 -> 206[label="",style="dashed", color="red", weight=0]; 36.90/18.31 376[label="compare (xuu4000 * xuu301) (xuu300 * xuu4001)",fontsize=16,color="magenta"];376 -> 432[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 376 -> 433[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 377[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];377 -> 434[label="",style="solid", color="black", weight=3]; 36.90/18.31 378[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];378 -> 435[label="",style="solid", color="black", weight=3]; 36.90/18.31 379[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];379 -> 436[label="",style="solid", color="black", weight=3]; 36.90/18.31 380[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];380 -> 437[label="",style="solid", color="black", weight=3]; 36.90/18.31 381[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];381 -> 438[label="",style="solid", color="black", weight=3]; 36.90/18.31 382[label="compare2 Nothing (Just xuu300) (Nothing == Just xuu300)",fontsize=16,color="black",shape="box"];382 -> 439[label="",style="solid", color="black", weight=3]; 36.90/18.31 383[label="compare2 (Just xuu4000) Nothing (Just xuu4000 == Nothing)",fontsize=16,color="black",shape="box"];383 -> 440[label="",style="solid", color="black", weight=3]; 36.90/18.31 384[label="compare2 (Just xuu4000) (Just xuu300) (Just xuu4000 == Just xuu300)",fontsize=16,color="black",shape="box"];384 -> 441[label="",style="solid", color="black", weight=3]; 36.90/18.31 385[label="compare2 (xuu4000,xuu4001) (xuu300,xuu301) ((xuu4000,xuu4001) == (xuu300,xuu301))",fontsize=16,color="black",shape="box"];385 -> 442[label="",style="solid", color="black", weight=3]; 36.90/18.31 386[label="primCmpDouble (Double xuu4000 (Pos xuu40010)) (Double xuu300 xuu301)",fontsize=16,color="burlywood",shape="box"];3336[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];386 -> 3336[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3336 -> 443[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3337[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];386 -> 3337[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3337 -> 444[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 387[label="primCmpDouble (Double xuu4000 (Neg xuu40010)) (Double xuu300 xuu301)",fontsize=16,color="burlywood",shape="box"];3338[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];387 -> 3338[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3338 -> 445[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3339[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];387 -> 3339[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3339 -> 446[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 388[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];388 -> 447[label="",style="solid", color="black", weight=3]; 36.90/18.31 389[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];389 -> 448[label="",style="solid", color="black", weight=3]; 36.90/18.31 390[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];390 -> 449[label="",style="solid", color="black", weight=3]; 36.90/18.31 391[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];391 -> 450[label="",style="solid", color="black", weight=3]; 36.90/18.31 392[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];392 -> 451[label="",style="solid", color="black", weight=3]; 36.90/18.31 393[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];393 -> 452[label="",style="solid", color="black", weight=3]; 36.90/18.31 394[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];394 -> 453[label="",style="solid", color="black", weight=3]; 36.90/18.31 395[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];395 -> 454[label="",style="solid", color="black", weight=3]; 36.90/18.31 396[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];396 -> 455[label="",style="solid", color="black", weight=3]; 36.90/18.31 397[label="primCmpFloat (Float xuu4000 (Pos xuu40010)) (Float xuu300 xuu301)",fontsize=16,color="burlywood",shape="box"];3340[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];397 -> 3340[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3340 -> 456[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3341[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];397 -> 3341[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3341 -> 457[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 398[label="primCmpFloat (Float xuu4000 (Neg xuu40010)) (Float xuu300 xuu301)",fontsize=16,color="burlywood",shape="box"];3342[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];398 -> 3342[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3342 -> 458[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3343[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];398 -> 3343[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3343 -> 459[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 399[label="xuu4000",fontsize=16,color="green",shape="box"];400[label="xuu300",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="LT == GT",fontsize=16,color="black",shape="box"];322 -> 404[label="",style="solid", color="black", weight=3]; 36.90/18.31 323[label="EQ == GT",fontsize=16,color="black",shape="box"];323 -> 405[label="",style="solid", color="black", weight=3]; 36.90/18.31 324[label="GT == GT",fontsize=16,color="black",shape="box"];324 -> 406[label="",style="solid", color="black", weight=3]; 36.90/18.31 325[label="xuu19",fontsize=16,color="green",shape="box"];326[label="xuu14",fontsize=16,color="green",shape="box"];327[label="xuu19",fontsize=16,color="green",shape="box"];328[label="xuu14",fontsize=16,color="green",shape="box"];329[label="xuu19",fontsize=16,color="green",shape="box"];330[label="xuu14",fontsize=16,color="green",shape="box"];331[label="xuu19",fontsize=16,color="green",shape="box"];332[label="xuu14",fontsize=16,color="green",shape="box"];333[label="xuu19",fontsize=16,color="green",shape="box"];334[label="xuu14",fontsize=16,color="green",shape="box"];335[label="xuu19",fontsize=16,color="green",shape="box"];336[label="xuu14",fontsize=16,color="green",shape="box"];337[label="xuu19",fontsize=16,color="green",shape="box"];338[label="xuu14",fontsize=16,color="green",shape="box"];339[label="xuu19",fontsize=16,color="green",shape="box"];340[label="xuu14",fontsize=16,color="green",shape="box"];341[label="xuu19",fontsize=16,color="green",shape="box"];342[label="xuu14",fontsize=16,color="green",shape="box"];343[label="xuu19",fontsize=16,color="green",shape="box"];344[label="xuu14",fontsize=16,color="green",shape="box"];345[label="xuu19",fontsize=16,color="green",shape="box"];346[label="xuu14",fontsize=16,color="green",shape="box"];347[label="xuu19",fontsize=16,color="green",shape="box"];348[label="xuu14",fontsize=16,color="green",shape="box"];349[label="xuu19",fontsize=16,color="green",shape="box"];350[label="xuu14",fontsize=16,color="green",shape="box"];351[label="FiniteMap.Branch xuu36 (FiniteMap.addListToFM0 xuu32 xuu37) xuu33 xuu34 xuu35",fontsize=16,color="green",shape="box"];351 -> 407[label="",style="dashed", color="green", weight=3]; 36.90/18.31 352[label="xuu35",fontsize=16,color="green",shape="box"];353[label="xuu36",fontsize=16,color="green",shape="box"];354[label="xuu37",fontsize=16,color="green",shape="box"];355[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18 + FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="box"];355 -> 408[label="",style="solid", color="black", weight=3]; 36.90/18.31 356[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];357[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 False",fontsize=16,color="black",shape="box"];357 -> 409[label="",style="solid", color="black", weight=3]; 36.90/18.31 358[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 True",fontsize=16,color="black",shape="box"];358 -> 410[label="",style="solid", color="black", weight=3]; 36.90/18.31 401[label="xuu4001",fontsize=16,color="green",shape="box"];402[label="xuu301",fontsize=16,color="green",shape="box"];403 -> 460[label="",style="dashed", color="red", weight=0]; 36.90/18.31 403[label="primCompAux0 xuu45 (compare xuu4000 xuu300)",fontsize=16,color="magenta"];403 -> 461[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 403 -> 462[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 411 -> 1132[label="",style="dashed", color="red", weight=0]; 36.90/18.31 411[label="compare2 (xuu4000,xuu4001,xuu4002) (xuu300,xuu301,xuu302) (xuu4000 == xuu300 && xuu4001 == xuu301 && xuu4002 == xuu302)",fontsize=16,color="magenta"];411 -> 1133[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 411 -> 1134[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 411 -> 1135[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 411 -> 1136[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 411 -> 1137[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 411 -> 1138[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 411 -> 1139[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 412 -> 374[label="",style="dashed", color="red", weight=0]; 36.90/18.31 412[label="primCmpNat (Succ xuu40000) xuu300",fontsize=16,color="magenta"];412 -> 471[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 412 -> 472[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 413[label="GT",fontsize=16,color="green",shape="box"];414[label="primCmpInt (Pos Zero) (Pos (Succ xuu3000))",fontsize=16,color="black",shape="box"];414 -> 473[label="",style="solid", color="black", weight=3]; 36.90/18.31 415[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];415 -> 474[label="",style="solid", color="black", weight=3]; 36.90/18.31 416[label="primCmpInt (Pos Zero) (Neg (Succ xuu3000))",fontsize=16,color="black",shape="box"];416 -> 475[label="",style="solid", color="black", weight=3]; 36.90/18.31 417[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];417 -> 476[label="",style="solid", color="black", weight=3]; 36.90/18.31 418[label="LT",fontsize=16,color="green",shape="box"];419 -> 374[label="",style="dashed", color="red", weight=0]; 36.90/18.31 419[label="primCmpNat xuu300 (Succ xuu40000)",fontsize=16,color="magenta"];419 -> 477[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 419 -> 478[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 420[label="primCmpInt (Neg Zero) (Pos (Succ xuu3000))",fontsize=16,color="black",shape="box"];420 -> 479[label="",style="solid", color="black", weight=3]; 36.90/18.31 421[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];421 -> 480[label="",style="solid", color="black", weight=3]; 36.90/18.31 422[label="primCmpInt (Neg Zero) (Neg (Succ xuu3000))",fontsize=16,color="black",shape="box"];422 -> 481[label="",style="solid", color="black", weight=3]; 36.90/18.31 423[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];423 -> 482[label="",style="solid", color="black", weight=3]; 36.90/18.31 424 -> 483[label="",style="dashed", color="red", weight=0]; 36.90/18.31 424[label="compare2 (Left xuu4000) (Left xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];424 -> 484[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 424 -> 485[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 424 -> 486[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 425[label="compare2 (Left xuu4000) (Right xuu300) False",fontsize=16,color="black",shape="box"];425 -> 487[label="",style="solid", color="black", weight=3]; 36.90/18.31 426[label="compare2 (Right xuu4000) (Left xuu300) False",fontsize=16,color="black",shape="box"];426 -> 488[label="",style="solid", color="black", weight=3]; 36.90/18.31 427 -> 489[label="",style="dashed", color="red", weight=0]; 36.90/18.31 427[label="compare2 (Right xuu4000) (Right xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];427 -> 490[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 427 -> 491[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 427 -> 492[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 428[label="primCmpNat (Succ xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3344[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];428 -> 3344[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3344 -> 493[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3345[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];428 -> 3345[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3345 -> 494[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 429[label="primCmpNat Zero xuu300",fontsize=16,color="burlywood",shape="box"];3346[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];429 -> 3346[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3346 -> 495[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 3347[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];429 -> 3347[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3347 -> 496[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 430[label="xuu4000 * xuu301",fontsize=16,color="black",shape="triangle"];430 -> 497[label="",style="solid", color="black", weight=3]; 36.90/18.31 431 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.31 431[label="xuu300 * xuu4001",fontsize=16,color="magenta"];431 -> 498[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 431 -> 499[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 432[label="xuu4000 * xuu301",fontsize=16,color="burlywood",shape="triangle"];3348[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];432 -> 3348[label="",style="solid", color="burlywood", weight=9]; 36.90/18.31 3348 -> 500[label="",style="solid", color="burlywood", weight=3]; 36.90/18.31 433 -> 432[label="",style="dashed", color="red", weight=0]; 36.90/18.31 433[label="xuu300 * xuu4001",fontsize=16,color="magenta"];433 -> 501[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 433 -> 502[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 434[label="compare2 False False True",fontsize=16,color="black",shape="box"];434 -> 503[label="",style="solid", color="black", weight=3]; 36.90/18.31 435[label="compare2 False True False",fontsize=16,color="black",shape="box"];435 -> 504[label="",style="solid", color="black", weight=3]; 36.90/18.31 436[label="compare2 True False False",fontsize=16,color="black",shape="box"];436 -> 505[label="",style="solid", color="black", weight=3]; 36.90/18.31 437[label="compare2 True True True",fontsize=16,color="black",shape="box"];437 -> 506[label="",style="solid", color="black", weight=3]; 36.90/18.31 438[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];438 -> 507[label="",style="solid", color="black", weight=3]; 36.90/18.31 439[label="compare2 Nothing (Just xuu300) False",fontsize=16,color="black",shape="box"];439 -> 508[label="",style="solid", color="black", weight=3]; 36.90/18.31 440[label="compare2 (Just xuu4000) Nothing False",fontsize=16,color="black",shape="box"];440 -> 509[label="",style="solid", color="black", weight=3]; 36.90/18.31 441 -> 510[label="",style="dashed", color="red", weight=0]; 36.90/18.31 441[label="compare2 (Just xuu4000) (Just xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];441 -> 511[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 441 -> 512[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 441 -> 513[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 442 -> 973[label="",style="dashed", color="red", weight=0]; 36.90/18.31 442[label="compare2 (xuu4000,xuu4001) (xuu300,xuu301) (xuu4000 == xuu300 && xuu4001 == xuu301)",fontsize=16,color="magenta"];442 -> 974[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 442 -> 975[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 442 -> 976[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 442 -> 977[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 442 -> 978[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 443[label="primCmpDouble (Double xuu4000 (Pos xuu40010)) (Double xuu300 (Pos xuu3010))",fontsize=16,color="black",shape="box"];443 -> 520[label="",style="solid", color="black", weight=3]; 36.90/18.31 444[label="primCmpDouble (Double xuu4000 (Pos xuu40010)) (Double xuu300 (Neg xuu3010))",fontsize=16,color="black",shape="box"];444 -> 521[label="",style="solid", color="black", weight=3]; 36.90/18.31 445[label="primCmpDouble (Double xuu4000 (Neg xuu40010)) (Double xuu300 (Pos xuu3010))",fontsize=16,color="black",shape="box"];445 -> 522[label="",style="solid", color="black", weight=3]; 36.90/18.31 446[label="primCmpDouble (Double xuu4000 (Neg xuu40010)) (Double xuu300 (Neg xuu3010))",fontsize=16,color="black",shape="box"];446 -> 523[label="",style="solid", color="black", weight=3]; 36.90/18.31 447[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];447 -> 524[label="",style="solid", color="black", weight=3]; 36.90/18.31 448[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];448 -> 525[label="",style="solid", color="black", weight=3]; 36.90/18.31 449[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];449 -> 526[label="",style="solid", color="black", weight=3]; 36.90/18.31 450[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];450 -> 527[label="",style="solid", color="black", weight=3]; 36.90/18.31 451[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];451 -> 528[label="",style="solid", color="black", weight=3]; 36.90/18.31 452[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];452 -> 529[label="",style="solid", color="black", weight=3]; 36.90/18.31 453[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];453 -> 530[label="",style="solid", color="black", weight=3]; 36.90/18.31 454[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];454 -> 531[label="",style="solid", color="black", weight=3]; 36.90/18.31 455[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];455 -> 532[label="",style="solid", color="black", weight=3]; 36.90/18.31 456[label="primCmpFloat (Float xuu4000 (Pos xuu40010)) (Float xuu300 (Pos xuu3010))",fontsize=16,color="black",shape="box"];456 -> 533[label="",style="solid", color="black", weight=3]; 36.90/18.31 457[label="primCmpFloat (Float xuu4000 (Pos xuu40010)) (Float xuu300 (Neg xuu3010))",fontsize=16,color="black",shape="box"];457 -> 534[label="",style="solid", color="black", weight=3]; 36.90/18.31 458[label="primCmpFloat (Float xuu4000 (Neg xuu40010)) (Float xuu300 (Pos xuu3010))",fontsize=16,color="black",shape="box"];458 -> 535[label="",style="solid", color="black", weight=3]; 36.90/18.31 459[label="primCmpFloat (Float xuu4000 (Neg xuu40010)) (Float xuu300 (Neg xuu3010))",fontsize=16,color="black",shape="box"];459 -> 536[label="",style="solid", color="black", weight=3]; 36.90/18.31 404[label="False",fontsize=16,color="green",shape="box"];405[label="False",fontsize=16,color="green",shape="box"];406[label="True",fontsize=16,color="green",shape="box"];407[label="FiniteMap.addListToFM0 xuu32 xuu37",fontsize=16,color="black",shape="box"];407 -> 537[label="",style="solid", color="black", weight=3]; 36.90/18.31 408 -> 1053[label="",style="dashed", color="red", weight=0]; 36.90/18.31 408[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18) (FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18)",fontsize=16,color="magenta"];408 -> 1054[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 408 -> 1055[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 409 -> 539[label="",style="dashed", color="red", weight=0]; 36.90/18.31 409[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"];409 -> 540[label="",style="dashed", color="magenta", weight=3]; 36.90/18.31 410[label="FiniteMap.mkBranch (Pos (Succ Zero)) xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="box"];410 -> 541[label="",style="solid", color="black", weight=3]; 36.90/18.31 461[label="compare xuu4000 xuu300",fontsize=16,color="blue",shape="box"];3349[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3349[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3349 -> 542[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3350[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3350[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3350 -> 543[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3351[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3351[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3351 -> 544[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3352[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3352[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3352 -> 545[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3353[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3353[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3353 -> 546[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3354[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3354[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3354 -> 547[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3355[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3355[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3355 -> 548[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3356[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3356[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3356 -> 549[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3357[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3357[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3357 -> 550[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3358[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3358[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3358 -> 551[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3359[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3359[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3359 -> 552[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3360[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3360[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3360 -> 553[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3361[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3361[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3361 -> 554[label="",style="solid", color="blue", weight=3]; 36.90/18.31 3362[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3362[label="",style="solid", color="blue", weight=9]; 36.90/18.31 3362 -> 555[label="",style="solid", color="blue", weight=3]; 36.90/18.32 462[label="xuu45",fontsize=16,color="green",shape="box"];460[label="primCompAux0 xuu49 xuu50",fontsize=16,color="burlywood",shape="triangle"];3363[label="xuu50/LT",fontsize=10,color="white",style="solid",shape="box"];460 -> 3363[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3363 -> 556[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3364[label="xuu50/EQ",fontsize=10,color="white",style="solid",shape="box"];460 -> 3364[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3364 -> 557[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3365[label="xuu50/GT",fontsize=10,color="white",style="solid",shape="box"];460 -> 3365[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3365 -> 558[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1133[label="xuu301",fontsize=16,color="green",shape="box"];1134[label="xuu300",fontsize=16,color="green",shape="box"];1135[label="xuu302",fontsize=16,color="green",shape="box"];1136[label="xuu4000",fontsize=16,color="green",shape="box"];1137[label="xuu4002",fontsize=16,color="green",shape="box"];1138 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1138[label="xuu4000 == xuu300 && xuu4001 == xuu301 && xuu4002 == xuu302",fontsize=16,color="magenta"];1138 -> 1185[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1138 -> 1186[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1139[label="xuu4001",fontsize=16,color="green",shape="box"];1132[label="compare2 (xuu108,xuu109,xuu110) (xuu111,xuu112,xuu113) xuu140",fontsize=16,color="burlywood",shape="triangle"];3366[label="xuu140/False",fontsize=10,color="white",style="solid",shape="box"];1132 -> 3366[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3366 -> 1179[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3367[label="xuu140/True",fontsize=10,color="white",style="solid",shape="box"];1132 -> 3367[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3367 -> 1180[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 471[label="xuu300",fontsize=16,color="green",shape="box"];472[label="Succ xuu40000",fontsize=16,color="green",shape="box"];473 -> 374[label="",style="dashed", color="red", weight=0]; 36.90/18.32 473[label="primCmpNat Zero (Succ xuu3000)",fontsize=16,color="magenta"];473 -> 575[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 473 -> 576[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 474[label="EQ",fontsize=16,color="green",shape="box"];475[label="GT",fontsize=16,color="green",shape="box"];476[label="EQ",fontsize=16,color="green",shape="box"];477[label="Succ xuu40000",fontsize=16,color="green",shape="box"];478[label="xuu300",fontsize=16,color="green",shape="box"];479[label="LT",fontsize=16,color="green",shape="box"];480[label="EQ",fontsize=16,color="green",shape="box"];481 -> 374[label="",style="dashed", color="red", weight=0]; 36.90/18.32 481[label="primCmpNat (Succ xuu3000) Zero",fontsize=16,color="magenta"];481 -> 577[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 481 -> 578[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 482[label="EQ",fontsize=16,color="green",shape="box"];484[label="xuu4000",fontsize=16,color="green",shape="box"];485[label="xuu300",fontsize=16,color="green",shape="box"];486[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];3368[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3368[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3368 -> 579[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3369[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3369[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3369 -> 580[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3370[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3370[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3370 -> 581[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3371[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3371[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3371 -> 582[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3372[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3372[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3372 -> 583[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3373[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3373[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3373 -> 584[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3374[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3374[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3374 -> 585[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3375[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3375[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3375 -> 586[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3376[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3376[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3376 -> 587[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3377[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3377[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3377 -> 588[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3378[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3378[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3378 -> 589[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3379[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3379[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3379 -> 590[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3380[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3380[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3380 -> 591[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3381[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];486 -> 3381[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3381 -> 592[label="",style="solid", color="blue", weight=3]; 36.90/18.32 483[label="compare2 (Left xuu70) (Left xuu71) xuu72",fontsize=16,color="burlywood",shape="triangle"];3382[label="xuu72/False",fontsize=10,color="white",style="solid",shape="box"];483 -> 3382[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3382 -> 593[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3383[label="xuu72/True",fontsize=10,color="white",style="solid",shape="box"];483 -> 3383[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3383 -> 594[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 487[label="compare1 (Left xuu4000) (Right xuu300) (Left xuu4000 <= Right xuu300)",fontsize=16,color="black",shape="box"];487 -> 595[label="",style="solid", color="black", weight=3]; 36.90/18.32 488[label="compare1 (Right xuu4000) (Left xuu300) (Right xuu4000 <= Left xuu300)",fontsize=16,color="black",shape="box"];488 -> 596[label="",style="solid", color="black", weight=3]; 36.90/18.32 490[label="xuu4000",fontsize=16,color="green",shape="box"];491[label="xuu300",fontsize=16,color="green",shape="box"];492[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];3384[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3384[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3384 -> 597[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3385[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3385[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3385 -> 598[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3386[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3386[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3386 -> 599[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3387[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3387[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3387 -> 600[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3388[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3388[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3388 -> 601[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3389[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3389[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3389 -> 602[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3390[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3390[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3390 -> 603[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3391[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3391[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3391 -> 604[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3392[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3392[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3392 -> 605[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3393[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3393[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3393 -> 606[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3394[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3394[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3394 -> 607[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3395[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3395[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3395 -> 608[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3396[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3396[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3396 -> 609[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3397[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];492 -> 3397[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3397 -> 610[label="",style="solid", color="blue", weight=3]; 36.90/18.32 489[label="compare2 (Right xuu77) (Right xuu78) xuu79",fontsize=16,color="burlywood",shape="triangle"];3398[label="xuu79/False",fontsize=10,color="white",style="solid",shape="box"];489 -> 3398[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3398 -> 611[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3399[label="xuu79/True",fontsize=10,color="white",style="solid",shape="box"];489 -> 3399[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3399 -> 612[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 493[label="primCmpNat (Succ xuu40000) (Succ xuu3000)",fontsize=16,color="black",shape="box"];493 -> 613[label="",style="solid", color="black", weight=3]; 36.90/18.32 494[label="primCmpNat (Succ xuu40000) Zero",fontsize=16,color="black",shape="box"];494 -> 614[label="",style="solid", color="black", weight=3]; 36.90/18.32 495[label="primCmpNat Zero (Succ xuu3000)",fontsize=16,color="black",shape="box"];495 -> 615[label="",style="solid", color="black", weight=3]; 36.90/18.32 496[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];496 -> 616[label="",style="solid", color="black", weight=3]; 36.90/18.32 497[label="primMulInt xuu4000 xuu301",fontsize=16,color="burlywood",shape="triangle"];3400[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];497 -> 3400[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3400 -> 617[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3401[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];497 -> 3401[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3401 -> 618[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 498[label="xuu4001",fontsize=16,color="green",shape="box"];499[label="xuu300",fontsize=16,color="green",shape="box"];500[label="Integer xuu40000 * xuu301",fontsize=16,color="burlywood",shape="box"];3402[label="xuu301/Integer xuu3010",fontsize=10,color="white",style="solid",shape="box"];500 -> 3402[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3402 -> 619[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 501[label="xuu4001",fontsize=16,color="green",shape="box"];502[label="xuu300",fontsize=16,color="green",shape="box"];503[label="EQ",fontsize=16,color="green",shape="box"];504[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];504 -> 620[label="",style="solid", color="black", weight=3]; 36.90/18.32 505[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];505 -> 621[label="",style="solid", color="black", weight=3]; 36.90/18.32 506[label="EQ",fontsize=16,color="green",shape="box"];507[label="EQ",fontsize=16,color="green",shape="box"];508[label="compare1 Nothing (Just xuu300) (Nothing <= Just xuu300)",fontsize=16,color="black",shape="box"];508 -> 622[label="",style="solid", color="black", weight=3]; 36.90/18.32 509[label="compare1 (Just xuu4000) Nothing (Just xuu4000 <= Nothing)",fontsize=16,color="black",shape="box"];509 -> 623[label="",style="solid", color="black", weight=3]; 36.90/18.32 511[label="xuu4000",fontsize=16,color="green",shape="box"];512[label="xuu300",fontsize=16,color="green",shape="box"];513[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];3403[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3403[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3403 -> 624[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3404[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3404[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3404 -> 625[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3405[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3405[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3405 -> 626[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3406[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3406[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3406 -> 627[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3407[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3407[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3407 -> 628[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3408[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3408[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3408 -> 629[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3409[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3409[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3409 -> 630[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3410[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3410[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3410 -> 631[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3411[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3411[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3411 -> 632[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3412[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3412[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3412 -> 633[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3413[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3413[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3413 -> 634[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3414[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3414[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3414 -> 635[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3415[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3415[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3415 -> 636[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3416[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];513 -> 3416[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3416 -> 637[label="",style="solid", color="blue", weight=3]; 36.90/18.32 510[label="compare2 (Just xuu84) (Just xuu85) xuu86",fontsize=16,color="burlywood",shape="triangle"];3417[label="xuu86/False",fontsize=10,color="white",style="solid",shape="box"];510 -> 3417[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3417 -> 638[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3418[label="xuu86/True",fontsize=10,color="white",style="solid",shape="box"];510 -> 3418[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3418 -> 639[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 974[label="xuu4000",fontsize=16,color="green",shape="box"];975[label="xuu300",fontsize=16,color="green",shape="box"];976[label="xuu4001",fontsize=16,color="green",shape="box"];977 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.32 977[label="xuu4000 == xuu300 && xuu4001 == xuu301",fontsize=16,color="magenta"];977 -> 1187[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 977 -> 1188[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 978[label="xuu301",fontsize=16,color="green",shape="box"];973[label="compare2 (xuu121,xuu122) (xuu123,xuu124) xuu125",fontsize=16,color="burlywood",shape="triangle"];3419[label="xuu125/False",fontsize=10,color="white",style="solid",shape="box"];973 -> 3419[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3419 -> 998[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3420[label="xuu125/True",fontsize=10,color="white",style="solid",shape="box"];973 -> 3420[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3420 -> 999[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 520 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.32 520[label="compare (xuu4000 * Pos xuu3010) (Pos xuu40010 * xuu300)",fontsize=16,color="magenta"];520 -> 656[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 520 -> 657[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 521 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.32 521[label="compare (xuu4000 * Pos xuu3010) (Neg xuu40010 * xuu300)",fontsize=16,color="magenta"];521 -> 658[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 521 -> 659[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 522 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.32 522[label="compare (xuu4000 * Neg xuu3010) (Pos xuu40010 * xuu300)",fontsize=16,color="magenta"];522 -> 660[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 522 -> 661[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 523 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.32 523[label="compare (xuu4000 * Neg xuu3010) (Neg xuu40010 * xuu300)",fontsize=16,color="magenta"];523 -> 662[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 523 -> 663[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 524[label="EQ",fontsize=16,color="green",shape="box"];525[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];525 -> 664[label="",style="solid", color="black", weight=3]; 36.90/18.32 526[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];526 -> 665[label="",style="solid", color="black", weight=3]; 36.90/18.32 527[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];527 -> 666[label="",style="solid", color="black", weight=3]; 36.90/18.32 528[label="EQ",fontsize=16,color="green",shape="box"];529[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];529 -> 667[label="",style="solid", color="black", weight=3]; 36.90/18.32 530[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];530 -> 668[label="",style="solid", color="black", weight=3]; 36.90/18.32 531[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];531 -> 669[label="",style="solid", color="black", weight=3]; 36.90/18.32 532[label="EQ",fontsize=16,color="green",shape="box"];533 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.32 533[label="compare (xuu4000 * Pos xuu3010) (Pos xuu40010 * xuu300)",fontsize=16,color="magenta"];533 -> 670[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 533 -> 671[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 534 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.32 534[label="compare (xuu4000 * Pos xuu3010) (Neg xuu40010 * xuu300)",fontsize=16,color="magenta"];534 -> 672[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 534 -> 673[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 535 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.32 535[label="compare (xuu4000 * Neg xuu3010) (Pos xuu40010 * xuu300)",fontsize=16,color="magenta"];535 -> 674[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 535 -> 675[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 536 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.32 536[label="compare (xuu4000 * Neg xuu3010) (Neg xuu40010 * xuu300)",fontsize=16,color="magenta"];536 -> 676[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 536 -> 677[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 537[label="xuu37",fontsize=16,color="green",shape="box"];1054 -> 681[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1054[label="FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];1055[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="triangle"];1055 -> 1063[label="",style="solid", color="black", weight=3]; 36.90/18.32 1053[label="primPlusInt xuu392 xuu134",fontsize=16,color="burlywood",shape="triangle"];3421[label="xuu392/Pos xuu3920",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3421[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3421 -> 1064[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3422[label="xuu392/Neg xuu3920",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3422[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3422 -> 1065[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 540 -> 112[label="",style="dashed", color="red", weight=0]; 36.90/18.32 540[label="FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];540 -> 680[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 540 -> 681[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 539[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 xuu98",fontsize=16,color="burlywood",shape="triangle"];3423[label="xuu98/False",fontsize=10,color="white",style="solid",shape="box"];539 -> 3423[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3423 -> 682[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3424[label="xuu98/True",fontsize=10,color="white",style="solid",shape="box"];539 -> 3424[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3424 -> 683[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 541[label="FiniteMap.mkBranchResult xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="triangle"];541 -> 684[label="",style="solid", color="black", weight=3]; 36.90/18.32 542 -> 193[label="",style="dashed", color="red", weight=0]; 36.90/18.32 542[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];542 -> 685[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 542 -> 686[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 543 -> 194[label="",style="dashed", color="red", weight=0]; 36.90/18.32 543[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];543 -> 687[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 543 -> 688[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 544 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.32 544[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];544 -> 689[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 544 -> 690[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 545 -> 196[label="",style="dashed", color="red", weight=0]; 36.90/18.32 545[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];545 -> 691[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 545 -> 692[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 546 -> 197[label="",style="dashed", color="red", weight=0]; 36.90/18.32 546[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];546 -> 693[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 546 -> 694[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 547 -> 198[label="",style="dashed", color="red", weight=0]; 36.90/18.32 547[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];547 -> 695[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 547 -> 696[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 548 -> 199[label="",style="dashed", color="red", weight=0]; 36.90/18.32 548[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];548 -> 697[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 548 -> 698[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 549 -> 200[label="",style="dashed", color="red", weight=0]; 36.90/18.32 549[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];549 -> 699[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 549 -> 700[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 550 -> 201[label="",style="dashed", color="red", weight=0]; 36.90/18.32 550[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];550 -> 701[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 550 -> 702[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 551 -> 202[label="",style="dashed", color="red", weight=0]; 36.90/18.32 551[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];551 -> 703[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 551 -> 704[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 552 -> 203[label="",style="dashed", color="red", weight=0]; 36.90/18.32 552[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];552 -> 705[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 552 -> 706[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 553 -> 204[label="",style="dashed", color="red", weight=0]; 36.90/18.32 553[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];553 -> 707[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 553 -> 708[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 554 -> 205[label="",style="dashed", color="red", weight=0]; 36.90/18.32 554[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];554 -> 709[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 554 -> 710[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 555 -> 206[label="",style="dashed", color="red", weight=0]; 36.90/18.32 555[label="compare xuu4000 xuu300",fontsize=16,color="magenta"];555 -> 711[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 555 -> 712[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 556[label="primCompAux0 xuu49 LT",fontsize=16,color="black",shape="box"];556 -> 713[label="",style="solid", color="black", weight=3]; 36.90/18.32 557[label="primCompAux0 xuu49 EQ",fontsize=16,color="black",shape="box"];557 -> 714[label="",style="solid", color="black", weight=3]; 36.90/18.32 558[label="primCompAux0 xuu49 GT",fontsize=16,color="black",shape="box"];558 -> 715[label="",style="solid", color="black", weight=3]; 36.90/18.32 1185[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];3425[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3425[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3425 -> 1203[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3426[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3426[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3426 -> 1204[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3427[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3427[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3427 -> 1205[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3428[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3428[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3428 -> 1206[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3429[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3429[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3429 -> 1207[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3430[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3430[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3430 -> 1208[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3431[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3431[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3431 -> 1209[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3432[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3432[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3432 -> 1210[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3433[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3433[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3433 -> 1211[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3434[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3434[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3434 -> 1212[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3435[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3435[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3435 -> 1213[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3436[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3436[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3436 -> 1214[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3437[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3437[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3437 -> 1215[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3438[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3438[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3438 -> 1216[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1186 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1186[label="xuu4001 == xuu301 && xuu4002 == xuu302",fontsize=16,color="magenta"];1186 -> 1217[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1186 -> 1218[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1184[label="xuu145 && xuu146",fontsize=16,color="burlywood",shape="triangle"];3439[label="xuu145/False",fontsize=10,color="white",style="solid",shape="box"];1184 -> 3439[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3439 -> 1219[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3440[label="xuu145/True",fontsize=10,color="white",style="solid",shape="box"];1184 -> 3440[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3440 -> 1220[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1179[label="compare2 (xuu108,xuu109,xuu110) (xuu111,xuu112,xuu113) False",fontsize=16,color="black",shape="box"];1179 -> 1221[label="",style="solid", color="black", weight=3]; 36.90/18.32 1180[label="compare2 (xuu108,xuu109,xuu110) (xuu111,xuu112,xuu113) True",fontsize=16,color="black",shape="box"];1180 -> 1222[label="",style="solid", color="black", weight=3]; 36.90/18.32 575[label="Succ xuu3000",fontsize=16,color="green",shape="box"];576[label="Zero",fontsize=16,color="green",shape="box"];577[label="Zero",fontsize=16,color="green",shape="box"];578[label="Succ xuu3000",fontsize=16,color="green",shape="box"];579 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.32 579[label="xuu4000 == xuu300",fontsize=16,color="magenta"];579 -> 738[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 579 -> 739[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 580 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.32 580[label="xuu4000 == xuu300",fontsize=16,color="magenta"];580 -> 740[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 580 -> 741[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 581 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.32 581[label="xuu4000 == xuu300",fontsize=16,color="magenta"];581 -> 742[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 581 -> 743[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 582 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.32 582[label="xuu4000 == xuu300",fontsize=16,color="magenta"];582 -> 744[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 582 -> 745[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 583 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.32 583[label="xuu4000 == xuu300",fontsize=16,color="magenta"];583 -> 746[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 583 -> 747[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 584 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.32 584[label="xuu4000 == xuu300",fontsize=16,color="magenta"];584 -> 748[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 584 -> 749[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 585 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.32 585[label="xuu4000 == xuu300",fontsize=16,color="magenta"];585 -> 750[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 585 -> 751[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 586 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.32 586[label="xuu4000 == xuu300",fontsize=16,color="magenta"];586 -> 752[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 586 -> 753[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 587 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.32 587[label="xuu4000 == xuu300",fontsize=16,color="magenta"];587 -> 754[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 587 -> 755[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 588 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.32 588[label="xuu4000 == xuu300",fontsize=16,color="magenta"];588 -> 756[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 588 -> 757[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 589 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.32 589[label="xuu4000 == xuu300",fontsize=16,color="magenta"];589 -> 758[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 589 -> 759[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 590 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.32 590[label="xuu4000 == xuu300",fontsize=16,color="magenta"];590 -> 760[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 590 -> 761[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 591 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.32 591[label="xuu4000 == xuu300",fontsize=16,color="magenta"];591 -> 762[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 591 -> 763[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 592 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.32 592[label="xuu4000 == xuu300",fontsize=16,color="magenta"];592 -> 764[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 592 -> 765[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 593[label="compare2 (Left xuu70) (Left xuu71) False",fontsize=16,color="black",shape="box"];593 -> 766[label="",style="solid", color="black", weight=3]; 36.90/18.32 594[label="compare2 (Left xuu70) (Left xuu71) True",fontsize=16,color="black",shape="box"];594 -> 767[label="",style="solid", color="black", weight=3]; 36.90/18.32 595[label="compare1 (Left xuu4000) (Right xuu300) True",fontsize=16,color="black",shape="box"];595 -> 768[label="",style="solid", color="black", weight=3]; 36.90/18.32 596[label="compare1 (Right xuu4000) (Left xuu300) False",fontsize=16,color="black",shape="box"];596 -> 769[label="",style="solid", color="black", weight=3]; 36.90/18.32 597 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.32 597[label="xuu4000 == xuu300",fontsize=16,color="magenta"];597 -> 770[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 597 -> 771[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 598 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.32 598[label="xuu4000 == xuu300",fontsize=16,color="magenta"];598 -> 772[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 598 -> 773[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 599 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.32 599[label="xuu4000 == xuu300",fontsize=16,color="magenta"];599 -> 774[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 599 -> 775[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 600 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.32 600[label="xuu4000 == xuu300",fontsize=16,color="magenta"];600 -> 776[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 600 -> 777[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 601 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.32 601[label="xuu4000 == xuu300",fontsize=16,color="magenta"];601 -> 778[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 601 -> 779[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 602 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.32 602[label="xuu4000 == xuu300",fontsize=16,color="magenta"];602 -> 780[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 602 -> 781[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 603 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.32 603[label="xuu4000 == xuu300",fontsize=16,color="magenta"];603 -> 782[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 603 -> 783[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 604 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.32 604[label="xuu4000 == xuu300",fontsize=16,color="magenta"];604 -> 784[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 604 -> 785[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 605 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.32 605[label="xuu4000 == xuu300",fontsize=16,color="magenta"];605 -> 786[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 605 -> 787[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 606 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.32 606[label="xuu4000 == xuu300",fontsize=16,color="magenta"];606 -> 788[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 606 -> 789[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 607 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.32 607[label="xuu4000 == xuu300",fontsize=16,color="magenta"];607 -> 790[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 607 -> 791[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 608 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.32 608[label="xuu4000 == xuu300",fontsize=16,color="magenta"];608 -> 792[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 608 -> 793[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 609 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.32 609[label="xuu4000 == xuu300",fontsize=16,color="magenta"];609 -> 794[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 609 -> 795[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 610 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.32 610[label="xuu4000 == xuu300",fontsize=16,color="magenta"];610 -> 796[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 610 -> 797[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 611[label="compare2 (Right xuu77) (Right xuu78) False",fontsize=16,color="black",shape="box"];611 -> 798[label="",style="solid", color="black", weight=3]; 36.90/18.32 612[label="compare2 (Right xuu77) (Right xuu78) True",fontsize=16,color="black",shape="box"];612 -> 799[label="",style="solid", color="black", weight=3]; 36.90/18.32 613 -> 374[label="",style="dashed", color="red", weight=0]; 36.90/18.32 613[label="primCmpNat xuu40000 xuu3000",fontsize=16,color="magenta"];613 -> 800[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 613 -> 801[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 614[label="GT",fontsize=16,color="green",shape="box"];615[label="LT",fontsize=16,color="green",shape="box"];616[label="EQ",fontsize=16,color="green",shape="box"];617[label="primMulInt (Pos xuu40000) xuu301",fontsize=16,color="burlywood",shape="box"];3441[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];617 -> 3441[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3441 -> 802[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3442[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];617 -> 3442[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3442 -> 803[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 618[label="primMulInt (Neg xuu40000) xuu301",fontsize=16,color="burlywood",shape="box"];3443[label="xuu301/Pos xuu3010",fontsize=10,color="white",style="solid",shape="box"];618 -> 3443[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3443 -> 804[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3444[label="xuu301/Neg xuu3010",fontsize=10,color="white",style="solid",shape="box"];618 -> 3444[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3444 -> 805[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 619[label="Integer xuu40000 * Integer xuu3010",fontsize=16,color="black",shape="box"];619 -> 806[label="",style="solid", color="black", weight=3]; 36.90/18.32 620[label="compare1 False True True",fontsize=16,color="black",shape="box"];620 -> 807[label="",style="solid", color="black", weight=3]; 36.90/18.32 621[label="compare1 True False False",fontsize=16,color="black",shape="box"];621 -> 808[label="",style="solid", color="black", weight=3]; 36.90/18.32 622[label="compare1 Nothing (Just xuu300) True",fontsize=16,color="black",shape="box"];622 -> 809[label="",style="solid", color="black", weight=3]; 36.90/18.32 623[label="compare1 (Just xuu4000) Nothing False",fontsize=16,color="black",shape="box"];623 -> 810[label="",style="solid", color="black", weight=3]; 36.90/18.32 624 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.32 624[label="xuu4000 == xuu300",fontsize=16,color="magenta"];624 -> 811[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 624 -> 812[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 625 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.32 625[label="xuu4000 == xuu300",fontsize=16,color="magenta"];625 -> 813[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 625 -> 814[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 626 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.32 626[label="xuu4000 == xuu300",fontsize=16,color="magenta"];626 -> 815[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 626 -> 816[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 627 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.32 627[label="xuu4000 == xuu300",fontsize=16,color="magenta"];627 -> 817[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 627 -> 818[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 628 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.32 628[label="xuu4000 == xuu300",fontsize=16,color="magenta"];628 -> 819[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 628 -> 820[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 629 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.32 629[label="xuu4000 == xuu300",fontsize=16,color="magenta"];629 -> 821[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 629 -> 822[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 630 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.32 630[label="xuu4000 == xuu300",fontsize=16,color="magenta"];630 -> 823[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 630 -> 824[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 631 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.32 631[label="xuu4000 == xuu300",fontsize=16,color="magenta"];631 -> 825[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 631 -> 826[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 632 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.32 632[label="xuu4000 == xuu300",fontsize=16,color="magenta"];632 -> 827[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 632 -> 828[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 633 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.32 633[label="xuu4000 == xuu300",fontsize=16,color="magenta"];633 -> 829[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 633 -> 830[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 634 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.32 634[label="xuu4000 == xuu300",fontsize=16,color="magenta"];634 -> 831[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 634 -> 832[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 635 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.32 635[label="xuu4000 == xuu300",fontsize=16,color="magenta"];635 -> 833[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 635 -> 834[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 636 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.32 636[label="xuu4000 == xuu300",fontsize=16,color="magenta"];636 -> 835[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 636 -> 836[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 637 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.32 637[label="xuu4000 == xuu300",fontsize=16,color="magenta"];637 -> 837[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 637 -> 838[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 638[label="compare2 (Just xuu84) (Just xuu85) False",fontsize=16,color="black",shape="box"];638 -> 839[label="",style="solid", color="black", weight=3]; 36.90/18.32 639[label="compare2 (Just xuu84) (Just xuu85) True",fontsize=16,color="black",shape="box"];639 -> 840[label="",style="solid", color="black", weight=3]; 36.90/18.32 1187[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];3445[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3445[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3445 -> 1223[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3446[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3446[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3446 -> 1224[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3447[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3447[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3447 -> 1225[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3448[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3448[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3448 -> 1226[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3449[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3449[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3449 -> 1227[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3450[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3450[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3450 -> 1228[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3451[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3451[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3451 -> 1229[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3452[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3452[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3452 -> 1230[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3453[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3453[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3453 -> 1231[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3454[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3454[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3454 -> 1232[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3455[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3455[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3455 -> 1233[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3456[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3456[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3456 -> 1234[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3457[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3457[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3457 -> 1235[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3458[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3458[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3458 -> 1236[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1188[label="xuu4001 == xuu301",fontsize=16,color="blue",shape="box"];3459[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3459[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3459 -> 1237[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3460[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3460[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3460 -> 1238[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3461[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3461[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3461 -> 1239[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3462[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3462[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3462 -> 1240[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3463[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3463[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3463 -> 1241[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3464[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3464[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3464 -> 1242[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3465[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3465[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3465 -> 1243[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3466[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3466[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3466 -> 1244[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3467[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3467[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3467 -> 1245[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3468[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3468[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3468 -> 1246[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3469[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3469[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3469 -> 1247[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3470[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3470[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3470 -> 1248[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3471[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3471[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3471 -> 1249[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3472[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3472[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3472 -> 1250[label="",style="solid", color="blue", weight=3]; 36.90/18.32 998[label="compare2 (xuu121,xuu122) (xuu123,xuu124) False",fontsize=16,color="black",shape="box"];998 -> 1021[label="",style="solid", color="black", weight=3]; 36.90/18.32 999[label="compare2 (xuu121,xuu122) (xuu123,xuu124) True",fontsize=16,color="black",shape="box"];999 -> 1022[label="",style="solid", color="black", weight=3]; 36.90/18.32 656 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 656[label="xuu4000 * Pos xuu3010",fontsize=16,color="magenta"];656 -> 871[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 656 -> 872[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 657 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 657[label="Pos xuu40010 * xuu300",fontsize=16,color="magenta"];657 -> 873[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 657 -> 874[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 658 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 658[label="xuu4000 * Pos xuu3010",fontsize=16,color="magenta"];658 -> 875[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 658 -> 876[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 659 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 659[label="Neg xuu40010 * xuu300",fontsize=16,color="magenta"];659 -> 877[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 659 -> 878[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 660 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 660[label="xuu4000 * Neg xuu3010",fontsize=16,color="magenta"];660 -> 879[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 660 -> 880[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 661 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 661[label="Pos xuu40010 * xuu300",fontsize=16,color="magenta"];661 -> 881[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 661 -> 882[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 662 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 662[label="xuu4000 * Neg xuu3010",fontsize=16,color="magenta"];662 -> 883[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 662 -> 884[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 663 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 663[label="Neg xuu40010 * xuu300",fontsize=16,color="magenta"];663 -> 885[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 663 -> 886[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 664[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];664 -> 887[label="",style="solid", color="black", weight=3]; 36.90/18.32 665[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];665 -> 888[label="",style="solid", color="black", weight=3]; 36.90/18.32 666[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];666 -> 889[label="",style="solid", color="black", weight=3]; 36.90/18.32 667[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];667 -> 890[label="",style="solid", color="black", weight=3]; 36.90/18.32 668[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];668 -> 891[label="",style="solid", color="black", weight=3]; 36.90/18.32 669[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];669 -> 892[label="",style="solid", color="black", weight=3]; 36.90/18.32 670 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 670[label="xuu4000 * Pos xuu3010",fontsize=16,color="magenta"];670 -> 893[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 670 -> 894[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 671 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 671[label="Pos xuu40010 * xuu300",fontsize=16,color="magenta"];671 -> 895[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 671 -> 896[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 672 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 672[label="xuu4000 * Pos xuu3010",fontsize=16,color="magenta"];672 -> 897[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 672 -> 898[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 673 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 673[label="Neg xuu40010 * xuu300",fontsize=16,color="magenta"];673 -> 899[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 673 -> 900[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 674 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 674[label="xuu4000 * Neg xuu3010",fontsize=16,color="magenta"];674 -> 901[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 674 -> 902[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 675 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 675[label="Pos xuu40010 * xuu300",fontsize=16,color="magenta"];675 -> 903[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 675 -> 904[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 676 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 676[label="xuu4000 * Neg xuu3010",fontsize=16,color="magenta"];676 -> 905[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 676 -> 906[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 677 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 677[label="Neg xuu40010 * xuu300",fontsize=16,color="magenta"];677 -> 907[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 677 -> 908[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 681[label="FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="triangle"];681 -> 913[label="",style="solid", color="black", weight=3]; 36.90/18.32 1063 -> 913[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1063[label="FiniteMap.sizeFM xuu39",fontsize=16,color="magenta"];1063 -> 1072[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1064[label="primPlusInt (Pos xuu3920) xuu134",fontsize=16,color="burlywood",shape="box"];3473[label="xuu134/Pos xuu1340",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3473[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3473 -> 1073[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3474[label="xuu134/Neg xuu1340",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3474[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3474 -> 1074[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1065[label="primPlusInt (Neg xuu3920) xuu134",fontsize=16,color="burlywood",shape="box"];3475[label="xuu134/Pos xuu1340",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3475[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3475 -> 1075[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3476[label="xuu134/Neg xuu1340",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3476[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3476 -> 1076[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 680 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 680[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];680 -> 911[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 680 -> 912[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 682[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 False",fontsize=16,color="black",shape="box"];682 -> 914[label="",style="solid", color="black", weight=3]; 36.90/18.32 683[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 True",fontsize=16,color="black",shape="box"];683 -> 915[label="",style="solid", color="black", weight=3]; 36.90/18.32 684[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"];684 -> 916[label="",style="dashed", color="green", weight=3]; 36.90/18.32 685[label="xuu4000",fontsize=16,color="green",shape="box"];686[label="xuu300",fontsize=16,color="green",shape="box"];687[label="xuu4000",fontsize=16,color="green",shape="box"];688[label="xuu300",fontsize=16,color="green",shape="box"];689[label="xuu4000",fontsize=16,color="green",shape="box"];690[label="xuu300",fontsize=16,color="green",shape="box"];691[label="xuu4000",fontsize=16,color="green",shape="box"];692[label="xuu300",fontsize=16,color="green",shape="box"];693[label="xuu4000",fontsize=16,color="green",shape="box"];694[label="xuu300",fontsize=16,color="green",shape="box"];695[label="xuu4000",fontsize=16,color="green",shape="box"];696[label="xuu300",fontsize=16,color="green",shape="box"];697[label="xuu4000",fontsize=16,color="green",shape="box"];698[label="xuu300",fontsize=16,color="green",shape="box"];699[label="xuu4000",fontsize=16,color="green",shape="box"];700[label="xuu300",fontsize=16,color="green",shape="box"];701[label="xuu4000",fontsize=16,color="green",shape="box"];702[label="xuu300",fontsize=16,color="green",shape="box"];703[label="xuu4000",fontsize=16,color="green",shape="box"];704[label="xuu300",fontsize=16,color="green",shape="box"];705[label="xuu4000",fontsize=16,color="green",shape="box"];706[label="xuu300",fontsize=16,color="green",shape="box"];707[label="xuu4000",fontsize=16,color="green",shape="box"];708[label="xuu300",fontsize=16,color="green",shape="box"];709[label="xuu4000",fontsize=16,color="green",shape="box"];710[label="xuu300",fontsize=16,color="green",shape="box"];711[label="xuu4000",fontsize=16,color="green",shape="box"];712[label="xuu300",fontsize=16,color="green",shape="box"];713[label="LT",fontsize=16,color="green",shape="box"];714[label="xuu49",fontsize=16,color="green",shape="box"];715[label="GT",fontsize=16,color="green",shape="box"];1203 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1203[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1204 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1204[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1205 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1205[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1206 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1206[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1207 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1207[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1208 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1208[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1209 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1209[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1210 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1210[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1211 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1211[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1212 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1212[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1213 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1213[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1214 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1214[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1215 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1215[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1216 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1216[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1217[label="xuu4001 == xuu301",fontsize=16,color="blue",shape="box"];3477[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3477[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3477 -> 1262[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3478[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3478[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3478 -> 1263[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3479[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3479[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3479 -> 1264[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3480[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3480[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3480 -> 1265[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3481[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3481[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3481 -> 1266[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3482[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3482[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3482 -> 1267[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3483[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3483[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3483 -> 1268[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3484[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3484[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3484 -> 1269[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3485[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3485[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3485 -> 1270[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3486[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3486[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3486 -> 1271[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3487[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3487[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3487 -> 1272[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3488[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3488[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3488 -> 1273[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3489[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3489[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3489 -> 1274[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3490[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3490[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3490 -> 1275[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1218[label="xuu4002 == xuu302",fontsize=16,color="blue",shape="box"];3491[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3491[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3491 -> 1276[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3492[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3492[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3492 -> 1277[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3493[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3493[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3493 -> 1278[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3494[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3494[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3494 -> 1279[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3495[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3495[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3495 -> 1280[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3496[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3496[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3496 -> 1281[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3497[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3497[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3497 -> 1282[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3498[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3498[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3498 -> 1283[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3499[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3499[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3499 -> 1284[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3500[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3500[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3500 -> 1285[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3501[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3501[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3501 -> 1286[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3502[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3502[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3502 -> 1287[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3503[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3503[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3503 -> 1288[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3504[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3504[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3504 -> 1289[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1219[label="False && xuu146",fontsize=16,color="black",shape="box"];1219 -> 1290[label="",style="solid", color="black", weight=3]; 36.90/18.32 1220[label="True && xuu146",fontsize=16,color="black",shape="box"];1220 -> 1291[label="",style="solid", color="black", weight=3]; 36.90/18.32 1221[label="compare1 (xuu108,xuu109,xuu110) (xuu111,xuu112,xuu113) ((xuu108,xuu109,xuu110) <= (xuu111,xuu112,xuu113))",fontsize=16,color="black",shape="box"];1221 -> 1292[label="",style="solid", color="black", weight=3]; 36.90/18.32 1222[label="EQ",fontsize=16,color="green",shape="box"];738[label="xuu300",fontsize=16,color="green",shape="box"];739[label="xuu4000",fontsize=16,color="green",shape="box"];559[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3505[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];559 -> 3505[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3505 -> 716[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 740[label="xuu300",fontsize=16,color="green",shape="box"];741[label="xuu4000",fontsize=16,color="green",shape="box"];560[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3506[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];560 -> 3506[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3506 -> 717[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 742[label="xuu300",fontsize=16,color="green",shape="box"];743[label="xuu4000",fontsize=16,color="green",shape="box"];561[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3507[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];561 -> 3507[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3507 -> 718[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3508[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];561 -> 3508[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3508 -> 719[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 744[label="xuu300",fontsize=16,color="green",shape="box"];745[label="xuu4000",fontsize=16,color="green",shape="box"];562[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];562 -> 720[label="",style="solid", color="black", weight=3]; 36.90/18.32 746[label="xuu300",fontsize=16,color="green",shape="box"];747[label="xuu4000",fontsize=16,color="green",shape="box"];563[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3509[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];563 -> 3509[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3509 -> 721[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3510[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];563 -> 3510[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3510 -> 722[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 748[label="xuu300",fontsize=16,color="green",shape="box"];749[label="xuu4000",fontsize=16,color="green",shape="box"];564[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];564 -> 723[label="",style="solid", color="black", weight=3]; 36.90/18.32 750[label="xuu300",fontsize=16,color="green",shape="box"];751[label="xuu4000",fontsize=16,color="green",shape="box"];565[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3511[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];565 -> 3511[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3511 -> 724[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3512[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];565 -> 3512[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3512 -> 725[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3513[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];565 -> 3513[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3513 -> 726[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 752[label="xuu300",fontsize=16,color="green",shape="box"];753[label="xuu4000",fontsize=16,color="green",shape="box"];566[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];566 -> 727[label="",style="solid", color="black", weight=3]; 36.90/18.32 754[label="xuu300",fontsize=16,color="green",shape="box"];755[label="xuu4000",fontsize=16,color="green",shape="box"];567[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3514[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];567 -> 3514[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3514 -> 728[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 756[label="xuu300",fontsize=16,color="green",shape="box"];757[label="xuu4000",fontsize=16,color="green",shape="box"];568[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3515[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];568 -> 3515[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3515 -> 729[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3516[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];568 -> 3516[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3516 -> 730[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 758[label="xuu300",fontsize=16,color="green",shape="box"];759[label="xuu4000",fontsize=16,color="green",shape="box"];569[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3517[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];569 -> 3517[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3517 -> 731[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 760[label="xuu300",fontsize=16,color="green",shape="box"];761[label="xuu4000",fontsize=16,color="green",shape="box"];570[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3518[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];570 -> 3518[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3518 -> 732[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 762[label="xuu300",fontsize=16,color="green",shape="box"];763[label="xuu4000",fontsize=16,color="green",shape="box"];571[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];3519[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];571 -> 3519[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3519 -> 733[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3520[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];571 -> 3520[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3520 -> 734[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 764[label="xuu300",fontsize=16,color="green",shape="box"];765[label="xuu4000",fontsize=16,color="green",shape="box"];572[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];572 -> 735[label="",style="solid", color="black", weight=3]; 36.90/18.32 766 -> 1255[label="",style="dashed", color="red", weight=0]; 36.90/18.32 766[label="compare1 (Left xuu70) (Left xuu71) (Left xuu70 <= Left xuu71)",fontsize=16,color="magenta"];766 -> 1256[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 766 -> 1257[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 766 -> 1258[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 767[label="EQ",fontsize=16,color="green",shape="box"];768[label="LT",fontsize=16,color="green",shape="box"];769[label="compare0 (Right xuu4000) (Left xuu300) otherwise",fontsize=16,color="black",shape="box"];769 -> 962[label="",style="solid", color="black", weight=3]; 36.90/18.32 770[label="xuu300",fontsize=16,color="green",shape="box"];771[label="xuu4000",fontsize=16,color="green",shape="box"];772[label="xuu300",fontsize=16,color="green",shape="box"];773[label="xuu4000",fontsize=16,color="green",shape="box"];774[label="xuu300",fontsize=16,color="green",shape="box"];775[label="xuu4000",fontsize=16,color="green",shape="box"];776[label="xuu300",fontsize=16,color="green",shape="box"];777[label="xuu4000",fontsize=16,color="green",shape="box"];778[label="xuu300",fontsize=16,color="green",shape="box"];779[label="xuu4000",fontsize=16,color="green",shape="box"];780[label="xuu300",fontsize=16,color="green",shape="box"];781[label="xuu4000",fontsize=16,color="green",shape="box"];782[label="xuu300",fontsize=16,color="green",shape="box"];783[label="xuu4000",fontsize=16,color="green",shape="box"];784[label="xuu300",fontsize=16,color="green",shape="box"];785[label="xuu4000",fontsize=16,color="green",shape="box"];786[label="xuu300",fontsize=16,color="green",shape="box"];787[label="xuu4000",fontsize=16,color="green",shape="box"];788[label="xuu300",fontsize=16,color="green",shape="box"];789[label="xuu4000",fontsize=16,color="green",shape="box"];790[label="xuu300",fontsize=16,color="green",shape="box"];791[label="xuu4000",fontsize=16,color="green",shape="box"];792[label="xuu300",fontsize=16,color="green",shape="box"];793[label="xuu4000",fontsize=16,color="green",shape="box"];794[label="xuu300",fontsize=16,color="green",shape="box"];795[label="xuu4000",fontsize=16,color="green",shape="box"];796[label="xuu300",fontsize=16,color="green",shape="box"];797[label="xuu4000",fontsize=16,color="green",shape="box"];798 -> 1353[label="",style="dashed", color="red", weight=0]; 36.90/18.32 798[label="compare1 (Right xuu77) (Right xuu78) (Right xuu77 <= Right xuu78)",fontsize=16,color="magenta"];798 -> 1354[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 798 -> 1355[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 798 -> 1356[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 799[label="EQ",fontsize=16,color="green",shape="box"];800[label="xuu3000",fontsize=16,color="green",shape="box"];801[label="xuu40000",fontsize=16,color="green",shape="box"];802[label="primMulInt (Pos xuu40000) (Pos xuu3010)",fontsize=16,color="black",shape="box"];802 -> 964[label="",style="solid", color="black", weight=3]; 36.90/18.32 803[label="primMulInt (Pos xuu40000) (Neg xuu3010)",fontsize=16,color="black",shape="box"];803 -> 965[label="",style="solid", color="black", weight=3]; 36.90/18.32 804[label="primMulInt (Neg xuu40000) (Pos xuu3010)",fontsize=16,color="black",shape="box"];804 -> 966[label="",style="solid", color="black", weight=3]; 36.90/18.32 805[label="primMulInt (Neg xuu40000) (Neg xuu3010)",fontsize=16,color="black",shape="box"];805 -> 967[label="",style="solid", color="black", weight=3]; 36.90/18.32 806[label="Integer (primMulInt xuu40000 xuu3010)",fontsize=16,color="green",shape="box"];806 -> 968[label="",style="dashed", color="green", weight=3]; 36.90/18.32 807[label="LT",fontsize=16,color="green",shape="box"];808[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];808 -> 969[label="",style="solid", color="black", weight=3]; 36.90/18.32 809[label="LT",fontsize=16,color="green",shape="box"];810[label="compare0 (Just xuu4000) Nothing otherwise",fontsize=16,color="black",shape="box"];810 -> 970[label="",style="solid", color="black", weight=3]; 36.90/18.32 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[label="xuu4000",fontsize=16,color="green",shape="box"];837[label="xuu300",fontsize=16,color="green",shape="box"];838[label="xuu4000",fontsize=16,color="green",shape="box"];839 -> 1429[label="",style="dashed", color="red", weight=0]; 36.90/18.32 839[label="compare1 (Just xuu84) (Just xuu85) (Just xuu84 <= Just xuu85)",fontsize=16,color="magenta"];839 -> 1430[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 839 -> 1431[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 839 -> 1432[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 840[label="EQ",fontsize=16,color="green",shape="box"];1223 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1223[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1223 -> 1293[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1223 -> 1294[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1224 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1224[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1224 -> 1295[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1224 -> 1296[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1225 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1225[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1225 -> 1297[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1225 -> 1298[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1226 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1226[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1226 -> 1299[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1226 -> 1300[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1227 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1227[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1227 -> 1301[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1227 -> 1302[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1228 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1228[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1228 -> 1303[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1228 -> 1304[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1229 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1229[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1229 -> 1305[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1229 -> 1306[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1230 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1230[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1230 -> 1307[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1230 -> 1308[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1231 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1231[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1231 -> 1309[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1231 -> 1310[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1232 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1232[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1232 -> 1311[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1232 -> 1312[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1233 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1233[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1233 -> 1313[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1233 -> 1314[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1234 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1234[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1234 -> 1315[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1234 -> 1316[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1235 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1235[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1235 -> 1317[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1235 -> 1318[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1236 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1236[label="xuu4000 == xuu300",fontsize=16,color="magenta"];1236 -> 1319[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1236 -> 1320[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1237 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1237[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1237 -> 1321[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1237 -> 1322[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1238 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1238[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1238 -> 1323[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1238 -> 1324[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1239 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1239[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1239 -> 1325[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1239 -> 1326[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1240 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1240[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1240 -> 1327[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1240 -> 1328[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1241 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1241[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1241 -> 1329[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1241 -> 1330[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1242 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1242[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1242 -> 1331[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1242 -> 1332[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1243 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1243[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1243 -> 1333[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1243 -> 1334[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1244 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1244[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1244 -> 1335[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1244 -> 1336[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1245 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1245[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1245 -> 1337[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1245 -> 1338[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1246 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1246[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1246 -> 1339[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1246 -> 1340[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1247 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1247[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1247 -> 1341[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1247 -> 1342[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1248 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1248[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1248 -> 1343[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1248 -> 1344[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1249 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1249[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1249 -> 1345[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1249 -> 1346[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1250 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1250[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1250 -> 1347[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1250 -> 1348[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1021[label="compare1 (xuu121,xuu122) (xuu123,xuu124) ((xuu121,xuu122) <= (xuu123,xuu124))",fontsize=16,color="black",shape="box"];1021 -> 1066[label="",style="solid", color="black", weight=3]; 36.90/18.32 1022[label="EQ",fontsize=16,color="green",shape="box"];871[label="Pos xuu3010",fontsize=16,color="green",shape="box"];872[label="xuu4000",fontsize=16,color="green",shape="box"];873[label="xuu300",fontsize=16,color="green",shape="box"];874[label="Pos xuu40010",fontsize=16,color="green",shape="box"];875[label="Pos xuu3010",fontsize=16,color="green",shape="box"];876[label="xuu4000",fontsize=16,color="green",shape="box"];877[label="xuu300",fontsize=16,color="green",shape="box"];878[label="Neg xuu40010",fontsize=16,color="green",shape="box"];879[label="Neg xuu3010",fontsize=16,color="green",shape="box"];880[label="xuu4000",fontsize=16,color="green",shape="box"];881[label="xuu300",fontsize=16,color="green",shape="box"];882[label="Pos xuu40010",fontsize=16,color="green",shape="box"];883[label="Neg xuu3010",fontsize=16,color="green",shape="box"];884[label="xuu4000",fontsize=16,color="green",shape="box"];885[label="xuu300",fontsize=16,color="green",shape="box"];886[label="Neg xuu40010",fontsize=16,color="green",shape="box"];887[label="LT",fontsize=16,color="green",shape="box"];888[label="LT",fontsize=16,color="green",shape="box"];889[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];889 -> 1016[label="",style="solid", color="black", weight=3]; 36.90/18.32 890[label="LT",fontsize=16,color="green",shape="box"];891[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];891 -> 1017[label="",style="solid", color="black", weight=3]; 36.90/18.32 892[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];892 -> 1018[label="",style="solid", color="black", weight=3]; 36.90/18.32 893[label="Pos xuu3010",fontsize=16,color="green",shape="box"];894[label="xuu4000",fontsize=16,color="green",shape="box"];895[label="xuu300",fontsize=16,color="green",shape="box"];896[label="Pos xuu40010",fontsize=16,color="green",shape="box"];897[label="Pos xuu3010",fontsize=16,color="green",shape="box"];898[label="xuu4000",fontsize=16,color="green",shape="box"];899[label="xuu300",fontsize=16,color="green",shape="box"];900[label="Neg xuu40010",fontsize=16,color="green",shape="box"];901[label="Neg xuu3010",fontsize=16,color="green",shape="box"];902[label="xuu4000",fontsize=16,color="green",shape="box"];903[label="xuu300",fontsize=16,color="green",shape="box"];904[label="Pos xuu40010",fontsize=16,color="green",shape="box"];905[label="Neg xuu3010",fontsize=16,color="green",shape="box"];906[label="xuu4000",fontsize=16,color="green",shape="box"];907[label="xuu300",fontsize=16,color="green",shape="box"];908[label="Neg xuu40010",fontsize=16,color="green",shape="box"];913[label="FiniteMap.sizeFM xuu18",fontsize=16,color="burlywood",shape="triangle"];3521[label="xuu18/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];913 -> 3521[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3521 -> 1068[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3522[label="xuu18/FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184",fontsize=10,color="white",style="solid",shape="box"];913 -> 3522[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3522 -> 1069[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1072[label="xuu39",fontsize=16,color="green",shape="box"];1073[label="primPlusInt (Pos xuu3920) (Pos xuu1340)",fontsize=16,color="black",shape="box"];1073 -> 1251[label="",style="solid", color="black", weight=3]; 36.90/18.32 1074[label="primPlusInt (Pos xuu3920) (Neg xuu1340)",fontsize=16,color="black",shape="box"];1074 -> 1252[label="",style="solid", color="black", weight=3]; 36.90/18.32 1075[label="primPlusInt (Neg xuu3920) (Pos xuu1340)",fontsize=16,color="black",shape="box"];1075 -> 1253[label="",style="solid", color="black", weight=3]; 36.90/18.32 1076[label="primPlusInt (Neg xuu3920) (Neg xuu1340)",fontsize=16,color="black",shape="box"];1076 -> 1254[label="",style="solid", color="black", weight=3]; 36.90/18.32 911 -> 1055[label="",style="dashed", color="red", weight=0]; 36.90/18.32 911[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];912[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];912 -> 1067[label="",style="solid", color="black", weight=3]; 36.90/18.32 914 -> 1070[label="",style="dashed", color="red", weight=0]; 36.90/18.32 914[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"];914 -> 1071[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 915[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu14 xuu15 xuu39 xuu18 xuu39 xuu18 xuu18",fontsize=16,color="burlywood",shape="box"];3523[label="xuu18/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];915 -> 3523[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3523 -> 1077[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3524[label="xuu18/FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184",fontsize=10,color="white",style="solid",shape="box"];915 -> 3524[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3524 -> 1078[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 916[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"];916 -> 1079[label="",style="solid", color="black", weight=3]; 36.90/18.32 1262 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1262[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1262 -> 1360[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1262 -> 1361[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1263 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1263[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1263 -> 1362[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1263 -> 1363[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1264 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1264[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1264 -> 1364[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1264 -> 1365[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1265 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1265[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1265 -> 1366[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1265 -> 1367[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1266 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1266[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1266 -> 1368[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1266 -> 1369[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1267 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1267[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1267 -> 1370[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1267 -> 1371[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1268 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1268[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1268 -> 1372[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1268 -> 1373[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1269 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1269[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1269 -> 1374[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1269 -> 1375[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1270 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1270[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1270 -> 1376[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1270 -> 1377[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1271 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1271[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1271 -> 1378[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1271 -> 1379[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1272 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1272[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1272 -> 1380[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1272 -> 1381[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1273 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1273[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1273 -> 1382[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1273 -> 1383[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1274 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1274[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1274 -> 1384[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1274 -> 1385[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1275 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1275[label="xuu4001 == xuu301",fontsize=16,color="magenta"];1275 -> 1386[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1275 -> 1387[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1276 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1276[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1276 -> 1388[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1276 -> 1389[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1277 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1277[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1277 -> 1390[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1277 -> 1391[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1278 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1278[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1278 -> 1392[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1278 -> 1393[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1279 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1279[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1279 -> 1394[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1279 -> 1395[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1280 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1280[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1280 -> 1396[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1280 -> 1397[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1281 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1281[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1281 -> 1398[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1281 -> 1399[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1282 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1282[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1282 -> 1400[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1282 -> 1401[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1283 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1283[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1283 -> 1402[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1283 -> 1403[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1284 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1284[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1284 -> 1404[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1284 -> 1405[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1285 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1285[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1285 -> 1406[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1285 -> 1407[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1286 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1286[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1286 -> 1408[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1286 -> 1409[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1287 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1287[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1287 -> 1410[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1287 -> 1411[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1288 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1288[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1288 -> 1412[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1288 -> 1413[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1289 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1289[label="xuu4002 == xuu302",fontsize=16,color="magenta"];1289 -> 1414[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1289 -> 1415[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1290[label="False",fontsize=16,color="green",shape="box"];1291[label="xuu146",fontsize=16,color="green",shape="box"];1292 -> 1461[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1292[label="compare1 (xuu108,xuu109,xuu110) (xuu111,xuu112,xuu113) (xuu108 < xuu111 || xuu108 == xuu111 && (xuu109 < xuu112 || xuu109 == xuu112 && xuu110 <= xuu113))",fontsize=16,color="magenta"];1292 -> 1462[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1292 -> 1463[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1292 -> 1464[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1292 -> 1465[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1292 -> 1466[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1292 -> 1467[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1292 -> 1468[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1292 -> 1469[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 716[label="(xuu40000,xuu40001) == xuu300",fontsize=16,color="burlywood",shape="box"];3525[label="xuu300/(xuu3000,xuu3001)",fontsize=10,color="white",style="solid",shape="box"];716 -> 3525[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3525 -> 917[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 717[label="(xuu40000,xuu40001,xuu40002) == xuu300",fontsize=16,color="burlywood",shape="box"];3526[label="xuu300/(xuu3000,xuu3001,xuu3002)",fontsize=10,color="white",style="solid",shape="box"];717 -> 3526[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3526 -> 918[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 718[label="False == xuu300",fontsize=16,color="burlywood",shape="box"];3527[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];718 -> 3527[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3527 -> 919[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3528[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];718 -> 3528[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3528 -> 920[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 719[label="True == xuu300",fontsize=16,color="burlywood",shape="box"];3529[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];719 -> 3529[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3529 -> 921[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3530[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];719 -> 3530[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3530 -> 922[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 720[label="primEqInt xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3531[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];720 -> 3531[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3531 -> 923[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3532[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];720 -> 3532[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3532 -> 924[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 721[label="Left xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];3533[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];721 -> 3533[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3533 -> 925[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3534[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];721 -> 3534[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3534 -> 926[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 722[label="Right xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];3535[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];722 -> 3535[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3535 -> 927[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3536[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];722 -> 3536[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3536 -> 928[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 723[label="primEqChar xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3537[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];723 -> 3537[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3537 -> 929[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 724[label="LT == xuu300",fontsize=16,color="burlywood",shape="box"];3538[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];724 -> 3538[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3538 -> 930[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3539[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];724 -> 3539[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3539 -> 931[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3540[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];724 -> 3540[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3540 -> 932[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 725[label="EQ == xuu300",fontsize=16,color="burlywood",shape="box"];3541[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];725 -> 3541[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3541 -> 933[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3542[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];725 -> 3542[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3542 -> 934[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3543[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];725 -> 3543[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3543 -> 935[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 726[label="GT == xuu300",fontsize=16,color="burlywood",shape="box"];3544[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];726 -> 3544[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3544 -> 936[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3545[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];726 -> 3545[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3545 -> 937[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3546[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];726 -> 3546[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3546 -> 938[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 727[label="primEqFloat xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3547[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];727 -> 3547[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3547 -> 939[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 728[label="xuu40000 :% xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];3548[label="xuu300/xuu3000 :% xuu3001",fontsize=10,color="white",style="solid",shape="box"];728 -> 3548[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3548 -> 940[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 729[label="Nothing == xuu300",fontsize=16,color="burlywood",shape="box"];3549[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];729 -> 3549[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3549 -> 941[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3550[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];729 -> 3550[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3550 -> 942[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 730[label="Just xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];3551[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];730 -> 3551[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3551 -> 943[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3552[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];730 -> 3552[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3552 -> 944[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 731[label="() == xuu300",fontsize=16,color="burlywood",shape="box"];3553[label="xuu300/()",fontsize=10,color="white",style="solid",shape="box"];731 -> 3553[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3553 -> 945[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 732[label="Integer xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];3554[label="xuu300/Integer xuu3000",fontsize=10,color="white",style="solid",shape="box"];732 -> 3554[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3554 -> 946[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 733[label="xuu40000 : xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];3555[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];733 -> 3555[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3555 -> 947[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3556[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];733 -> 3556[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3556 -> 948[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 734[label="[] == xuu300",fontsize=16,color="burlywood",shape="box"];3557[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];734 -> 3557[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3557 -> 949[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3558[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];734 -> 3558[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3558 -> 950[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 735[label="primEqDouble xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3559[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];735 -> 3559[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3559 -> 951[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1256[label="Left xuu70 <= Left xuu71",fontsize=16,color="black",shape="box"];1256 -> 1349[label="",style="solid", color="black", weight=3]; 36.90/18.32 1257[label="xuu70",fontsize=16,color="green",shape="box"];1258[label="xuu71",fontsize=16,color="green",shape="box"];1255[label="compare1 (Left xuu151) (Left xuu152) xuu153",fontsize=16,color="burlywood",shape="triangle"];3560[label="xuu153/False",fontsize=10,color="white",style="solid",shape="box"];1255 -> 3560[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3560 -> 1350[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3561[label="xuu153/True",fontsize=10,color="white",style="solid",shape="box"];1255 -> 3561[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3561 -> 1351[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 962[label="compare0 (Right xuu4000) (Left xuu300) True",fontsize=16,color="black",shape="box"];962 -> 1352[label="",style="solid", color="black", weight=3]; 36.90/18.32 1354[label="Right xuu77 <= Right xuu78",fontsize=16,color="black",shape="box"];1354 -> 1418[label="",style="solid", color="black", weight=3]; 36.90/18.32 1355[label="xuu78",fontsize=16,color="green",shape="box"];1356[label="xuu77",fontsize=16,color="green",shape="box"];1353[label="compare1 (Right xuu158) (Right xuu159) xuu160",fontsize=16,color="burlywood",shape="triangle"];3562[label="xuu160/False",fontsize=10,color="white",style="solid",shape="box"];1353 -> 3562[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3562 -> 1419[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3563[label="xuu160/True",fontsize=10,color="white",style="solid",shape="box"];1353 -> 3563[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3563 -> 1420[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 964[label="Pos (primMulNat xuu40000 xuu3010)",fontsize=16,color="green",shape="box"];964 -> 1421[label="",style="dashed", color="green", weight=3]; 36.90/18.32 965[label="Neg (primMulNat xuu40000 xuu3010)",fontsize=16,color="green",shape="box"];965 -> 1422[label="",style="dashed", color="green", weight=3]; 36.90/18.32 966[label="Neg (primMulNat xuu40000 xuu3010)",fontsize=16,color="green",shape="box"];966 -> 1423[label="",style="dashed", color="green", weight=3]; 36.90/18.32 967[label="Pos (primMulNat xuu40000 xuu3010)",fontsize=16,color="green",shape="box"];967 -> 1424[label="",style="dashed", color="green", weight=3]; 36.90/18.32 968 -> 497[label="",style="dashed", color="red", weight=0]; 36.90/18.32 968[label="primMulInt xuu40000 xuu3010",fontsize=16,color="magenta"];968 -> 1425[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 968 -> 1426[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 969[label="compare0 True False True",fontsize=16,color="black",shape="box"];969 -> 1427[label="",style="solid", color="black", weight=3]; 36.90/18.32 970[label="compare0 (Just xuu4000) Nothing True",fontsize=16,color="black",shape="box"];970 -> 1428[label="",style="solid", color="black", weight=3]; 36.90/18.32 1430[label="xuu84",fontsize=16,color="green",shape="box"];1431[label="xuu85",fontsize=16,color="green",shape="box"];1432[label="Just xuu84 <= Just xuu85",fontsize=16,color="black",shape="box"];1432 -> 1436[label="",style="solid", color="black", weight=3]; 36.90/18.32 1429[label="compare1 (Just xuu167) (Just xuu168) xuu169",fontsize=16,color="burlywood",shape="triangle"];3564[label="xuu169/False",fontsize=10,color="white",style="solid",shape="box"];1429 -> 3564[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3564 -> 1437[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3565[label="xuu169/True",fontsize=10,color="white",style="solid",shape="box"];1429 -> 3565[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3565 -> 1438[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1293[label="xuu300",fontsize=16,color="green",shape="box"];1294[label="xuu4000",fontsize=16,color="green",shape="box"];1295[label="xuu300",fontsize=16,color="green",shape="box"];1296[label="xuu4000",fontsize=16,color="green",shape="box"];1297[label="xuu300",fontsize=16,color="green",shape="box"];1298[label="xuu4000",fontsize=16,color="green",shape="box"];1299[label="xuu300",fontsize=16,color="green",shape="box"];1300[label="xuu4000",fontsize=16,color="green",shape="box"];1301[label="xuu300",fontsize=16,color="green",shape="box"];1302[label="xuu4000",fontsize=16,color="green",shape="box"];1303[label="xuu300",fontsize=16,color="green",shape="box"];1304[label="xuu4000",fontsize=16,color="green",shape="box"];1305[label="xuu300",fontsize=16,color="green",shape="box"];1306[label="xuu4000",fontsize=16,color="green",shape="box"];1307[label="xuu300",fontsize=16,color="green",shape="box"];1308[label="xuu4000",fontsize=16,color="green",shape="box"];1309[label="xuu300",fontsize=16,color="green",shape="box"];1310[label="xuu4000",fontsize=16,color="green",shape="box"];1311[label="xuu300",fontsize=16,color="green",shape="box"];1312[label="xuu4000",fontsize=16,color="green",shape="box"];1313[label="xuu300",fontsize=16,color="green",shape="box"];1314[label="xuu4000",fontsize=16,color="green",shape="box"];1315[label="xuu300",fontsize=16,color="green",shape="box"];1316[label="xuu4000",fontsize=16,color="green",shape="box"];1317[label="xuu300",fontsize=16,color="green",shape="box"];1318[label="xuu4000",fontsize=16,color="green",shape="box"];1319[label="xuu300",fontsize=16,color="green",shape="box"];1320[label="xuu4000",fontsize=16,color="green",shape="box"];1321[label="xuu301",fontsize=16,color="green",shape="box"];1322[label="xuu4001",fontsize=16,color="green",shape="box"];1323[label="xuu301",fontsize=16,color="green",shape="box"];1324[label="xuu4001",fontsize=16,color="green",shape="box"];1325[label="xuu301",fontsize=16,color="green",shape="box"];1326[label="xuu4001",fontsize=16,color="green",shape="box"];1327[label="xuu301",fontsize=16,color="green",shape="box"];1328[label="xuu4001",fontsize=16,color="green",shape="box"];1329[label="xuu301",fontsize=16,color="green",shape="box"];1330[label="xuu4001",fontsize=16,color="green",shape="box"];1331[label="xuu301",fontsize=16,color="green",shape="box"];1332[label="xuu4001",fontsize=16,color="green",shape="box"];1333[label="xuu301",fontsize=16,color="green",shape="box"];1334[label="xuu4001",fontsize=16,color="green",shape="box"];1335[label="xuu301",fontsize=16,color="green",shape="box"];1336[label="xuu4001",fontsize=16,color="green",shape="box"];1337[label="xuu301",fontsize=16,color="green",shape="box"];1338[label="xuu4001",fontsize=16,color="green",shape="box"];1339[label="xuu301",fontsize=16,color="green",shape="box"];1340[label="xuu4001",fontsize=16,color="green",shape="box"];1341[label="xuu301",fontsize=16,color="green",shape="box"];1342[label="xuu4001",fontsize=16,color="green",shape="box"];1343[label="xuu301",fontsize=16,color="green",shape="box"];1344[label="xuu4001",fontsize=16,color="green",shape="box"];1345[label="xuu301",fontsize=16,color="green",shape="box"];1346[label="xuu4001",fontsize=16,color="green",shape="box"];1347[label="xuu301",fontsize=16,color="green",shape="box"];1348[label="xuu4001",fontsize=16,color="green",shape="box"];1066 -> 1552[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1066[label="compare1 (xuu121,xuu122) (xuu123,xuu124) (xuu121 < xuu123 || xuu121 == xuu123 && xuu122 <= xuu124)",fontsize=16,color="magenta"];1066 -> 1553[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1066 -> 1554[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1066 -> 1555[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1066 -> 1556[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1066 -> 1557[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1066 -> 1558[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1016[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1016 -> 1441[label="",style="solid", color="black", weight=3]; 36.90/18.32 1017[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1017 -> 1442[label="",style="solid", color="black", weight=3]; 36.90/18.32 1018[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1018 -> 1443[label="",style="solid", color="black", weight=3]; 36.90/18.32 1068[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1068 -> 1444[label="",style="solid", color="black", weight=3]; 36.90/18.32 1069[label="FiniteMap.sizeFM (FiniteMap.Branch xuu180 xuu181 xuu182 xuu183 xuu184)",fontsize=16,color="black",shape="box"];1069 -> 1445[label="",style="solid", color="black", weight=3]; 36.90/18.32 1251[label="Pos (primPlusNat xuu3920 xuu1340)",fontsize=16,color="green",shape="box"];1251 -> 1446[label="",style="dashed", color="green", weight=3]; 36.90/18.32 1252[label="primMinusNat xuu3920 xuu1340",fontsize=16,color="burlywood",shape="triangle"];3566[label="xuu3920/Succ xuu39200",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3566[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3566 -> 1447[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3567[label="xuu3920/Zero",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3567[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3567 -> 1448[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1253 -> 1252[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1253[label="primMinusNat xuu1340 xuu3920",fontsize=16,color="magenta"];1253 -> 1449[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1253 -> 1450[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1254[label="Neg (primPlusNat xuu3920 xuu1340)",fontsize=16,color="green",shape="box"];1254 -> 1451[label="",style="dashed", color="green", weight=3]; 36.90/18.32 1067[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1071 -> 112[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1071[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];1071 -> 1452[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1071 -> 1453[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1070[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 xuu135",fontsize=16,color="burlywood",shape="triangle"];3568[label="xuu135/False",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3568[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3568 -> 1454[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3569[label="xuu135/True",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3569[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3569 -> 1455[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1077[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu14 xuu15 xuu39 FiniteMap.EmptyFM xuu39 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1077 -> 1456[label="",style="solid", color="black", weight=3]; 36.90/18.32 1078[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"];1078 -> 1457[label="",style="solid", color="black", weight=3]; 36.90/18.32 1079[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18 + FiniteMap.mkBranchRight_size xuu39 xuu14 xuu18",fontsize=16,color="black",shape="box"];1079 -> 1458[label="",style="solid", color="black", weight=3]; 36.90/18.32 1360[label="xuu301",fontsize=16,color="green",shape="box"];1361[label="xuu4001",fontsize=16,color="green",shape="box"];1362[label="xuu301",fontsize=16,color="green",shape="box"];1363[label="xuu4001",fontsize=16,color="green",shape="box"];1364[label="xuu301",fontsize=16,color="green",shape="box"];1365[label="xuu4001",fontsize=16,color="green",shape="box"];1366[label="xuu301",fontsize=16,color="green",shape="box"];1367[label="xuu4001",fontsize=16,color="green",shape="box"];1368[label="xuu301",fontsize=16,color="green",shape="box"];1369[label="xuu4001",fontsize=16,color="green",shape="box"];1370[label="xuu301",fontsize=16,color="green",shape="box"];1371[label="xuu4001",fontsize=16,color="green",shape="box"];1372[label="xuu301",fontsize=16,color="green",shape="box"];1373[label="xuu4001",fontsize=16,color="green",shape="box"];1374[label="xuu301",fontsize=16,color="green",shape="box"];1375[label="xuu4001",fontsize=16,color="green",shape="box"];1376[label="xuu301",fontsize=16,color="green",shape="box"];1377[label="xuu4001",fontsize=16,color="green",shape="box"];1378[label="xuu301",fontsize=16,color="green",shape="box"];1379[label="xuu4001",fontsize=16,color="green",shape="box"];1380[label="xuu301",fontsize=16,color="green",shape="box"];1381[label="xuu4001",fontsize=16,color="green",shape="box"];1382[label="xuu301",fontsize=16,color="green",shape="box"];1383[label="xuu4001",fontsize=16,color="green",shape="box"];1384[label="xuu301",fontsize=16,color="green",shape="box"];1385[label="xuu4001",fontsize=16,color="green",shape="box"];1386[label="xuu301",fontsize=16,color="green",shape="box"];1387[label="xuu4001",fontsize=16,color="green",shape="box"];1388[label="xuu302",fontsize=16,color="green",shape="box"];1389[label="xuu4002",fontsize=16,color="green",shape="box"];1390[label="xuu302",fontsize=16,color="green",shape="box"];1391[label="xuu4002",fontsize=16,color="green",shape="box"];1392[label="xuu302",fontsize=16,color="green",shape="box"];1393[label="xuu4002",fontsize=16,color="green",shape="box"];1394[label="xuu302",fontsize=16,color="green",shape="box"];1395[label="xuu4002",fontsize=16,color="green",shape="box"];1396[label="xuu302",fontsize=16,color="green",shape="box"];1397[label="xuu4002",fontsize=16,color="green",shape="box"];1398[label="xuu302",fontsize=16,color="green",shape="box"];1399[label="xuu4002",fontsize=16,color="green",shape="box"];1400[label="xuu302",fontsize=16,color="green",shape="box"];1401[label="xuu4002",fontsize=16,color="green",shape="box"];1402[label="xuu302",fontsize=16,color="green",shape="box"];1403[label="xuu4002",fontsize=16,color="green",shape="box"];1404[label="xuu302",fontsize=16,color="green",shape="box"];1405[label="xuu4002",fontsize=16,color="green",shape="box"];1406[label="xuu302",fontsize=16,color="green",shape="box"];1407[label="xuu4002",fontsize=16,color="green",shape="box"];1408[label="xuu302",fontsize=16,color="green",shape="box"];1409[label="xuu4002",fontsize=16,color="green",shape="box"];1410[label="xuu302",fontsize=16,color="green",shape="box"];1411[label="xuu4002",fontsize=16,color="green",shape="box"];1412[label="xuu302",fontsize=16,color="green",shape="box"];1413[label="xuu4002",fontsize=16,color="green",shape="box"];1414[label="xuu302",fontsize=16,color="green",shape="box"];1415[label="xuu4002",fontsize=16,color="green",shape="box"];1462[label="xuu108",fontsize=16,color="green",shape="box"];1463[label="xuu110",fontsize=16,color="green",shape="box"];1464[label="xuu112",fontsize=16,color="green",shape="box"];1465[label="xuu111",fontsize=16,color="green",shape="box"];1466[label="xuu108 < xuu111",fontsize=16,color="blue",shape="box"];3570[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3570[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3570 -> 1478[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3571[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3571[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3571 -> 1479[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3572[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3572[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3572 -> 1480[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3573[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3573[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3573 -> 1481[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3574[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3574[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3574 -> 1482[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3575[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3575[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3575 -> 1483[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3576[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3576[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3576 -> 1484[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3577[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3577[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3577 -> 1485[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3578[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3578[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3578 -> 1486[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3579[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3579[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3579 -> 1487[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3580[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3580[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3580 -> 1488[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3581[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3581[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3581 -> 1489[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3582[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3582[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3582 -> 1490[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3583[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3583[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3583 -> 1491[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1467[label="xuu109",fontsize=16,color="green",shape="box"];1468[label="xuu113",fontsize=16,color="green",shape="box"];1469 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1469[label="xuu108 == xuu111 && (xuu109 < xuu112 || xuu109 == xuu112 && xuu110 <= xuu113)",fontsize=16,color="magenta"];1469 -> 1492[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1469 -> 1493[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1461[label="compare1 (xuu180,xuu181,xuu182) (xuu183,xuu184,xuu185) (xuu186 || xuu187)",fontsize=16,color="burlywood",shape="triangle"];3584[label="xuu186/False",fontsize=10,color="white",style="solid",shape="box"];1461 -> 3584[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3584 -> 1494[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3585[label="xuu186/True",fontsize=10,color="white",style="solid",shape="box"];1461 -> 3585[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3585 -> 1495[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 917[label="(xuu40000,xuu40001) == (xuu3000,xuu3001)",fontsize=16,color="black",shape="box"];917 -> 1080[label="",style="solid", color="black", weight=3]; 36.90/18.32 918[label="(xuu40000,xuu40001,xuu40002) == (xuu3000,xuu3001,xuu3002)",fontsize=16,color="black",shape="box"];918 -> 1081[label="",style="solid", color="black", weight=3]; 36.90/18.32 919[label="False == False",fontsize=16,color="black",shape="box"];919 -> 1082[label="",style="solid", color="black", weight=3]; 36.90/18.32 920[label="False == True",fontsize=16,color="black",shape="box"];920 -> 1083[label="",style="solid", color="black", weight=3]; 36.90/18.32 921[label="True == False",fontsize=16,color="black",shape="box"];921 -> 1084[label="",style="solid", color="black", weight=3]; 36.90/18.32 922[label="True == True",fontsize=16,color="black",shape="box"];922 -> 1085[label="",style="solid", color="black", weight=3]; 36.90/18.32 923[label="primEqInt (Pos xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3586[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];923 -> 3586[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3586 -> 1086[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3587[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];923 -> 3587[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3587 -> 1087[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 924[label="primEqInt (Neg xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3588[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];924 -> 3588[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3588 -> 1088[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3589[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];924 -> 3589[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3589 -> 1089[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 925[label="Left xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];925 -> 1090[label="",style="solid", color="black", weight=3]; 36.90/18.32 926[label="Left xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];926 -> 1091[label="",style="solid", color="black", weight=3]; 36.90/18.32 927[label="Right xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];927 -> 1092[label="",style="solid", color="black", weight=3]; 36.90/18.32 928[label="Right xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];928 -> 1093[label="",style="solid", color="black", weight=3]; 36.90/18.32 929[label="primEqChar (Char xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3590[label="xuu300/Char xuu3000",fontsize=10,color="white",style="solid",shape="box"];929 -> 3590[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3590 -> 1094[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 930[label="LT == LT",fontsize=16,color="black",shape="box"];930 -> 1095[label="",style="solid", color="black", weight=3]; 36.90/18.32 931[label="LT == EQ",fontsize=16,color="black",shape="box"];931 -> 1096[label="",style="solid", color="black", weight=3]; 36.90/18.32 932[label="LT == GT",fontsize=16,color="black",shape="box"];932 -> 1097[label="",style="solid", color="black", weight=3]; 36.90/18.32 933[label="EQ == LT",fontsize=16,color="black",shape="box"];933 -> 1098[label="",style="solid", color="black", weight=3]; 36.90/18.32 934[label="EQ == EQ",fontsize=16,color="black",shape="box"];934 -> 1099[label="",style="solid", color="black", weight=3]; 36.90/18.32 935[label="EQ == GT",fontsize=16,color="black",shape="box"];935 -> 1100[label="",style="solid", color="black", weight=3]; 36.90/18.32 936[label="GT == LT",fontsize=16,color="black",shape="box"];936 -> 1101[label="",style="solid", color="black", weight=3]; 36.90/18.32 937[label="GT == EQ",fontsize=16,color="black",shape="box"];937 -> 1102[label="",style="solid", color="black", weight=3]; 36.90/18.32 938[label="GT == GT",fontsize=16,color="black",shape="box"];938 -> 1103[label="",style="solid", color="black", weight=3]; 36.90/18.32 939[label="primEqFloat (Float xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3591[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];939 -> 3591[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3591 -> 1104[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 940[label="xuu40000 :% xuu40001 == xuu3000 :% xuu3001",fontsize=16,color="black",shape="box"];940 -> 1105[label="",style="solid", color="black", weight=3]; 36.90/18.32 941[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];941 -> 1106[label="",style="solid", color="black", weight=3]; 36.90/18.32 942[label="Nothing == Just xuu3000",fontsize=16,color="black",shape="box"];942 -> 1107[label="",style="solid", color="black", weight=3]; 36.90/18.32 943[label="Just xuu40000 == Nothing",fontsize=16,color="black",shape="box"];943 -> 1108[label="",style="solid", color="black", weight=3]; 36.90/18.32 944[label="Just xuu40000 == Just xuu3000",fontsize=16,color="black",shape="box"];944 -> 1109[label="",style="solid", color="black", weight=3]; 36.90/18.32 945[label="() == ()",fontsize=16,color="black",shape="box"];945 -> 1110[label="",style="solid", color="black", weight=3]; 36.90/18.32 946[label="Integer xuu40000 == Integer xuu3000",fontsize=16,color="black",shape="box"];946 -> 1111[label="",style="solid", color="black", weight=3]; 36.90/18.32 947[label="xuu40000 : xuu40001 == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];947 -> 1112[label="",style="solid", color="black", weight=3]; 36.90/18.32 948[label="xuu40000 : xuu40001 == []",fontsize=16,color="black",shape="box"];948 -> 1113[label="",style="solid", color="black", weight=3]; 36.90/18.32 949[label="[] == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];949 -> 1114[label="",style="solid", color="black", weight=3]; 36.90/18.32 950[label="[] == []",fontsize=16,color="black",shape="box"];950 -> 1115[label="",style="solid", color="black", weight=3]; 36.90/18.32 951[label="primEqDouble (Double xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3592[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];951 -> 3592[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3592 -> 1116[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1349[label="xuu70 <= xuu71",fontsize=16,color="blue",shape="box"];3593[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3593[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3593 -> 1496[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3594[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3594[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3594 -> 1497[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3595[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3595[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3595 -> 1498[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3596[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3596[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3596 -> 1499[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3597[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3597[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3597 -> 1500[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3598[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3598[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3598 -> 1501[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3599[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3599[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3599 -> 1502[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3600[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3600[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3600 -> 1503[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3601[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3601[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3601 -> 1504[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3602[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3602[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3602 -> 1505[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3603[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3603[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3603 -> 1506[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3604[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3604[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3604 -> 1507[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3605[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3605[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3605 -> 1508[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3606[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3606[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3606 -> 1509[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1350[label="compare1 (Left xuu151) (Left xuu152) False",fontsize=16,color="black",shape="box"];1350 -> 1510[label="",style="solid", color="black", weight=3]; 36.90/18.32 1351[label="compare1 (Left xuu151) (Left xuu152) True",fontsize=16,color="black",shape="box"];1351 -> 1511[label="",style="solid", color="black", weight=3]; 36.90/18.32 1352[label="GT",fontsize=16,color="green",shape="box"];1418[label="xuu77 <= xuu78",fontsize=16,color="blue",shape="box"];3607[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3607[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3607 -> 1512[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3608[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3608[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3608 -> 1513[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3609[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3609[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3609 -> 1514[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3610[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3610[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3610 -> 1515[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3611[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3611[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3611 -> 1516[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3612[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3612[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3612 -> 1517[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3613[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3613[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3613 -> 1518[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3614[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3614[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3614 -> 1519[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3615[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3615[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3615 -> 1520[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3616[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3616[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3616 -> 1521[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3617[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3617[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3617 -> 1522[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3618[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3618[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3618 -> 1523[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3619[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3619[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3619 -> 1524[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3620[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3620[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3620 -> 1525[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1419[label="compare1 (Right xuu158) (Right xuu159) False",fontsize=16,color="black",shape="box"];1419 -> 1526[label="",style="solid", color="black", weight=3]; 36.90/18.32 1420[label="compare1 (Right xuu158) (Right xuu159) True",fontsize=16,color="black",shape="box"];1420 -> 1527[label="",style="solid", color="black", weight=3]; 36.90/18.32 1421[label="primMulNat xuu40000 xuu3010",fontsize=16,color="burlywood",shape="triangle"];3621[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3621[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3621 -> 1528[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3622[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3622[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3622 -> 1529[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1422 -> 1421[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1422[label="primMulNat xuu40000 xuu3010",fontsize=16,color="magenta"];1422 -> 1530[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1423 -> 1421[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1423[label="primMulNat xuu40000 xuu3010",fontsize=16,color="magenta"];1423 -> 1531[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1424 -> 1421[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1424[label="primMulNat xuu40000 xuu3010",fontsize=16,color="magenta"];1424 -> 1532[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1424 -> 1533[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1425[label="xuu3010",fontsize=16,color="green",shape="box"];1426[label="xuu40000",fontsize=16,color="green",shape="box"];1427[label="GT",fontsize=16,color="green",shape="box"];1428[label="GT",fontsize=16,color="green",shape="box"];1436[label="xuu84 <= xuu85",fontsize=16,color="blue",shape="box"];3623[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3623[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3623 -> 1534[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3624[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3624[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3624 -> 1535[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3625[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3625[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3625 -> 1536[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3626[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3626[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3626 -> 1537[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3627[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3627[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3627 -> 1538[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3628[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3628[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3628 -> 1539[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3629[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3629[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3629 -> 1540[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3630[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3630[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3630 -> 1541[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3631[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3631[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3631 -> 1542[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3632[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3632[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3632 -> 1543[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3633[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3633[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3633 -> 1544[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3634[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3634[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3634 -> 1545[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3635[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3635[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3635 -> 1546[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3636[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3636[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3636 -> 1547[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1437[label="compare1 (Just xuu167) (Just xuu168) False",fontsize=16,color="black",shape="box"];1437 -> 1548[label="",style="solid", color="black", weight=3]; 36.90/18.32 1438[label="compare1 (Just xuu167) (Just xuu168) True",fontsize=16,color="black",shape="box"];1438 -> 1549[label="",style="solid", color="black", weight=3]; 36.90/18.32 1553[label="xuu123",fontsize=16,color="green",shape="box"];1554[label="xuu121",fontsize=16,color="green",shape="box"];1555[label="xuu121 < xuu123",fontsize=16,color="blue",shape="box"];3637[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3637[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3637 -> 1565[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3638[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3638[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3638 -> 1566[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3639[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3639[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3639 -> 1567[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3640[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3640[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3640 -> 1568[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3641[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3641[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3641 -> 1569[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3642[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3642[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3642 -> 1570[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3643[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3643[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3643 -> 1571[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3644[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3644[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3644 -> 1572[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3645[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3645[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3645 -> 1573[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3646[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3646[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3646 -> 1574[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3647[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3647[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3647 -> 1575[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3648[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3648[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3648 -> 1576[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3649[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3649[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3649 -> 1577[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3650[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3650[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3650 -> 1578[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1556 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1556[label="xuu121 == xuu123 && xuu122 <= xuu124",fontsize=16,color="magenta"];1556 -> 1579[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1556 -> 1580[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1557[label="xuu122",fontsize=16,color="green",shape="box"];1558[label="xuu124",fontsize=16,color="green",shape="box"];1552[label="compare1 (xuu195,xuu196) (xuu197,xuu198) (xuu199 || xuu200)",fontsize=16,color="burlywood",shape="triangle"];3651[label="xuu199/False",fontsize=10,color="white",style="solid",shape="box"];1552 -> 3651[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3651 -> 1581[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3652[label="xuu199/True",fontsize=10,color="white",style="solid",shape="box"];1552 -> 3652[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3652 -> 1582[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1441[label="GT",fontsize=16,color="green",shape="box"];1442[label="GT",fontsize=16,color="green",shape="box"];1443[label="GT",fontsize=16,color="green",shape="box"];1444[label="Pos Zero",fontsize=16,color="green",shape="box"];1445[label="xuu182",fontsize=16,color="green",shape="box"];1446[label="primPlusNat xuu3920 xuu1340",fontsize=16,color="burlywood",shape="triangle"];3653[label="xuu3920/Succ xuu39200",fontsize=10,color="white",style="solid",shape="box"];1446 -> 3653[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3653 -> 1583[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3654[label="xuu3920/Zero",fontsize=10,color="white",style="solid",shape="box"];1446 -> 3654[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3654 -> 1584[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1447[label="primMinusNat (Succ xuu39200) xuu1340",fontsize=16,color="burlywood",shape="box"];3655[label="xuu1340/Succ xuu13400",fontsize=10,color="white",style="solid",shape="box"];1447 -> 3655[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3655 -> 1585[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3656[label="xuu1340/Zero",fontsize=10,color="white",style="solid",shape="box"];1447 -> 3656[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3656 -> 1586[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1448[label="primMinusNat Zero xuu1340",fontsize=16,color="burlywood",shape="box"];3657[label="xuu1340/Succ xuu13400",fontsize=10,color="white",style="solid",shape="box"];1448 -> 3657[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3657 -> 1587[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3658[label="xuu1340/Zero",fontsize=10,color="white",style="solid",shape="box"];1448 -> 3658[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3658 -> 1588[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1449[label="xuu1340",fontsize=16,color="green",shape="box"];1450[label="xuu3920",fontsize=16,color="green",shape="box"];1451 -> 1446[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1451[label="primPlusNat xuu3920 xuu1340",fontsize=16,color="magenta"];1451 -> 1589[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1451 -> 1590[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1452 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1452[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];1452 -> 1591[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1452 -> 1592[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1453 -> 1055[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1453[label="FiniteMap.mkBalBranch6Size_l xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];1454[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 False",fontsize=16,color="black",shape="box"];1454 -> 1593[label="",style="solid", color="black", weight=3]; 36.90/18.32 1455[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 True",fontsize=16,color="black",shape="box"];1455 -> 1594[label="",style="solid", color="black", weight=3]; 36.90/18.32 1456[label="error []",fontsize=16,color="red",shape="box"];1457[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"];1457 -> 1595[label="",style="solid", color="black", weight=3]; 36.90/18.32 1458 -> 1053[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1458[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18) (FiniteMap.mkBranchRight_size xuu39 xuu14 xuu18)",fontsize=16,color="magenta"];1458 -> 1596[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1458 -> 1597[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1478 -> 33[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1478[label="xuu108 < xuu111",fontsize=16,color="magenta"];1478 -> 1598[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1478 -> 1599[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1479 -> 34[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1479[label="xuu108 < xuu111",fontsize=16,color="magenta"];1479 -> 1600[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1479 -> 1601[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1480 -> 35[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1480[label="xuu108 < xuu111",fontsize=16,color="magenta"];1480 -> 1602[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1480 -> 1603[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1481 -> 36[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1481[label="xuu108 < xuu111",fontsize=16,color="magenta"];1481 -> 1604[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1481 -> 1605[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1482 -> 37[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1482[label="xuu108 < xuu111",fontsize=16,color="magenta"];1482 -> 1606[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1482 -> 1607[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1483 -> 38[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1483[label="xuu108 < xuu111",fontsize=16,color="magenta"];1483 -> 1608[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1483 -> 1609[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1484 -> 39[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1484[label="xuu108 < xuu111",fontsize=16,color="magenta"];1484 -> 1610[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1484 -> 1611[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1485 -> 40[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1485[label="xuu108 < xuu111",fontsize=16,color="magenta"];1485 -> 1612[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1485 -> 1613[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1486 -> 41[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1486[label="xuu108 < xuu111",fontsize=16,color="magenta"];1486 -> 1614[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1486 -> 1615[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1487 -> 42[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1487[label="xuu108 < xuu111",fontsize=16,color="magenta"];1487 -> 1616[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1487 -> 1617[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1488 -> 43[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1488[label="xuu108 < xuu111",fontsize=16,color="magenta"];1488 -> 1618[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1488 -> 1619[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1489 -> 44[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1489[label="xuu108 < xuu111",fontsize=16,color="magenta"];1489 -> 1620[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1489 -> 1621[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1490 -> 45[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1490[label="xuu108 < xuu111",fontsize=16,color="magenta"];1490 -> 1622[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1490 -> 1623[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1491 -> 46[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1491[label="xuu108 < xuu111",fontsize=16,color="magenta"];1491 -> 1624[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1491 -> 1625[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1492[label="xuu108 == xuu111",fontsize=16,color="blue",shape="box"];3659[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3659[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3659 -> 1626[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3660[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3660[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3660 -> 1627[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3661[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3661[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3661 -> 1628[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3662[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3662[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3662 -> 1629[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3663[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3663[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3663 -> 1630[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3664[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3664[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3664 -> 1631[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3665[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3665[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3665 -> 1632[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3666[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3666[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3666 -> 1633[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3667[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3667[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3667 -> 1634[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3668[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3668[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3668 -> 1635[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3669[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3669[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3669 -> 1636[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3670[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3670[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3670 -> 1637[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3671[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3671[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3671 -> 1638[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3672[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 3672[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3672 -> 1639[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1493 -> 1884[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1493[label="xuu109 < xuu112 || xuu109 == xuu112 && xuu110 <= xuu113",fontsize=16,color="magenta"];1493 -> 1885[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1493 -> 1886[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1494[label="compare1 (xuu180,xuu181,xuu182) (xuu183,xuu184,xuu185) (False || xuu187)",fontsize=16,color="black",shape="box"];1494 -> 1642[label="",style="solid", color="black", weight=3]; 36.90/18.32 1495[label="compare1 (xuu180,xuu181,xuu182) (xuu183,xuu184,xuu185) (True || xuu187)",fontsize=16,color="black",shape="box"];1495 -> 1643[label="",style="solid", color="black", weight=3]; 36.90/18.32 1080 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1080[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];1080 -> 1193[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1080 -> 1194[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1081 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1081[label="xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];1081 -> 1195[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1081 -> 1196[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1082[label="True",fontsize=16,color="green",shape="box"];1083[label="False",fontsize=16,color="green",shape="box"];1084[label="False",fontsize=16,color="green",shape="box"];1085[label="True",fontsize=16,color="green",shape="box"];1086[label="primEqInt (Pos (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];3673[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];1086 -> 3673[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3673 -> 1644[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3674[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];1086 -> 3674[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3674 -> 1645[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1087[label="primEqInt (Pos Zero) xuu300",fontsize=16,color="burlywood",shape="box"];3675[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];1087 -> 3675[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3675 -> 1646[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3676[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];1087 -> 3676[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3676 -> 1647[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1088[label="primEqInt (Neg (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];3677[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3677[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3677 -> 1648[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3678[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3678[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3678 -> 1649[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1089[label="primEqInt (Neg Zero) xuu300",fontsize=16,color="burlywood",shape="box"];3679[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];1089 -> 3679[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3679 -> 1650[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3680[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];1089 -> 3680[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3680 -> 1651[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1090[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3681[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3681[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3681 -> 1652[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3682[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3682[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3682 -> 1653[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3683[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3683[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3683 -> 1654[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3684[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3684[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3684 -> 1655[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3685[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3685[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3685 -> 1656[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3686[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3686[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3686 -> 1657[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3687[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3687[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3687 -> 1658[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3688[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3688[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3688 -> 1659[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3689[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3689[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3689 -> 1660[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3690[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3690[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3690 -> 1661[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3691[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3691[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3691 -> 1662[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3692[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3692[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3692 -> 1663[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3693[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3693[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3693 -> 1664[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3694[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3694[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3694 -> 1665[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1091[label="False",fontsize=16,color="green",shape="box"];1092[label="False",fontsize=16,color="green",shape="box"];1093[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3695[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3695[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3695 -> 1666[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3696[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3696[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3696 -> 1667[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3697[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3697[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3697 -> 1668[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3698[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3698[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3698 -> 1669[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3699[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3699[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3699 -> 1670[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3700[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3700[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3700 -> 1671[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3701[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3701[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3701 -> 1672[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3702[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3702[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3702 -> 1673[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3703[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3703[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3703 -> 1674[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3704[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3704[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3704 -> 1675[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3705[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3705[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3705 -> 1676[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3706[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3706[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3706 -> 1677[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3707[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3707[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3707 -> 1678[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3708[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3708[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3708 -> 1679[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1094[label="primEqChar (Char xuu40000) (Char xuu3000)",fontsize=16,color="black",shape="box"];1094 -> 1680[label="",style="solid", color="black", weight=3]; 36.90/18.32 1095[label="True",fontsize=16,color="green",shape="box"];1096[label="False",fontsize=16,color="green",shape="box"];1097[label="False",fontsize=16,color="green",shape="box"];1098[label="False",fontsize=16,color="green",shape="box"];1099[label="True",fontsize=16,color="green",shape="box"];1100[label="False",fontsize=16,color="green",shape="box"];1101[label="False",fontsize=16,color="green",shape="box"];1102[label="False",fontsize=16,color="green",shape="box"];1103[label="True",fontsize=16,color="green",shape="box"];1104[label="primEqFloat (Float xuu40000 xuu40001) (Float xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];1104 -> 1681[label="",style="solid", color="black", weight=3]; 36.90/18.32 1105 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1105[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];1105 -> 1197[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1105 -> 1198[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1106[label="True",fontsize=16,color="green",shape="box"];1107[label="False",fontsize=16,color="green",shape="box"];1108[label="False",fontsize=16,color="green",shape="box"];1109[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3709[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3709[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3709 -> 1682[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3710[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3710[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3710 -> 1683[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3711[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3711[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3711 -> 1684[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3712[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3712[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3712 -> 1685[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3713[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3713[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3713 -> 1686[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3714[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3714[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3714 -> 1687[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3715[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3715[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3715 -> 1688[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3716[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3716[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3716 -> 1689[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3717[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3717[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3717 -> 1690[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3718[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3718[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3718 -> 1691[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3719[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3719[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3719 -> 1692[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3720[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3720[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3720 -> 1693[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3721[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3721[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3721 -> 1694[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3722[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1109 -> 3722[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3722 -> 1695[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1110[label="True",fontsize=16,color="green",shape="box"];1111 -> 720[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1111[label="primEqInt xuu40000 xuu3000",fontsize=16,color="magenta"];1111 -> 1696[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1111 -> 1697[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1112 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1112[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];1112 -> 1199[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1112 -> 1200[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1113[label="False",fontsize=16,color="green",shape="box"];1114[label="False",fontsize=16,color="green",shape="box"];1115[label="True",fontsize=16,color="green",shape="box"];1116[label="primEqDouble (Double xuu40000 xuu40001) (Double xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];1116 -> 1698[label="",style="solid", color="black", weight=3]; 36.90/18.32 1496[label="xuu70 <= xuu71",fontsize=16,color="black",shape="triangle"];1496 -> 1699[label="",style="solid", color="black", weight=3]; 36.90/18.32 1497[label="xuu70 <= xuu71",fontsize=16,color="burlywood",shape="triangle"];3723[label="xuu70/(xuu700,xuu701,xuu702)",fontsize=10,color="white",style="solid",shape="box"];1497 -> 3723[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3723 -> 1700[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1498[label="xuu70 <= xuu71",fontsize=16,color="black",shape="triangle"];1498 -> 1701[label="",style="solid", color="black", weight=3]; 36.90/18.32 1499[label="xuu70 <= xuu71",fontsize=16,color="burlywood",shape="triangle"];3724[label="xuu70/Left xuu700",fontsize=10,color="white",style="solid",shape="box"];1499 -> 3724[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3724 -> 1702[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3725[label="xuu70/Right xuu700",fontsize=10,color="white",style="solid",shape="box"];1499 -> 3725[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3725 -> 1703[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1500[label="xuu70 <= xuu71",fontsize=16,color="black",shape="triangle"];1500 -> 1704[label="",style="solid", color="black", weight=3]; 36.90/18.32 1501[label="xuu70 <= xuu71",fontsize=16,color="black",shape="triangle"];1501 -> 1705[label="",style="solid", color="black", weight=3]; 36.90/18.32 1502[label="xuu70 <= xuu71",fontsize=16,color="black",shape="triangle"];1502 -> 1706[label="",style="solid", color="black", weight=3]; 36.90/18.32 1503[label="xuu70 <= xuu71",fontsize=16,color="burlywood",shape="triangle"];3726[label="xuu70/False",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3726[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3726 -> 1707[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3727[label="xuu70/True",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3727[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3727 -> 1708[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1504[label="xuu70 <= xuu71",fontsize=16,color="burlywood",shape="triangle"];3728[label="xuu70/Nothing",fontsize=10,color="white",style="solid",shape="box"];1504 -> 3728[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3728 -> 1709[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3729[label="xuu70/Just xuu700",fontsize=10,color="white",style="solid",shape="box"];1504 -> 3729[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3729 -> 1710[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1505[label="xuu70 <= xuu71",fontsize=16,color="burlywood",shape="triangle"];3730[label="xuu70/(xuu700,xuu701)",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3730[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3730 -> 1711[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1506[label="xuu70 <= xuu71",fontsize=16,color="black",shape="triangle"];1506 -> 1712[label="",style="solid", color="black", weight=3]; 36.90/18.32 1507[label="xuu70 <= xuu71",fontsize=16,color="burlywood",shape="triangle"];3731[label="xuu70/LT",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3731[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3731 -> 1713[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3732[label="xuu70/EQ",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3732[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3732 -> 1714[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3733[label="xuu70/GT",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3733[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3733 -> 1715[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1508[label="xuu70 <= xuu71",fontsize=16,color="black",shape="triangle"];1508 -> 1716[label="",style="solid", color="black", weight=3]; 36.90/18.32 1509[label="xuu70 <= xuu71",fontsize=16,color="black",shape="triangle"];1509 -> 1717[label="",style="solid", color="black", weight=3]; 36.90/18.32 1510[label="compare0 (Left xuu151) (Left xuu152) otherwise",fontsize=16,color="black",shape="box"];1510 -> 1718[label="",style="solid", color="black", weight=3]; 36.90/18.32 1511[label="LT",fontsize=16,color="green",shape="box"];1512 -> 1496[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1512[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1512 -> 1719[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1512 -> 1720[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1513 -> 1497[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1513[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1513 -> 1721[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1513 -> 1722[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1514 -> 1498[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1514[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1514 -> 1723[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1514 -> 1724[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1515 -> 1499[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1515[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1515 -> 1725[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1515 -> 1726[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1516 -> 1500[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1516[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1516 -> 1727[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1516 -> 1728[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1517 -> 1501[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1517[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1517 -> 1729[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1517 -> 1730[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1518 -> 1502[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1518[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1518 -> 1731[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1518 -> 1732[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1519 -> 1503[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1519[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1519 -> 1733[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1519 -> 1734[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1520 -> 1504[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1520[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1520 -> 1735[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1520 -> 1736[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1521 -> 1505[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1521[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1521 -> 1737[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1521 -> 1738[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1522 -> 1506[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1522[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1522 -> 1739[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1522 -> 1740[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1523 -> 1507[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1523[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1523 -> 1741[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1523 -> 1742[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1524 -> 1508[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1524[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1524 -> 1743[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1524 -> 1744[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1525 -> 1509[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1525[label="xuu77 <= xuu78",fontsize=16,color="magenta"];1525 -> 1745[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1525 -> 1746[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1526[label="compare0 (Right xuu158) (Right xuu159) otherwise",fontsize=16,color="black",shape="box"];1526 -> 1747[label="",style="solid", color="black", weight=3]; 36.90/18.32 1527[label="LT",fontsize=16,color="green",shape="box"];1528[label="primMulNat (Succ xuu400000) xuu3010",fontsize=16,color="burlywood",shape="box"];3734[label="xuu3010/Succ xuu30100",fontsize=10,color="white",style="solid",shape="box"];1528 -> 3734[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3734 -> 1748[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3735[label="xuu3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1528 -> 3735[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3735 -> 1749[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1529[label="primMulNat Zero xuu3010",fontsize=16,color="burlywood",shape="box"];3736[label="xuu3010/Succ xuu30100",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3736[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3736 -> 1750[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 3737[label="xuu3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3737[label="",style="solid", color="burlywood", weight=9]; 36.90/18.32 3737 -> 1751[label="",style="solid", color="burlywood", weight=3]; 36.90/18.32 1530[label="xuu3010",fontsize=16,color="green",shape="box"];1531[label="xuu40000",fontsize=16,color="green",shape="box"];1532[label="xuu3010",fontsize=16,color="green",shape="box"];1533[label="xuu40000",fontsize=16,color="green",shape="box"];1534 -> 1496[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1534[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1534 -> 1752[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1534 -> 1753[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1535 -> 1497[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1535[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1535 -> 1754[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1535 -> 1755[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1536 -> 1498[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1536[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1536 -> 1756[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1536 -> 1757[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1537 -> 1499[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1537[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1537 -> 1758[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1537 -> 1759[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1538 -> 1500[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1538[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1538 -> 1760[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1538 -> 1761[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1539 -> 1501[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1539[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1539 -> 1762[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1539 -> 1763[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1540 -> 1502[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1540[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1540 -> 1764[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1540 -> 1765[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1541 -> 1503[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1541[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1541 -> 1766[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1541 -> 1767[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1542 -> 1504[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1542[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1542 -> 1768[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1542 -> 1769[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1543 -> 1505[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1543[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1543 -> 1770[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1543 -> 1771[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1544 -> 1506[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1544[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1544 -> 1772[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1544 -> 1773[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1545 -> 1507[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1545[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1545 -> 1774[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1545 -> 1775[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1546 -> 1508[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1546[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1546 -> 1776[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1546 -> 1777[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1547 -> 1509[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1547[label="xuu84 <= xuu85",fontsize=16,color="magenta"];1547 -> 1778[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1547 -> 1779[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1548[label="compare0 (Just xuu167) (Just xuu168) otherwise",fontsize=16,color="black",shape="box"];1548 -> 1780[label="",style="solid", color="black", weight=3]; 36.90/18.32 1549[label="LT",fontsize=16,color="green",shape="box"];1565 -> 33[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1565[label="xuu121 < xuu123",fontsize=16,color="magenta"];1565 -> 1781[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1565 -> 1782[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1566 -> 34[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1566[label="xuu121 < xuu123",fontsize=16,color="magenta"];1566 -> 1783[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1566 -> 1784[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1567 -> 35[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1567[label="xuu121 < xuu123",fontsize=16,color="magenta"];1567 -> 1785[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1567 -> 1786[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1568 -> 36[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1568[label="xuu121 < xuu123",fontsize=16,color="magenta"];1568 -> 1787[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1568 -> 1788[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1569 -> 37[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1569[label="xuu121 < xuu123",fontsize=16,color="magenta"];1569 -> 1789[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1569 -> 1790[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1570 -> 38[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1570[label="xuu121 < xuu123",fontsize=16,color="magenta"];1570 -> 1791[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1570 -> 1792[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1571 -> 39[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1571[label="xuu121 < xuu123",fontsize=16,color="magenta"];1571 -> 1793[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1571 -> 1794[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1572 -> 40[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1572[label="xuu121 < xuu123",fontsize=16,color="magenta"];1572 -> 1795[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1572 -> 1796[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1573 -> 41[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1573[label="xuu121 < xuu123",fontsize=16,color="magenta"];1573 -> 1797[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1573 -> 1798[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1574 -> 42[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1574[label="xuu121 < xuu123",fontsize=16,color="magenta"];1574 -> 1799[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1574 -> 1800[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1575 -> 43[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1575[label="xuu121 < xuu123",fontsize=16,color="magenta"];1575 -> 1801[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1575 -> 1802[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1576 -> 44[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1576[label="xuu121 < xuu123",fontsize=16,color="magenta"];1576 -> 1803[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1576 -> 1804[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1577 -> 45[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1577[label="xuu121 < xuu123",fontsize=16,color="magenta"];1577 -> 1805[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1577 -> 1806[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1578 -> 46[label="",style="dashed", color="red", weight=0]; 36.90/18.32 1578[label="xuu121 < xuu123",fontsize=16,color="magenta"];1578 -> 1807[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1578 -> 1808[label="",style="dashed", color="magenta", weight=3]; 36.90/18.32 1579[label="xuu121 == xuu123",fontsize=16,color="blue",shape="box"];3738[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3738[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3738 -> 1809[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3739[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3739[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3739 -> 1810[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3740[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3740[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3740 -> 1811[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3741[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3741[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3741 -> 1812[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3742[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3742[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3742 -> 1813[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3743[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3743[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3743 -> 1814[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3744[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3744[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3744 -> 1815[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3745[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3745[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3745 -> 1816[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3746[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3746[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3746 -> 1817[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3747[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3747[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3747 -> 1818[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3748[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3748[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3748 -> 1819[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3749[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3749[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3749 -> 1820[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3750[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3750[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3750 -> 1821[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3751[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3751[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3751 -> 1822[label="",style="solid", color="blue", weight=3]; 36.90/18.32 1580[label="xuu122 <= xuu124",fontsize=16,color="blue",shape="box"];3752[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3752[label="",style="solid", color="blue", weight=9]; 36.90/18.32 3752 -> 1823[label="",style="solid", color="blue", weight=3]; 36.90/18.32 3753[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3753[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3753 -> 1824[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3754[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3754[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3754 -> 1825[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3755[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3755[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3755 -> 1826[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3756[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3756[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3756 -> 1827[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3757[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3757[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3757 -> 1828[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3758[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3758[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3758 -> 1829[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3759[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3759[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3759 -> 1830[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3760[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3760[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3760 -> 1831[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3761[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3761[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3761 -> 1832[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3762[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3762[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3762 -> 1833[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3763[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3763[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3763 -> 1834[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3764[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3764[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3764 -> 1835[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3765[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3765[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3765 -> 1836[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1581[label="compare1 (xuu195,xuu196) (xuu197,xuu198) (False || xuu200)",fontsize=16,color="black",shape="box"];1581 -> 1837[label="",style="solid", color="black", weight=3]; 36.90/18.33 1582[label="compare1 (xuu195,xuu196) (xuu197,xuu198) (True || xuu200)",fontsize=16,color="black",shape="box"];1582 -> 1838[label="",style="solid", color="black", weight=3]; 36.90/18.33 1583[label="primPlusNat (Succ xuu39200) xuu1340",fontsize=16,color="burlywood",shape="box"];3766[label="xuu1340/Succ xuu13400",fontsize=10,color="white",style="solid",shape="box"];1583 -> 3766[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3766 -> 1839[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3767[label="xuu1340/Zero",fontsize=10,color="white",style="solid",shape="box"];1583 -> 3767[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3767 -> 1840[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1584[label="primPlusNat Zero xuu1340",fontsize=16,color="burlywood",shape="box"];3768[label="xuu1340/Succ xuu13400",fontsize=10,color="white",style="solid",shape="box"];1584 -> 3768[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3768 -> 1841[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3769[label="xuu1340/Zero",fontsize=10,color="white",style="solid",shape="box"];1584 -> 3769[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3769 -> 1842[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1585[label="primMinusNat (Succ xuu39200) (Succ xuu13400)",fontsize=16,color="black",shape="box"];1585 -> 1843[label="",style="solid", color="black", weight=3]; 36.90/18.33 1586[label="primMinusNat (Succ xuu39200) Zero",fontsize=16,color="black",shape="box"];1586 -> 1844[label="",style="solid", color="black", weight=3]; 36.90/18.33 1587[label="primMinusNat Zero (Succ xuu13400)",fontsize=16,color="black",shape="box"];1587 -> 1845[label="",style="solid", color="black", weight=3]; 36.90/18.33 1588[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];1588 -> 1846[label="",style="solid", color="black", weight=3]; 36.90/18.33 1589[label="xuu1340",fontsize=16,color="green",shape="box"];1590[label="xuu3920",fontsize=16,color="green",shape="box"];1591 -> 681[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1591[label="FiniteMap.mkBalBranch6Size_r xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];1592 -> 912[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1592[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1593[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 otherwise",fontsize=16,color="black",shape="box"];1593 -> 1847[label="",style="solid", color="black", weight=3]; 36.90/18.33 1594[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu14 xuu15 xuu39 xuu18 xuu39 xuu18 xuu39",fontsize=16,color="burlywood",shape="box"];3770[label="xuu39/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1594 -> 3770[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3770 -> 1848[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3771[label="xuu39/FiniteMap.Branch xuu390 xuu391 xuu392 xuu393 xuu394",fontsize=10,color="white",style="solid",shape="box"];1594 -> 3771[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3771 -> 1849[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1595 -> 1850[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1595[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"];1595 -> 1851[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1596[label="FiniteMap.mkBranchRight_size xuu39 xuu14 xuu18",fontsize=16,color="black",shape="box"];1596 -> 1852[label="",style="solid", color="black", weight=3]; 36.90/18.33 1597[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18",fontsize=16,color="black",shape="box"];1597 -> 1853[label="",style="solid", color="black", weight=3]; 36.90/18.33 1598[label="xuu108",fontsize=16,color="green",shape="box"];1599[label="xuu111",fontsize=16,color="green",shape="box"];1600[label="xuu108",fontsize=16,color="green",shape="box"];1601[label="xuu111",fontsize=16,color="green",shape="box"];1602[label="xuu108",fontsize=16,color="green",shape="box"];1603[label="xuu111",fontsize=16,color="green",shape="box"];1604[label="xuu108",fontsize=16,color="green",shape="box"];1605[label="xuu111",fontsize=16,color="green",shape="box"];1606[label="xuu108",fontsize=16,color="green",shape="box"];1607[label="xuu111",fontsize=16,color="green",shape="box"];1608[label="xuu108",fontsize=16,color="green",shape="box"];1609[label="xuu111",fontsize=16,color="green",shape="box"];1610[label="xuu108",fontsize=16,color="green",shape="box"];1611[label="xuu111",fontsize=16,color="green",shape="box"];1612[label="xuu108",fontsize=16,color="green",shape="box"];1613[label="xuu111",fontsize=16,color="green",shape="box"];1614[label="xuu108",fontsize=16,color="green",shape="box"];1615[label="xuu111",fontsize=16,color="green",shape="box"];1616[label="xuu108",fontsize=16,color="green",shape="box"];1617[label="xuu111",fontsize=16,color="green",shape="box"];1618[label="xuu108",fontsize=16,color="green",shape="box"];1619[label="xuu111",fontsize=16,color="green",shape="box"];1620[label="xuu108",fontsize=16,color="green",shape="box"];1621[label="xuu111",fontsize=16,color="green",shape="box"];1622[label="xuu108",fontsize=16,color="green",shape="box"];1623[label="xuu111",fontsize=16,color="green",shape="box"];1624[label="xuu108",fontsize=16,color="green",shape="box"];1625[label="xuu111",fontsize=16,color="green",shape="box"];1626 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1626[label="xuu108 == xuu111",fontsize=16,color="magenta"];1626 -> 1854[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1626 -> 1855[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1627 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1627[label="xuu108 == xuu111",fontsize=16,color="magenta"];1627 -> 1856[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1627 -> 1857[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1628 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1628[label="xuu108 == xuu111",fontsize=16,color="magenta"];1628 -> 1858[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1628 -> 1859[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1629 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1629[label="xuu108 == xuu111",fontsize=16,color="magenta"];1629 -> 1860[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1629 -> 1861[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1630 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1630[label="xuu108 == xuu111",fontsize=16,color="magenta"];1630 -> 1862[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1630 -> 1863[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1631 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1631[label="xuu108 == xuu111",fontsize=16,color="magenta"];1631 -> 1864[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1631 -> 1865[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1632 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1632[label="xuu108 == xuu111",fontsize=16,color="magenta"];1632 -> 1866[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1632 -> 1867[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1633 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1633[label="xuu108 == xuu111",fontsize=16,color="magenta"];1633 -> 1868[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1633 -> 1869[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1634 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1634[label="xuu108 == xuu111",fontsize=16,color="magenta"];1634 -> 1870[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1634 -> 1871[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1635 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1635[label="xuu108 == xuu111",fontsize=16,color="magenta"];1635 -> 1872[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1635 -> 1873[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1636 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1636[label="xuu108 == xuu111",fontsize=16,color="magenta"];1636 -> 1874[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1636 -> 1875[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1637 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1637[label="xuu108 == xuu111",fontsize=16,color="magenta"];1637 -> 1876[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1637 -> 1877[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1638 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1638[label="xuu108 == xuu111",fontsize=16,color="magenta"];1638 -> 1878[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1638 -> 1879[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1639 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1639[label="xuu108 == xuu111",fontsize=16,color="magenta"];1639 -> 1880[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1639 -> 1881[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1885[label="xuu109 < xuu112",fontsize=16,color="blue",shape="box"];3772[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3772[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3772 -> 1889[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3773[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3773[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3773 -> 1890[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3774[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3774[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3774 -> 1891[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3775[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3775[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3775 -> 1892[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3776[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3776[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3776 -> 1893[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3777[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3777[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3777 -> 1894[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3778[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3778[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3778 -> 1895[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3779[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3779[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3779 -> 1896[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3780[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3780[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3780 -> 1897[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3781[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3781[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3781 -> 1898[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3782[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3782[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3782 -> 1899[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3783[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3783[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3783 -> 1900[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3784[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3784[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3784 -> 1901[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3785[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3785[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3785 -> 1902[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1886 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1886[label="xuu109 == xuu112 && xuu110 <= xuu113",fontsize=16,color="magenta"];1886 -> 1903[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1886 -> 1904[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1884[label="xuu209 || xuu210",fontsize=16,color="burlywood",shape="triangle"];3786[label="xuu209/False",fontsize=10,color="white",style="solid",shape="box"];1884 -> 3786[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3786 -> 1905[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3787[label="xuu209/True",fontsize=10,color="white",style="solid",shape="box"];1884 -> 3787[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3787 -> 1906[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1642[label="compare1 (xuu180,xuu181,xuu182) (xuu183,xuu184,xuu185) xuu187",fontsize=16,color="burlywood",shape="triangle"];3788[label="xuu187/False",fontsize=10,color="white",style="solid",shape="box"];1642 -> 3788[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3788 -> 1907[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3789[label="xuu187/True",fontsize=10,color="white",style="solid",shape="box"];1642 -> 3789[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3789 -> 1908[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1643 -> 1642[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1643[label="compare1 (xuu180,xuu181,xuu182) (xuu183,xuu184,xuu185) True",fontsize=16,color="magenta"];1643 -> 1909[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1193[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3790[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3790[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3790 -> 1910[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3791[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3791[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3791 -> 1911[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3792[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3792[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3792 -> 1912[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3793[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3793[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3793 -> 1913[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3794[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3794[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3794 -> 1914[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3795[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3795[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3795 -> 1915[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3796[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3796[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3796 -> 1916[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3797[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3797[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3797 -> 1917[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3798[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3798[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3798 -> 1918[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3799[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3799[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3799 -> 1919[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3800[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3800[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3800 -> 1920[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3801[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3801[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3801 -> 1921[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3802[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3802[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3802 -> 1922[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3803[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3803[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3803 -> 1923[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1194[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3804[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3804[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3804 -> 1924[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3805[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3805[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3805 -> 1925[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3806[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3806[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3806 -> 1926[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3807[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3807[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3807 -> 1927[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3808[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3808[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3808 -> 1928[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3809[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3809[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3809 -> 1929[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3810[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3810[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3810 -> 1930[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3811[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3811[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3811 -> 1931[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3812[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3812[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3812 -> 1932[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3813[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3813[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3813 -> 1933[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3814[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3814[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3814 -> 1934[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3815[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3815[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3815 -> 1935[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3816[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3816[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3816 -> 1936[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3817[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3817[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3817 -> 1937[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1195[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3818[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3818[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3818 -> 1938[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3819[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3819[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3819 -> 1939[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3820[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3820[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3820 -> 1940[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3821[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3821[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3821 -> 1941[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3822[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3822[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3822 -> 1942[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3823[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3823[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3823 -> 1943[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3824[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3824[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3824 -> 1944[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3825[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3825[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3825 -> 1945[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3826[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3826[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3826 -> 1946[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3827[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3827[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3827 -> 1947[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3828[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3828[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3828 -> 1948[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3829[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3829[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3829 -> 1949[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3830[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3830[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3830 -> 1950[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3831[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3831[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3831 -> 1951[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1196 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1196[label="xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];1196 -> 1952[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1196 -> 1953[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1644[label="primEqInt (Pos (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];3832[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1644 -> 3832[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3832 -> 1954[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3833[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1644 -> 3833[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3833 -> 1955[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1645[label="primEqInt (Pos (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];1645 -> 1956[label="",style="solid", color="black", weight=3]; 36.90/18.33 1646[label="primEqInt (Pos Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];3834[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3834[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3834 -> 1957[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3835[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3835[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3835 -> 1958[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1647[label="primEqInt (Pos Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];3836[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1647 -> 3836[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3836 -> 1959[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3837[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1647 -> 3837[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3837 -> 1960[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1648[label="primEqInt (Neg (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];1648 -> 1961[label="",style="solid", color="black", weight=3]; 36.90/18.33 1649[label="primEqInt (Neg (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];3838[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3838[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3838 -> 1962[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3839[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3839[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3839 -> 1963[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1650[label="primEqInt (Neg Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];3840[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1650 -> 3840[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3840 -> 1964[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3841[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1650 -> 3841[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3841 -> 1965[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1651[label="primEqInt (Neg Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];3842[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];1651 -> 3842[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3842 -> 1966[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3843[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1651 -> 3843[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3843 -> 1967[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1652 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1652[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1652 -> 1968[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1652 -> 1969[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1653 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1653[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1653 -> 1970[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1653 -> 1971[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1654 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1654[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1654 -> 1972[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1654 -> 1973[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1655 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1655[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1655 -> 1974[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1655 -> 1975[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1656 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1656[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1656 -> 1976[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1656 -> 1977[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1657 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1657[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1657 -> 1978[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1657 -> 1979[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1658 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1658[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1658 -> 1980[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1658 -> 1981[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1659 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1659[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1659 -> 1982[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1659 -> 1983[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1660 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1660[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1660 -> 1984[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1660 -> 1985[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1661 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1661[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1661 -> 1986[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1661 -> 1987[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1662 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1662[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1662 -> 1988[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1662 -> 1989[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1663 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1663[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1663 -> 1990[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1663 -> 1991[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1664 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1664[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1664 -> 1992[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1664 -> 1993[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1665 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1665[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1665 -> 1994[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1665 -> 1995[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1666 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1666[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1666 -> 1996[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1666 -> 1997[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1667 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1667[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1667 -> 1998[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1667 -> 1999[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1668 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1668[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1668 -> 2000[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1668 -> 2001[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1669 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1669[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1669 -> 2002[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1669 -> 2003[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1670 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1670[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1670 -> 2004[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1670 -> 2005[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1671 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1671[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1671 -> 2006[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1671 -> 2007[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1672 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1672[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1672 -> 2008[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1672 -> 2009[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1673 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1673[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1673 -> 2010[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1673 -> 2011[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1674 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1674[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1674 -> 2012[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1674 -> 2013[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1675 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1675[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1675 -> 2014[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1675 -> 2015[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1676 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1676[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1676 -> 2016[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1676 -> 2017[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1677 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1677[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1677 -> 2018[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1677 -> 2019[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1678 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1678[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1678 -> 2020[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1678 -> 2021[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1679 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1679[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1679 -> 2022[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1679 -> 2023[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1680[label="primEqNat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];3844[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1680 -> 3844[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3844 -> 2024[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3845[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1680 -> 3845[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3845 -> 2025[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1681 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1681[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];1681 -> 2026[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1681 -> 2027[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1197[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3846[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3846[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3846 -> 2028[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3847[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3847[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3847 -> 2029[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1198[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3848[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3848[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3848 -> 2030[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3849[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3849[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3849 -> 2031[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1682 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1682[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1682 -> 2032[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1682 -> 2033[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1683 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1683[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1683 -> 2034[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1683 -> 2035[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1684 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1684[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1684 -> 2036[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1684 -> 2037[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1685 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1685[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1685 -> 2038[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1685 -> 2039[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1686 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1686[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1686 -> 2040[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1686 -> 2041[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1687 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1687[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1687 -> 2042[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1687 -> 2043[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1688 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1688[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1688 -> 2044[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1688 -> 2045[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1689 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1689[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1689 -> 2046[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1689 -> 2047[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1690 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1690[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1690 -> 2048[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1690 -> 2049[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1691 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1691[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1691 -> 2050[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1691 -> 2051[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1692 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1692[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1692 -> 2052[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1692 -> 2053[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1693 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1693[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1693 -> 2054[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1693 -> 2055[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1694 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1694[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1694 -> 2056[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1694 -> 2057[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1695 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1695[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1695 -> 2058[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1695 -> 2059[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1696[label="xuu3000",fontsize=16,color="green",shape="box"];1697[label="xuu40000",fontsize=16,color="green",shape="box"];1199[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3850[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3850[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3850 -> 2060[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3851[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3851[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3851 -> 2061[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3852[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3852[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3852 -> 2062[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3853[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3853[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3853 -> 2063[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3854[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3854[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3854 -> 2064[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3855[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3855[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3855 -> 2065[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3856[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3856[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3856 -> 2066[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3857[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3857[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3857 -> 2067[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3858[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3858[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3858 -> 2068[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3859[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3859[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3859 -> 2069[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3860[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3860[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3860 -> 2070[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3861[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3861[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3861 -> 2071[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3862[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3862[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3862 -> 2072[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3863[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3863[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3863 -> 2073[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1200 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1200[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1200 -> 2074[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1200 -> 2075[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1698 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1698[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];1698 -> 2076[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1698 -> 2077[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1699 -> 2078[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1699[label="compare xuu70 xuu71 /= GT",fontsize=16,color="magenta"];1699 -> 2079[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1700[label="(xuu700,xuu701,xuu702) <= xuu71",fontsize=16,color="burlywood",shape="box"];3864[label="xuu71/(xuu710,xuu711,xuu712)",fontsize=10,color="white",style="solid",shape="box"];1700 -> 3864[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3864 -> 2087[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1701 -> 2078[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1701[label="compare xuu70 xuu71 /= GT",fontsize=16,color="magenta"];1701 -> 2080[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1702[label="Left xuu700 <= xuu71",fontsize=16,color="burlywood",shape="box"];3865[label="xuu71/Left xuu710",fontsize=10,color="white",style="solid",shape="box"];1702 -> 3865[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3865 -> 2088[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3866[label="xuu71/Right xuu710",fontsize=10,color="white",style="solid",shape="box"];1702 -> 3866[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3866 -> 2089[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1703[label="Right xuu700 <= xuu71",fontsize=16,color="burlywood",shape="box"];3867[label="xuu71/Left xuu710",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3867[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3867 -> 2090[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3868[label="xuu71/Right xuu710",fontsize=10,color="white",style="solid",shape="box"];1703 -> 3868[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3868 -> 2091[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1704 -> 2078[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1704[label="compare xuu70 xuu71 /= GT",fontsize=16,color="magenta"];1704 -> 2081[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1705 -> 2078[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1705[label="compare xuu70 xuu71 /= GT",fontsize=16,color="magenta"];1705 -> 2082[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1706 -> 2078[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1706[label="compare xuu70 xuu71 /= GT",fontsize=16,color="magenta"];1706 -> 2083[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1707[label="False <= xuu71",fontsize=16,color="burlywood",shape="box"];3869[label="xuu71/False",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3869[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3869 -> 2092[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3870[label="xuu71/True",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3870[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3870 -> 2093[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1708[label="True <= xuu71",fontsize=16,color="burlywood",shape="box"];3871[label="xuu71/False",fontsize=10,color="white",style="solid",shape="box"];1708 -> 3871[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3871 -> 2094[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3872[label="xuu71/True",fontsize=10,color="white",style="solid",shape="box"];1708 -> 3872[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3872 -> 2095[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1709[label="Nothing <= xuu71",fontsize=16,color="burlywood",shape="box"];3873[label="xuu71/Nothing",fontsize=10,color="white",style="solid",shape="box"];1709 -> 3873[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3873 -> 2096[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3874[label="xuu71/Just xuu710",fontsize=10,color="white",style="solid",shape="box"];1709 -> 3874[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3874 -> 2097[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1710[label="Just xuu700 <= xuu71",fontsize=16,color="burlywood",shape="box"];3875[label="xuu71/Nothing",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3875[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3875 -> 2098[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3876[label="xuu71/Just xuu710",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3876[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3876 -> 2099[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1711[label="(xuu700,xuu701) <= xuu71",fontsize=16,color="burlywood",shape="box"];3877[label="xuu71/(xuu710,xuu711)",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3877[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3877 -> 2100[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1712 -> 2078[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1712[label="compare xuu70 xuu71 /= GT",fontsize=16,color="magenta"];1712 -> 2084[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1713[label="LT <= xuu71",fontsize=16,color="burlywood",shape="box"];3878[label="xuu71/LT",fontsize=10,color="white",style="solid",shape="box"];1713 -> 3878[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3878 -> 2101[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3879[label="xuu71/EQ",fontsize=10,color="white",style="solid",shape="box"];1713 -> 3879[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3879 -> 2102[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3880[label="xuu71/GT",fontsize=10,color="white",style="solid",shape="box"];1713 -> 3880[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3880 -> 2103[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1714[label="EQ <= xuu71",fontsize=16,color="burlywood",shape="box"];3881[label="xuu71/LT",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3881[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3881 -> 2104[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3882[label="xuu71/EQ",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3882[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3882 -> 2105[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3883[label="xuu71/GT",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3883[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3883 -> 2106[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1715[label="GT <= xuu71",fontsize=16,color="burlywood",shape="box"];3884[label="xuu71/LT",fontsize=10,color="white",style="solid",shape="box"];1715 -> 3884[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3884 -> 2107[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3885[label="xuu71/EQ",fontsize=10,color="white",style="solid",shape="box"];1715 -> 3885[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3885 -> 2108[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3886[label="xuu71/GT",fontsize=10,color="white",style="solid",shape="box"];1715 -> 3886[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3886 -> 2109[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1716 -> 2078[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1716[label="compare xuu70 xuu71 /= GT",fontsize=16,color="magenta"];1716 -> 2085[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1717 -> 2078[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1717[label="compare xuu70 xuu71 /= GT",fontsize=16,color="magenta"];1717 -> 2086[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1718[label="compare0 (Left xuu151) (Left xuu152) True",fontsize=16,color="black",shape="box"];1718 -> 2110[label="",style="solid", color="black", weight=3]; 36.90/18.33 1719[label="xuu77",fontsize=16,color="green",shape="box"];1720[label="xuu78",fontsize=16,color="green",shape="box"];1721[label="xuu77",fontsize=16,color="green",shape="box"];1722[label="xuu78",fontsize=16,color="green",shape="box"];1723[label="xuu77",fontsize=16,color="green",shape="box"];1724[label="xuu78",fontsize=16,color="green",shape="box"];1725[label="xuu77",fontsize=16,color="green",shape="box"];1726[label="xuu78",fontsize=16,color="green",shape="box"];1727[label="xuu77",fontsize=16,color="green",shape="box"];1728[label="xuu78",fontsize=16,color="green",shape="box"];1729[label="xuu77",fontsize=16,color="green",shape="box"];1730[label="xuu78",fontsize=16,color="green",shape="box"];1731[label="xuu77",fontsize=16,color="green",shape="box"];1732[label="xuu78",fontsize=16,color="green",shape="box"];1733[label="xuu77",fontsize=16,color="green",shape="box"];1734[label="xuu78",fontsize=16,color="green",shape="box"];1735[label="xuu77",fontsize=16,color="green",shape="box"];1736[label="xuu78",fontsize=16,color="green",shape="box"];1737[label="xuu77",fontsize=16,color="green",shape="box"];1738[label="xuu78",fontsize=16,color="green",shape="box"];1739[label="xuu77",fontsize=16,color="green",shape="box"];1740[label="xuu78",fontsize=16,color="green",shape="box"];1741[label="xuu77",fontsize=16,color="green",shape="box"];1742[label="xuu78",fontsize=16,color="green",shape="box"];1743[label="xuu77",fontsize=16,color="green",shape="box"];1744[label="xuu78",fontsize=16,color="green",shape="box"];1745[label="xuu77",fontsize=16,color="green",shape="box"];1746[label="xuu78",fontsize=16,color="green",shape="box"];1747[label="compare0 (Right xuu158) (Right xuu159) True",fontsize=16,color="black",shape="box"];1747 -> 2111[label="",style="solid", color="black", weight=3]; 36.90/18.33 1748[label="primMulNat (Succ xuu400000) (Succ xuu30100)",fontsize=16,color="black",shape="box"];1748 -> 2112[label="",style="solid", color="black", weight=3]; 36.90/18.33 1749[label="primMulNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];1749 -> 2113[label="",style="solid", color="black", weight=3]; 36.90/18.33 1750[label="primMulNat Zero (Succ xuu30100)",fontsize=16,color="black",shape="box"];1750 -> 2114[label="",style="solid", color="black", weight=3]; 36.90/18.33 1751[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1751 -> 2115[label="",style="solid", color="black", weight=3]; 36.90/18.33 1752[label="xuu84",fontsize=16,color="green",shape="box"];1753[label="xuu85",fontsize=16,color="green",shape="box"];1754[label="xuu84",fontsize=16,color="green",shape="box"];1755[label="xuu85",fontsize=16,color="green",shape="box"];1756[label="xuu84",fontsize=16,color="green",shape="box"];1757[label="xuu85",fontsize=16,color="green",shape="box"];1758[label="xuu84",fontsize=16,color="green",shape="box"];1759[label="xuu85",fontsize=16,color="green",shape="box"];1760[label="xuu84",fontsize=16,color="green",shape="box"];1761[label="xuu85",fontsize=16,color="green",shape="box"];1762[label="xuu84",fontsize=16,color="green",shape="box"];1763[label="xuu85",fontsize=16,color="green",shape="box"];1764[label="xuu84",fontsize=16,color="green",shape="box"];1765[label="xuu85",fontsize=16,color="green",shape="box"];1766[label="xuu84",fontsize=16,color="green",shape="box"];1767[label="xuu85",fontsize=16,color="green",shape="box"];1768[label="xuu84",fontsize=16,color="green",shape="box"];1769[label="xuu85",fontsize=16,color="green",shape="box"];1770[label="xuu84",fontsize=16,color="green",shape="box"];1771[label="xuu85",fontsize=16,color="green",shape="box"];1772[label="xuu84",fontsize=16,color="green",shape="box"];1773[label="xuu85",fontsize=16,color="green",shape="box"];1774[label="xuu84",fontsize=16,color="green",shape="box"];1775[label="xuu85",fontsize=16,color="green",shape="box"];1776[label="xuu84",fontsize=16,color="green",shape="box"];1777[label="xuu85",fontsize=16,color="green",shape="box"];1778[label="xuu84",fontsize=16,color="green",shape="box"];1779[label="xuu85",fontsize=16,color="green",shape="box"];1780[label="compare0 (Just xuu167) (Just xuu168) True",fontsize=16,color="black",shape="box"];1780 -> 2116[label="",style="solid", color="black", weight=3]; 36.90/18.33 1781[label="xuu121",fontsize=16,color="green",shape="box"];1782[label="xuu123",fontsize=16,color="green",shape="box"];1783[label="xuu121",fontsize=16,color="green",shape="box"];1784[label="xuu123",fontsize=16,color="green",shape="box"];1785[label="xuu121",fontsize=16,color="green",shape="box"];1786[label="xuu123",fontsize=16,color="green",shape="box"];1787[label="xuu121",fontsize=16,color="green",shape="box"];1788[label="xuu123",fontsize=16,color="green",shape="box"];1789[label="xuu121",fontsize=16,color="green",shape="box"];1790[label="xuu123",fontsize=16,color="green",shape="box"];1791[label="xuu121",fontsize=16,color="green",shape="box"];1792[label="xuu123",fontsize=16,color="green",shape="box"];1793[label="xuu121",fontsize=16,color="green",shape="box"];1794[label="xuu123",fontsize=16,color="green",shape="box"];1795[label="xuu121",fontsize=16,color="green",shape="box"];1796[label="xuu123",fontsize=16,color="green",shape="box"];1797[label="xuu121",fontsize=16,color="green",shape="box"];1798[label="xuu123",fontsize=16,color="green",shape="box"];1799[label="xuu121",fontsize=16,color="green",shape="box"];1800[label="xuu123",fontsize=16,color="green",shape="box"];1801[label="xuu121",fontsize=16,color="green",shape="box"];1802[label="xuu123",fontsize=16,color="green",shape="box"];1803[label="xuu121",fontsize=16,color="green",shape="box"];1804[label="xuu123",fontsize=16,color="green",shape="box"];1805[label="xuu121",fontsize=16,color="green",shape="box"];1806[label="xuu123",fontsize=16,color="green",shape="box"];1807[label="xuu121",fontsize=16,color="green",shape="box"];1808[label="xuu123",fontsize=16,color="green",shape="box"];1809 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1809[label="xuu121 == xuu123",fontsize=16,color="magenta"];1809 -> 2117[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1809 -> 2118[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1810 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1810[label="xuu121 == xuu123",fontsize=16,color="magenta"];1810 -> 2119[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1810 -> 2120[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1811 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1811[label="xuu121 == xuu123",fontsize=16,color="magenta"];1811 -> 2121[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1811 -> 2122[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1812 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1812[label="xuu121 == xuu123",fontsize=16,color="magenta"];1812 -> 2123[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1812 -> 2124[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1813 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1813[label="xuu121 == xuu123",fontsize=16,color="magenta"];1813 -> 2125[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1813 -> 2126[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1814 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1814[label="xuu121 == xuu123",fontsize=16,color="magenta"];1814 -> 2127[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1814 -> 2128[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1815 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1815[label="xuu121 == xuu123",fontsize=16,color="magenta"];1815 -> 2129[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1815 -> 2130[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1816 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1816[label="xuu121 == xuu123",fontsize=16,color="magenta"];1816 -> 2131[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1816 -> 2132[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1817 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1817[label="xuu121 == xuu123",fontsize=16,color="magenta"];1817 -> 2133[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1817 -> 2134[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1818 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1818[label="xuu121 == xuu123",fontsize=16,color="magenta"];1818 -> 2135[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1818 -> 2136[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1819 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1819[label="xuu121 == xuu123",fontsize=16,color="magenta"];1819 -> 2137[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1819 -> 2138[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1820 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1820[label="xuu121 == xuu123",fontsize=16,color="magenta"];1820 -> 2139[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1820 -> 2140[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1821 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1821[label="xuu121 == xuu123",fontsize=16,color="magenta"];1821 -> 2141[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1821 -> 2142[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1822 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1822[label="xuu121 == xuu123",fontsize=16,color="magenta"];1822 -> 2143[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1822 -> 2144[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1823 -> 1496[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1823[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1823 -> 2145[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1823 -> 2146[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1824 -> 1497[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1824[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1824 -> 2147[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1824 -> 2148[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1825 -> 1498[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1825[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1825 -> 2149[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1825 -> 2150[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1826 -> 1499[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1826[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1826 -> 2151[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1826 -> 2152[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1827 -> 1500[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1827[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1827 -> 2153[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1827 -> 2154[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1828 -> 1501[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1828[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1828 -> 2155[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1828 -> 2156[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1829 -> 1502[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1829[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1829 -> 2157[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1829 -> 2158[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1830 -> 1503[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1830[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1830 -> 2159[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1830 -> 2160[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1831 -> 1504[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1831[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1831 -> 2161[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1831 -> 2162[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1832 -> 1505[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1832[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1832 -> 2163[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1832 -> 2164[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1833 -> 1506[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1833[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1833 -> 2165[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1833 -> 2166[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1834 -> 1507[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1834[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1834 -> 2167[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1834 -> 2168[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1835 -> 1508[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1835[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1835 -> 2169[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1835 -> 2170[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1836 -> 1509[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1836[label="xuu122 <= xuu124",fontsize=16,color="magenta"];1836 -> 2171[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1836 -> 2172[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1837[label="compare1 (xuu195,xuu196) (xuu197,xuu198) xuu200",fontsize=16,color="burlywood",shape="triangle"];3887[label="xuu200/False",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3887[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3887 -> 2173[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3888[label="xuu200/True",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3888[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3888 -> 2174[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1838 -> 1837[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1838[label="compare1 (xuu195,xuu196) (xuu197,xuu198) True",fontsize=16,color="magenta"];1838 -> 2175[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1839[label="primPlusNat (Succ xuu39200) (Succ xuu13400)",fontsize=16,color="black",shape="box"];1839 -> 2176[label="",style="solid", color="black", weight=3]; 36.90/18.33 1840[label="primPlusNat (Succ xuu39200) Zero",fontsize=16,color="black",shape="box"];1840 -> 2177[label="",style="solid", color="black", weight=3]; 36.90/18.33 1841[label="primPlusNat Zero (Succ xuu13400)",fontsize=16,color="black",shape="box"];1841 -> 2178[label="",style="solid", color="black", weight=3]; 36.90/18.33 1842[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1842 -> 2179[label="",style="solid", color="black", weight=3]; 36.90/18.33 1843 -> 1252[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1843[label="primMinusNat xuu39200 xuu13400",fontsize=16,color="magenta"];1843 -> 2180[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1843 -> 2181[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1844[label="Pos (Succ xuu39200)",fontsize=16,color="green",shape="box"];1845[label="Neg (Succ xuu13400)",fontsize=16,color="green",shape="box"];1846[label="Pos Zero",fontsize=16,color="green",shape="box"];1847[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu14 xuu15 xuu39 xuu18 xuu14 xuu15 xuu39 xuu18 True",fontsize=16,color="black",shape="box"];1847 -> 2182[label="",style="solid", color="black", weight=3]; 36.90/18.33 1848[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu14 xuu15 FiniteMap.EmptyFM xuu18 FiniteMap.EmptyFM xuu18 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1848 -> 2183[label="",style="solid", color="black", weight=3]; 36.90/18.33 1849[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"];1849 -> 2184[label="",style="solid", color="black", weight=3]; 36.90/18.33 1851 -> 35[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1851[label="FiniteMap.sizeFM xuu183 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu184",fontsize=16,color="magenta"];1851 -> 2185[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1851 -> 2186[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1850[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 xuu202",fontsize=16,color="burlywood",shape="triangle"];3889[label="xuu202/False",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3889[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3889 -> 2187[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3890[label="xuu202/True",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3890[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3890 -> 2188[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 1852 -> 913[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1852[label="FiniteMap.sizeFM xuu18",fontsize=16,color="magenta"];1853 -> 1053[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1853[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18)",fontsize=16,color="magenta"];1853 -> 2189[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1853 -> 2190[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1854[label="xuu111",fontsize=16,color="green",shape="box"];1855[label="xuu108",fontsize=16,color="green",shape="box"];1856[label="xuu111",fontsize=16,color="green",shape="box"];1857[label="xuu108",fontsize=16,color="green",shape="box"];1858[label="xuu111",fontsize=16,color="green",shape="box"];1859[label="xuu108",fontsize=16,color="green",shape="box"];1860[label="xuu111",fontsize=16,color="green",shape="box"];1861[label="xuu108",fontsize=16,color="green",shape="box"];1862[label="xuu111",fontsize=16,color="green",shape="box"];1863[label="xuu108",fontsize=16,color="green",shape="box"];1864[label="xuu111",fontsize=16,color="green",shape="box"];1865[label="xuu108",fontsize=16,color="green",shape="box"];1866[label="xuu111",fontsize=16,color="green",shape="box"];1867[label="xuu108",fontsize=16,color="green",shape="box"];1868[label="xuu111",fontsize=16,color="green",shape="box"];1869[label="xuu108",fontsize=16,color="green",shape="box"];1870[label="xuu111",fontsize=16,color="green",shape="box"];1871[label="xuu108",fontsize=16,color="green",shape="box"];1872[label="xuu111",fontsize=16,color="green",shape="box"];1873[label="xuu108",fontsize=16,color="green",shape="box"];1874[label="xuu111",fontsize=16,color="green",shape="box"];1875[label="xuu108",fontsize=16,color="green",shape="box"];1876[label="xuu111",fontsize=16,color="green",shape="box"];1877[label="xuu108",fontsize=16,color="green",shape="box"];1878[label="xuu111",fontsize=16,color="green",shape="box"];1879[label="xuu108",fontsize=16,color="green",shape="box"];1880[label="xuu111",fontsize=16,color="green",shape="box"];1881[label="xuu108",fontsize=16,color="green",shape="box"];1889 -> 33[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1889[label="xuu109 < xuu112",fontsize=16,color="magenta"];1889 -> 2191[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1889 -> 2192[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1890 -> 34[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1890[label="xuu109 < xuu112",fontsize=16,color="magenta"];1890 -> 2193[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1890 -> 2194[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1891 -> 35[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1891[label="xuu109 < xuu112",fontsize=16,color="magenta"];1891 -> 2195[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1891 -> 2196[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1892 -> 36[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1892[label="xuu109 < xuu112",fontsize=16,color="magenta"];1892 -> 2197[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1892 -> 2198[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1893 -> 37[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1893[label="xuu109 < xuu112",fontsize=16,color="magenta"];1893 -> 2199[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1893 -> 2200[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1894 -> 38[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1894[label="xuu109 < xuu112",fontsize=16,color="magenta"];1894 -> 2201[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1894 -> 2202[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1895 -> 39[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1895[label="xuu109 < xuu112",fontsize=16,color="magenta"];1895 -> 2203[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1895 -> 2204[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1896 -> 40[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1896[label="xuu109 < xuu112",fontsize=16,color="magenta"];1896 -> 2205[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1896 -> 2206[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1897 -> 41[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1897[label="xuu109 < xuu112",fontsize=16,color="magenta"];1897 -> 2207[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1897 -> 2208[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1898 -> 42[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1898[label="xuu109 < xuu112",fontsize=16,color="magenta"];1898 -> 2209[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1898 -> 2210[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1899 -> 43[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1899[label="xuu109 < xuu112",fontsize=16,color="magenta"];1899 -> 2211[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1899 -> 2212[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1900 -> 44[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1900[label="xuu109 < xuu112",fontsize=16,color="magenta"];1900 -> 2213[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1900 -> 2214[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1901 -> 45[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1901[label="xuu109 < xuu112",fontsize=16,color="magenta"];1901 -> 2215[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1901 -> 2216[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1902 -> 46[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1902[label="xuu109 < xuu112",fontsize=16,color="magenta"];1902 -> 2217[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1902 -> 2218[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1903[label="xuu109 == xuu112",fontsize=16,color="blue",shape="box"];3891[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3891[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3891 -> 2219[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3892[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3892[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3892 -> 2220[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3893[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3893[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3893 -> 2221[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3894[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3894[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3894 -> 2222[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3895[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3895[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3895 -> 2223[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3896[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3896[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3896 -> 2224[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3897[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3897[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3897 -> 2225[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3898[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3898[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3898 -> 2226[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3899[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3899[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3899 -> 2227[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3900[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3900[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3900 -> 2228[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3901[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3901[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3901 -> 2229[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3902[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3902[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3902 -> 2230[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3903[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3903[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3903 -> 2231[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3904[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3904[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3904 -> 2232[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1904[label="xuu110 <= xuu113",fontsize=16,color="blue",shape="box"];3905[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3905[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3905 -> 2233[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3906[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3906[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3906 -> 2234[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3907[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3907[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3907 -> 2235[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3908[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3908[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3908 -> 2236[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3909[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3909[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3909 -> 2237[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3910[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3910[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3910 -> 2238[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3911[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3911[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3911 -> 2239[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3912[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3912[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3912 -> 2240[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3913[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3913[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3913 -> 2241[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3914[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3914[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3914 -> 2242[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3915[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3915[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3915 -> 2243[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3916[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3916[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3916 -> 2244[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3917[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3917[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3917 -> 2245[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3918[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3918[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3918 -> 2246[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1905[label="False || xuu210",fontsize=16,color="black",shape="box"];1905 -> 2247[label="",style="solid", color="black", weight=3]; 36.90/18.33 1906[label="True || xuu210",fontsize=16,color="black",shape="box"];1906 -> 2248[label="",style="solid", color="black", weight=3]; 36.90/18.33 1907[label="compare1 (xuu180,xuu181,xuu182) (xuu183,xuu184,xuu185) False",fontsize=16,color="black",shape="box"];1907 -> 2249[label="",style="solid", color="black", weight=3]; 36.90/18.33 1908[label="compare1 (xuu180,xuu181,xuu182) (xuu183,xuu184,xuu185) True",fontsize=16,color="black",shape="box"];1908 -> 2250[label="",style="solid", color="black", weight=3]; 36.90/18.33 1909[label="True",fontsize=16,color="green",shape="box"];1910 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1910[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1910 -> 2251[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1910 -> 2252[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1911 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1911[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1911 -> 2253[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1911 -> 2254[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1912 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1912[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1912 -> 2255[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1912 -> 2256[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1913 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1913[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1913 -> 2257[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1913 -> 2258[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1914 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1914[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1914 -> 2259[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1914 -> 2260[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1915 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1915[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1915 -> 2261[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1915 -> 2262[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1916 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1916[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1916 -> 2263[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1916 -> 2264[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1917 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1917[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1917 -> 2265[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1917 -> 2266[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1918 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1918[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1918 -> 2267[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1918 -> 2268[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1919 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1919[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1919 -> 2269[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1919 -> 2270[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1920 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1920[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1920 -> 2271[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1920 -> 2272[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1921 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1921[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1921 -> 2273[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1921 -> 2274[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1922 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1922[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1922 -> 2275[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1922 -> 2276[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1923 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1923[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1923 -> 2277[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1923 -> 2278[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1924 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1924[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1924 -> 2279[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1924 -> 2280[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1925 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1925[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1925 -> 2281[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1925 -> 2282[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1926 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1926[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1926 -> 2283[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1926 -> 2284[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1927 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1927[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1927 -> 2285[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1927 -> 2286[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1928 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1928[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1928 -> 2287[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1928 -> 2288[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1929 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1929[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1929 -> 2289[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1929 -> 2290[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1930 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1930[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1930 -> 2291[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1930 -> 2292[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1931 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1931[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1931 -> 2293[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1931 -> 2294[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1932 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1932[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1932 -> 2295[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1932 -> 2296[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1933 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1933[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1933 -> 2297[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1933 -> 2298[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1934 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1934[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1934 -> 2299[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1934 -> 2300[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1935 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1935[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1935 -> 2301[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1935 -> 2302[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1936 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1936[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1936 -> 2303[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1936 -> 2304[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1937 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1937[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1937 -> 2305[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1937 -> 2306[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1938 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1938[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1938 -> 2307[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1938 -> 2308[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1939 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1939[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1939 -> 2309[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1939 -> 2310[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1940 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1940[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1940 -> 2311[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1940 -> 2312[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1941 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1941[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1941 -> 2313[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1941 -> 2314[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1942 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1942[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1942 -> 2315[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1942 -> 2316[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1943 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1943[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1943 -> 2317[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1943 -> 2318[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1944 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1944[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1944 -> 2319[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1944 -> 2320[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1945 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1945[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1945 -> 2321[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1945 -> 2322[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1946 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1946[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1946 -> 2323[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1946 -> 2324[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1947 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1947[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1947 -> 2325[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1947 -> 2326[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1948 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1948[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1948 -> 2327[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1948 -> 2328[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1949 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1949[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1949 -> 2329[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1949 -> 2330[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1950 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1950[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1950 -> 2331[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1950 -> 2332[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1951 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 1951[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1951 -> 2333[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1951 -> 2334[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 1952[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3919[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3919[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3919 -> 2335[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3920[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3920[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3920 -> 2336[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3921[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3921[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3921 -> 2337[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3922[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3922[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3922 -> 2338[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3923[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3923[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3923 -> 2339[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3924[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3924[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3924 -> 2340[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3925[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3925[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3925 -> 2341[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3926[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3926[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3926 -> 2342[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3927[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3927[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3927 -> 2343[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3928[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3928[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3928 -> 2344[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3929[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3929[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3929 -> 2345[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3930[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3930[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3930 -> 2346[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3931[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3931[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3931 -> 2347[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3932[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3932[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3932 -> 2348[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1953[label="xuu40002 == xuu3002",fontsize=16,color="blue",shape="box"];3933[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3933[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3933 -> 2349[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3934[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3934[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3934 -> 2350[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3935[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3935[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3935 -> 2351[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3936[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3936[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3936 -> 2352[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3937[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3937[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3937 -> 2353[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3938[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3938[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3938 -> 2354[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3939[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3939[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3939 -> 2355[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3940[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3940[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3940 -> 2356[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3941[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3941[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3941 -> 2357[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3942[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3942[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3942 -> 2358[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3943[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3943[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3943 -> 2359[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3944[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3944[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3944 -> 2360[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3945[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3945[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3945 -> 2361[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3946[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3946[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3946 -> 2362[label="",style="solid", color="blue", weight=3]; 36.90/18.33 1954[label="primEqInt (Pos (Succ xuu400000)) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];1954 -> 2363[label="",style="solid", color="black", weight=3]; 36.90/18.33 1955[label="primEqInt (Pos (Succ xuu400000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1955 -> 2364[label="",style="solid", color="black", weight=3]; 36.90/18.33 1956[label="False",fontsize=16,color="green",shape="box"];1957[label="primEqInt (Pos Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];1957 -> 2365[label="",style="solid", color="black", weight=3]; 36.90/18.33 1958[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1958 -> 2366[label="",style="solid", color="black", weight=3]; 36.90/18.33 1959[label="primEqInt (Pos Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];1959 -> 2367[label="",style="solid", color="black", weight=3]; 36.90/18.33 1960[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1960 -> 2368[label="",style="solid", color="black", weight=3]; 36.90/18.33 1961[label="False",fontsize=16,color="green",shape="box"];1962[label="primEqInt (Neg (Succ xuu400000)) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];1962 -> 2369[label="",style="solid", color="black", weight=3]; 36.90/18.33 1963[label="primEqInt (Neg (Succ xuu400000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1963 -> 2370[label="",style="solid", color="black", weight=3]; 36.90/18.33 1964[label="primEqInt (Neg Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];1964 -> 2371[label="",style="solid", color="black", weight=3]; 36.90/18.33 1965[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1965 -> 2372[label="",style="solid", color="black", weight=3]; 36.90/18.33 1966[label="primEqInt (Neg Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];1966 -> 2373[label="",style="solid", color="black", weight=3]; 36.90/18.33 1967[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1967 -> 2374[label="",style="solid", color="black", weight=3]; 36.90/18.33 1968[label="xuu3000",fontsize=16,color="green",shape="box"];1969[label="xuu40000",fontsize=16,color="green",shape="box"];1970[label="xuu3000",fontsize=16,color="green",shape="box"];1971[label="xuu40000",fontsize=16,color="green",shape="box"];1972[label="xuu3000",fontsize=16,color="green",shape="box"];1973[label="xuu40000",fontsize=16,color="green",shape="box"];1974[label="xuu3000",fontsize=16,color="green",shape="box"];1975[label="xuu40000",fontsize=16,color="green",shape="box"];1976[label="xuu3000",fontsize=16,color="green",shape="box"];1977[label="xuu40000",fontsize=16,color="green",shape="box"];1978[label="xuu3000",fontsize=16,color="green",shape="box"];1979[label="xuu40000",fontsize=16,color="green",shape="box"];1980[label="xuu3000",fontsize=16,color="green",shape="box"];1981[label="xuu40000",fontsize=16,color="green",shape="box"];1982[label="xuu3000",fontsize=16,color="green",shape="box"];1983[label="xuu40000",fontsize=16,color="green",shape="box"];1984[label="xuu3000",fontsize=16,color="green",shape="box"];1985[label="xuu40000",fontsize=16,color="green",shape="box"];1986[label="xuu3000",fontsize=16,color="green",shape="box"];1987[label="xuu40000",fontsize=16,color="green",shape="box"];1988[label="xuu3000",fontsize=16,color="green",shape="box"];1989[label="xuu40000",fontsize=16,color="green",shape="box"];1990[label="xuu3000",fontsize=16,color="green",shape="box"];1991[label="xuu40000",fontsize=16,color="green",shape="box"];1992[label="xuu3000",fontsize=16,color="green",shape="box"];1993[label="xuu40000",fontsize=16,color="green",shape="box"];1994[label="xuu3000",fontsize=16,color="green",shape="box"];1995[label="xuu40000",fontsize=16,color="green",shape="box"];1996[label="xuu3000",fontsize=16,color="green",shape="box"];1997[label="xuu40000",fontsize=16,color="green",shape="box"];1998[label="xuu3000",fontsize=16,color="green",shape="box"];1999[label="xuu40000",fontsize=16,color="green",shape="box"];2000[label="xuu3000",fontsize=16,color="green",shape="box"];2001[label="xuu40000",fontsize=16,color="green",shape="box"];2002[label="xuu3000",fontsize=16,color="green",shape="box"];2003[label="xuu40000",fontsize=16,color="green",shape="box"];2004[label="xuu3000",fontsize=16,color="green",shape="box"];2005[label="xuu40000",fontsize=16,color="green",shape="box"];2006[label="xuu3000",fontsize=16,color="green",shape="box"];2007[label="xuu40000",fontsize=16,color="green",shape="box"];2008[label="xuu3000",fontsize=16,color="green",shape="box"];2009[label="xuu40000",fontsize=16,color="green",shape="box"];2010[label="xuu3000",fontsize=16,color="green",shape="box"];2011[label="xuu40000",fontsize=16,color="green",shape="box"];2012[label="xuu3000",fontsize=16,color="green",shape="box"];2013[label="xuu40000",fontsize=16,color="green",shape="box"];2014[label="xuu3000",fontsize=16,color="green",shape="box"];2015[label="xuu40000",fontsize=16,color="green",shape="box"];2016[label="xuu3000",fontsize=16,color="green",shape="box"];2017[label="xuu40000",fontsize=16,color="green",shape="box"];2018[label="xuu3000",fontsize=16,color="green",shape="box"];2019[label="xuu40000",fontsize=16,color="green",shape="box"];2020[label="xuu3000",fontsize=16,color="green",shape="box"];2021[label="xuu40000",fontsize=16,color="green",shape="box"];2022[label="xuu3000",fontsize=16,color="green",shape="box"];2023[label="xuu40000",fontsize=16,color="green",shape="box"];2024[label="primEqNat (Succ xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];3947[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3947[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3947 -> 2375[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3948[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3948[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3948 -> 2376[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 2025[label="primEqNat Zero xuu3000",fontsize=16,color="burlywood",shape="box"];3949[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3949[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3949 -> 2377[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3950[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3950[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3950 -> 2378[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 2026 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2026[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];2026 -> 2379[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2026 -> 2380[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2027 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2027[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];2027 -> 2381[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2027 -> 2382[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2028 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2028[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2028 -> 2383[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2028 -> 2384[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2029 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2029[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2029 -> 2385[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2029 -> 2386[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2030 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2030[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2030 -> 2387[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2030 -> 2388[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2031 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2031[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2031 -> 2389[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2031 -> 2390[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2032[label="xuu3000",fontsize=16,color="green",shape="box"];2033[label="xuu40000",fontsize=16,color="green",shape="box"];2034[label="xuu3000",fontsize=16,color="green",shape="box"];2035[label="xuu40000",fontsize=16,color="green",shape="box"];2036[label="xuu3000",fontsize=16,color="green",shape="box"];2037[label="xuu40000",fontsize=16,color="green",shape="box"];2038[label="xuu3000",fontsize=16,color="green",shape="box"];2039[label="xuu40000",fontsize=16,color="green",shape="box"];2040[label="xuu3000",fontsize=16,color="green",shape="box"];2041[label="xuu40000",fontsize=16,color="green",shape="box"];2042[label="xuu3000",fontsize=16,color="green",shape="box"];2043[label="xuu40000",fontsize=16,color="green",shape="box"];2044[label="xuu3000",fontsize=16,color="green",shape="box"];2045[label="xuu40000",fontsize=16,color="green",shape="box"];2046[label="xuu3000",fontsize=16,color="green",shape="box"];2047[label="xuu40000",fontsize=16,color="green",shape="box"];2048[label="xuu3000",fontsize=16,color="green",shape="box"];2049[label="xuu40000",fontsize=16,color="green",shape="box"];2050[label="xuu3000",fontsize=16,color="green",shape="box"];2051[label="xuu40000",fontsize=16,color="green",shape="box"];2052[label="xuu3000",fontsize=16,color="green",shape="box"];2053[label="xuu40000",fontsize=16,color="green",shape="box"];2054[label="xuu3000",fontsize=16,color="green",shape="box"];2055[label="xuu40000",fontsize=16,color="green",shape="box"];2056[label="xuu3000",fontsize=16,color="green",shape="box"];2057[label="xuu40000",fontsize=16,color="green",shape="box"];2058[label="xuu3000",fontsize=16,color="green",shape="box"];2059[label="xuu40000",fontsize=16,color="green",shape="box"];2060 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2060[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2060 -> 2391[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2060 -> 2392[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2061 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2061[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2061 -> 2393[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2061 -> 2394[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2062 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2062[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2062 -> 2395[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2062 -> 2396[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2063 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2063[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2063 -> 2397[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2063 -> 2398[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2064 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2064[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2064 -> 2399[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2064 -> 2400[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2065 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2065[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2065 -> 2401[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2065 -> 2402[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2066 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2066[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2066 -> 2403[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2066 -> 2404[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2067 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2067[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2067 -> 2405[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2067 -> 2406[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2068 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2068[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2068 -> 2407[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2068 -> 2408[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2069 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2069[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2069 -> 2409[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2069 -> 2410[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2070 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2070[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2070 -> 2411[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2070 -> 2412[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2071 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2071[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2071 -> 2413[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2071 -> 2414[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2072 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2072[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2072 -> 2415[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2072 -> 2416[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2073 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2073[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2073 -> 2417[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2073 -> 2418[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2074[label="xuu3001",fontsize=16,color="green",shape="box"];2075[label="xuu40001",fontsize=16,color="green",shape="box"];2076 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2076[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];2076 -> 2419[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2076 -> 2420[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2077 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2077[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];2077 -> 2421[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2077 -> 2422[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2079 -> 193[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2079[label="compare xuu70 xuu71",fontsize=16,color="magenta"];2079 -> 2423[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2079 -> 2424[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2078[label="xuu211 /= GT",fontsize=16,color="black",shape="triangle"];2078 -> 2425[label="",style="solid", color="black", weight=3]; 36.90/18.33 2087[label="(xuu700,xuu701,xuu702) <= (xuu710,xuu711,xuu712)",fontsize=16,color="black",shape="box"];2087 -> 2440[label="",style="solid", color="black", weight=3]; 36.90/18.33 2080 -> 195[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2080[label="compare xuu70 xuu71",fontsize=16,color="magenta"];2080 -> 2426[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2080 -> 2427[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2088[label="Left xuu700 <= Left xuu710",fontsize=16,color="black",shape="box"];2088 -> 2441[label="",style="solid", color="black", weight=3]; 36.90/18.33 2089[label="Left xuu700 <= Right xuu710",fontsize=16,color="black",shape="box"];2089 -> 2442[label="",style="solid", color="black", weight=3]; 36.90/18.33 2090[label="Right xuu700 <= Left xuu710",fontsize=16,color="black",shape="box"];2090 -> 2443[label="",style="solid", color="black", weight=3]; 36.90/18.33 2091[label="Right xuu700 <= Right xuu710",fontsize=16,color="black",shape="box"];2091 -> 2444[label="",style="solid", color="black", weight=3]; 36.90/18.33 2081 -> 197[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2081[label="compare xuu70 xuu71",fontsize=16,color="magenta"];2081 -> 2428[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2081 -> 2429[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2082 -> 198[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2082[label="compare xuu70 xuu71",fontsize=16,color="magenta"];2082 -> 2430[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2082 -> 2431[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2083 -> 199[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2083[label="compare xuu70 xuu71",fontsize=16,color="magenta"];2083 -> 2432[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2083 -> 2433[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2092[label="False <= False",fontsize=16,color="black",shape="box"];2092 -> 2445[label="",style="solid", color="black", weight=3]; 36.90/18.33 2093[label="False <= True",fontsize=16,color="black",shape="box"];2093 -> 2446[label="",style="solid", color="black", weight=3]; 36.90/18.33 2094[label="True <= False",fontsize=16,color="black",shape="box"];2094 -> 2447[label="",style="solid", color="black", weight=3]; 36.90/18.33 2095[label="True <= True",fontsize=16,color="black",shape="box"];2095 -> 2448[label="",style="solid", color="black", weight=3]; 36.90/18.33 2096[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2096 -> 2449[label="",style="solid", color="black", weight=3]; 36.90/18.33 2097[label="Nothing <= Just xuu710",fontsize=16,color="black",shape="box"];2097 -> 2450[label="",style="solid", color="black", weight=3]; 36.90/18.33 2098[label="Just xuu700 <= Nothing",fontsize=16,color="black",shape="box"];2098 -> 2451[label="",style="solid", color="black", weight=3]; 36.90/18.33 2099[label="Just xuu700 <= Just xuu710",fontsize=16,color="black",shape="box"];2099 -> 2452[label="",style="solid", color="black", weight=3]; 36.90/18.33 2100[label="(xuu700,xuu701) <= (xuu710,xuu711)",fontsize=16,color="black",shape="box"];2100 -> 2453[label="",style="solid", color="black", weight=3]; 36.90/18.33 2084 -> 203[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2084[label="compare xuu70 xuu71",fontsize=16,color="magenta"];2084 -> 2434[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2084 -> 2435[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2101[label="LT <= LT",fontsize=16,color="black",shape="box"];2101 -> 2454[label="",style="solid", color="black", weight=3]; 36.90/18.33 2102[label="LT <= EQ",fontsize=16,color="black",shape="box"];2102 -> 2455[label="",style="solid", color="black", weight=3]; 36.90/18.33 2103[label="LT <= GT",fontsize=16,color="black",shape="box"];2103 -> 2456[label="",style="solid", color="black", weight=3]; 36.90/18.33 2104[label="EQ <= LT",fontsize=16,color="black",shape="box"];2104 -> 2457[label="",style="solid", color="black", weight=3]; 36.90/18.33 2105[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2105 -> 2458[label="",style="solid", color="black", weight=3]; 36.90/18.33 2106[label="EQ <= GT",fontsize=16,color="black",shape="box"];2106 -> 2459[label="",style="solid", color="black", weight=3]; 36.90/18.33 2107[label="GT <= LT",fontsize=16,color="black",shape="box"];2107 -> 2460[label="",style="solid", color="black", weight=3]; 36.90/18.33 2108[label="GT <= EQ",fontsize=16,color="black",shape="box"];2108 -> 2461[label="",style="solid", color="black", weight=3]; 36.90/18.33 2109[label="GT <= GT",fontsize=16,color="black",shape="box"];2109 -> 2462[label="",style="solid", color="black", weight=3]; 36.90/18.33 2085 -> 205[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2085[label="compare xuu70 xuu71",fontsize=16,color="magenta"];2085 -> 2436[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2085 -> 2437[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2086 -> 206[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2086[label="compare xuu70 xuu71",fontsize=16,color="magenta"];2086 -> 2438[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2086 -> 2439[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2110[label="GT",fontsize=16,color="green",shape="box"];2111[label="GT",fontsize=16,color="green",shape="box"];2112 -> 1446[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2112[label="primPlusNat (primMulNat xuu400000 (Succ xuu30100)) (Succ xuu30100)",fontsize=16,color="magenta"];2112 -> 2463[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2112 -> 2464[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2113[label="Zero",fontsize=16,color="green",shape="box"];2114[label="Zero",fontsize=16,color="green",shape="box"];2115[label="Zero",fontsize=16,color="green",shape="box"];2116[label="GT",fontsize=16,color="green",shape="box"];2117[label="xuu123",fontsize=16,color="green",shape="box"];2118[label="xuu121",fontsize=16,color="green",shape="box"];2119[label="xuu123",fontsize=16,color="green",shape="box"];2120[label="xuu121",fontsize=16,color="green",shape="box"];2121[label="xuu123",fontsize=16,color="green",shape="box"];2122[label="xuu121",fontsize=16,color="green",shape="box"];2123[label="xuu123",fontsize=16,color="green",shape="box"];2124[label="xuu121",fontsize=16,color="green",shape="box"];2125[label="xuu123",fontsize=16,color="green",shape="box"];2126[label="xuu121",fontsize=16,color="green",shape="box"];2127[label="xuu123",fontsize=16,color="green",shape="box"];2128[label="xuu121",fontsize=16,color="green",shape="box"];2129[label="xuu123",fontsize=16,color="green",shape="box"];2130[label="xuu121",fontsize=16,color="green",shape="box"];2131[label="xuu123",fontsize=16,color="green",shape="box"];2132[label="xuu121",fontsize=16,color="green",shape="box"];2133[label="xuu123",fontsize=16,color="green",shape="box"];2134[label="xuu121",fontsize=16,color="green",shape="box"];2135[label="xuu123",fontsize=16,color="green",shape="box"];2136[label="xuu121",fontsize=16,color="green",shape="box"];2137[label="xuu123",fontsize=16,color="green",shape="box"];2138[label="xuu121",fontsize=16,color="green",shape="box"];2139[label="xuu123",fontsize=16,color="green",shape="box"];2140[label="xuu121",fontsize=16,color="green",shape="box"];2141[label="xuu123",fontsize=16,color="green",shape="box"];2142[label="xuu121",fontsize=16,color="green",shape="box"];2143[label="xuu123",fontsize=16,color="green",shape="box"];2144[label="xuu121",fontsize=16,color="green",shape="box"];2145[label="xuu122",fontsize=16,color="green",shape="box"];2146[label="xuu124",fontsize=16,color="green",shape="box"];2147[label="xuu122",fontsize=16,color="green",shape="box"];2148[label="xuu124",fontsize=16,color="green",shape="box"];2149[label="xuu122",fontsize=16,color="green",shape="box"];2150[label="xuu124",fontsize=16,color="green",shape="box"];2151[label="xuu122",fontsize=16,color="green",shape="box"];2152[label="xuu124",fontsize=16,color="green",shape="box"];2153[label="xuu122",fontsize=16,color="green",shape="box"];2154[label="xuu124",fontsize=16,color="green",shape="box"];2155[label="xuu122",fontsize=16,color="green",shape="box"];2156[label="xuu124",fontsize=16,color="green",shape="box"];2157[label="xuu122",fontsize=16,color="green",shape="box"];2158[label="xuu124",fontsize=16,color="green",shape="box"];2159[label="xuu122",fontsize=16,color="green",shape="box"];2160[label="xuu124",fontsize=16,color="green",shape="box"];2161[label="xuu122",fontsize=16,color="green",shape="box"];2162[label="xuu124",fontsize=16,color="green",shape="box"];2163[label="xuu122",fontsize=16,color="green",shape="box"];2164[label="xuu124",fontsize=16,color="green",shape="box"];2165[label="xuu122",fontsize=16,color="green",shape="box"];2166[label="xuu124",fontsize=16,color="green",shape="box"];2167[label="xuu122",fontsize=16,color="green",shape="box"];2168[label="xuu124",fontsize=16,color="green",shape="box"];2169[label="xuu122",fontsize=16,color="green",shape="box"];2170[label="xuu124",fontsize=16,color="green",shape="box"];2171[label="xuu122",fontsize=16,color="green",shape="box"];2172[label="xuu124",fontsize=16,color="green",shape="box"];2173[label="compare1 (xuu195,xuu196) (xuu197,xuu198) False",fontsize=16,color="black",shape="box"];2173 -> 2465[label="",style="solid", color="black", weight=3]; 36.90/18.33 2174[label="compare1 (xuu195,xuu196) (xuu197,xuu198) True",fontsize=16,color="black",shape="box"];2174 -> 2466[label="",style="solid", color="black", weight=3]; 36.90/18.33 2175[label="True",fontsize=16,color="green",shape="box"];2176[label="Succ (Succ (primPlusNat xuu39200 xuu13400))",fontsize=16,color="green",shape="box"];2176 -> 2467[label="",style="dashed", color="green", weight=3]; 36.90/18.33 2177[label="Succ xuu39200",fontsize=16,color="green",shape="box"];2178[label="Succ xuu13400",fontsize=16,color="green",shape="box"];2179[label="Zero",fontsize=16,color="green",shape="box"];2180[label="xuu39200",fontsize=16,color="green",shape="box"];2181[label="xuu13400",fontsize=16,color="green",shape="box"];2182[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xuu14 xuu15 xuu39 xuu18",fontsize=16,color="black",shape="box"];2182 -> 2468[label="",style="solid", color="black", weight=3]; 36.90/18.33 2183[label="error []",fontsize=16,color="red",shape="box"];2184[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"];2184 -> 2469[label="",style="solid", color="black", weight=3]; 36.90/18.33 2185 -> 913[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2185[label="FiniteMap.sizeFM xuu183",fontsize=16,color="magenta"];2185 -> 2470[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2186 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2186[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu184",fontsize=16,color="magenta"];2186 -> 2471[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2186 -> 2472[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2187[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"];2187 -> 2473[label="",style="solid", color="black", weight=3]; 36.90/18.33 2188[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"];2188 -> 2474[label="",style="solid", color="black", weight=3]; 36.90/18.33 2189[label="FiniteMap.mkBranchLeft_size xuu39 xuu14 xuu18",fontsize=16,color="black",shape="box"];2189 -> 2475[label="",style="solid", color="black", weight=3]; 36.90/18.33 2190[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2191[label="xuu109",fontsize=16,color="green",shape="box"];2192[label="xuu112",fontsize=16,color="green",shape="box"];2193[label="xuu109",fontsize=16,color="green",shape="box"];2194[label="xuu112",fontsize=16,color="green",shape="box"];2195[label="xuu109",fontsize=16,color="green",shape="box"];2196[label="xuu112",fontsize=16,color="green",shape="box"];2197[label="xuu109",fontsize=16,color="green",shape="box"];2198[label="xuu112",fontsize=16,color="green",shape="box"];2199[label="xuu109",fontsize=16,color="green",shape="box"];2200[label="xuu112",fontsize=16,color="green",shape="box"];2201[label="xuu109",fontsize=16,color="green",shape="box"];2202[label="xuu112",fontsize=16,color="green",shape="box"];2203[label="xuu109",fontsize=16,color="green",shape="box"];2204[label="xuu112",fontsize=16,color="green",shape="box"];2205[label="xuu109",fontsize=16,color="green",shape="box"];2206[label="xuu112",fontsize=16,color="green",shape="box"];2207[label="xuu109",fontsize=16,color="green",shape="box"];2208[label="xuu112",fontsize=16,color="green",shape="box"];2209[label="xuu109",fontsize=16,color="green",shape="box"];2210[label="xuu112",fontsize=16,color="green",shape="box"];2211[label="xuu109",fontsize=16,color="green",shape="box"];2212[label="xuu112",fontsize=16,color="green",shape="box"];2213[label="xuu109",fontsize=16,color="green",shape="box"];2214[label="xuu112",fontsize=16,color="green",shape="box"];2215[label="xuu109",fontsize=16,color="green",shape="box"];2216[label="xuu112",fontsize=16,color="green",shape="box"];2217[label="xuu109",fontsize=16,color="green",shape="box"];2218[label="xuu112",fontsize=16,color="green",shape="box"];2219 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2219[label="xuu109 == xuu112",fontsize=16,color="magenta"];2219 -> 2476[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2219 -> 2477[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2220 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2220[label="xuu109 == xuu112",fontsize=16,color="magenta"];2220 -> 2478[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2220 -> 2479[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2221 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2221[label="xuu109 == xuu112",fontsize=16,color="magenta"];2221 -> 2480[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2221 -> 2481[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2222 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2222[label="xuu109 == xuu112",fontsize=16,color="magenta"];2222 -> 2482[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2222 -> 2483[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2223 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2223[label="xuu109 == xuu112",fontsize=16,color="magenta"];2223 -> 2484[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2223 -> 2485[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2224 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2224[label="xuu109 == xuu112",fontsize=16,color="magenta"];2224 -> 2486[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2224 -> 2487[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2225 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2225[label="xuu109 == xuu112",fontsize=16,color="magenta"];2225 -> 2488[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2225 -> 2489[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2226 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2226[label="xuu109 == xuu112",fontsize=16,color="magenta"];2226 -> 2490[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2226 -> 2491[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2227 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2227[label="xuu109 == xuu112",fontsize=16,color="magenta"];2227 -> 2492[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2227 -> 2493[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2228 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2228[label="xuu109 == xuu112",fontsize=16,color="magenta"];2228 -> 2494[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2228 -> 2495[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2229 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2229[label="xuu109 == xuu112",fontsize=16,color="magenta"];2229 -> 2496[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2229 -> 2497[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2230 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2230[label="xuu109 == xuu112",fontsize=16,color="magenta"];2230 -> 2498[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2230 -> 2499[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2231 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2231[label="xuu109 == xuu112",fontsize=16,color="magenta"];2231 -> 2500[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2231 -> 2501[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2232 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2232[label="xuu109 == xuu112",fontsize=16,color="magenta"];2232 -> 2502[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2232 -> 2503[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2233 -> 1496[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2233[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2233 -> 2504[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2233 -> 2505[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2234 -> 1497[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2234[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2234 -> 2506[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2234 -> 2507[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2235 -> 1498[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2235[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2235 -> 2508[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2235 -> 2509[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2236 -> 1499[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2236[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2236 -> 2510[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2236 -> 2511[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2237 -> 1500[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2237[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2237 -> 2512[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2237 -> 2513[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2238 -> 1501[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2238[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2238 -> 2514[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2238 -> 2515[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2239 -> 1502[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2239[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2239 -> 2516[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2239 -> 2517[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2240 -> 1503[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2240[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2240 -> 2518[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2240 -> 2519[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2241 -> 1504[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2241[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2241 -> 2520[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2241 -> 2521[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2242 -> 1505[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2242[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2242 -> 2522[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2242 -> 2523[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2243 -> 1506[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2243[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2243 -> 2524[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2243 -> 2525[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2244 -> 1507[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2244[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2244 -> 2526[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2244 -> 2527[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2245 -> 1508[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2245[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2245 -> 2528[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2245 -> 2529[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2246 -> 1509[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2246[label="xuu110 <= xuu113",fontsize=16,color="magenta"];2246 -> 2530[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2246 -> 2531[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2247[label="xuu210",fontsize=16,color="green",shape="box"];2248[label="True",fontsize=16,color="green",shape="box"];2249[label="compare0 (xuu180,xuu181,xuu182) (xuu183,xuu184,xuu185) otherwise",fontsize=16,color="black",shape="box"];2249 -> 2532[label="",style="solid", color="black", weight=3]; 36.90/18.33 2250[label="LT",fontsize=16,color="green",shape="box"];2251[label="xuu3000",fontsize=16,color="green",shape="box"];2252[label="xuu40000",fontsize=16,color="green",shape="box"];2253[label="xuu3000",fontsize=16,color="green",shape="box"];2254[label="xuu40000",fontsize=16,color="green",shape="box"];2255[label="xuu3000",fontsize=16,color="green",shape="box"];2256[label="xuu40000",fontsize=16,color="green",shape="box"];2257[label="xuu3000",fontsize=16,color="green",shape="box"];2258[label="xuu40000",fontsize=16,color="green",shape="box"];2259[label="xuu3000",fontsize=16,color="green",shape="box"];2260[label="xuu40000",fontsize=16,color="green",shape="box"];2261[label="xuu3000",fontsize=16,color="green",shape="box"];2262[label="xuu40000",fontsize=16,color="green",shape="box"];2263[label="xuu3000",fontsize=16,color="green",shape="box"];2264[label="xuu40000",fontsize=16,color="green",shape="box"];2265[label="xuu3000",fontsize=16,color="green",shape="box"];2266[label="xuu40000",fontsize=16,color="green",shape="box"];2267[label="xuu3000",fontsize=16,color="green",shape="box"];2268[label="xuu40000",fontsize=16,color="green",shape="box"];2269[label="xuu3000",fontsize=16,color="green",shape="box"];2270[label="xuu40000",fontsize=16,color="green",shape="box"];2271[label="xuu3000",fontsize=16,color="green",shape="box"];2272[label="xuu40000",fontsize=16,color="green",shape="box"];2273[label="xuu3000",fontsize=16,color="green",shape="box"];2274[label="xuu40000",fontsize=16,color="green",shape="box"];2275[label="xuu3000",fontsize=16,color="green",shape="box"];2276[label="xuu40000",fontsize=16,color="green",shape="box"];2277[label="xuu3000",fontsize=16,color="green",shape="box"];2278[label="xuu40000",fontsize=16,color="green",shape="box"];2279[label="xuu3001",fontsize=16,color="green",shape="box"];2280[label="xuu40001",fontsize=16,color="green",shape="box"];2281[label="xuu3001",fontsize=16,color="green",shape="box"];2282[label="xuu40001",fontsize=16,color="green",shape="box"];2283[label="xuu3001",fontsize=16,color="green",shape="box"];2284[label="xuu40001",fontsize=16,color="green",shape="box"];2285[label="xuu3001",fontsize=16,color="green",shape="box"];2286[label="xuu40001",fontsize=16,color="green",shape="box"];2287[label="xuu3001",fontsize=16,color="green",shape="box"];2288[label="xuu40001",fontsize=16,color="green",shape="box"];2289[label="xuu3001",fontsize=16,color="green",shape="box"];2290[label="xuu40001",fontsize=16,color="green",shape="box"];2291[label="xuu3001",fontsize=16,color="green",shape="box"];2292[label="xuu40001",fontsize=16,color="green",shape="box"];2293[label="xuu3001",fontsize=16,color="green",shape="box"];2294[label="xuu40001",fontsize=16,color="green",shape="box"];2295[label="xuu3001",fontsize=16,color="green",shape="box"];2296[label="xuu40001",fontsize=16,color="green",shape="box"];2297[label="xuu3001",fontsize=16,color="green",shape="box"];2298[label="xuu40001",fontsize=16,color="green",shape="box"];2299[label="xuu3001",fontsize=16,color="green",shape="box"];2300[label="xuu40001",fontsize=16,color="green",shape="box"];2301[label="xuu3001",fontsize=16,color="green",shape="box"];2302[label="xuu40001",fontsize=16,color="green",shape="box"];2303[label="xuu3001",fontsize=16,color="green",shape="box"];2304[label="xuu40001",fontsize=16,color="green",shape="box"];2305[label="xuu3001",fontsize=16,color="green",shape="box"];2306[label="xuu40001",fontsize=16,color="green",shape="box"];2307[label="xuu3000",fontsize=16,color="green",shape="box"];2308[label="xuu40000",fontsize=16,color="green",shape="box"];2309[label="xuu3000",fontsize=16,color="green",shape="box"];2310[label="xuu40000",fontsize=16,color="green",shape="box"];2311[label="xuu3000",fontsize=16,color="green",shape="box"];2312[label="xuu40000",fontsize=16,color="green",shape="box"];2313[label="xuu3000",fontsize=16,color="green",shape="box"];2314[label="xuu40000",fontsize=16,color="green",shape="box"];2315[label="xuu3000",fontsize=16,color="green",shape="box"];2316[label="xuu40000",fontsize=16,color="green",shape="box"];2317[label="xuu3000",fontsize=16,color="green",shape="box"];2318[label="xuu40000",fontsize=16,color="green",shape="box"];2319[label="xuu3000",fontsize=16,color="green",shape="box"];2320[label="xuu40000",fontsize=16,color="green",shape="box"];2321[label="xuu3000",fontsize=16,color="green",shape="box"];2322[label="xuu40000",fontsize=16,color="green",shape="box"];2323[label="xuu3000",fontsize=16,color="green",shape="box"];2324[label="xuu40000",fontsize=16,color="green",shape="box"];2325[label="xuu3000",fontsize=16,color="green",shape="box"];2326[label="xuu40000",fontsize=16,color="green",shape="box"];2327[label="xuu3000",fontsize=16,color="green",shape="box"];2328[label="xuu40000",fontsize=16,color="green",shape="box"];2329[label="xuu3000",fontsize=16,color="green",shape="box"];2330[label="xuu40000",fontsize=16,color="green",shape="box"];2331[label="xuu3000",fontsize=16,color="green",shape="box"];2332[label="xuu40000",fontsize=16,color="green",shape="box"];2333[label="xuu3000",fontsize=16,color="green",shape="box"];2334[label="xuu40000",fontsize=16,color="green",shape="box"];2335 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2335[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2335 -> 2533[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2335 -> 2534[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2336 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2336[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2336 -> 2535[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2336 -> 2536[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2337 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2337[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2337 -> 2537[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2337 -> 2538[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2338 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2338[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2338 -> 2539[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2338 -> 2540[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2339 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2339[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2339 -> 2541[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2339 -> 2542[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2340 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2340[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2340 -> 2543[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2340 -> 2544[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2341 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2341[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2341 -> 2545[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2341 -> 2546[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2342 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2342[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2342 -> 2547[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2342 -> 2548[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2343 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2343[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2343 -> 2549[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2343 -> 2550[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2344 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2344[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2344 -> 2551[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2344 -> 2552[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2345 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2345[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2345 -> 2553[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2345 -> 2554[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2346 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2346[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2346 -> 2555[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2346 -> 2556[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2347 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2347[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2347 -> 2557[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2347 -> 2558[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2348 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2348[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2348 -> 2559[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2348 -> 2560[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2349 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2349[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2349 -> 2561[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2349 -> 2562[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2350 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2350[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2350 -> 2563[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2350 -> 2564[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2351 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2351[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2351 -> 2565[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2351 -> 2566[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2352 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2352[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2352 -> 2567[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2352 -> 2568[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2353 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2353[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2353 -> 2569[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2353 -> 2570[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2354 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2354[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2354 -> 2571[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2354 -> 2572[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2355 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2355[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2355 -> 2573[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2355 -> 2574[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2356 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2356[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2356 -> 2575[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2356 -> 2576[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2357 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2357[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2357 -> 2577[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2357 -> 2578[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2358 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2358[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2358 -> 2579[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2358 -> 2580[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2359 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2359[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2359 -> 2581[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2359 -> 2582[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2360 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2360[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2360 -> 2583[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2360 -> 2584[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2361 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2361[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2361 -> 2585[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2361 -> 2586[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2362 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2362[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2362 -> 2587[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2362 -> 2588[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2363 -> 1680[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2363[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2363 -> 2589[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2363 -> 2590[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2364[label="False",fontsize=16,color="green",shape="box"];2365[label="False",fontsize=16,color="green",shape="box"];2366[label="True",fontsize=16,color="green",shape="box"];2367[label="False",fontsize=16,color="green",shape="box"];2368[label="True",fontsize=16,color="green",shape="box"];2369 -> 1680[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2369[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2369 -> 2591[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2369 -> 2592[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2370[label="False",fontsize=16,color="green",shape="box"];2371[label="False",fontsize=16,color="green",shape="box"];2372[label="True",fontsize=16,color="green",shape="box"];2373[label="False",fontsize=16,color="green",shape="box"];2374[label="True",fontsize=16,color="green",shape="box"];2375[label="primEqNat (Succ xuu400000) (Succ xuu30000)",fontsize=16,color="black",shape="box"];2375 -> 2593[label="",style="solid", color="black", weight=3]; 36.90/18.33 2376[label="primEqNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];2376 -> 2594[label="",style="solid", color="black", weight=3]; 36.90/18.33 2377[label="primEqNat Zero (Succ xuu30000)",fontsize=16,color="black",shape="box"];2377 -> 2595[label="",style="solid", color="black", weight=3]; 36.90/18.33 2378[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2378 -> 2596[label="",style="solid", color="black", weight=3]; 36.90/18.33 2379[label="xuu3000",fontsize=16,color="green",shape="box"];2380[label="xuu40001",fontsize=16,color="green",shape="box"];2381[label="xuu3001",fontsize=16,color="green",shape="box"];2382[label="xuu40000",fontsize=16,color="green",shape="box"];2383[label="xuu3000",fontsize=16,color="green",shape="box"];2384[label="xuu40000",fontsize=16,color="green",shape="box"];2385[label="xuu3000",fontsize=16,color="green",shape="box"];2386[label="xuu40000",fontsize=16,color="green",shape="box"];2387[label="xuu3001",fontsize=16,color="green",shape="box"];2388[label="xuu40001",fontsize=16,color="green",shape="box"];2389[label="xuu3001",fontsize=16,color="green",shape="box"];2390[label="xuu40001",fontsize=16,color="green",shape="box"];2391[label="xuu3000",fontsize=16,color="green",shape="box"];2392[label="xuu40000",fontsize=16,color="green",shape="box"];2393[label="xuu3000",fontsize=16,color="green",shape="box"];2394[label="xuu40000",fontsize=16,color="green",shape="box"];2395[label="xuu3000",fontsize=16,color="green",shape="box"];2396[label="xuu40000",fontsize=16,color="green",shape="box"];2397[label="xuu3000",fontsize=16,color="green",shape="box"];2398[label="xuu40000",fontsize=16,color="green",shape="box"];2399[label="xuu3000",fontsize=16,color="green",shape="box"];2400[label="xuu40000",fontsize=16,color="green",shape="box"];2401[label="xuu3000",fontsize=16,color="green",shape="box"];2402[label="xuu40000",fontsize=16,color="green",shape="box"];2403[label="xuu3000",fontsize=16,color="green",shape="box"];2404[label="xuu40000",fontsize=16,color="green",shape="box"];2405[label="xuu3000",fontsize=16,color="green",shape="box"];2406[label="xuu40000",fontsize=16,color="green",shape="box"];2407[label="xuu3000",fontsize=16,color="green",shape="box"];2408[label="xuu40000",fontsize=16,color="green",shape="box"];2409[label="xuu3000",fontsize=16,color="green",shape="box"];2410[label="xuu40000",fontsize=16,color="green",shape="box"];2411[label="xuu3000",fontsize=16,color="green",shape="box"];2412[label="xuu40000",fontsize=16,color="green",shape="box"];2413[label="xuu3000",fontsize=16,color="green",shape="box"];2414[label="xuu40000",fontsize=16,color="green",shape="box"];2415[label="xuu3000",fontsize=16,color="green",shape="box"];2416[label="xuu40000",fontsize=16,color="green",shape="box"];2417[label="xuu3000",fontsize=16,color="green",shape="box"];2418[label="xuu40000",fontsize=16,color="green",shape="box"];2419[label="xuu3000",fontsize=16,color="green",shape="box"];2420[label="xuu40001",fontsize=16,color="green",shape="box"];2421[label="xuu3001",fontsize=16,color="green",shape="box"];2422[label="xuu40000",fontsize=16,color="green",shape="box"];2423[label="xuu70",fontsize=16,color="green",shape="box"];2424[label="xuu71",fontsize=16,color="green",shape="box"];2425 -> 2597[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2425[label="not (xuu211 == GT)",fontsize=16,color="magenta"];2425 -> 2598[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2440 -> 1884[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2440[label="xuu700 < xuu710 || xuu700 == xuu710 && (xuu701 < xuu711 || xuu701 == xuu711 && xuu702 <= xuu712)",fontsize=16,color="magenta"];2440 -> 2599[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2440 -> 2600[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2426[label="xuu70",fontsize=16,color="green",shape="box"];2427[label="xuu71",fontsize=16,color="green",shape="box"];2441[label="xuu700 <= xuu710",fontsize=16,color="blue",shape="box"];3951[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3951[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3951 -> 2601[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3952[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3952[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3952 -> 2602[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3953[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3953[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3953 -> 2603[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3954[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3954[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3954 -> 2604[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3955[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3955[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3955 -> 2605[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3956[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3956[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3956 -> 2606[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3957[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3957[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3957 -> 2607[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3958[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3958[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3958 -> 2608[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3959[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3959[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3959 -> 2609[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3960[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3960[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3960 -> 2610[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3961[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3961[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3961 -> 2611[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3962[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3962[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3962 -> 2612[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3963[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3963[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3963 -> 2613[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3964[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2441 -> 3964[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3964 -> 2614[label="",style="solid", color="blue", weight=3]; 36.90/18.33 2442[label="True",fontsize=16,color="green",shape="box"];2443[label="False",fontsize=16,color="green",shape="box"];2444[label="xuu700 <= xuu710",fontsize=16,color="blue",shape="box"];3965[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3965[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3965 -> 2615[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3966[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3966[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3966 -> 2616[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3967[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3967[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3967 -> 2617[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3968[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3968[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3968 -> 2618[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3969[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3969[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3969 -> 2619[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3970[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3970[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3970 -> 2620[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3971[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3971[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3971 -> 2621[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3972[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3972[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3972 -> 2622[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3973[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3973[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3973 -> 2623[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3974[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3974[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3974 -> 2624[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3975[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3975[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3975 -> 2625[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3976[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3976[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3976 -> 2626[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3977[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3977[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3977 -> 2627[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3978[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2444 -> 3978[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3978 -> 2628[label="",style="solid", color="blue", weight=3]; 36.90/18.33 2428[label="xuu70",fontsize=16,color="green",shape="box"];2429[label="xuu71",fontsize=16,color="green",shape="box"];2430[label="xuu70",fontsize=16,color="green",shape="box"];2431[label="xuu71",fontsize=16,color="green",shape="box"];2432[label="xuu70",fontsize=16,color="green",shape="box"];2433[label="xuu71",fontsize=16,color="green",shape="box"];2445[label="True",fontsize=16,color="green",shape="box"];2446[label="True",fontsize=16,color="green",shape="box"];2447[label="False",fontsize=16,color="green",shape="box"];2448[label="True",fontsize=16,color="green",shape="box"];2449[label="True",fontsize=16,color="green",shape="box"];2450[label="True",fontsize=16,color="green",shape="box"];2451[label="False",fontsize=16,color="green",shape="box"];2452[label="xuu700 <= xuu710",fontsize=16,color="blue",shape="box"];3979[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3979[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3979 -> 2629[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3980[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3980[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3980 -> 2630[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3981[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3981[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3981 -> 2631[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3982[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3982[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3982 -> 2632[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3983[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3983[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3983 -> 2633[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3984[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3984[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3984 -> 2634[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3985[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3985[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3985 -> 2635[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3986[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3986[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3986 -> 2636[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3987[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3987[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3987 -> 2637[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3988[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3988[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3988 -> 2638[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3989[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3989[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3989 -> 2639[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3990[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3990[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3990 -> 2640[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3991[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3991[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3991 -> 2641[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3992[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2452 -> 3992[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3992 -> 2642[label="",style="solid", color="blue", weight=3]; 36.90/18.33 2453 -> 1884[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2453[label="xuu700 < xuu710 || xuu700 == xuu710 && xuu701 <= xuu711",fontsize=16,color="magenta"];2453 -> 2643[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2453 -> 2644[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2434[label="xuu70",fontsize=16,color="green",shape="box"];2435[label="xuu71",fontsize=16,color="green",shape="box"];2454[label="True",fontsize=16,color="green",shape="box"];2455[label="True",fontsize=16,color="green",shape="box"];2456[label="True",fontsize=16,color="green",shape="box"];2457[label="False",fontsize=16,color="green",shape="box"];2458[label="True",fontsize=16,color="green",shape="box"];2459[label="True",fontsize=16,color="green",shape="box"];2460[label="False",fontsize=16,color="green",shape="box"];2461[label="False",fontsize=16,color="green",shape="box"];2462[label="True",fontsize=16,color="green",shape="box"];2436[label="xuu70",fontsize=16,color="green",shape="box"];2437[label="xuu71",fontsize=16,color="green",shape="box"];2438[label="xuu70",fontsize=16,color="green",shape="box"];2439[label="xuu71",fontsize=16,color="green",shape="box"];2463[label="Succ xuu30100",fontsize=16,color="green",shape="box"];2464 -> 1421[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2464[label="primMulNat xuu400000 (Succ xuu30100)",fontsize=16,color="magenta"];2464 -> 2645[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2464 -> 2646[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2465[label="compare0 (xuu195,xuu196) (xuu197,xuu198) otherwise",fontsize=16,color="black",shape="box"];2465 -> 2647[label="",style="solid", color="black", weight=3]; 36.90/18.33 2466[label="LT",fontsize=16,color="green",shape="box"];2467 -> 1446[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2467[label="primPlusNat xuu39200 xuu13400",fontsize=16,color="magenta"];2467 -> 2648[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2467 -> 2649[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2468 -> 541[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2468[label="FiniteMap.mkBranchResult xuu14 xuu15 xuu39 xuu18",fontsize=16,color="magenta"];2469 -> 2650[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2469[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"];2469 -> 2651[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2470[label="xuu183",fontsize=16,color="green",shape="box"];2471 -> 913[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2471[label="FiniteMap.sizeFM xuu184",fontsize=16,color="magenta"];2471 -> 2652[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2472[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2473[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"];2473 -> 2653[label="",style="solid", color="black", weight=3]; 36.90/18.33 2474[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"];2474 -> 2654[label="",style="solid", color="black", weight=3]; 36.90/18.33 2475 -> 913[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2475[label="FiniteMap.sizeFM xuu39",fontsize=16,color="magenta"];2475 -> 2655[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2476[label="xuu112",fontsize=16,color="green",shape="box"];2477[label="xuu109",fontsize=16,color="green",shape="box"];2478[label="xuu112",fontsize=16,color="green",shape="box"];2479[label="xuu109",fontsize=16,color="green",shape="box"];2480[label="xuu112",fontsize=16,color="green",shape="box"];2481[label="xuu109",fontsize=16,color="green",shape="box"];2482[label="xuu112",fontsize=16,color="green",shape="box"];2483[label="xuu109",fontsize=16,color="green",shape="box"];2484[label="xuu112",fontsize=16,color="green",shape="box"];2485[label="xuu109",fontsize=16,color="green",shape="box"];2486[label="xuu112",fontsize=16,color="green",shape="box"];2487[label="xuu109",fontsize=16,color="green",shape="box"];2488[label="xuu112",fontsize=16,color="green",shape="box"];2489[label="xuu109",fontsize=16,color="green",shape="box"];2490[label="xuu112",fontsize=16,color="green",shape="box"];2491[label="xuu109",fontsize=16,color="green",shape="box"];2492[label="xuu112",fontsize=16,color="green",shape="box"];2493[label="xuu109",fontsize=16,color="green",shape="box"];2494[label="xuu112",fontsize=16,color="green",shape="box"];2495[label="xuu109",fontsize=16,color="green",shape="box"];2496[label="xuu112",fontsize=16,color="green",shape="box"];2497[label="xuu109",fontsize=16,color="green",shape="box"];2498[label="xuu112",fontsize=16,color="green",shape="box"];2499[label="xuu109",fontsize=16,color="green",shape="box"];2500[label="xuu112",fontsize=16,color="green",shape="box"];2501[label="xuu109",fontsize=16,color="green",shape="box"];2502[label="xuu112",fontsize=16,color="green",shape="box"];2503[label="xuu109",fontsize=16,color="green",shape="box"];2504[label="xuu110",fontsize=16,color="green",shape="box"];2505[label="xuu113",fontsize=16,color="green",shape="box"];2506[label="xuu110",fontsize=16,color="green",shape="box"];2507[label="xuu113",fontsize=16,color="green",shape="box"];2508[label="xuu110",fontsize=16,color="green",shape="box"];2509[label="xuu113",fontsize=16,color="green",shape="box"];2510[label="xuu110",fontsize=16,color="green",shape="box"];2511[label="xuu113",fontsize=16,color="green",shape="box"];2512[label="xuu110",fontsize=16,color="green",shape="box"];2513[label="xuu113",fontsize=16,color="green",shape="box"];2514[label="xuu110",fontsize=16,color="green",shape="box"];2515[label="xuu113",fontsize=16,color="green",shape="box"];2516[label="xuu110",fontsize=16,color="green",shape="box"];2517[label="xuu113",fontsize=16,color="green",shape="box"];2518[label="xuu110",fontsize=16,color="green",shape="box"];2519[label="xuu113",fontsize=16,color="green",shape="box"];2520[label="xuu110",fontsize=16,color="green",shape="box"];2521[label="xuu113",fontsize=16,color="green",shape="box"];2522[label="xuu110",fontsize=16,color="green",shape="box"];2523[label="xuu113",fontsize=16,color="green",shape="box"];2524[label="xuu110",fontsize=16,color="green",shape="box"];2525[label="xuu113",fontsize=16,color="green",shape="box"];2526[label="xuu110",fontsize=16,color="green",shape="box"];2527[label="xuu113",fontsize=16,color="green",shape="box"];2528[label="xuu110",fontsize=16,color="green",shape="box"];2529[label="xuu113",fontsize=16,color="green",shape="box"];2530[label="xuu110",fontsize=16,color="green",shape="box"];2531[label="xuu113",fontsize=16,color="green",shape="box"];2532[label="compare0 (xuu180,xuu181,xuu182) (xuu183,xuu184,xuu185) True",fontsize=16,color="black",shape="box"];2532 -> 2656[label="",style="solid", color="black", weight=3]; 36.90/18.33 2533[label="xuu3001",fontsize=16,color="green",shape="box"];2534[label="xuu40001",fontsize=16,color="green",shape="box"];2535[label="xuu3001",fontsize=16,color="green",shape="box"];2536[label="xuu40001",fontsize=16,color="green",shape="box"];2537[label="xuu3001",fontsize=16,color="green",shape="box"];2538[label="xuu40001",fontsize=16,color="green",shape="box"];2539[label="xuu3001",fontsize=16,color="green",shape="box"];2540[label="xuu40001",fontsize=16,color="green",shape="box"];2541[label="xuu3001",fontsize=16,color="green",shape="box"];2542[label="xuu40001",fontsize=16,color="green",shape="box"];2543[label="xuu3001",fontsize=16,color="green",shape="box"];2544[label="xuu40001",fontsize=16,color="green",shape="box"];2545[label="xuu3001",fontsize=16,color="green",shape="box"];2546[label="xuu40001",fontsize=16,color="green",shape="box"];2547[label="xuu3001",fontsize=16,color="green",shape="box"];2548[label="xuu40001",fontsize=16,color="green",shape="box"];2549[label="xuu3001",fontsize=16,color="green",shape="box"];2550[label="xuu40001",fontsize=16,color="green",shape="box"];2551[label="xuu3001",fontsize=16,color="green",shape="box"];2552[label="xuu40001",fontsize=16,color="green",shape="box"];2553[label="xuu3001",fontsize=16,color="green",shape="box"];2554[label="xuu40001",fontsize=16,color="green",shape="box"];2555[label="xuu3001",fontsize=16,color="green",shape="box"];2556[label="xuu40001",fontsize=16,color="green",shape="box"];2557[label="xuu3001",fontsize=16,color="green",shape="box"];2558[label="xuu40001",fontsize=16,color="green",shape="box"];2559[label="xuu3001",fontsize=16,color="green",shape="box"];2560[label="xuu40001",fontsize=16,color="green",shape="box"];2561[label="xuu3002",fontsize=16,color="green",shape="box"];2562[label="xuu40002",fontsize=16,color="green",shape="box"];2563[label="xuu3002",fontsize=16,color="green",shape="box"];2564[label="xuu40002",fontsize=16,color="green",shape="box"];2565[label="xuu3002",fontsize=16,color="green",shape="box"];2566[label="xuu40002",fontsize=16,color="green",shape="box"];2567[label="xuu3002",fontsize=16,color="green",shape="box"];2568[label="xuu40002",fontsize=16,color="green",shape="box"];2569[label="xuu3002",fontsize=16,color="green",shape="box"];2570[label="xuu40002",fontsize=16,color="green",shape="box"];2571[label="xuu3002",fontsize=16,color="green",shape="box"];2572[label="xuu40002",fontsize=16,color="green",shape="box"];2573[label="xuu3002",fontsize=16,color="green",shape="box"];2574[label="xuu40002",fontsize=16,color="green",shape="box"];2575[label="xuu3002",fontsize=16,color="green",shape="box"];2576[label="xuu40002",fontsize=16,color="green",shape="box"];2577[label="xuu3002",fontsize=16,color="green",shape="box"];2578[label="xuu40002",fontsize=16,color="green",shape="box"];2579[label="xuu3002",fontsize=16,color="green",shape="box"];2580[label="xuu40002",fontsize=16,color="green",shape="box"];2581[label="xuu3002",fontsize=16,color="green",shape="box"];2582[label="xuu40002",fontsize=16,color="green",shape="box"];2583[label="xuu3002",fontsize=16,color="green",shape="box"];2584[label="xuu40002",fontsize=16,color="green",shape="box"];2585[label="xuu3002",fontsize=16,color="green",shape="box"];2586[label="xuu40002",fontsize=16,color="green",shape="box"];2587[label="xuu3002",fontsize=16,color="green",shape="box"];2588[label="xuu40002",fontsize=16,color="green",shape="box"];2589[label="xuu30000",fontsize=16,color="green",shape="box"];2590[label="xuu400000",fontsize=16,color="green",shape="box"];2591[label="xuu30000",fontsize=16,color="green",shape="box"];2592[label="xuu400000",fontsize=16,color="green",shape="box"];2593 -> 1680[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2593[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2593 -> 2657[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2593 -> 2658[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2594[label="False",fontsize=16,color="green",shape="box"];2595[label="False",fontsize=16,color="green",shape="box"];2596[label="True",fontsize=16,color="green",shape="box"];2598 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2598[label="xuu211 == GT",fontsize=16,color="magenta"];2598 -> 2659[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2598 -> 2660[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2597[label="not xuu212",fontsize=16,color="burlywood",shape="triangle"];3993[label="xuu212/False",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3993[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3993 -> 2661[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 3994[label="xuu212/True",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3994[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 3994 -> 2662[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 2599[label="xuu700 < xuu710",fontsize=16,color="blue",shape="box"];3995[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 3995[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3995 -> 2663[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3996[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 3996[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3996 -> 2664[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3997[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 3997[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3997 -> 2665[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3998[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 3998[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3998 -> 2666[label="",style="solid", color="blue", weight=3]; 36.90/18.33 3999[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 3999[label="",style="solid", color="blue", weight=9]; 36.90/18.33 3999 -> 2667[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4000[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4000[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4000 -> 2668[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4001[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4001[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4001 -> 2669[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4002[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4002[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4002 -> 2670[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4003[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4003[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4003 -> 2671[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4004[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4004[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4004 -> 2672[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4005[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4005[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4005 -> 2673[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4006[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4006[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4006 -> 2674[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4007[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4007[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4007 -> 2675[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4008[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2599 -> 4008[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4008 -> 2676[label="",style="solid", color="blue", weight=3]; 36.90/18.33 2600 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2600[label="xuu700 == xuu710 && (xuu701 < xuu711 || xuu701 == xuu711 && xuu702 <= xuu712)",fontsize=16,color="magenta"];2600 -> 2677[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2600 -> 2678[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2601 -> 1496[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2601[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2601 -> 2679[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2601 -> 2680[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2602 -> 1497[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2602[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2602 -> 2681[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2602 -> 2682[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2603 -> 1498[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2603[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2603 -> 2683[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2603 -> 2684[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2604 -> 1499[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2604[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2604 -> 2685[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2604 -> 2686[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2605 -> 1500[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2605[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2605 -> 2687[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2605 -> 2688[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2606 -> 1501[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2606[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2606 -> 2689[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2606 -> 2690[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2607 -> 1502[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2607[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2607 -> 2691[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2607 -> 2692[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2608 -> 1503[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2608[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2608 -> 2693[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2608 -> 2694[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2609 -> 1504[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2609[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2609 -> 2695[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2609 -> 2696[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2610 -> 1505[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2610[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2610 -> 2697[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2610 -> 2698[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2611 -> 1506[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2611[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2611 -> 2699[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2611 -> 2700[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2612 -> 1507[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2612[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2612 -> 2701[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2612 -> 2702[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2613 -> 1508[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2613[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2613 -> 2703[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2613 -> 2704[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2614 -> 1509[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2614[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2614 -> 2705[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2614 -> 2706[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2615 -> 1496[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2615[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2615 -> 2707[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2615 -> 2708[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2616 -> 1497[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2616[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2616 -> 2709[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2616 -> 2710[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2617 -> 1498[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2617[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2617 -> 2711[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2617 -> 2712[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2618 -> 1499[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2618[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2618 -> 2713[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2618 -> 2714[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2619 -> 1500[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2619[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2619 -> 2715[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2619 -> 2716[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2620 -> 1501[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2620[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2620 -> 2717[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2620 -> 2718[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2621 -> 1502[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2621[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2621 -> 2719[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2621 -> 2720[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2622 -> 1503[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2622[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2622 -> 2721[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2622 -> 2722[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2623 -> 1504[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2623[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2623 -> 2723[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2623 -> 2724[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2624 -> 1505[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2624[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2624 -> 2725[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2624 -> 2726[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2625 -> 1506[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2625[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2625 -> 2727[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2625 -> 2728[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2626 -> 1507[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2626[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2626 -> 2729[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2626 -> 2730[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2627 -> 1508[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2627[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2627 -> 2731[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2627 -> 2732[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2628 -> 1509[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2628[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2628 -> 2733[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2628 -> 2734[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2629 -> 1496[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2629[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2629 -> 2735[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2629 -> 2736[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2630 -> 1497[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2630[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2630 -> 2737[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2630 -> 2738[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2631 -> 1498[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2631[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2631 -> 2739[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2631 -> 2740[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2632 -> 1499[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2632[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2632 -> 2741[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2632 -> 2742[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2633 -> 1500[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2633[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2633 -> 2743[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2633 -> 2744[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2634 -> 1501[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2634[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2634 -> 2745[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2634 -> 2746[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2635 -> 1502[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2635[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2635 -> 2747[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2635 -> 2748[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2636 -> 1503[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2636[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2636 -> 2749[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2636 -> 2750[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2637 -> 1504[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2637[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2637 -> 2751[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2637 -> 2752[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2638 -> 1505[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2638[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2638 -> 2753[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2638 -> 2754[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2639 -> 1506[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2639[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2639 -> 2755[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2639 -> 2756[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2640 -> 1507[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2640[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2640 -> 2757[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2640 -> 2758[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2641 -> 1508[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2641[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2641 -> 2759[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2641 -> 2760[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2642 -> 1509[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2642[label="xuu700 <= xuu710",fontsize=16,color="magenta"];2642 -> 2761[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2642 -> 2762[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2643[label="xuu700 < xuu710",fontsize=16,color="blue",shape="box"];4009[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4009[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4009 -> 2763[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4010[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4010[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4010 -> 2764[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4011[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4011[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4011 -> 2765[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4012[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4012[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4012 -> 2766[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4013[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4013[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4013 -> 2767[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4014[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4014[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4014 -> 2768[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4015[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4015[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4015 -> 2769[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4016[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4016[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4016 -> 2770[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4017[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4017[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4017 -> 2771[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4018[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4018[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4018 -> 2772[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4019[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4019[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4019 -> 2773[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4020[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4020[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4020 -> 2774[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4021[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4021[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4021 -> 2775[label="",style="solid", color="blue", weight=3]; 36.90/18.33 4022[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4022[label="",style="solid", color="blue", weight=9]; 36.90/18.33 4022 -> 2776[label="",style="solid", color="blue", weight=3]; 36.90/18.33 2644 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2644[label="xuu700 == xuu710 && xuu701 <= xuu711",fontsize=16,color="magenta"];2644 -> 2777[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2644 -> 2778[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2645[label="Succ xuu30100",fontsize=16,color="green",shape="box"];2646[label="xuu400000",fontsize=16,color="green",shape="box"];2647[label="compare0 (xuu195,xuu196) (xuu197,xuu198) True",fontsize=16,color="black",shape="box"];2647 -> 2779[label="",style="solid", color="black", weight=3]; 36.90/18.33 2648[label="xuu13400",fontsize=16,color="green",shape="box"];2649[label="xuu39200",fontsize=16,color="green",shape="box"];2651 -> 35[label="",style="dashed", color="red", weight=0]; 36.90/18.33 2651[label="FiniteMap.sizeFM xuu394 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu393",fontsize=16,color="magenta"];2651 -> 2780[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2651 -> 2781[label="",style="dashed", color="magenta", weight=3]; 36.90/18.33 2650[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 xuu213",fontsize=16,color="burlywood",shape="triangle"];4023[label="xuu213/False",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4023[label="",style="solid", color="burlywood", weight=9]; 36.90/18.33 4023 -> 2782[label="",style="solid", color="burlywood", weight=3]; 36.90/18.33 4024[label="xuu213/True",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4024[label="",style="solid", color="burlywood", weight=9]; 36.90/18.34 4024 -> 2783[label="",style="solid", color="burlywood", weight=3]; 36.90/18.34 2652[label="xuu184",fontsize=16,color="green",shape="box"];2653[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"];2653 -> 2784[label="",style="solid", color="black", weight=3]; 36.90/18.34 2654[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"];2654 -> 2785[label="",style="solid", color="black", weight=3]; 36.90/18.34 2655[label="xuu39",fontsize=16,color="green",shape="box"];2656[label="GT",fontsize=16,color="green",shape="box"];2657[label="xuu30000",fontsize=16,color="green",shape="box"];2658[label="xuu400000",fontsize=16,color="green",shape="box"];2659[label="GT",fontsize=16,color="green",shape="box"];2660[label="xuu211",fontsize=16,color="green",shape="box"];2661[label="not False",fontsize=16,color="black",shape="box"];2661 -> 2786[label="",style="solid", color="black", weight=3]; 36.90/18.34 2662[label="not True",fontsize=16,color="black",shape="box"];2662 -> 2787[label="",style="solid", color="black", weight=3]; 36.90/18.34 2663 -> 33[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2663[label="xuu700 < xuu710",fontsize=16,color="magenta"];2663 -> 2788[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2663 -> 2789[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2664 -> 34[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2664[label="xuu700 < xuu710",fontsize=16,color="magenta"];2664 -> 2790[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2664 -> 2791[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2665 -> 35[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2665[label="xuu700 < xuu710",fontsize=16,color="magenta"];2665 -> 2792[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2665 -> 2793[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2666 -> 36[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2666[label="xuu700 < xuu710",fontsize=16,color="magenta"];2666 -> 2794[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2666 -> 2795[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2667 -> 37[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2667[label="xuu700 < xuu710",fontsize=16,color="magenta"];2667 -> 2796[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2667 -> 2797[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2668 -> 38[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2668[label="xuu700 < xuu710",fontsize=16,color="magenta"];2668 -> 2798[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2668 -> 2799[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2669 -> 39[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2669[label="xuu700 < xuu710",fontsize=16,color="magenta"];2669 -> 2800[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2669 -> 2801[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2670 -> 40[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2670[label="xuu700 < xuu710",fontsize=16,color="magenta"];2670 -> 2802[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2670 -> 2803[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2671 -> 41[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2671[label="xuu700 < xuu710",fontsize=16,color="magenta"];2671 -> 2804[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2671 -> 2805[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2672 -> 42[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2672[label="xuu700 < xuu710",fontsize=16,color="magenta"];2672 -> 2806[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2672 -> 2807[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2673 -> 43[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2673[label="xuu700 < xuu710",fontsize=16,color="magenta"];2673 -> 2808[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2673 -> 2809[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2674 -> 44[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2674[label="xuu700 < xuu710",fontsize=16,color="magenta"];2674 -> 2810[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2674 -> 2811[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2675 -> 45[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2675[label="xuu700 < xuu710",fontsize=16,color="magenta"];2675 -> 2812[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2675 -> 2813[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2676 -> 46[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2676[label="xuu700 < xuu710",fontsize=16,color="magenta"];2676 -> 2814[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2676 -> 2815[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2677[label="xuu700 == xuu710",fontsize=16,color="blue",shape="box"];4025[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4025[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4025 -> 2816[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4026[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4026[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4026 -> 2817[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4027[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4027[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4027 -> 2818[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4028[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4028[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4028 -> 2819[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4029[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4029[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4029 -> 2820[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4030[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4030[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4030 -> 2821[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4031[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4031[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4031 -> 2822[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4032[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4032[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4032 -> 2823[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4033[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4033[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4033 -> 2824[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4034[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4034[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4034 -> 2825[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4035[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4035[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4035 -> 2826[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4036[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4036[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4036 -> 2827[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4037[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4037[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4037 -> 2828[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4038[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 4038[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4038 -> 2829[label="",style="solid", color="blue", weight=3]; 36.90/18.34 2678 -> 1884[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2678[label="xuu701 < xuu711 || xuu701 == xuu711 && xuu702 <= xuu712",fontsize=16,color="magenta"];2678 -> 2830[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2678 -> 2831[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2679[label="xuu700",fontsize=16,color="green",shape="box"];2680[label="xuu710",fontsize=16,color="green",shape="box"];2681[label="xuu700",fontsize=16,color="green",shape="box"];2682[label="xuu710",fontsize=16,color="green",shape="box"];2683[label="xuu700",fontsize=16,color="green",shape="box"];2684[label="xuu710",fontsize=16,color="green",shape="box"];2685[label="xuu700",fontsize=16,color="green",shape="box"];2686[label="xuu710",fontsize=16,color="green",shape="box"];2687[label="xuu700",fontsize=16,color="green",shape="box"];2688[label="xuu710",fontsize=16,color="green",shape="box"];2689[label="xuu700",fontsize=16,color="green",shape="box"];2690[label="xuu710",fontsize=16,color="green",shape="box"];2691[label="xuu700",fontsize=16,color="green",shape="box"];2692[label="xuu710",fontsize=16,color="green",shape="box"];2693[label="xuu700",fontsize=16,color="green",shape="box"];2694[label="xuu710",fontsize=16,color="green",shape="box"];2695[label="xuu700",fontsize=16,color="green",shape="box"];2696[label="xuu710",fontsize=16,color="green",shape="box"];2697[label="xuu700",fontsize=16,color="green",shape="box"];2698[label="xuu710",fontsize=16,color="green",shape="box"];2699[label="xuu700",fontsize=16,color="green",shape="box"];2700[label="xuu710",fontsize=16,color="green",shape="box"];2701[label="xuu700",fontsize=16,color="green",shape="box"];2702[label="xuu710",fontsize=16,color="green",shape="box"];2703[label="xuu700",fontsize=16,color="green",shape="box"];2704[label="xuu710",fontsize=16,color="green",shape="box"];2705[label="xuu700",fontsize=16,color="green",shape="box"];2706[label="xuu710",fontsize=16,color="green",shape="box"];2707[label="xuu700",fontsize=16,color="green",shape="box"];2708[label="xuu710",fontsize=16,color="green",shape="box"];2709[label="xuu700",fontsize=16,color="green",shape="box"];2710[label="xuu710",fontsize=16,color="green",shape="box"];2711[label="xuu700",fontsize=16,color="green",shape="box"];2712[label="xuu710",fontsize=16,color="green",shape="box"];2713[label="xuu700",fontsize=16,color="green",shape="box"];2714[label="xuu710",fontsize=16,color="green",shape="box"];2715[label="xuu700",fontsize=16,color="green",shape="box"];2716[label="xuu710",fontsize=16,color="green",shape="box"];2717[label="xuu700",fontsize=16,color="green",shape="box"];2718[label="xuu710",fontsize=16,color="green",shape="box"];2719[label="xuu700",fontsize=16,color="green",shape="box"];2720[label="xuu710",fontsize=16,color="green",shape="box"];2721[label="xuu700",fontsize=16,color="green",shape="box"];2722[label="xuu710",fontsize=16,color="green",shape="box"];2723[label="xuu700",fontsize=16,color="green",shape="box"];2724[label="xuu710",fontsize=16,color="green",shape="box"];2725[label="xuu700",fontsize=16,color="green",shape="box"];2726[label="xuu710",fontsize=16,color="green",shape="box"];2727[label="xuu700",fontsize=16,color="green",shape="box"];2728[label="xuu710",fontsize=16,color="green",shape="box"];2729[label="xuu700",fontsize=16,color="green",shape="box"];2730[label="xuu710",fontsize=16,color="green",shape="box"];2731[label="xuu700",fontsize=16,color="green",shape="box"];2732[label="xuu710",fontsize=16,color="green",shape="box"];2733[label="xuu700",fontsize=16,color="green",shape="box"];2734[label="xuu710",fontsize=16,color="green",shape="box"];2735[label="xuu700",fontsize=16,color="green",shape="box"];2736[label="xuu710",fontsize=16,color="green",shape="box"];2737[label="xuu700",fontsize=16,color="green",shape="box"];2738[label="xuu710",fontsize=16,color="green",shape="box"];2739[label="xuu700",fontsize=16,color="green",shape="box"];2740[label="xuu710",fontsize=16,color="green",shape="box"];2741[label="xuu700",fontsize=16,color="green",shape="box"];2742[label="xuu710",fontsize=16,color="green",shape="box"];2743[label="xuu700",fontsize=16,color="green",shape="box"];2744[label="xuu710",fontsize=16,color="green",shape="box"];2745[label="xuu700",fontsize=16,color="green",shape="box"];2746[label="xuu710",fontsize=16,color="green",shape="box"];2747[label="xuu700",fontsize=16,color="green",shape="box"];2748[label="xuu710",fontsize=16,color="green",shape="box"];2749[label="xuu700",fontsize=16,color="green",shape="box"];2750[label="xuu710",fontsize=16,color="green",shape="box"];2751[label="xuu700",fontsize=16,color="green",shape="box"];2752[label="xuu710",fontsize=16,color="green",shape="box"];2753[label="xuu700",fontsize=16,color="green",shape="box"];2754[label="xuu710",fontsize=16,color="green",shape="box"];2755[label="xuu700",fontsize=16,color="green",shape="box"];2756[label="xuu710",fontsize=16,color="green",shape="box"];2757[label="xuu700",fontsize=16,color="green",shape="box"];2758[label="xuu710",fontsize=16,color="green",shape="box"];2759[label="xuu700",fontsize=16,color="green",shape="box"];2760[label="xuu710",fontsize=16,color="green",shape="box"];2761[label="xuu700",fontsize=16,color="green",shape="box"];2762[label="xuu710",fontsize=16,color="green",shape="box"];2763 -> 33[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2763[label="xuu700 < xuu710",fontsize=16,color="magenta"];2763 -> 2832[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2763 -> 2833[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2764 -> 34[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2764[label="xuu700 < xuu710",fontsize=16,color="magenta"];2764 -> 2834[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2764 -> 2835[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2765 -> 35[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2765[label="xuu700 < xuu710",fontsize=16,color="magenta"];2765 -> 2836[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2765 -> 2837[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2766 -> 36[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2766[label="xuu700 < xuu710",fontsize=16,color="magenta"];2766 -> 2838[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2766 -> 2839[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2767 -> 37[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2767[label="xuu700 < xuu710",fontsize=16,color="magenta"];2767 -> 2840[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2767 -> 2841[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2768 -> 38[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2768[label="xuu700 < xuu710",fontsize=16,color="magenta"];2768 -> 2842[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2768 -> 2843[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2769 -> 39[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2769[label="xuu700 < xuu710",fontsize=16,color="magenta"];2769 -> 2844[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2769 -> 2845[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2770 -> 40[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2770[label="xuu700 < xuu710",fontsize=16,color="magenta"];2770 -> 2846[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2770 -> 2847[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2771 -> 41[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2771[label="xuu700 < xuu710",fontsize=16,color="magenta"];2771 -> 2848[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2771 -> 2849[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2772 -> 42[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2772[label="xuu700 < xuu710",fontsize=16,color="magenta"];2772 -> 2850[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2772 -> 2851[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2773 -> 43[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2773[label="xuu700 < xuu710",fontsize=16,color="magenta"];2773 -> 2852[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2773 -> 2853[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2774 -> 44[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2774[label="xuu700 < xuu710",fontsize=16,color="magenta"];2774 -> 2854[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2774 -> 2855[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2775 -> 45[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2775[label="xuu700 < xuu710",fontsize=16,color="magenta"];2775 -> 2856[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2775 -> 2857[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2776 -> 46[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2776[label="xuu700 < xuu710",fontsize=16,color="magenta"];2776 -> 2858[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2776 -> 2859[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2777[label="xuu700 == xuu710",fontsize=16,color="blue",shape="box"];4039[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4039[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4039 -> 2860[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4040[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4040[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4040 -> 2861[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4041[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4041[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4041 -> 2862[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4042[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4042[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4042 -> 2863[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4043[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4043[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4043 -> 2864[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4044[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4044[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4044 -> 2865[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4045[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4045[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4045 -> 2866[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4046[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4046[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4046 -> 2867[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4047[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4047[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4047 -> 2868[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4048[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4048[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4048 -> 2869[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4049[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4049[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4049 -> 2870[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4050[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4050[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4050 -> 2871[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4051[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4051[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4051 -> 2872[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4052[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4052[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4052 -> 2873[label="",style="solid", color="blue", weight=3]; 36.90/18.34 2778[label="xuu701 <= xuu711",fontsize=16,color="blue",shape="box"];4053[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4053[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4053 -> 2874[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4054[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4054[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4054 -> 2875[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4055[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4055[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4055 -> 2876[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4056[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4056[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4056 -> 2877[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4057[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4057[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4057 -> 2878[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4058[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4058[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4058 -> 2879[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4059[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4059[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4059 -> 2880[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4060[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4060[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4060 -> 2881[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4061[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4061[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4061 -> 2882[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4062[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4062[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4062 -> 2883[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4063[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4063[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4063 -> 2884[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4064[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4064[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4064 -> 2885[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4065[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4065[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4065 -> 2886[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4066[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4066[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4066 -> 2887[label="",style="solid", color="blue", weight=3]; 36.90/18.34 2779[label="GT",fontsize=16,color="green",shape="box"];2780 -> 913[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2780[label="FiniteMap.sizeFM xuu394",fontsize=16,color="magenta"];2780 -> 2888[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2781 -> 430[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2781[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu393",fontsize=16,color="magenta"];2781 -> 2889[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2781 -> 2890[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2782[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"];2782 -> 2891[label="",style="solid", color="black", weight=3]; 36.90/18.34 2783[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"];2783 -> 2892[label="",style="solid", color="black", weight=3]; 36.90/18.34 2784[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"];4067[label="xuu183/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4067[label="",style="solid", color="burlywood", weight=9]; 36.90/18.34 4067 -> 2893[label="",style="solid", color="burlywood", weight=3]; 36.90/18.34 4068[label="xuu183/FiniteMap.Branch xuu1830 xuu1831 xuu1832 xuu1833 xuu1834",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4068[label="",style="solid", color="burlywood", weight=9]; 36.90/18.34 4068 -> 2894[label="",style="solid", color="burlywood", weight=3]; 36.90/18.34 2785 -> 541[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2785[label="FiniteMap.mkBranchResult xuu180 xuu181 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu14 xuu15 xuu39 xuu183) xuu184",fontsize=16,color="magenta"];2785 -> 2895[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2785 -> 2896[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2785 -> 2897[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2785 -> 2898[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2786[label="True",fontsize=16,color="green",shape="box"];2787[label="False",fontsize=16,color="green",shape="box"];2788[label="xuu700",fontsize=16,color="green",shape="box"];2789[label="xuu710",fontsize=16,color="green",shape="box"];2790[label="xuu700",fontsize=16,color="green",shape="box"];2791[label="xuu710",fontsize=16,color="green",shape="box"];2792[label="xuu700",fontsize=16,color="green",shape="box"];2793[label="xuu710",fontsize=16,color="green",shape="box"];2794[label="xuu700",fontsize=16,color="green",shape="box"];2795[label="xuu710",fontsize=16,color="green",shape="box"];2796[label="xuu700",fontsize=16,color="green",shape="box"];2797[label="xuu710",fontsize=16,color="green",shape="box"];2798[label="xuu700",fontsize=16,color="green",shape="box"];2799[label="xuu710",fontsize=16,color="green",shape="box"];2800[label="xuu700",fontsize=16,color="green",shape="box"];2801[label="xuu710",fontsize=16,color="green",shape="box"];2802[label="xuu700",fontsize=16,color="green",shape="box"];2803[label="xuu710",fontsize=16,color="green",shape="box"];2804[label="xuu700",fontsize=16,color="green",shape="box"];2805[label="xuu710",fontsize=16,color="green",shape="box"];2806[label="xuu700",fontsize=16,color="green",shape="box"];2807[label="xuu710",fontsize=16,color="green",shape="box"];2808[label="xuu700",fontsize=16,color="green",shape="box"];2809[label="xuu710",fontsize=16,color="green",shape="box"];2810[label="xuu700",fontsize=16,color="green",shape="box"];2811[label="xuu710",fontsize=16,color="green",shape="box"];2812[label="xuu700",fontsize=16,color="green",shape="box"];2813[label="xuu710",fontsize=16,color="green",shape="box"];2814[label="xuu700",fontsize=16,color="green",shape="box"];2815[label="xuu710",fontsize=16,color="green",shape="box"];2816 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2816[label="xuu700 == xuu710",fontsize=16,color="magenta"];2816 -> 2899[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2816 -> 2900[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2817 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2817[label="xuu700 == xuu710",fontsize=16,color="magenta"];2817 -> 2901[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2817 -> 2902[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2818 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2818[label="xuu700 == xuu710",fontsize=16,color="magenta"];2818 -> 2903[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2818 -> 2904[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2819 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2819[label="xuu700 == xuu710",fontsize=16,color="magenta"];2819 -> 2905[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2819 -> 2906[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2820 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2820[label="xuu700 == xuu710",fontsize=16,color="magenta"];2820 -> 2907[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2820 -> 2908[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2821 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2821[label="xuu700 == xuu710",fontsize=16,color="magenta"];2821 -> 2909[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2821 -> 2910[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2822 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2822[label="xuu700 == xuu710",fontsize=16,color="magenta"];2822 -> 2911[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2822 -> 2912[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2823 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2823[label="xuu700 == xuu710",fontsize=16,color="magenta"];2823 -> 2913[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2823 -> 2914[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2824 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2824[label="xuu700 == xuu710",fontsize=16,color="magenta"];2824 -> 2915[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2824 -> 2916[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2825 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2825[label="xuu700 == xuu710",fontsize=16,color="magenta"];2825 -> 2917[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2825 -> 2918[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2826 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2826[label="xuu700 == xuu710",fontsize=16,color="magenta"];2826 -> 2919[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2826 -> 2920[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2827 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2827[label="xuu700 == xuu710",fontsize=16,color="magenta"];2827 -> 2921[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2827 -> 2922[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2828 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2828[label="xuu700 == xuu710",fontsize=16,color="magenta"];2828 -> 2923[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2828 -> 2924[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2829 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2829[label="xuu700 == xuu710",fontsize=16,color="magenta"];2829 -> 2925[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2829 -> 2926[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2830[label="xuu701 < xuu711",fontsize=16,color="blue",shape="box"];4069[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4069[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4069 -> 2927[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4070[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4070[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4070 -> 2928[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4071[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4071[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4071 -> 2929[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4072[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4072[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4072 -> 2930[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4073[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4073[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4073 -> 2931[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4074[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4074[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4074 -> 2932[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4075[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4075[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4075 -> 2933[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4076[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4076[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4076 -> 2934[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4077[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4077[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4077 -> 2935[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4078[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4078[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4078 -> 2936[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4079[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4079[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4079 -> 2937[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4080[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4080[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4080 -> 2938[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4081[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4081[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4081 -> 2939[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4082[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2830 -> 4082[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4082 -> 2940[label="",style="solid", color="blue", weight=3]; 36.90/18.34 2831 -> 1184[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2831[label="xuu701 == xuu711 && xuu702 <= xuu712",fontsize=16,color="magenta"];2831 -> 2941[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2831 -> 2942[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2832[label="xuu700",fontsize=16,color="green",shape="box"];2833[label="xuu710",fontsize=16,color="green",shape="box"];2834[label="xuu700",fontsize=16,color="green",shape="box"];2835[label="xuu710",fontsize=16,color="green",shape="box"];2836[label="xuu700",fontsize=16,color="green",shape="box"];2837[label="xuu710",fontsize=16,color="green",shape="box"];2838[label="xuu700",fontsize=16,color="green",shape="box"];2839[label="xuu710",fontsize=16,color="green",shape="box"];2840[label="xuu700",fontsize=16,color="green",shape="box"];2841[label="xuu710",fontsize=16,color="green",shape="box"];2842[label="xuu700",fontsize=16,color="green",shape="box"];2843[label="xuu710",fontsize=16,color="green",shape="box"];2844[label="xuu700",fontsize=16,color="green",shape="box"];2845[label="xuu710",fontsize=16,color="green",shape="box"];2846[label="xuu700",fontsize=16,color="green",shape="box"];2847[label="xuu710",fontsize=16,color="green",shape="box"];2848[label="xuu700",fontsize=16,color="green",shape="box"];2849[label="xuu710",fontsize=16,color="green",shape="box"];2850[label="xuu700",fontsize=16,color="green",shape="box"];2851[label="xuu710",fontsize=16,color="green",shape="box"];2852[label="xuu700",fontsize=16,color="green",shape="box"];2853[label="xuu710",fontsize=16,color="green",shape="box"];2854[label="xuu700",fontsize=16,color="green",shape="box"];2855[label="xuu710",fontsize=16,color="green",shape="box"];2856[label="xuu700",fontsize=16,color="green",shape="box"];2857[label="xuu710",fontsize=16,color="green",shape="box"];2858[label="xuu700",fontsize=16,color="green",shape="box"];2859[label="xuu710",fontsize=16,color="green",shape="box"];2860 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2860[label="xuu700 == xuu710",fontsize=16,color="magenta"];2860 -> 2943[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2860 -> 2944[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2861 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2861[label="xuu700 == xuu710",fontsize=16,color="magenta"];2861 -> 2945[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2861 -> 2946[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2862 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2862[label="xuu700 == xuu710",fontsize=16,color="magenta"];2862 -> 2947[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2862 -> 2948[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2863 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2863[label="xuu700 == xuu710",fontsize=16,color="magenta"];2863 -> 2949[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2863 -> 2950[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2864 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2864[label="xuu700 == xuu710",fontsize=16,color="magenta"];2864 -> 2951[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2864 -> 2952[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2865 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2865[label="xuu700 == xuu710",fontsize=16,color="magenta"];2865 -> 2953[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2865 -> 2954[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2866 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2866[label="xuu700 == xuu710",fontsize=16,color="magenta"];2866 -> 2955[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2866 -> 2956[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2867 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2867[label="xuu700 == xuu710",fontsize=16,color="magenta"];2867 -> 2957[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2867 -> 2958[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2868 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2868[label="xuu700 == xuu710",fontsize=16,color="magenta"];2868 -> 2959[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2868 -> 2960[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2869 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2869[label="xuu700 == xuu710",fontsize=16,color="magenta"];2869 -> 2961[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2869 -> 2962[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2870 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2870[label="xuu700 == xuu710",fontsize=16,color="magenta"];2870 -> 2963[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2870 -> 2964[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2871 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2871[label="xuu700 == xuu710",fontsize=16,color="magenta"];2871 -> 2965[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2871 -> 2966[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2872 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2872[label="xuu700 == xuu710",fontsize=16,color="magenta"];2872 -> 2967[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2872 -> 2968[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2873 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2873[label="xuu700 == xuu710",fontsize=16,color="magenta"];2873 -> 2969[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2873 -> 2970[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2874 -> 1496[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2874[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2874 -> 2971[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2874 -> 2972[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2875 -> 1497[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2875[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2875 -> 2973[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2875 -> 2974[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2876 -> 1498[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2876[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2876 -> 2975[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2876 -> 2976[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2877 -> 1499[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2877[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2877 -> 2977[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2877 -> 2978[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2878 -> 1500[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2878[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2878 -> 2979[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2878 -> 2980[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2879 -> 1501[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2879[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2879 -> 2981[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2879 -> 2982[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2880 -> 1502[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2880[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2880 -> 2983[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2880 -> 2984[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2881 -> 1503[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2881[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2881 -> 2985[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2881 -> 2986[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2882 -> 1504[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2882[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2882 -> 2987[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2882 -> 2988[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2883 -> 1505[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2883[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2883 -> 2989[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2883 -> 2990[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2884 -> 1506[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2884[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2884 -> 2991[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2884 -> 2992[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2885 -> 1507[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2885[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2885 -> 2993[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2885 -> 2994[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2886 -> 1508[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2886[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2886 -> 2995[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2886 -> 2996[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2887 -> 1509[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2887[label="xuu701 <= xuu711",fontsize=16,color="magenta"];2887 -> 2997[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2887 -> 2998[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2888[label="xuu394",fontsize=16,color="green",shape="box"];2889 -> 913[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2889[label="FiniteMap.sizeFM xuu393",fontsize=16,color="magenta"];2889 -> 2999[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2890[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2891[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"];2891 -> 3000[label="",style="solid", color="black", weight=3]; 36.90/18.34 2892[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"];2892 -> 3001[label="",style="solid", color="black", weight=3]; 36.90/18.34 2893[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"];2893 -> 3002[label="",style="solid", color="black", weight=3]; 36.90/18.34 2894[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"];2894 -> 3003[label="",style="solid", color="black", weight=3]; 36.90/18.34 2895[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu14 xuu15 xuu39 xuu183",fontsize=16,color="black",shape="box"];2895 -> 3004[label="",style="solid", color="black", weight=3]; 36.90/18.34 2896[label="xuu181",fontsize=16,color="green",shape="box"];2897[label="xuu180",fontsize=16,color="green",shape="box"];2898[label="xuu184",fontsize=16,color="green",shape="box"];2899[label="xuu710",fontsize=16,color="green",shape="box"];2900[label="xuu700",fontsize=16,color="green",shape="box"];2901[label="xuu710",fontsize=16,color="green",shape="box"];2902[label="xuu700",fontsize=16,color="green",shape="box"];2903[label="xuu710",fontsize=16,color="green",shape="box"];2904[label="xuu700",fontsize=16,color="green",shape="box"];2905[label="xuu710",fontsize=16,color="green",shape="box"];2906[label="xuu700",fontsize=16,color="green",shape="box"];2907[label="xuu710",fontsize=16,color="green",shape="box"];2908[label="xuu700",fontsize=16,color="green",shape="box"];2909[label="xuu710",fontsize=16,color="green",shape="box"];2910[label="xuu700",fontsize=16,color="green",shape="box"];2911[label="xuu710",fontsize=16,color="green",shape="box"];2912[label="xuu700",fontsize=16,color="green",shape="box"];2913[label="xuu710",fontsize=16,color="green",shape="box"];2914[label="xuu700",fontsize=16,color="green",shape="box"];2915[label="xuu710",fontsize=16,color="green",shape="box"];2916[label="xuu700",fontsize=16,color="green",shape="box"];2917[label="xuu710",fontsize=16,color="green",shape="box"];2918[label="xuu700",fontsize=16,color="green",shape="box"];2919[label="xuu710",fontsize=16,color="green",shape="box"];2920[label="xuu700",fontsize=16,color="green",shape="box"];2921[label="xuu710",fontsize=16,color="green",shape="box"];2922[label="xuu700",fontsize=16,color="green",shape="box"];2923[label="xuu710",fontsize=16,color="green",shape="box"];2924[label="xuu700",fontsize=16,color="green",shape="box"];2925[label="xuu710",fontsize=16,color="green",shape="box"];2926[label="xuu700",fontsize=16,color="green",shape="box"];2927 -> 33[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2927[label="xuu701 < xuu711",fontsize=16,color="magenta"];2927 -> 3005[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2927 -> 3006[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2928 -> 34[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2928[label="xuu701 < xuu711",fontsize=16,color="magenta"];2928 -> 3007[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2928 -> 3008[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2929 -> 35[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2929[label="xuu701 < xuu711",fontsize=16,color="magenta"];2929 -> 3009[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2929 -> 3010[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2930 -> 36[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2930[label="xuu701 < xuu711",fontsize=16,color="magenta"];2930 -> 3011[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2930 -> 3012[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2931 -> 37[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2931[label="xuu701 < xuu711",fontsize=16,color="magenta"];2931 -> 3013[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2931 -> 3014[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2932 -> 38[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2932[label="xuu701 < xuu711",fontsize=16,color="magenta"];2932 -> 3015[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2932 -> 3016[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2933 -> 39[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2933[label="xuu701 < xuu711",fontsize=16,color="magenta"];2933 -> 3017[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2933 -> 3018[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2934 -> 40[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2934[label="xuu701 < xuu711",fontsize=16,color="magenta"];2934 -> 3019[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2934 -> 3020[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2935 -> 41[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2935[label="xuu701 < xuu711",fontsize=16,color="magenta"];2935 -> 3021[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2935 -> 3022[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2936 -> 42[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2936[label="xuu701 < xuu711",fontsize=16,color="magenta"];2936 -> 3023[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2936 -> 3024[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2937 -> 43[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2937[label="xuu701 < xuu711",fontsize=16,color="magenta"];2937 -> 3025[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2937 -> 3026[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2938 -> 44[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2938[label="xuu701 < xuu711",fontsize=16,color="magenta"];2938 -> 3027[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2938 -> 3028[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2939 -> 45[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2939[label="xuu701 < xuu711",fontsize=16,color="magenta"];2939 -> 3029[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2939 -> 3030[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2940 -> 46[label="",style="dashed", color="red", weight=0]; 36.90/18.34 2940[label="xuu701 < xuu711",fontsize=16,color="magenta"];2940 -> 3031[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2940 -> 3032[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 2941[label="xuu701 == xuu711",fontsize=16,color="blue",shape="box"];4083[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4083[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4083 -> 3033[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4084[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4084[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4084 -> 3034[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4085[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4085[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4085 -> 3035[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4086[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4086[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4086 -> 3036[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4087[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4087[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4087 -> 3037[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4088[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4088[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4088 -> 3038[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4089[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4089[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4089 -> 3039[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4090[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4090[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4090 -> 3040[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4091[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4091[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4091 -> 3041[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4092[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4092[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4092 -> 3042[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4093[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4093[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4093 -> 3043[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4094[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4094[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4094 -> 3044[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4095[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4095[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4095 -> 3045[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4096[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4096[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4096 -> 3046[label="",style="solid", color="blue", weight=3]; 36.90/18.34 2942[label="xuu702 <= xuu712",fontsize=16,color="blue",shape="box"];4097[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4097[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4097 -> 3047[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4098[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4098[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4098 -> 3048[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4099[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4099[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4099 -> 3049[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4100[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4100[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4100 -> 3050[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4101[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4101[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4101 -> 3051[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4102[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4102[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4102 -> 3052[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4103[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4103[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4103 -> 3053[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4104[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4104[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4104 -> 3054[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4105[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4105[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4105 -> 3055[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4106[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4106[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4106 -> 3056[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4107[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4107[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4107 -> 3057[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4108[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4108[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4108 -> 3058[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4109[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4109[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4109 -> 3059[label="",style="solid", color="blue", weight=3]; 36.90/18.34 4110[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4110[label="",style="solid", color="blue", weight=9]; 36.90/18.34 4110 -> 3060[label="",style="solid", color="blue", weight=3]; 36.90/18.34 2943[label="xuu710",fontsize=16,color="green",shape="box"];2944[label="xuu700",fontsize=16,color="green",shape="box"];2945[label="xuu710",fontsize=16,color="green",shape="box"];2946[label="xuu700",fontsize=16,color="green",shape="box"];2947[label="xuu710",fontsize=16,color="green",shape="box"];2948[label="xuu700",fontsize=16,color="green",shape="box"];2949[label="xuu710",fontsize=16,color="green",shape="box"];2950[label="xuu700",fontsize=16,color="green",shape="box"];2951[label="xuu710",fontsize=16,color="green",shape="box"];2952[label="xuu700",fontsize=16,color="green",shape="box"];2953[label="xuu710",fontsize=16,color="green",shape="box"];2954[label="xuu700",fontsize=16,color="green",shape="box"];2955[label="xuu710",fontsize=16,color="green",shape="box"];2956[label="xuu700",fontsize=16,color="green",shape="box"];2957[label="xuu710",fontsize=16,color="green",shape="box"];2958[label="xuu700",fontsize=16,color="green",shape="box"];2959[label="xuu710",fontsize=16,color="green",shape="box"];2960[label="xuu700",fontsize=16,color="green",shape="box"];2961[label="xuu710",fontsize=16,color="green",shape="box"];2962[label="xuu700",fontsize=16,color="green",shape="box"];2963[label="xuu710",fontsize=16,color="green",shape="box"];2964[label="xuu700",fontsize=16,color="green",shape="box"];2965[label="xuu710",fontsize=16,color="green",shape="box"];2966[label="xuu700",fontsize=16,color="green",shape="box"];2967[label="xuu710",fontsize=16,color="green",shape="box"];2968[label="xuu700",fontsize=16,color="green",shape="box"];2969[label="xuu710",fontsize=16,color="green",shape="box"];2970[label="xuu700",fontsize=16,color="green",shape="box"];2971[label="xuu701",fontsize=16,color="green",shape="box"];2972[label="xuu711",fontsize=16,color="green",shape="box"];2973[label="xuu701",fontsize=16,color="green",shape="box"];2974[label="xuu711",fontsize=16,color="green",shape="box"];2975[label="xuu701",fontsize=16,color="green",shape="box"];2976[label="xuu711",fontsize=16,color="green",shape="box"];2977[label="xuu701",fontsize=16,color="green",shape="box"];2978[label="xuu711",fontsize=16,color="green",shape="box"];2979[label="xuu701",fontsize=16,color="green",shape="box"];2980[label="xuu711",fontsize=16,color="green",shape="box"];2981[label="xuu701",fontsize=16,color="green",shape="box"];2982[label="xuu711",fontsize=16,color="green",shape="box"];2983[label="xuu701",fontsize=16,color="green",shape="box"];2984[label="xuu711",fontsize=16,color="green",shape="box"];2985[label="xuu701",fontsize=16,color="green",shape="box"];2986[label="xuu711",fontsize=16,color="green",shape="box"];2987[label="xuu701",fontsize=16,color="green",shape="box"];2988[label="xuu711",fontsize=16,color="green",shape="box"];2989[label="xuu701",fontsize=16,color="green",shape="box"];2990[label="xuu711",fontsize=16,color="green",shape="box"];2991[label="xuu701",fontsize=16,color="green",shape="box"];2992[label="xuu711",fontsize=16,color="green",shape="box"];2993[label="xuu701",fontsize=16,color="green",shape="box"];2994[label="xuu711",fontsize=16,color="green",shape="box"];2995[label="xuu701",fontsize=16,color="green",shape="box"];2996[label="xuu711",fontsize=16,color="green",shape="box"];2997[label="xuu701",fontsize=16,color="green",shape="box"];2998[label="xuu711",fontsize=16,color="green",shape="box"];2999[label="xuu393",fontsize=16,color="green",shape="box"];3000[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"];3000 -> 3061[label="",style="solid", color="black", weight=3]; 36.90/18.34 3001 -> 3142[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3001[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"];3001 -> 3143[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3001 -> 3144[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3001 -> 3145[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3001 -> 3146[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3001 -> 3147[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3001 -> 3148[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3001 -> 3149[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3001 -> 3150[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3001 -> 3151[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3002[label="error []",fontsize=16,color="red",shape="box"];3003 -> 3142[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3003[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"];3003 -> 3152[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3003 -> 3153[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3003 -> 3154[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3003 -> 3155[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3003 -> 3156[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3003 -> 3157[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3003 -> 3158[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3003 -> 3159[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3003 -> 3160[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3004 -> 541[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3004[label="FiniteMap.mkBranchResult xuu14 xuu15 xuu39 xuu183",fontsize=16,color="magenta"];3004 -> 3083[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3005[label="xuu701",fontsize=16,color="green",shape="box"];3006[label="xuu711",fontsize=16,color="green",shape="box"];3007[label="xuu701",fontsize=16,color="green",shape="box"];3008[label="xuu711",fontsize=16,color="green",shape="box"];3009[label="xuu701",fontsize=16,color="green",shape="box"];3010[label="xuu711",fontsize=16,color="green",shape="box"];3011[label="xuu701",fontsize=16,color="green",shape="box"];3012[label="xuu711",fontsize=16,color="green",shape="box"];3013[label="xuu701",fontsize=16,color="green",shape="box"];3014[label="xuu711",fontsize=16,color="green",shape="box"];3015[label="xuu701",fontsize=16,color="green",shape="box"];3016[label="xuu711",fontsize=16,color="green",shape="box"];3017[label="xuu701",fontsize=16,color="green",shape="box"];3018[label="xuu711",fontsize=16,color="green",shape="box"];3019[label="xuu701",fontsize=16,color="green",shape="box"];3020[label="xuu711",fontsize=16,color="green",shape="box"];3021[label="xuu701",fontsize=16,color="green",shape="box"];3022[label="xuu711",fontsize=16,color="green",shape="box"];3023[label="xuu701",fontsize=16,color="green",shape="box"];3024[label="xuu711",fontsize=16,color="green",shape="box"];3025[label="xuu701",fontsize=16,color="green",shape="box"];3026[label="xuu711",fontsize=16,color="green",shape="box"];3027[label="xuu701",fontsize=16,color="green",shape="box"];3028[label="xuu711",fontsize=16,color="green",shape="box"];3029[label="xuu701",fontsize=16,color="green",shape="box"];3030[label="xuu711",fontsize=16,color="green",shape="box"];3031[label="xuu701",fontsize=16,color="green",shape="box"];3032[label="xuu711",fontsize=16,color="green",shape="box"];3033 -> 571[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3033[label="xuu701 == xuu711",fontsize=16,color="magenta"];3033 -> 3084[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3033 -> 3085[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3034 -> 560[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3034[label="xuu701 == xuu711",fontsize=16,color="magenta"];3034 -> 3086[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3034 -> 3087[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3035 -> 562[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3035[label="xuu701 == xuu711",fontsize=16,color="magenta"];3035 -> 3088[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3035 -> 3089[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3036 -> 563[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3036[label="xuu701 == xuu711",fontsize=16,color="magenta"];3036 -> 3090[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3036 -> 3091[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3037 -> 569[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3037[label="xuu701 == xuu711",fontsize=16,color="magenta"];3037 -> 3092[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3037 -> 3093[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3038 -> 564[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3038[label="xuu701 == xuu711",fontsize=16,color="magenta"];3038 -> 3094[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3038 -> 3095[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3039 -> 567[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3039[label="xuu701 == xuu711",fontsize=16,color="magenta"];3039 -> 3096[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3039 -> 3097[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3040 -> 561[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3040[label="xuu701 == xuu711",fontsize=16,color="magenta"];3040 -> 3098[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3040 -> 3099[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3041 -> 568[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3041[label="xuu701 == xuu711",fontsize=16,color="magenta"];3041 -> 3100[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3041 -> 3101[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3042 -> 559[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3042[label="xuu701 == xuu711",fontsize=16,color="magenta"];3042 -> 3102[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3042 -> 3103[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3043 -> 572[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3043[label="xuu701 == xuu711",fontsize=16,color="magenta"];3043 -> 3104[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3043 -> 3105[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3044 -> 565[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3044[label="xuu701 == xuu711",fontsize=16,color="magenta"];3044 -> 3106[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3044 -> 3107[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3045 -> 566[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3045[label="xuu701 == xuu711",fontsize=16,color="magenta"];3045 -> 3108[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3045 -> 3109[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3046 -> 570[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3046[label="xuu701 == xuu711",fontsize=16,color="magenta"];3046 -> 3110[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3046 -> 3111[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3047 -> 1496[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3047[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3047 -> 3112[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3047 -> 3113[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3048 -> 1497[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3048[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3048 -> 3114[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3048 -> 3115[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3049 -> 1498[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3049[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3049 -> 3116[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3049 -> 3117[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3050 -> 1499[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3050[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3050 -> 3118[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3050 -> 3119[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3051 -> 1500[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3051[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3051 -> 3120[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3051 -> 3121[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3052 -> 1501[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3052[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3052 -> 3122[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3052 -> 3123[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3053 -> 1502[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3053[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3053 -> 3124[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3053 -> 3125[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3054 -> 1503[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3054[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3054 -> 3126[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3054 -> 3127[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3055 -> 1504[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3055[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3055 -> 3128[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3055 -> 3129[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3056 -> 1505[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3056[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3056 -> 3130[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3056 -> 3131[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3057 -> 1506[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3057[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3057 -> 3132[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3057 -> 3133[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3058 -> 1507[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3058[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3058 -> 3134[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3058 -> 3135[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3059 -> 1508[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3059[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3059 -> 3136[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3059 -> 3137[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3060 -> 1509[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3060[label="xuu702 <= xuu712",fontsize=16,color="magenta"];3060 -> 3138[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3060 -> 3139[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3061[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"];4111[label="xuu394/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3061 -> 4111[label="",style="solid", color="burlywood", weight=9]; 36.90/18.34 4111 -> 3140[label="",style="solid", color="burlywood", weight=3]; 36.90/18.34 4112[label="xuu394/FiniteMap.Branch xuu3940 xuu3941 xuu3942 xuu3943 xuu3944",fontsize=10,color="white",style="solid",shape="box"];3061 -> 4112[label="",style="solid", color="burlywood", weight=9]; 36.90/18.34 4112 -> 3141[label="",style="solid", color="burlywood", weight=3]; 36.90/18.34 3143[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3144[label="xuu390",fontsize=16,color="green",shape="box"];3145[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3146[label="xuu15",fontsize=16,color="green",shape="box"];3147[label="xuu391",fontsize=16,color="green",shape="box"];3148[label="xuu394",fontsize=16,color="green",shape="box"];3149[label="xuu393",fontsize=16,color="green",shape="box"];3150[label="xuu14",fontsize=16,color="green",shape="box"];3151[label="xuu18",fontsize=16,color="green",shape="box"];3142[label="FiniteMap.mkBranch (Pos (Succ xuu239)) xuu240 xuu241 xuu242 (FiniteMap.mkBranch (Pos (Succ xuu243)) xuu244 xuu245 xuu246 xuu247)",fontsize=16,color="black",shape="triangle"];3142 -> 3179[label="",style="solid", color="black", weight=3]; 36.90/18.34 3152[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3153[label="xuu1830",fontsize=16,color="green",shape="box"];3154[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3155[label="xuu181",fontsize=16,color="green",shape="box"];3156[label="xuu1831",fontsize=16,color="green",shape="box"];3157[label="xuu1834",fontsize=16,color="green",shape="box"];3158[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu14 xuu15 xuu39 xuu1833",fontsize=16,color="black",shape="box"];3158 -> 3180[label="",style="solid", color="black", weight=3]; 36.90/18.34 3159[label="xuu180",fontsize=16,color="green",shape="box"];3160[label="xuu184",fontsize=16,color="green",shape="box"];3083[label="xuu183",fontsize=16,color="green",shape="box"];3084[label="xuu711",fontsize=16,color="green",shape="box"];3085[label="xuu701",fontsize=16,color="green",shape="box"];3086[label="xuu711",fontsize=16,color="green",shape="box"];3087[label="xuu701",fontsize=16,color="green",shape="box"];3088[label="xuu711",fontsize=16,color="green",shape="box"];3089[label="xuu701",fontsize=16,color="green",shape="box"];3090[label="xuu711",fontsize=16,color="green",shape="box"];3091[label="xuu701",fontsize=16,color="green",shape="box"];3092[label="xuu711",fontsize=16,color="green",shape="box"];3093[label="xuu701",fontsize=16,color="green",shape="box"];3094[label="xuu711",fontsize=16,color="green",shape="box"];3095[label="xuu701",fontsize=16,color="green",shape="box"];3096[label="xuu711",fontsize=16,color="green",shape="box"];3097[label="xuu701",fontsize=16,color="green",shape="box"];3098[label="xuu711",fontsize=16,color="green",shape="box"];3099[label="xuu701",fontsize=16,color="green",shape="box"];3100[label="xuu711",fontsize=16,color="green",shape="box"];3101[label="xuu701",fontsize=16,color="green",shape="box"];3102[label="xuu711",fontsize=16,color="green",shape="box"];3103[label="xuu701",fontsize=16,color="green",shape="box"];3104[label="xuu711",fontsize=16,color="green",shape="box"];3105[label="xuu701",fontsize=16,color="green",shape="box"];3106[label="xuu711",fontsize=16,color="green",shape="box"];3107[label="xuu701",fontsize=16,color="green",shape="box"];3108[label="xuu711",fontsize=16,color="green",shape="box"];3109[label="xuu701",fontsize=16,color="green",shape="box"];3110[label="xuu711",fontsize=16,color="green",shape="box"];3111[label="xuu701",fontsize=16,color="green",shape="box"];3112[label="xuu702",fontsize=16,color="green",shape="box"];3113[label="xuu712",fontsize=16,color="green",shape="box"];3114[label="xuu702",fontsize=16,color="green",shape="box"];3115[label="xuu712",fontsize=16,color="green",shape="box"];3116[label="xuu702",fontsize=16,color="green",shape="box"];3117[label="xuu712",fontsize=16,color="green",shape="box"];3118[label="xuu702",fontsize=16,color="green",shape="box"];3119[label="xuu712",fontsize=16,color="green",shape="box"];3120[label="xuu702",fontsize=16,color="green",shape="box"];3121[label="xuu712",fontsize=16,color="green",shape="box"];3122[label="xuu702",fontsize=16,color="green",shape="box"];3123[label="xuu712",fontsize=16,color="green",shape="box"];3124[label="xuu702",fontsize=16,color="green",shape="box"];3125[label="xuu712",fontsize=16,color="green",shape="box"];3126[label="xuu702",fontsize=16,color="green",shape="box"];3127[label="xuu712",fontsize=16,color="green",shape="box"];3128[label="xuu702",fontsize=16,color="green",shape="box"];3129[label="xuu712",fontsize=16,color="green",shape="box"];3130[label="xuu702",fontsize=16,color="green",shape="box"];3131[label="xuu712",fontsize=16,color="green",shape="box"];3132[label="xuu702",fontsize=16,color="green",shape="box"];3133[label="xuu712",fontsize=16,color="green",shape="box"];3134[label="xuu702",fontsize=16,color="green",shape="box"];3135[label="xuu712",fontsize=16,color="green",shape="box"];3136[label="xuu702",fontsize=16,color="green",shape="box"];3137[label="xuu712",fontsize=16,color="green",shape="box"];3138[label="xuu702",fontsize=16,color="green",shape="box"];3139[label="xuu712",fontsize=16,color="green",shape="box"];3140[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"];3140 -> 3181[label="",style="solid", color="black", weight=3]; 36.90/18.34 3141[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"];3141 -> 3182[label="",style="solid", color="black", weight=3]; 36.90/18.34 3179 -> 541[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3179[label="FiniteMap.mkBranchResult xuu240 xuu241 xuu242 (FiniteMap.mkBranch (Pos (Succ xuu243)) xuu244 xuu245 xuu246 xuu247)",fontsize=16,color="magenta"];3179 -> 3183[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3179 -> 3184[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3179 -> 3185[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3179 -> 3186[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3180 -> 541[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3180[label="FiniteMap.mkBranchResult xuu14 xuu15 xuu39 xuu1833",fontsize=16,color="magenta"];3180 -> 3187[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3181[label="error []",fontsize=16,color="red",shape="box"];3182 -> 3142[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3182[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"];3182 -> 3188[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3182 -> 3189[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3182 -> 3190[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3182 -> 3191[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3182 -> 3192[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3182 -> 3193[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3182 -> 3194[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3182 -> 3195[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3182 -> 3196[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3183[label="xuu242",fontsize=16,color="green",shape="box"];3184[label="xuu241",fontsize=16,color="green",shape="box"];3185[label="xuu240",fontsize=16,color="green",shape="box"];3186[label="FiniteMap.mkBranch (Pos (Succ xuu243)) xuu244 xuu245 xuu246 xuu247",fontsize=16,color="black",shape="triangle"];3186 -> 3197[label="",style="solid", color="black", weight=3]; 36.90/18.34 3187[label="xuu1833",fontsize=16,color="green",shape="box"];3188[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3189[label="xuu3940",fontsize=16,color="green",shape="box"];3190[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3191[label="xuu15",fontsize=16,color="green",shape="box"];3192[label="xuu3941",fontsize=16,color="green",shape="box"];3193[label="xuu3944",fontsize=16,color="green",shape="box"];3194 -> 3186[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3194[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu390 xuu391 xuu393 xuu3943",fontsize=16,color="magenta"];3194 -> 3198[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3194 -> 3199[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3194 -> 3200[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3194 -> 3201[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3194 -> 3202[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3195[label="xuu14",fontsize=16,color="green",shape="box"];3196[label="xuu18",fontsize=16,color="green",shape="box"];3197 -> 541[label="",style="dashed", color="red", weight=0]; 36.90/18.34 3197[label="FiniteMap.mkBranchResult xuu244 xuu245 xuu246 xuu247",fontsize=16,color="magenta"];3197 -> 3203[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3197 -> 3204[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3197 -> 3205[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3197 -> 3206[label="",style="dashed", color="magenta", weight=3]; 36.90/18.34 3198[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3199[label="xuu391",fontsize=16,color="green",shape="box"];3200[label="xuu393",fontsize=16,color="green",shape="box"];3201[label="xuu390",fontsize=16,color="green",shape="box"];3202[label="xuu3943",fontsize=16,color="green",shape="box"];3203[label="xuu246",fontsize=16,color="green",shape="box"];3204[label="xuu245",fontsize=16,color="green",shape="box"];3205[label="xuu244",fontsize=16,color="green",shape="box"];3206[label="xuu247",fontsize=16,color="green",shape="box"];} 36.90/18.34 36.90/18.34 ---------------------------------------- 36.90/18.34 36.90/18.34 (16) 36.90/18.34 Complex Obligation (AND) 36.90/18.34 36.90/18.34 ---------------------------------------- 36.90/18.34 36.90/18.34 (17) 36.90/18.34 Obligation: 36.90/18.34 Q DP problem: 36.90/18.34 The TRS P consists of the following rules: 36.90/18.34 36.90/18.34 new_primCmpNat(Succ(xuu40000), Succ(xuu3000)) -> new_primCmpNat(xuu40000, xuu3000) 36.90/18.34 36.90/18.34 R is empty. 36.90/18.34 Q is empty. 36.90/18.34 We have to consider all minimal (P,Q,R)-chains. 36.90/18.34 ---------------------------------------- 36.90/18.34 36.90/18.34 (18) QDPSizeChangeProof (EQUIVALENT) 36.90/18.34 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. 36.90/18.34 36.90/18.34 From the DPs we obtained the following set of size-change graphs: 36.90/18.34 *new_primCmpNat(Succ(xuu40000), Succ(xuu3000)) -> new_primCmpNat(xuu40000, xuu3000) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2 36.90/18.34 36.90/18.34 36.90/18.34 ---------------------------------------- 36.90/18.34 36.90/18.34 (19) 36.90/18.34 YES 36.90/18.34 36.90/18.34 ---------------------------------------- 36.90/18.34 36.90/18.34 (20) 36.90/18.34 Obligation: 36.90/18.34 Q DP problem: 36.90/18.34 The TRS P consists of the following rules: 36.90/18.34 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(ty_Maybe, ga), dh) -> new_esEs2(xuu40001, xuu3001, ga) 36.90/18.34 new_esEs1(Left(xuu40000), Left(xuu3000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu40000, xuu3000, bab, bac) 36.90/18.34 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, bdf), bdg)) -> new_esEs1(xuu40000, xuu3000, bdf, bdg) 36.90/18.34 new_esEs1(Left(xuu40000), Left(xuu3000), app(ty_[], bae), hf) -> new_esEs3(xuu40000, xuu3000, bae) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, ef), dg, dh) -> new_esEs2(xuu40000, xuu3000, ef) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(app(ty_@3, fc), fd), ff), dh) -> new_esEs0(xuu40001, xuu3001, fc, fd, ff) 36.90/18.34 new_esEs2(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bbh), bca)) -> new_esEs(xuu40000, xuu3000, bbh, bca) 36.90/18.34 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, h), ba), bb) -> new_esEs(xuu40000, xuu3000, h, ba) 36.90/18.34 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bdh)) -> new_esEs2(xuu40000, xuu3000, bdh) 36.90/18.34 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(xuu40001, xuu3001, ce, cf, cg) 36.90/18.34 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(ty_[], dd)) -> new_esEs3(xuu40001, xuu3001, dd) 36.90/18.34 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(ty_Maybe, dc)) -> new_esEs2(xuu40001, xuu3001, dc) 36.90/18.34 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], bea)) -> new_esEs3(xuu40000, xuu3000, bea) 36.90/18.34 new_esEs2(Just(xuu40000), Just(xuu3000), app(ty_Maybe, bcg)) -> new_esEs2(xuu40000, xuu3000, bcg) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, de), df), dg, dh) -> new_esEs(xuu40000, xuu3000, de, df) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, ed), ee), dg, dh) -> new_esEs1(xuu40000, xuu3000, ed, ee) 36.90/18.34 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bh), bb) -> new_esEs2(xuu40000, xuu3000, bh) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(ty_[], hc)) -> new_esEs3(xuu40002, xuu3002, hc) 36.90/18.34 new_esEs2(Just(xuu40000), Just(xuu3000), app(ty_[], bch)) -> new_esEs3(xuu40000, xuu3000, bch) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(xuu40002, xuu3002, ge, gf, gg) 36.90/18.34 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(ty_@2, cc), cd)) -> new_esEs(xuu40001, xuu3001, cc, cd) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(ty_Maybe, hb)) -> new_esEs2(xuu40002, xuu3002, hb) 36.90/18.34 new_esEs1(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu40000, xuu3000, hg, hh, baa) 36.90/18.34 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bda), bdb)) -> new_esEs(xuu40000, xuu3000, bda, bdb) 36.90/18.34 new_esEs1(Left(xuu40000), Left(xuu3000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu40000, xuu3000, hd, he) 36.90/18.34 new_esEs1(Left(xuu40000), Left(xuu3000), app(ty_Maybe, bad), hf) -> new_esEs2(xuu40000, xuu3000, bad) 36.90/18.34 new_esEs2(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bce), bcf)) -> new_esEs1(xuu40000, xuu3000, bce, bcf) 36.90/18.34 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), beb) -> new_esEs3(xuu40001, xuu3001, beb) 36.90/18.34 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(ty_Either, da), db)) -> new_esEs1(xuu40001, xuu3001, da, db) 36.90/18.34 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, bf), bg), bb) -> new_esEs1(xuu40000, xuu3000, bf, bg) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(ty_[], gb), dh) -> new_esEs3(xuu40001, xuu3001, gb) 36.90/18.34 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(xuu40000, xuu3000, bdc, bdd, bde) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(ty_Either, fg), fh), dh) -> new_esEs1(xuu40001, xuu3001, fg, fh) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], eg), dg, dh) -> new_esEs3(xuu40000, xuu3000, eg) 36.90/18.34 new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu40000, xuu3000, bba, bbb, bbc) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(ty_@2, fa), fb), dh) -> new_esEs(xuu40001, xuu3001, fa, fb) 36.90/18.34 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], ca), bb) -> new_esEs3(xuu40000, xuu3000, ca) 36.90/18.34 new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(ty_[], bbg)) -> new_esEs3(xuu40000, xuu3000, bbg) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(ty_@2, gc), gd)) -> new_esEs(xuu40002, xuu3002, gc, gd) 36.90/18.34 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(xuu40000, xuu3000, bc, bd, be) 36.90/18.34 new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu40000, xuu3000, bag, bah) 36.90/18.34 new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(ty_Maybe, bbf)) -> new_esEs2(xuu40000, xuu3000, bbf) 36.90/18.34 new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu40000, xuu3000, bbd, bbe) 36.90/18.34 new_esEs2(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(xuu40000, xuu3000, bcb, bcc, bcd) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, ea), eb), ec), dg, dh) -> new_esEs0(xuu40000, xuu3000, ea, eb, ec) 36.90/18.34 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(ty_Either, gh), ha)) -> new_esEs1(xuu40002, xuu3002, gh, ha) 36.90/18.34 36.90/18.34 R is empty. 36.90/18.34 Q is empty. 36.90/18.34 We have to consider all minimal (P,Q,R)-chains. 36.90/18.34 ---------------------------------------- 36.90/18.34 36.90/18.34 (21) QDPSizeChangeProof (EQUIVALENT) 36.90/18.34 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. 36.90/18.34 36.90/18.34 From the DPs we obtained the following set of size-change graphs: 36.90/18.34 *new_esEs2(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(xuu40000, xuu3000, bcb, bcc, bcd) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs2(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bce), bcf)) -> new_esEs1(xuu40000, xuu3000, bce, bcf) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs2(Just(xuu40000), Just(xuu3000), app(ty_[], bch)) -> new_esEs3(xuu40000, xuu3000, bch) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(xuu40000, xuu3000, bdc, bdd, bde) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, bdf), bdg)) -> new_esEs1(xuu40000, xuu3000, bdf, bdg) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs2(Just(xuu40000), Just(xuu3000), app(ty_Maybe, bcg)) -> new_esEs2(xuu40000, xuu3000, bcg) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs2(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bbh), bca)) -> new_esEs(xuu40000, xuu3000, bbh, bca) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bdh)) -> new_esEs2(xuu40000, xuu3000, bdh) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bda), bdb)) -> new_esEs(xuu40000, xuu3000, bda, bdb) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs1(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu40000, xuu3000, hg, hh, baa) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu40000, xuu3000, bba, bbb, bbc) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(app(ty_@3, fc), fd), ff), dh) -> new_esEs0(xuu40001, xuu3001, fc, fd, ff) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(xuu40002, xuu3002, ge, gf, gg) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, ea), eb), ec), dg, dh) -> new_esEs0(xuu40000, xuu3000, ea, eb, ec) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(xuu40001, xuu3001, ce, cf, cg) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(xuu40000, xuu3000, bc, bd, be) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs1(Left(xuu40000), Left(xuu3000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu40000, xuu3000, bab, bac) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu40000, xuu3000, bbd, bbe) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs1(Left(xuu40000), Left(xuu3000), app(ty_[], bae), hf) -> new_esEs3(xuu40000, xuu3000, bae) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(ty_[], bbg)) -> new_esEs3(xuu40000, xuu3000, bbg) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs1(Left(xuu40000), Left(xuu3000), app(ty_Maybe, bad), hf) -> new_esEs2(xuu40000, xuu3000, bad) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(ty_Maybe, bbf)) -> new_esEs2(xuu40000, xuu3000, bbf) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs1(Left(xuu40000), Left(xuu3000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu40000, xuu3000, hd, he) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu40000, xuu3000, bag, bah) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, ed), ee), dg, dh) -> new_esEs1(xuu40000, xuu3000, ed, ee) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(ty_Either, fg), fh), dh) -> new_esEs1(xuu40001, xuu3001, fg, fh) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(ty_Either, gh), ha)) -> new_esEs1(xuu40002, xuu3002, gh, ha) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(ty_Either, da), db)) -> new_esEs1(xuu40001, xuu3001, da, db) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, bf), bg), bb) -> new_esEs1(xuu40000, xuu3000, bf, bg) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], bea)) -> new_esEs3(xuu40000, xuu3000, bea) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), beb) -> new_esEs3(xuu40001, xuu3001, beb) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(ty_[], hc)) -> new_esEs3(xuu40002, xuu3002, hc) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(ty_[], gb), dh) -> new_esEs3(xuu40001, xuu3001, gb) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], eg), dg, dh) -> new_esEs3(xuu40000, xuu3000, eg) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(ty_[], dd)) -> new_esEs3(xuu40001, xuu3001, dd) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], ca), bb) -> new_esEs3(xuu40000, xuu3000, ca) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(ty_Maybe, ga), dh) -> new_esEs2(xuu40001, xuu3001, ga) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, ef), dg, dh) -> new_esEs2(xuu40000, xuu3000, ef) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(ty_Maybe, hb)) -> new_esEs2(xuu40002, xuu3002, hb) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, de), df), dg, dh) -> new_esEs(xuu40000, xuu3000, de, df) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(ty_@2, fa), fb), dh) -> new_esEs(xuu40001, xuu3001, fa, fb) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(ty_@2, gc), gd)) -> new_esEs(xuu40002, xuu3002, gc, gd) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(ty_Maybe, dc)) -> new_esEs2(xuu40001, xuu3001, dc) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bh), bb) -> new_esEs2(xuu40000, xuu3000, bh) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, h), ba), bb) -> new_esEs(xuu40000, xuu3000, h, ba) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 36.90/18.34 36.90/18.34 36.90/18.34 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(ty_@2, cc), cd)) -> new_esEs(xuu40001, xuu3001, cc, cd) 36.90/18.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 36.90/18.34 36.90/18.34 36.90/18.34 ---------------------------------------- 36.90/18.34 36.90/18.34 (22) 36.90/18.34 YES 36.90/18.34 36.90/18.34 ---------------------------------------- 36.90/18.34 36.90/18.34 (23) 36.90/18.34 Obligation: 36.90/18.34 Q DP problem: 36.90/18.34 The TRS P consists of the following rules: 36.90/18.34 36.90/18.34 new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bb, bc) -> new_addToFM_C(xuu35, xuu36, xuu37, bb, bc) 36.90/18.34 new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba) -> new_addToFM_C(xuu17, xuu19, xuu20, h, ba) 36.90/18.34 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) 36.90/18.34 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) 36.90/18.34 36.90/18.34 The TRS R consists of the following rules: 36.90/18.34 36.90/18.34 new_lt24(xuu400, xuu30, ty_Bool) -> new_lt14(xuu400, xuu30) 36.90/18.34 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 36.90/18.34 new_primPlusNat0(Zero, Zero) -> Zero 36.90/18.34 new_compare11(Right(xuu4000), Left(xuu300), bcc, bcd) -> GT 36.90/18.34 new_esEs24(@0, @0) -> True 36.90/18.34 new_ltEs5(xuu702, xuu712, ty_Float) -> new_ltEs17(xuu702, xuu712) 36.90/18.34 new_pePe(True, xuu210) -> True 36.90/18.34 new_esEs9(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 36.90/18.34 new_lt20(xuu108, xuu111, ty_Ordering) -> new_lt17(xuu108, xuu111) 36.90/18.34 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 36.90/18.34 new_ltEs24(xuu701, xuu711, ty_Bool) -> new_ltEs12(xuu701, xuu711) 36.90/18.34 new_esEs37(xuu40002, xuu3002, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs16(xuu40002, xuu3002, dcd, dce, dcf) 36.90/18.34 new_esEs33(xuu40000, xuu3000, app(ty_[], cdg)) -> new_esEs26(xuu40000, xuu3000, cdg) 36.90/18.34 new_esEs32(xuu109, xuu112, app(app(ty_Either, caf), cag)) -> new_esEs18(xuu109, xuu112, caf, cag) 36.90/18.34 new_esEs32(xuu109, xuu112, ty_@0) -> new_esEs24(xuu109, xuu112) 36.90/18.34 new_compare113(xuu158, xuu159, False, ddg, ddh) -> GT 36.90/18.34 new_ltEs14(@2(xuu700, xuu701), @2(xuu710, xuu711), gh, ha) -> new_pePe(new_lt23(xuu700, xuu710, gh), new_asAs(new_esEs40(xuu700, xuu710, gh), new_ltEs24(xuu701, xuu711, ha))) 36.90/18.34 new_compare17(LT, GT) -> LT 36.90/18.34 new_esEs20(EQ, EQ) -> True 36.90/18.34 new_ltEs23(xuu122, xuu124, ty_Double) -> new_ltEs15(xuu122, xuu124) 36.90/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, app(ty_Ratio, efb)) -> new_ltEs11(xuu700, xuu710, efb) 36.90/18.34 new_esEs37(xuu40002, xuu3002, app(ty_Ratio, dda)) -> new_esEs22(xuu40002, xuu3002, dda) 36.90/18.34 new_lt23(xuu700, xuu710, app(ty_Maybe, fge)) -> new_lt15(xuu700, xuu710, fge) 36.90/18.34 new_esEs38(xuu121, xuu123, app(ty_Maybe, fac)) -> new_esEs23(xuu121, xuu123, fac) 36.90/18.34 new_esEs39(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) 36.90/18.34 new_compare111(xuu195, xuu196, xuu197, xuu198, False, bbh, bca) -> GT 36.90/18.34 new_esEs31(xuu108, xuu111, ty_Double) -> new_esEs12(xuu108, xuu111) 36.90/18.34 new_esEs10(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 36.90/18.34 new_esEs9(xuu4000, xuu300, app(app(ty_Either, bbc), bbd)) -> new_esEs18(xuu4000, xuu300, bbc, bbd) 36.90/18.34 new_compare18(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 36.90/18.34 new_ltEs24(xuu701, xuu711, app(app(app(ty_@3, fha), fhb), fhc)) -> new_ltEs4(xuu701, xuu711, fha, fhb, fhc) 37.21/18.34 new_lt12(xuu400, xuu30) -> new_esEs14(new_compare6(xuu400, xuu30)) 37.21/18.34 new_compare17(LT, EQ) -> LT 37.21/18.34 new_lt5(xuu700, xuu710, ty_Float) -> new_lt18(xuu700, xuu710) 37.21/18.34 new_ltEs21(xuu84, xuu85, ty_Ordering) -> new_ltEs16(xuu84, xuu85) 37.21/18.34 new_lt5(xuu700, xuu710, app(ty_Ratio, cg)) -> new_lt13(xuu700, xuu710, cg) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), ty_Double, ge) -> new_ltEs15(xuu700, xuu710) 37.21/18.34 new_compare17(EQ, GT) -> LT 37.21/18.34 new_ltEs19(xuu70, xuu71, app(ty_[], gc)) -> new_ltEs6(xuu70, xuu71, gc) 37.21/18.34 new_esEs5(xuu4001, xuu301, app(app(ty_@2, bea), beb)) -> new_esEs15(xuu4001, xuu301, bea, beb) 37.21/18.34 new_esEs35(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.34 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 37.21/18.34 new_esEs28(xuu701, xuu711, ty_Float) -> new_esEs21(xuu701, xuu711) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Bool, bdf) -> new_esEs17(xuu40000, xuu3000) 37.21/18.34 new_not(True) -> False 37.21/18.34 new_lt22(xuu121, xuu123, app(ty_[], ehd)) -> new_lt7(xuu121, xuu123, ehd) 37.21/18.34 new_lt22(xuu121, xuu123, ty_Double) -> new_lt4(xuu121, xuu123) 37.21/18.34 new_lt23(xuu700, xuu710, ty_Int) -> new_lt9(xuu700, xuu710) 37.21/18.34 new_esEs34(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) 37.21/18.34 new_primCompAux00(xuu49, LT) -> LT 37.21/18.34 new_esEs28(xuu701, xuu711, app(ty_Maybe, ec)) -> new_esEs23(xuu701, xuu711, ec) 37.21/18.34 new_esEs33(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.34 new_esEs27(xuu700, xuu710, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs16(xuu700, xuu710, cb, cc, cd) 37.21/18.34 new_lt19(xuu400, xuu30) -> new_esEs14(new_compare19(xuu400, xuu30)) 37.21/18.34 new_ltEs24(xuu701, xuu711, ty_Integer) -> new_ltEs18(xuu701, xuu711) 37.21/18.34 new_ltEs22(xuu77, xuu78, ty_Float) -> new_ltEs17(xuu77, xuu78) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), app(app(ty_Either, edf), edg), ge) -> new_ltEs8(xuu700, xuu710, edf, edg) 37.21/18.34 new_compare25(xuu70, xuu71, False, ga, gb) -> new_compare10(xuu70, xuu71, new_ltEs19(xuu70, xuu71, ga), ga, gb) 37.21/18.34 new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, True, ecg, ech, eda) -> LT 37.21/18.34 new_esEs27(xuu700, xuu710, app(ty_Ratio, cg)) -> new_esEs22(xuu700, xuu710, cg) 37.21/18.34 new_ltEs19(xuu70, xuu71, ty_Bool) -> new_ltEs12(xuu70, xuu71) 37.21/18.34 new_primEqNat0(Succ(xuu400000), Zero) -> False 37.21/18.34 new_primEqNat0(Zero, Succ(xuu30000)) -> False 37.21/18.34 new_esEs5(xuu4001, xuu301, ty_Integer) -> new_esEs25(xuu4001, xuu301) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Integer, bdf) -> new_esEs25(xuu40000, xuu3000) 37.21/18.34 new_lt24(xuu400, xuu30, ty_@0) -> new_lt11(xuu400, xuu30) 37.21/18.34 new_compare10(xuu151, xuu152, True, dhg, dhh) -> LT 37.21/18.34 new_esEs11(xuu4001, xuu301, app(app(ty_@2, dge), dgf)) -> new_esEs15(xuu4001, xuu301, dge, dgf) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), ty_Char, ge) -> new_ltEs10(xuu700, xuu710) 37.21/18.34 new_lt20(xuu108, xuu111, ty_Integer) -> new_lt19(xuu108, xuu111) 37.21/18.34 new_lt5(xuu700, xuu710, app(app(app(ty_@3, cb), cc), cd)) -> new_lt8(xuu700, xuu710, cb, cc, cd) 37.21/18.34 new_esEs33(xuu40000, xuu3000, app(app(ty_@2, ccf), ccg)) -> new_esEs15(xuu40000, xuu3000, ccf, ccg) 37.21/18.34 new_esEs33(xuu40000, xuu3000, app(ty_Maybe, cdf)) -> new_esEs23(xuu40000, xuu3000, cdf) 37.21/18.34 new_primCmpInt(Pos(Succ(xuu40000)), Neg(xuu300)) -> GT 37.21/18.34 new_compare9(xuu400, xuu30) -> new_primCmpInt(xuu400, xuu30) 37.21/18.34 new_esEs4(xuu4000, xuu300, app(app(ty_Either, bde), bdf)) -> new_esEs18(xuu4000, xuu300, bde, bdf) 37.21/18.34 new_ltEs21(xuu84, xuu85, ty_Int) -> new_ltEs7(xuu84, xuu85) 37.21/18.34 new_esEs32(xuu109, xuu112, app(ty_Ratio, cah)) -> new_esEs22(xuu109, xuu112, cah) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), ty_@0, ge) -> new_ltEs9(xuu700, xuu710) 37.21/18.34 new_ltEs19(xuu70, xuu71, ty_Integer) -> new_ltEs18(xuu70, xuu71) 37.21/18.34 new_esEs36(xuu40001, xuu3001, ty_Double) -> new_esEs12(xuu40001, xuu3001) 37.21/18.34 new_esEs35(xuu40000, xuu3000, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.34 new_primCmpNat0(Zero, Succ(xuu3000)) -> LT 37.21/18.34 new_ltEs23(xuu122, xuu124, ty_@0) -> new_ltEs9(xuu122, xuu124) 37.21/18.34 new_ltEs13(Just(xuu700), Just(xuu710), app(app(app(ty_@3, eac), ead), eae)) -> new_ltEs4(xuu700, xuu710, eac, ead, eae) 37.21/18.34 new_esEs32(xuu109, xuu112, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs16(xuu109, xuu112, cac, cad, cae) 37.21/18.34 new_esEs5(xuu4001, xuu301, app(ty_[], bfb)) -> new_esEs26(xuu4001, xuu301, bfb) 37.21/18.34 new_esEs10(xuu4000, xuu300, app(app(ty_Either, dfh), dga)) -> new_esEs18(xuu4000, xuu300, dfh, dga) 37.21/18.34 new_ltEs21(xuu84, xuu85, app(app(ty_Either, eca), ecb)) -> new_ltEs8(xuu84, xuu85, eca, ecb) 37.21/18.34 new_esEs38(xuu121, xuu123, ty_Bool) -> new_esEs17(xuu121, xuu123) 37.21/18.34 new_esEs6(xuu4002, xuu302, ty_@0) -> new_esEs24(xuu4002, xuu302) 37.21/18.34 new_esEs32(xuu109, xuu112, ty_Int) -> new_esEs13(xuu109, xuu112) 37.21/18.34 new_ltEs20(xuu110, xuu113, app(ty_Maybe, ccc)) -> new_ltEs13(xuu110, xuu113, ccc) 37.21/18.34 new_esEs39(xuu40000, xuu3000, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.34 new_ltEs23(xuu122, xuu124, app(ty_Ratio, fbd)) -> new_ltEs11(xuu122, xuu124, fbd) 37.21/18.34 new_compare7(xuu4000, xuu300, ty_Bool) -> new_compare14(xuu4000, xuu300) 37.21/18.34 new_esEs11(xuu4001, xuu301, app(ty_[], dhf)) -> new_esEs26(xuu4001, xuu301, dhf) 37.21/18.34 new_esEs18(Right(xuu40000), Right(xuu3000), bde, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Double, bdf) -> new_esEs12(xuu40000, xuu3000) 37.21/18.34 new_esEs6(xuu4002, xuu302, app(app(ty_Either, bfh), bga)) -> new_esEs18(xuu4002, xuu302, bfh, bga) 37.21/18.34 new_esEs31(xuu108, xuu111, app(app(ty_@2, bhh), caa)) -> new_esEs15(xuu108, xuu111, bhh, caa) 37.21/18.34 new_esEs23(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, gad), gae), gaf)) -> new_esEs16(xuu40000, xuu3000, gad, gae, gaf) 37.21/18.34 new_esEs37(xuu40002, xuu3002, ty_Ordering) -> new_esEs20(xuu40002, xuu3002) 37.21/18.34 new_lt6(xuu701, xuu711, ty_Bool) -> new_lt14(xuu701, xuu711) 37.21/18.34 new_ltEs23(xuu122, xuu124, app(app(ty_@2, fbf), fbg)) -> new_ltEs14(xuu122, xuu124, fbf, fbg) 37.21/18.34 new_esEs31(xuu108, xuu111, ty_Char) -> new_esEs19(xuu108, xuu111) 37.21/18.34 new_esEs27(xuu700, xuu710, ty_Ordering) -> new_esEs20(xuu700, xuu710) 37.21/18.34 new_esEs7(xuu4000, xuu300, app(ty_[], fec)) -> new_esEs26(xuu4000, xuu300, fec) 37.21/18.34 new_esEs40(xuu700, xuu710, app(ty_Maybe, fge)) -> new_esEs23(xuu700, xuu710, fge) 37.21/18.34 new_lt23(xuu700, xuu710, ty_Char) -> new_lt12(xuu700, xuu710) 37.21/18.34 new_esEs18(Right(xuu40000), Right(xuu3000), bde, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.34 new_esEs9(xuu4000, xuu300, app(ty_Ratio, bbe)) -> new_esEs22(xuu4000, xuu300, bbe) 37.21/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, ty_Float) -> new_ltEs17(xuu700, xuu710) 37.21/18.34 new_esEs7(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.34 new_ltEs19(xuu70, xuu71, app(app(ty_@2, gh), ha)) -> new_ltEs14(xuu70, xuu71, gh, ha) 37.21/18.34 new_esEs31(xuu108, xuu111, ty_Bool) -> new_esEs17(xuu108, xuu111) 37.21/18.34 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 37.21/18.34 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3000))) -> LT 37.21/18.34 new_esEs5(xuu4001, xuu301, ty_Double) -> new_esEs12(xuu4001, xuu301) 37.21/18.34 new_esEs4(xuu4000, xuu300, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs16(xuu4000, xuu300, bdb, bdc, bdd) 37.21/18.34 new_primMulInt(Pos(xuu40000), Pos(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.34 new_ltEs20(xuu110, xuu113, ty_Double) -> new_ltEs15(xuu110, xuu113) 37.21/18.34 new_lt21(xuu109, xuu112, ty_Float) -> new_lt18(xuu109, xuu112) 37.21/18.34 new_ltEs13(Just(xuu700), Just(xuu710), app(app(ty_Either, eaf), eag)) -> new_ltEs8(xuu700, xuu710, eaf, eag) 37.21/18.34 new_ltEs13(Just(xuu700), Just(xuu710), ty_Bool) -> new_ltEs12(xuu700, xuu710) 37.21/18.34 new_compare18(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.34 new_compare18(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.34 new_esEs6(xuu4002, xuu302, ty_Char) -> new_esEs19(xuu4002, xuu302) 37.21/18.34 new_esEs18(Right(xuu40000), Right(xuu3000), bde, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.34 new_esEs11(xuu4001, xuu301, ty_Integer) -> new_esEs25(xuu4001, xuu301) 37.21/18.34 new_ltEs24(xuu701, xuu711, ty_Float) -> new_ltEs17(xuu701, xuu711) 37.21/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, app(ty_[], eed)) -> new_ltEs6(xuu700, xuu710, eed) 37.21/18.34 new_ltEs8(Right(xuu700), Left(xuu710), gd, ge) -> False 37.21/18.34 new_lt21(xuu109, xuu112, ty_Bool) -> new_lt14(xuu109, xuu112) 37.21/18.34 new_primMulNat0(Succ(xuu400000), Zero) -> Zero 37.21/18.34 new_primMulNat0(Zero, Succ(xuu30100)) -> Zero 37.21/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, app(ty_Maybe, efc)) -> new_ltEs13(xuu700, xuu710, efc) 37.21/18.34 new_esEs5(xuu4001, xuu301, app(ty_Maybe, bfa)) -> new_esEs23(xuu4001, xuu301, bfa) 37.21/18.34 new_esEs7(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.34 new_lt23(xuu700, xuu710, ty_Ordering) -> new_lt17(xuu700, xuu710) 37.21/18.34 new_ltEs21(xuu84, xuu85, ty_Integer) -> new_ltEs18(xuu84, xuu85) 37.21/18.34 new_esEs20(LT, LT) -> True 37.21/18.34 new_ltEs18(xuu70, xuu71) -> new_fsEs(new_compare19(xuu70, xuu71)) 37.21/18.34 new_compare26(xuu84, xuu85, True, ebd) -> EQ 37.21/18.34 new_compare28(xuu121, xuu122, xuu123, xuu124, False, ehb, ehc) -> new_compare110(xuu121, xuu122, xuu123, xuu124, new_lt22(xuu121, xuu123, ehb), new_asAs(new_esEs38(xuu121, xuu123, ehb), new_ltEs23(xuu122, xuu124, ehc)), ehb, ehc) 37.21/18.34 new_ltEs23(xuu122, xuu124, ty_Int) -> new_ltEs7(xuu122, xuu124) 37.21/18.34 new_ltEs12(False, True) -> True 37.21/18.34 new_esEs11(xuu4001, xuu301, ty_Float) -> new_esEs21(xuu4001, xuu301) 37.21/18.34 new_esEs4(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.34 new_primPlusNat0(Succ(xuu39200), Zero) -> Succ(xuu39200) 37.21/18.34 new_primPlusNat0(Zero, Succ(xuu13400)) -> Succ(xuu13400) 37.21/18.34 new_compare26(xuu84, xuu85, False, ebd) -> new_compare114(xuu84, xuu85, new_ltEs21(xuu84, xuu85, ebd), ebd) 37.21/18.34 new_lt20(xuu108, xuu111, app(app(ty_Either, bhd), bhe)) -> new_lt10(xuu108, xuu111, bhd, bhe) 37.21/18.34 new_esEs9(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.34 new_esEs40(xuu700, xuu710, ty_Bool) -> new_esEs17(xuu700, xuu710) 37.21/18.34 new_ltEs19(xuu70, xuu71, app(app(ty_Either, gd), ge)) -> new_ltEs8(xuu70, xuu71, gd, ge) 37.21/18.34 new_compare19(Integer(xuu4000), Integer(xuu300)) -> new_primCmpInt(xuu4000, xuu300) 37.21/18.34 new_esEs6(xuu4002, xuu302, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs16(xuu4002, xuu302, bfe, bff, bfg) 37.21/18.34 new_lt20(xuu108, xuu111, ty_Char) -> new_lt12(xuu108, xuu111) 37.21/18.34 new_ltEs20(xuu110, xuu113, ty_@0) -> new_ltEs9(xuu110, xuu113) 37.21/18.34 new_esEs34(xuu40001, xuu3001, app(ty_Ratio, ceg)) -> new_esEs22(xuu40001, xuu3001, ceg) 37.21/18.34 new_gt(xuu19, xuu14, app(app(ty_Either, dee), def)) -> new_esEs41(new_compare11(xuu19, xuu14, dee, def)) 37.21/18.34 new_lt5(xuu700, xuu710, ty_Char) -> new_lt12(xuu700, xuu710) 37.21/18.34 new_esEs9(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.34 new_esEs7(xuu4000, xuu300, app(ty_Maybe, feb)) -> new_esEs23(xuu4000, xuu300, feb) 37.21/18.34 new_esEs28(xuu701, xuu711, ty_Bool) -> new_esEs17(xuu701, xuu711) 37.21/18.34 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.34 new_lt6(xuu701, xuu711, ty_@0) -> new_lt11(xuu701, xuu711) 37.21/18.34 new_ltEs5(xuu702, xuu712, app(app(ty_Either, fb), fc)) -> new_ltEs8(xuu702, xuu712, fb, fc) 37.21/18.34 new_esEs7(xuu4000, xuu300, app(app(ty_@2, fdb), fdc)) -> new_esEs15(xuu4000, xuu300, fdb, fdc) 37.21/18.34 new_esEs8(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.34 new_ltEs21(xuu84, xuu85, ty_@0) -> new_ltEs9(xuu84, xuu85) 37.21/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, app(app(app(ty_@3, eee), eef), eeg)) -> new_ltEs4(xuu700, xuu710, eee, eef, eeg) 37.21/18.34 new_ltEs12(True, True) -> True 37.21/18.34 new_ltEs15(xuu70, xuu71) -> new_fsEs(new_compare5(xuu70, xuu71)) 37.21/18.34 new_lt22(xuu121, xuu123, ty_@0) -> new_lt11(xuu121, xuu123) 37.21/18.34 new_ltEs21(xuu84, xuu85, app(ty_Ratio, ecc)) -> new_ltEs11(xuu84, xuu85, ecc) 37.21/18.34 new_lt22(xuu121, xuu123, ty_Bool) -> new_lt14(xuu121, xuu123) 37.21/18.34 new_esEs33(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.34 new_ltEs21(xuu84, xuu85, app(app(ty_@2, ece), ecf)) -> new_ltEs14(xuu84, xuu85, ece, ecf) 37.21/18.34 new_compare([], :(xuu300, xuu301), hb) -> LT 37.21/18.34 new_ltEs19(xuu70, xuu71, ty_Ordering) -> new_ltEs16(xuu70, xuu71) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cgb), bdf) -> new_esEs23(xuu40000, xuu3000, cgb) 37.21/18.34 new_esEs10(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.34 new_esEs8(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.34 new_esEs33(xuu40000, xuu3000, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.34 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.34 new_esEs35(xuu40000, xuu3000, app(ty_Ratio, dae)) -> new_esEs22(xuu40000, xuu3000, dae) 37.21/18.34 new_compare29(xuu77, xuu78, False, eff, efg) -> new_compare113(xuu77, xuu78, new_ltEs22(xuu77, xuu78, efg), eff, efg) 37.21/18.34 new_esEs5(xuu4001, xuu301, ty_Bool) -> new_esEs17(xuu4001, xuu301) 37.21/18.34 new_esEs10(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.34 new_ltEs21(xuu84, xuu85, ty_Double) -> new_ltEs15(xuu84, xuu85) 37.21/18.34 new_ltEs24(xuu701, xuu711, ty_Int) -> new_ltEs7(xuu701, xuu711) 37.21/18.34 new_ltEs24(xuu701, xuu711, app(app(ty_@2, fhh), gaa)) -> new_ltEs14(xuu701, xuu711, fhh, gaa) 37.21/18.34 new_esEs40(xuu700, xuu710, ty_@0) -> new_esEs24(xuu700, xuu710) 37.21/18.34 new_esEs31(xuu108, xuu111, app(ty_Maybe, bhg)) -> new_esEs23(xuu108, xuu111, bhg) 37.21/18.34 new_compare15(Nothing, Nothing, bae) -> EQ 37.21/18.34 new_esEs4(xuu4000, xuu300, app(ty_Maybe, bdg)) -> new_esEs23(xuu4000, xuu300, bdg) 37.21/18.34 new_esEs18(Right(xuu40000), Right(xuu3000), bde, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.34 new_esEs28(xuu701, xuu711, ty_Ordering) -> new_esEs20(xuu701, xuu711) 37.21/18.34 new_esEs40(xuu700, xuu710, app(app(ty_Either, fgb), fgc)) -> new_esEs18(xuu700, xuu710, fgb, fgc) 37.21/18.34 new_esEs39(xuu40000, xuu3000, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs16(xuu40000, xuu3000, fcb, fcc, fcd) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), app(ty_[], cgc), bdf) -> new_esEs26(xuu40000, xuu3000, cgc) 37.21/18.34 new_esEs8(xuu4000, xuu300, app(ty_[], ffe)) -> new_esEs26(xuu4000, xuu300, ffe) 37.21/18.34 new_esEs35(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.34 new_lt22(xuu121, xuu123, ty_Ordering) -> new_lt17(xuu121, xuu123) 37.21/18.34 new_ltEs13(Just(xuu700), Just(xuu710), ty_Int) -> new_ltEs7(xuu700, xuu710) 37.21/18.34 new_esEs18(Right(xuu40000), Right(xuu3000), bde, app(ty_[], che)) -> new_esEs26(xuu40000, xuu3000, che) 37.21/18.34 new_lt21(xuu109, xuu112, ty_@0) -> new_lt11(xuu109, xuu112) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Char, bdf) -> new_esEs19(xuu40000, xuu3000) 37.21/18.34 new_ltEs19(xuu70, xuu71, ty_@0) -> new_ltEs9(xuu70, xuu71) 37.21/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, app(app(ty_@2, efd), efe)) -> new_ltEs14(xuu700, xuu710, efd, efe) 37.21/18.34 new_compare17(GT, GT) -> EQ 37.21/18.34 new_esEs33(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.34 new_esEs4(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.34 new_compare7(xuu4000, xuu300, ty_Char) -> new_compare6(xuu4000, xuu300) 37.21/18.34 new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 37.21/18.34 new_lt24(xuu400, xuu30, ty_Float) -> new_lt18(xuu400, xuu30) 37.21/18.34 new_esEs26([], [], bdh) -> True 37.21/18.34 new_lt17(xuu400, xuu30) -> new_esEs14(new_compare17(xuu400, xuu30)) 37.21/18.34 new_ltEs23(xuu122, xuu124, app(ty_[], faf)) -> new_ltEs6(xuu122, xuu124, faf) 37.21/18.34 new_lt5(xuu700, xuu710, ty_Bool) -> new_lt14(xuu700, xuu710) 37.21/18.34 new_compare114(xuu167, xuu168, True, eaa) -> LT 37.21/18.34 new_compare111(xuu195, xuu196, xuu197, xuu198, True, bbh, bca) -> LT 37.21/18.34 new_compare10(xuu151, xuu152, False, dhg, dhh) -> GT 37.21/18.34 new_esEs31(xuu108, xuu111, app(ty_[], bgh)) -> new_esEs26(xuu108, xuu111, bgh) 37.21/18.34 new_esEs17(False, True) -> False 37.21/18.34 new_esEs17(True, False) -> False 37.21/18.34 new_esEs39(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.34 new_esEs7(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.34 new_esEs34(xuu40001, xuu3001, ty_@0) -> new_esEs24(xuu40001, xuu3001) 37.21/18.34 new_esEs34(xuu40001, xuu3001, ty_Ordering) -> new_esEs20(xuu40001, xuu3001) 37.21/18.34 new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, False, ecg, ech, eda) -> GT 37.21/18.34 new_primCmpInt(Pos(Succ(xuu40000)), Pos(xuu300)) -> new_primCmpNat0(Succ(xuu40000), xuu300) 37.21/18.34 new_esEs39(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.34 new_primCompAux00(xuu49, EQ) -> xuu49 37.21/18.34 new_lt5(xuu700, xuu710, ty_Ordering) -> new_lt17(xuu700, xuu710) 37.21/18.34 new_compare5(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.34 new_esEs10(xuu4000, xuu300, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs16(xuu4000, xuu300, dfe, dff, dfg) 37.21/18.34 new_esEs10(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.34 new_ltEs5(xuu702, xuu712, app(ty_[], ef)) -> new_ltEs6(xuu702, xuu712, ef) 37.21/18.34 new_ltEs13(Nothing, Nothing, gg) -> True 37.21/18.34 new_ltEs13(Just(xuu700), Just(xuu710), app(app(ty_@2, ebb), ebc)) -> new_ltEs14(xuu700, xuu710, ebb, ebc) 37.21/18.34 new_ltEs13(Just(xuu700), Nothing, gg) -> False 37.21/18.34 new_esEs11(xuu4001, xuu301, ty_Char) -> new_esEs19(xuu4001, xuu301) 37.21/18.34 new_esEs8(xuu4000, xuu300, app(app(ty_@2, fed), fee)) -> new_esEs15(xuu4000, xuu300, fed, fee) 37.21/18.34 new_esEs23(Just(xuu40000), Just(xuu3000), app(app(ty_Either, gag), gah)) -> new_esEs18(xuu40000, xuu3000, gag, gah) 37.21/18.34 new_primMulNat0(Succ(xuu400000), Succ(xuu30100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu30100)), Succ(xuu30100)) 37.21/18.34 new_ltEs12(True, False) -> False 37.21/18.34 new_esEs7(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.34 new_compare7(xuu4000, xuu300, ty_Ordering) -> new_compare17(xuu4000, xuu300) 37.21/18.34 new_lt5(xuu700, xuu710, ty_Integer) -> new_lt19(xuu700, xuu710) 37.21/18.34 new_gt(xuu19, xuu14, app(app(ty_@2, dfa), dfb)) -> new_esEs41(new_compare16(xuu19, xuu14, dfa, dfb)) 37.21/18.34 new_lt20(xuu108, xuu111, app(app(app(ty_@3, bha), bhb), bhc)) -> new_lt8(xuu108, xuu111, bha, bhb, bhc) 37.21/18.34 new_esEs39(xuu40000, xuu3000, app(app(ty_Either, fce), fcf)) -> new_esEs18(xuu40000, xuu3000, fce, fcf) 37.21/18.34 new_esEs35(xuu40000, xuu3000, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.34 new_lt10(xuu400, xuu30, bcc, bcd) -> new_esEs14(new_compare11(xuu400, xuu30, bcc, bcd)) 37.21/18.34 new_gt(xuu19, xuu14, ty_Integer) -> new_esEs41(new_compare19(xuu19, xuu14)) 37.21/18.34 new_ltEs17(xuu70, xuu71) -> new_fsEs(new_compare18(xuu70, xuu71)) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), ty_Ordering, ge) -> new_ltEs16(xuu700, xuu710) 37.21/18.34 new_lt21(xuu109, xuu112, ty_Int) -> new_lt9(xuu109, xuu112) 37.21/18.34 new_esEs28(xuu701, xuu711, app(app(ty_@2, ed), ee)) -> new_esEs15(xuu701, xuu711, ed, ee) 37.21/18.34 new_esEs10(xuu4000, xuu300, app(ty_Ratio, dgb)) -> new_esEs22(xuu4000, xuu300, dgb) 37.21/18.34 new_esEs11(xuu4001, xuu301, app(ty_Maybe, dhe)) -> new_esEs23(xuu4001, xuu301, dhe) 37.21/18.34 new_ltEs5(xuu702, xuu712, ty_Integer) -> new_ltEs18(xuu702, xuu712) 37.21/18.34 new_esEs5(xuu4001, xuu301, ty_Char) -> new_esEs19(xuu4001, xuu301) 37.21/18.34 new_ltEs12(False, False) -> True 37.21/18.34 new_esEs35(xuu40000, xuu3000, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.34 new_esEs10(xuu4000, xuu300, app(ty_Maybe, dgc)) -> new_esEs23(xuu4000, xuu300, dgc) 37.21/18.34 new_lt6(xuu701, xuu711, ty_Ordering) -> new_lt17(xuu701, xuu711) 37.21/18.34 new_esEs36(xuu40001, xuu3001, ty_Float) -> new_esEs21(xuu40001, xuu3001) 37.21/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, ty_Double) -> new_ltEs15(xuu700, xuu710) 37.21/18.34 new_ltEs24(xuu701, xuu711, app(ty_[], fgh)) -> new_ltEs6(xuu701, xuu711, fgh) 37.21/18.34 new_lt22(xuu121, xuu123, ty_Int) -> new_lt9(xuu121, xuu123) 37.21/18.34 new_ltEs24(xuu701, xuu711, app(ty_Ratio, fhf)) -> new_ltEs11(xuu701, xuu711, fhf) 37.21/18.34 new_compare17(EQ, EQ) -> EQ 37.21/18.34 new_esEs41(GT) -> True 37.21/18.34 new_lt21(xuu109, xuu112, app(ty_Maybe, cba)) -> new_lt15(xuu109, xuu112, cba) 37.21/18.34 new_esEs6(xuu4002, xuu302, ty_Double) -> new_esEs12(xuu4002, xuu302) 37.21/18.34 new_esEs34(xuu40001, xuu3001, app(app(ty_Either, cee), cef)) -> new_esEs18(xuu40001, xuu3001, cee, cef) 37.21/18.34 new_compare8(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), bce, bcf, bcg) -> new_compare27(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs4(xuu4000, xuu300, bce), new_asAs(new_esEs5(xuu4001, xuu301, bcf), new_esEs6(xuu4002, xuu302, bcg))), bce, bcf, bcg) 37.21/18.34 new_compare27(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, bge, bgf, bgg) -> new_compare112(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, new_lt20(xuu108, xuu111, bge), new_asAs(new_esEs31(xuu108, xuu111, bge), new_pePe(new_lt21(xuu109, xuu112, bgf), new_asAs(new_esEs32(xuu109, xuu112, bgf), new_ltEs20(xuu110, xuu113, bgg)))), bge, bgf, bgg) 37.21/18.34 new_gt(xuu19, xuu14, app(ty_Ratio, deg)) -> new_esEs41(new_compare13(xuu19, xuu14, deg)) 37.21/18.34 new_lt21(xuu109, xuu112, ty_Ordering) -> new_lt17(xuu109, xuu112) 37.21/18.34 new_esEs39(xuu40000, xuu3000, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.34 new_lt5(xuu700, xuu710, app(ty_Maybe, da)) -> new_lt15(xuu700, xuu710, da) 37.21/18.34 new_esEs17(True, True) -> True 37.21/18.34 new_compare18(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.34 new_ltEs22(xuu77, xuu78, app(ty_[], efh)) -> new_ltEs6(xuu77, xuu78, efh) 37.21/18.34 new_esEs38(xuu121, xuu123, ty_Char) -> new_esEs19(xuu121, xuu123) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), ty_Float, ge) -> new_ltEs17(xuu700, xuu710) 37.21/18.34 new_gt(xuu19, xuu14, ty_Double) -> new_esEs41(new_compare5(xuu19, xuu14)) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), ty_Integer, ge) -> new_ltEs18(xuu700, xuu710) 37.21/18.34 new_esEs28(xuu701, xuu711, app(ty_[], dd)) -> new_esEs26(xuu701, xuu711, dd) 37.21/18.34 new_esEs26(:(xuu40000, xuu40001), [], bdh) -> False 37.21/18.34 new_esEs26([], :(xuu3000, xuu3001), bdh) -> False 37.21/18.34 new_ltEs8(Left(xuu700), Right(xuu710), gd, ge) -> True 37.21/18.34 new_esEs35(xuu40000, xuu3000, app(app(ty_Either, dac), dad)) -> new_esEs18(xuu40000, xuu3000, dac, dad) 37.21/18.34 new_esEs4(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.34 new_lt8(xuu400, xuu30, bce, bcf, bcg) -> new_esEs14(new_compare8(xuu400, xuu30, bce, bcf, bcg)) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Float, bdf) -> new_esEs21(xuu40000, xuu3000) 37.21/18.34 new_compare14(True, False) -> GT 37.21/18.34 new_esEs36(xuu40001, xuu3001, ty_Integer) -> new_esEs25(xuu40001, xuu3001) 37.21/18.34 new_primPlusNat0(Succ(xuu39200), Succ(xuu13400)) -> Succ(Succ(new_primPlusNat0(xuu39200, xuu13400))) 37.21/18.34 new_ltEs10(xuu70, xuu71) -> new_fsEs(new_compare6(xuu70, xuu71)) 37.21/18.34 new_esEs36(xuu40001, xuu3001, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs16(xuu40001, xuu3001, dbb, dbc, dbd) 37.21/18.34 new_esEs31(xuu108, xuu111, app(ty_Ratio, bhf)) -> new_esEs22(xuu108, xuu111, bhf) 37.21/18.34 new_esEs18(Right(xuu40000), Right(xuu3000), bde, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.34 new_esEs37(xuu40002, xuu3002, ty_Float) -> new_esEs21(xuu40002, xuu3002) 37.21/18.34 new_esEs5(xuu4001, xuu301, ty_Float) -> new_esEs21(xuu4001, xuu301) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), app(ty_Maybe, eea), ge) -> new_ltEs13(xuu700, xuu710, eea) 37.21/18.34 new_esEs36(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), app(app(ty_@2, eeb), eec), ge) -> new_ltEs14(xuu700, xuu710, eeb, eec) 37.21/18.34 new_lt20(xuu108, xuu111, ty_Int) -> new_lt9(xuu108, xuu111) 37.21/18.34 new_esEs30(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 37.21/18.34 new_esEs37(xuu40002, xuu3002, app(ty_Maybe, ddb)) -> new_esEs23(xuu40002, xuu3002, ddb) 37.21/18.34 new_esEs4(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.34 new_lt11(xuu400, xuu30) -> new_esEs14(new_compare12(xuu400, xuu30)) 37.21/18.34 new_esEs40(xuu700, xuu710, ty_Float) -> new_esEs21(xuu700, xuu710) 37.21/18.34 new_esEs28(xuu701, xuu711, app(ty_Ratio, eb)) -> new_esEs22(xuu701, xuu711, eb) 37.21/18.34 new_ltEs20(xuu110, xuu113, app(ty_[], cbd)) -> new_ltEs6(xuu110, xuu113, cbd) 37.21/18.34 new_esEs20(LT, GT) -> False 37.21/18.34 new_esEs20(GT, LT) -> False 37.21/18.34 new_lt24(xuu400, xuu30, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt8(xuu400, xuu30, bce, bcf, bcg) 37.21/18.34 new_lt14(xuu400, xuu30) -> new_esEs14(new_compare14(xuu400, xuu30)) 37.21/18.34 new_lt23(xuu700, xuu710, ty_Float) -> new_lt18(xuu700, xuu710) 37.21/18.34 new_lt23(xuu700, xuu710, ty_Integer) -> new_lt19(xuu700, xuu710) 37.21/18.34 new_lt20(xuu108, xuu111, app(ty_Maybe, bhg)) -> new_lt15(xuu108, xuu111, bhg) 37.21/18.34 new_esEs36(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) 37.21/18.34 new_lt5(xuu700, xuu710, ty_Int) -> new_lt9(xuu700, xuu710) 37.21/18.34 new_ltEs13(Just(xuu700), Just(xuu710), app(ty_Ratio, eah)) -> new_ltEs11(xuu700, xuu710, eah) 37.21/18.34 new_lt18(xuu400, xuu30) -> new_esEs14(new_compare18(xuu400, xuu30)) 37.21/18.34 new_esEs18(Left(xuu40000), Right(xuu3000), bde, bdf) -> False 37.21/18.34 new_esEs18(Right(xuu40000), Left(xuu3000), bde, bdf) -> False 37.21/18.34 new_compare7(xuu4000, xuu300, ty_Integer) -> new_compare19(xuu4000, xuu300) 37.21/18.34 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.34 new_ltEs21(xuu84, xuu85, ty_Float) -> new_ltEs17(xuu84, xuu85) 37.21/18.34 new_esEs40(xuu700, xuu710, ty_Integer) -> new_esEs25(xuu700, xuu710) 37.21/18.34 new_lt21(xuu109, xuu112, app(app(app(ty_@3, cac), cad), cae)) -> new_lt8(xuu109, xuu112, cac, cad, cae) 37.21/18.34 new_esEs4(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.34 new_esEs37(xuu40002, xuu3002, ty_@0) -> new_esEs24(xuu40002, xuu3002) 37.21/18.34 new_esEs17(False, False) -> True 37.21/18.34 new_esEs38(xuu121, xuu123, app(app(ty_Either, ehh), faa)) -> new_esEs18(xuu121, xuu123, ehh, faa) 37.21/18.34 new_esEs34(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 37.21/18.34 new_lt21(xuu109, xuu112, ty_Integer) -> new_lt19(xuu109, xuu112) 37.21/18.34 new_compare7(xuu4000, xuu300, app(app(app(ty_@3, hd), he), hf)) -> new_compare8(xuu4000, xuu300, hd, he, hf) 37.21/18.34 new_compare29(xuu77, xuu78, True, eff, efg) -> EQ 37.21/18.34 new_esEs35(xuu40000, xuu3000, app(ty_Maybe, daf)) -> new_esEs23(xuu40000, xuu3000, daf) 37.21/18.34 new_primCmpNat0(Succ(xuu40000), Succ(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) 37.21/18.34 new_lt6(xuu701, xuu711, ty_Integer) -> new_lt19(xuu701, xuu711) 37.21/18.34 new_esEs18(Right(xuu40000), Right(xuu3000), bde, app(app(ty_@2, cgd), cge)) -> new_esEs15(xuu40000, xuu3000, cgd, cge) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), app(ty_Ratio, cga), bdf) -> new_esEs22(xuu40000, xuu3000, cga) 37.21/18.34 new_esEs28(xuu701, xuu711, ty_Int) -> new_esEs13(xuu701, xuu711) 37.21/18.34 new_esEs11(xuu4001, xuu301, ty_Bool) -> new_esEs17(xuu4001, xuu301) 37.21/18.34 new_compare11(Left(xuu4000), Right(xuu300), bcc, bcd) -> LT 37.21/18.34 new_esEs11(xuu4001, xuu301, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs16(xuu4001, xuu301, dgg, dgh, dha) 37.21/18.34 new_esEs32(xuu109, xuu112, ty_Ordering) -> new_esEs20(xuu109, xuu112) 37.21/18.34 new_esEs39(xuu40000, xuu3000, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.34 new_compare27(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, True, bge, bgf, bgg) -> EQ 37.21/18.34 new_lt23(xuu700, xuu710, app(app(app(ty_@3, ffg), ffh), fga)) -> new_lt8(xuu700, xuu710, ffg, ffh, fga) 37.21/18.34 new_esEs8(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.34 new_esEs34(xuu40001, xuu3001, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs16(xuu40001, xuu3001, ceb, cec, ced) 37.21/18.34 new_esEs27(xuu700, xuu710, ty_Int) -> new_esEs13(xuu700, xuu710) 37.21/18.34 new_esEs10(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.34 new_esEs33(xuu40000, xuu3000, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.34 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cfb), cfc), bdf) -> new_esEs15(xuu40000, xuu3000, cfb, cfc) 37.21/18.34 new_esEs35(xuu40000, xuu3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs16(xuu40000, xuu3000, chh, daa, dab) 37.21/18.34 new_ltEs20(xuu110, xuu113, ty_Float) -> new_ltEs17(xuu110, xuu113) 37.21/18.34 new_esEs9(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.34 new_esEs37(xuu40002, xuu3002, app(app(ty_Either, dcg), dch)) -> new_esEs18(xuu40002, xuu3002, dcg, dch) 37.21/18.34 new_gt(xuu19, xuu14, ty_Float) -> new_esEs41(new_compare18(xuu19, xuu14)) 37.21/18.34 new_lt22(xuu121, xuu123, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt8(xuu121, xuu123, ehe, ehf, ehg) 37.21/18.34 new_esEs38(xuu121, xuu123, ty_Float) -> new_esEs21(xuu121, xuu123) 37.21/18.34 new_esEs23(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.34 new_esEs35(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.34 new_ltEs13(Nothing, Just(xuu710), gg) -> True 37.21/18.34 new_esEs38(xuu121, xuu123, ty_@0) -> new_esEs24(xuu121, xuu123) 37.21/18.34 new_esEs36(xuu40001, xuu3001, app(ty_Maybe, dbh)) -> new_esEs23(xuu40001, xuu3001, dbh) 37.21/18.34 new_ltEs19(xuu70, xuu71, ty_Float) -> new_ltEs17(xuu70, xuu71) 37.21/18.34 new_esEs37(xuu40002, xuu3002, ty_Char) -> new_esEs19(xuu40002, xuu3002) 37.21/18.34 new_ltEs21(xuu84, xuu85, app(ty_[], ebe)) -> new_ltEs6(xuu84, xuu85, ebe) 37.21/18.34 new_compare17(GT, LT) -> GT 37.21/18.34 new_esEs38(xuu121, xuu123, ty_Integer) -> new_esEs25(xuu121, xuu123) 37.21/18.34 new_lt22(xuu121, xuu123, ty_Integer) -> new_lt19(xuu121, xuu123) 37.21/18.34 new_ltEs24(xuu701, xuu711, ty_Char) -> new_ltEs10(xuu701, xuu711) 37.21/18.34 new_esEs27(xuu700, xuu710, app(ty_[], ca)) -> new_esEs26(xuu700, xuu710, ca) 37.21/18.34 new_primCmpInt(Neg(Succ(xuu40000)), Pos(xuu300)) -> LT 37.21/18.34 new_lt15(xuu400, xuu30, bae) -> new_esEs14(new_compare15(xuu400, xuu30, bae)) 37.21/18.34 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.34 new_esEs36(xuu40001, xuu3001, ty_Ordering) -> new_esEs20(xuu40001, xuu3001) 37.21/18.34 new_ltEs13(Just(xuu700), Just(xuu710), app(ty_Maybe, eba)) -> new_ltEs13(xuu700, xuu710, eba) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), app(ty_Ratio, edh), ge) -> new_ltEs11(xuu700, xuu710, edh) 37.21/18.34 new_fsEs(xuu211) -> new_not(new_esEs20(xuu211, GT)) 37.21/18.34 new_compare(:(xuu4000, xuu4001), [], hb) -> GT 37.21/18.34 new_ltEs20(xuu110, xuu113, ty_Integer) -> new_ltEs18(xuu110, xuu113) 37.21/18.34 new_esEs6(xuu4002, xuu302, app(ty_[], bgd)) -> new_esEs26(xuu4002, xuu302, bgd) 37.21/18.34 new_esEs37(xuu40002, xuu3002, ty_Bool) -> new_esEs17(xuu40002, xuu3002) 37.21/18.34 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3000))) -> GT 37.21/18.34 new_compare(:(xuu4000, xuu4001), :(xuu300, xuu301), hb) -> new_primCompAux0(xuu4000, xuu300, new_compare(xuu4001, xuu301, hb), hb) 37.21/18.34 new_compare5(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.34 new_compare5(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.34 new_esEs14(GT) -> False 37.21/18.34 new_ltEs22(xuu77, xuu78, app(ty_Ratio, egf)) -> new_ltEs11(xuu77, xuu78, egf) 37.21/18.34 new_primCmpInt(Neg(Succ(xuu40000)), Neg(xuu300)) -> new_primCmpNat0(xuu300, Succ(xuu40000)) 37.21/18.34 new_esEs5(xuu4001, xuu301, app(app(ty_Either, bef), beg)) -> new_esEs18(xuu4001, xuu301, bef, beg) 37.21/18.34 new_esEs4(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), ty_@0, bdf) -> new_esEs24(xuu40000, xuu3000) 37.21/18.34 new_esEs5(xuu4001, xuu301, ty_@0) -> new_esEs24(xuu4001, xuu301) 37.21/18.34 new_lt24(xuu400, xuu30, ty_Integer) -> new_lt19(xuu400, xuu30) 37.21/18.34 new_ltEs5(xuu702, xuu712, ty_@0) -> new_ltEs9(xuu702, xuu712) 37.21/18.34 new_ltEs22(xuu77, xuu78, app(app(ty_@2, egh), eha)) -> new_ltEs14(xuu77, xuu78, egh, eha) 37.21/18.34 new_esEs41(EQ) -> False 37.21/18.34 new_compare28(xuu121, xuu122, xuu123, xuu124, True, ehb, ehc) -> EQ 37.21/18.34 new_esEs36(xuu40001, xuu3001, app(app(ty_Either, dbe), dbf)) -> new_esEs18(xuu40001, xuu3001, dbe, dbf) 37.21/18.34 new_ltEs20(xuu110, xuu113, ty_Bool) -> new_ltEs12(xuu110, xuu113) 37.21/18.34 new_compare17(GT, EQ) -> GT 37.21/18.34 new_esEs19(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 37.21/18.34 new_esEs11(xuu4001, xuu301, ty_@0) -> new_esEs24(xuu4001, xuu301) 37.21/18.34 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 37.21/18.34 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 37.21/18.34 new_compare110(xuu195, xuu196, xuu197, xuu198, False, xuu200, bbh, bca) -> new_compare111(xuu195, xuu196, xuu197, xuu198, xuu200, bbh, bca) 37.21/18.34 new_esEs37(xuu40002, xuu3002, app(app(ty_@2, dcb), dcc)) -> new_esEs15(xuu40002, xuu3002, dcb, dcc) 37.21/18.34 new_esEs22(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bcb) -> new_asAs(new_esEs29(xuu40000, xuu3000, bcb), new_esEs30(xuu40001, xuu3001, bcb)) 37.21/18.34 new_esEs37(xuu40002, xuu3002, ty_Integer) -> new_esEs25(xuu40002, xuu3002) 37.21/18.34 new_lt6(xuu701, xuu711, app(app(app(ty_@3, de), df), dg)) -> new_lt8(xuu701, xuu711, de, df, dg) 37.21/18.34 new_esEs11(xuu4001, xuu301, ty_Ordering) -> new_esEs20(xuu4001, xuu301) 37.21/18.34 new_esEs32(xuu109, xuu112, app(app(ty_@2, cbb), cbc)) -> new_esEs15(xuu109, xuu112, cbb, cbc) 37.21/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, ty_Ordering) -> new_ltEs16(xuu700, xuu710) 37.21/18.34 new_compare112(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, True, xuu187, ecg, ech, eda) -> new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, True, ecg, ech, eda) 37.21/18.34 new_esEs14(EQ) -> False 37.21/18.34 new_lt23(xuu700, xuu710, ty_@0) -> new_lt11(xuu700, xuu710) 37.21/18.34 new_esEs8(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.34 new_lt16(xuu400, xuu30, dde, ddf) -> new_esEs14(new_compare16(xuu400, xuu30, dde, ddf)) 37.21/18.34 new_esEs23(Nothing, Just(xuu3000), bdg) -> False 37.21/18.34 new_esEs23(Just(xuu40000), Nothing, bdg) -> False 37.21/18.34 new_ltEs20(xuu110, xuu113, app(app(ty_Either, cbh), cca)) -> new_ltEs8(xuu110, xuu113, cbh, cca) 37.21/18.34 new_esEs31(xuu108, xuu111, ty_Ordering) -> new_esEs20(xuu108, xuu111) 37.21/18.34 new_ltEs5(xuu702, xuu712, ty_Double) -> new_ltEs15(xuu702, xuu712) 37.21/18.34 new_ltEs13(Just(xuu700), Just(xuu710), ty_Char) -> new_ltEs10(xuu700, xuu710) 37.21/18.34 new_ltEs23(xuu122, xuu124, ty_Float) -> new_ltEs17(xuu122, xuu124) 37.21/18.34 new_primCmpNat0(Zero, Zero) -> EQ 37.21/18.34 new_esEs29(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.34 new_gt(xuu19, xuu14, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs41(new_compare8(xuu19, xuu14, deb, dec, ded)) 37.21/18.34 new_lt6(xuu701, xuu711, ty_Int) -> new_lt9(xuu701, xuu711) 37.21/18.34 new_lt20(xuu108, xuu111, ty_Bool) -> new_lt14(xuu108, xuu111) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), app(app(app(ty_@3, edc), edd), ede), ge) -> new_ltEs4(xuu700, xuu710, edc, edd, ede) 37.21/18.34 new_esEs27(xuu700, xuu710, ty_Bool) -> new_esEs17(xuu700, xuu710) 37.21/18.34 new_ltEs5(xuu702, xuu712, app(ty_Ratio, fd)) -> new_ltEs11(xuu702, xuu712, fd) 37.21/18.34 new_esEs33(xuu40000, xuu3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs16(xuu40000, xuu3000, cch, cda, cdb) 37.21/18.34 new_esEs23(Nothing, Nothing, bdg) -> True 37.21/18.34 new_ltEs16(GT, EQ) -> False 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Ordering, bdf) -> new_esEs20(xuu40000, xuu3000) 37.21/18.34 new_esEs5(xuu4001, xuu301, ty_Ordering) -> new_esEs20(xuu4001, xuu301) 37.21/18.34 new_esEs36(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 37.21/18.34 new_esEs40(xuu700, xuu710, ty_Char) -> new_esEs19(xuu700, xuu710) 37.21/18.34 new_lt23(xuu700, xuu710, app(ty_[], fff)) -> new_lt7(xuu700, xuu710, fff) 37.21/18.34 new_compare7(xuu4000, xuu300, ty_Int) -> new_compare9(xuu4000, xuu300) 37.21/18.34 new_esEs34(xuu40001, xuu3001, app(ty_Maybe, ceh)) -> new_esEs23(xuu40001, xuu3001, ceh) 37.21/18.34 new_compare13(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Int) -> new_compare9(new_sr(xuu4000, xuu301), new_sr(xuu300, xuu4001)) 37.21/18.34 new_esEs36(xuu40001, xuu3001, ty_@0) -> new_esEs24(xuu40001, xuu3001) 37.21/18.34 new_compare114(xuu167, xuu168, False, eaa) -> GT 37.21/18.34 new_lt9(xuu400, xuu30) -> new_esEs14(new_compare9(xuu400, xuu30)) 37.21/18.34 new_ltEs13(Just(xuu700), Just(xuu710), ty_Double) -> new_ltEs15(xuu700, xuu710) 37.21/18.34 new_esEs33(xuu40000, xuu3000, app(ty_Ratio, cde)) -> new_esEs22(xuu40000, xuu3000, cde) 37.21/18.34 new_esEs35(xuu40000, xuu3000, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.34 new_ltEs22(xuu77, xuu78, ty_Int) -> new_ltEs7(xuu77, xuu78) 37.21/18.34 new_esEs35(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.34 new_primCompAux00(xuu49, GT) -> GT 37.21/18.34 new_esEs6(xuu4002, xuu302, ty_Float) -> new_esEs21(xuu4002, xuu302) 37.21/18.34 new_esEs6(xuu4002, xuu302, ty_Integer) -> new_esEs25(xuu4002, xuu302) 37.21/18.34 new_ltEs24(xuu701, xuu711, ty_Double) -> new_ltEs15(xuu701, xuu711) 37.21/18.34 new_ltEs16(LT, LT) -> True 37.21/18.34 new_compare15(Just(xuu4000), Just(xuu300), bae) -> new_compare26(xuu4000, xuu300, new_esEs9(xuu4000, xuu300, bae), bae) 37.21/18.34 new_compare7(xuu4000, xuu300, app(ty_Maybe, bab)) -> new_compare15(xuu4000, xuu300, bab) 37.21/18.34 new_esEs28(xuu701, xuu711, ty_Char) -> new_esEs19(xuu701, xuu711) 37.21/18.34 new_compare17(EQ, LT) -> GT 37.21/18.34 new_lt7(xuu400, xuu30, hb) -> new_esEs14(new_compare(xuu400, xuu30, hb)) 37.21/18.34 new_esEs27(xuu700, xuu710, app(ty_Maybe, da)) -> new_esEs23(xuu700, xuu710, da) 37.21/18.34 new_esEs27(xuu700, xuu710, app(app(ty_@2, db), dc)) -> new_esEs15(xuu700, xuu710, db, dc) 37.21/18.34 new_esEs11(xuu4001, xuu301, app(app(ty_Either, dhb), dhc)) -> new_esEs18(xuu4001, xuu301, dhb, dhc) 37.21/18.34 new_esEs23(Just(xuu40000), Just(xuu3000), app(ty_Maybe, gbb)) -> new_esEs23(xuu40000, xuu3000, gbb) 37.21/18.34 new_lt6(xuu701, xuu711, app(ty_Maybe, ec)) -> new_lt15(xuu701, xuu711, ec) 37.21/18.34 new_ltEs13(Just(xuu700), Just(xuu710), ty_@0) -> new_ltEs9(xuu700, xuu710) 37.21/18.34 new_esEs32(xuu109, xuu112, ty_Bool) -> new_esEs17(xuu109, xuu112) 37.21/18.34 new_lt24(xuu400, xuu30, ty_Char) -> new_lt12(xuu400, xuu30) 37.21/18.34 new_esEs31(xuu108, xuu111, ty_Int) -> new_esEs13(xuu108, xuu111) 37.21/18.34 new_ltEs23(xuu122, xuu124, app(app(app(ty_@3, fag), fah), fba)) -> new_ltEs4(xuu122, xuu124, fag, fah, fba) 37.21/18.34 new_esEs9(xuu4000, xuu300, app(app(ty_@2, baf), bag)) -> new_esEs15(xuu4000, xuu300, baf, bag) 37.21/18.34 new_lt22(xuu121, xuu123, ty_Float) -> new_lt18(xuu121, xuu123) 37.21/18.34 new_esEs34(xuu40001, xuu3001, app(ty_[], cfa)) -> new_esEs26(xuu40001, xuu3001, cfa) 37.21/18.34 new_esEs4(xuu4000, xuu300, app(app(ty_@2, bch), bda)) -> new_esEs15(xuu4000, xuu300, bch, bda) 37.21/18.34 new_primCmpNat0(Succ(xuu40000), Zero) -> GT 37.21/18.34 new_esEs9(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.34 new_pePe(False, xuu210) -> xuu210 37.21/18.34 new_lt20(xuu108, xuu111, ty_@0) -> new_lt11(xuu108, xuu111) 37.21/18.34 new_esEs33(xuu40000, xuu3000, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.34 new_esEs33(xuu40000, xuu3000, app(app(ty_Either, cdc), cdd)) -> new_esEs18(xuu40000, xuu3000, cdc, cdd) 37.21/18.34 new_compare25(xuu70, xuu71, True, ga, gb) -> EQ 37.21/18.34 new_ltEs22(xuu77, xuu78, ty_Double) -> new_ltEs15(xuu77, xuu78) 37.21/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, ty_Integer) -> new_ltEs18(xuu700, xuu710) 37.21/18.34 new_lt22(xuu121, xuu123, app(ty_Maybe, fac)) -> new_lt15(xuu121, xuu123, fac) 37.21/18.34 new_ltEs16(LT, GT) -> True 37.21/18.34 new_esEs39(xuu40000, xuu3000, app(ty_Maybe, fch)) -> new_esEs23(xuu40000, xuu3000, fch) 37.21/18.34 new_lt23(xuu700, xuu710, ty_Bool) -> new_lt14(xuu700, xuu710) 37.21/18.34 new_esEs8(xuu4000, xuu300, app(app(ty_Either, ffa), ffb)) -> new_esEs18(xuu4000, xuu300, ffa, ffb) 37.21/18.34 new_ltEs16(LT, EQ) -> True 37.21/18.34 new_ltEs16(EQ, LT) -> False 37.21/18.34 new_compare110(xuu195, xuu196, xuu197, xuu198, True, xuu200, bbh, bca) -> new_compare111(xuu195, xuu196, xuu197, xuu198, True, bbh, bca) 37.21/18.34 new_esEs16(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bdb, bdc, bdd) -> new_asAs(new_esEs35(xuu40000, xuu3000, bdb), new_asAs(new_esEs36(xuu40001, xuu3001, bdc), new_esEs37(xuu40002, xuu3002, bdd))) 37.21/18.34 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 37.21/18.34 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 37.21/18.34 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.34 new_lt6(xuu701, xuu711, ty_Float) -> new_lt18(xuu701, xuu711) 37.21/18.34 new_esEs38(xuu121, xuu123, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs16(xuu121, xuu123, ehe, ehf, ehg) 37.21/18.34 new_compare7(xuu4000, xuu300, ty_@0) -> new_compare12(xuu4000, xuu300) 37.21/18.34 new_ltEs16(GT, LT) -> False 37.21/18.34 new_ltEs11(xuu70, xuu71, gf) -> new_fsEs(new_compare13(xuu70, xuu71, gf)) 37.21/18.34 new_esEs20(LT, EQ) -> False 37.21/18.34 new_esEs20(EQ, LT) -> False 37.21/18.34 new_compare17(LT, LT) -> EQ 37.21/18.34 new_ltEs5(xuu702, xuu712, app(ty_Maybe, ff)) -> new_ltEs13(xuu702, xuu712, ff) 37.21/18.34 new_esEs37(xuu40002, xuu3002, ty_Double) -> new_esEs12(xuu40002, xuu3002) 37.21/18.34 new_gt(xuu19, xuu14, ty_Ordering) -> new_esEs41(new_compare17(xuu19, xuu14)) 37.21/18.34 new_gt(xuu19, xuu14, app(ty_[], dea)) -> new_esEs41(new_compare(xuu19, xuu14, dea)) 37.21/18.34 new_esEs32(xuu109, xuu112, ty_Float) -> new_esEs21(xuu109, xuu112) 37.21/18.34 new_ltEs7(xuu70, xuu71) -> new_fsEs(new_compare9(xuu70, xuu71)) 37.21/18.34 new_ltEs22(xuu77, xuu78, ty_@0) -> new_ltEs9(xuu77, xuu78) 37.21/18.34 new_esEs9(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.34 new_esEs31(xuu108, xuu111, ty_@0) -> new_esEs24(xuu108, xuu111) 37.21/18.34 new_esEs4(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.34 new_esEs40(xuu700, xuu710, ty_Double) -> new_esEs12(xuu700, xuu710) 37.21/18.34 new_lt5(xuu700, xuu710, ty_@0) -> new_lt11(xuu700, xuu710) 37.21/18.34 new_ltEs5(xuu702, xuu712, app(app(ty_@2, fg), fh)) -> new_ltEs14(xuu702, xuu712, fg, fh) 37.21/18.34 new_esEs31(xuu108, xuu111, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs16(xuu108, xuu111, bha, bhb, bhc) 37.21/18.34 new_esEs36(xuu40001, xuu3001, app(ty_Ratio, dbg)) -> new_esEs22(xuu40001, xuu3001, dbg) 37.21/18.34 new_esEs32(xuu109, xuu112, app(ty_Maybe, cba)) -> new_esEs23(xuu109, xuu112, cba) 37.21/18.34 new_esEs11(xuu4001, xuu301, app(ty_Ratio, dhd)) -> new_esEs22(xuu4001, xuu301, dhd) 37.21/18.34 new_esEs39(xuu40000, xuu3000, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.34 new_esEs34(xuu40001, xuu3001, ty_Integer) -> new_esEs25(xuu40001, xuu3001) 37.21/18.34 new_esEs9(xuu4000, xuu300, app(ty_[], bbg)) -> new_esEs26(xuu4000, xuu300, bbg) 37.21/18.34 new_compare7(xuu4000, xuu300, ty_Float) -> new_compare18(xuu4000, xuu300) 37.21/18.34 new_esEs10(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.34 new_esEs33(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.34 new_compare14(False, True) -> LT 37.21/18.34 new_esEs7(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.34 new_compare7(xuu4000, xuu300, app(app(ty_Either, hg), hh)) -> new_compare11(xuu4000, xuu300, hg, hh) 37.21/18.34 new_ltEs16(EQ, GT) -> True 37.21/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, app(app(ty_Either, eeh), efa)) -> new_ltEs8(xuu700, xuu710, eeh, efa) 37.21/18.34 new_ltEs16(EQ, EQ) -> True 37.21/18.34 new_esEs34(xuu40001, xuu3001, ty_Float) -> new_esEs21(xuu40001, xuu3001) 37.21/18.34 new_esEs8(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.34 new_lt21(xuu109, xuu112, app(app(ty_Either, caf), cag)) -> new_lt10(xuu109, xuu112, caf, cag) 37.21/18.34 new_esEs6(xuu4002, xuu302, ty_Bool) -> new_esEs17(xuu4002, xuu302) 37.21/18.34 new_ltEs8(Left(xuu700), Left(xuu710), ty_Bool, ge) -> new_ltEs12(xuu700, xuu710) 37.21/18.34 new_esEs28(xuu701, xuu711, ty_Double) -> new_esEs12(xuu701, xuu711) 37.21/18.34 new_lt24(xuu400, xuu30, ty_Int) -> new_lt9(xuu400, xuu30) 37.21/18.34 new_esEs18(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cfd), cfe), cff), bdf) -> new_esEs16(xuu40000, xuu3000, cfd, cfe, cff) 37.21/18.34 new_lt22(xuu121, xuu123, ty_Char) -> new_lt12(xuu121, xuu123) 37.21/18.34 new_esEs32(xuu109, xuu112, ty_Integer) -> new_esEs25(xuu109, xuu112) 37.21/18.34 new_esEs9(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.34 new_ltEs23(xuu122, xuu124, ty_Integer) -> new_ltEs18(xuu122, xuu124) 37.21/18.34 new_esEs40(xuu700, xuu710, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs16(xuu700, xuu710, ffg, ffh, fga) 37.21/18.34 new_gt(xuu19, xuu14, app(ty_Maybe, deh)) -> new_esEs41(new_compare15(xuu19, xuu14, deh)) 37.21/18.34 new_ltEs20(xuu110, xuu113, app(app(ty_@2, ccd), cce)) -> new_ltEs14(xuu110, xuu113, ccd, cce) 37.21/18.34 new_esEs28(xuu701, xuu711, app(app(app(ty_@3, de), df), dg)) -> new_esEs16(xuu701, xuu711, de, df, dg) 37.21/18.34 new_lt20(xuu108, xuu111, ty_Float) -> new_lt18(xuu108, xuu111) 37.21/18.34 new_ltEs20(xuu110, xuu113, ty_Ordering) -> new_ltEs16(xuu110, xuu113) 37.21/18.34 new_ltEs8(Right(xuu700), Right(xuu710), gd, ty_Int) -> new_ltEs7(xuu700, xuu710) 37.21/18.34 new_esEs34(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 37.21/18.34 new_esEs38(xuu121, xuu123, ty_Ordering) -> new_esEs20(xuu121, xuu123) 37.21/18.34 new_esEs31(xuu108, xuu111, app(app(ty_Either, bhd), bhe)) -> new_esEs18(xuu108, xuu111, bhd, bhe) 37.21/18.34 new_lt24(xuu400, xuu30, app(ty_Maybe, bae)) -> new_lt15(xuu400, xuu30, bae) 37.21/18.34 new_esEs8(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.34 new_esEs6(xuu4002, xuu302, app(app(ty_@2, bfc), bfd)) -> new_esEs15(xuu4002, xuu302, bfc, bfd) 37.21/18.34 new_esEs6(xuu4002, xuu302, app(ty_Maybe, bgc)) -> new_esEs23(xuu4002, xuu302, bgc) 37.21/18.34 new_lt6(xuu701, xuu711, ty_Char) -> new_lt12(xuu701, xuu711) 37.21/18.34 new_esEs18(Right(xuu40000), Right(xuu3000), bde, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.34 new_primMulInt(Neg(xuu40000), Neg(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.34 new_esEs11(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) 37.21/18.34 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3000))) -> new_primCmpNat0(Zero, Succ(xuu3000)) 37.21/18.34 new_ltEs22(xuu77, xuu78, ty_Integer) -> new_ltEs18(xuu77, xuu78) 37.21/18.34 new_esEs18(Right(xuu40000), Right(xuu3000), bde, app(ty_Ratio, chc)) -> new_esEs22(xuu40000, xuu3000, chc) 37.21/18.34 new_esEs32(xuu109, xuu112, ty_Char) -> new_esEs19(xuu109, xuu112) 37.21/18.34 new_esEs10(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.34 new_lt24(xuu400, xuu30, ty_Ordering) -> new_lt17(xuu400, xuu30) 37.21/18.34 new_lt5(xuu700, xuu710, app(app(ty_Either, ce), cf)) -> new_lt10(xuu700, xuu710, ce, cf) 37.21/18.34 new_ltEs5(xuu702, xuu712, ty_Ordering) -> new_ltEs16(xuu702, xuu712) 37.21/18.34 new_esEs27(xuu700, xuu710, ty_Double) -> new_esEs12(xuu700, xuu710) 37.21/18.34 new_esEs5(xuu4001, xuu301, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs16(xuu4001, xuu301, bec, bed, bee) 37.21/18.34 new_lt21(xuu109, xuu112, ty_Char) -> new_lt12(xuu109, xuu112) 37.21/18.34 new_esEs32(xuu109, xuu112, app(ty_[], cab)) -> new_esEs26(xuu109, xuu112, cab) 37.21/18.34 new_esEs7(xuu4000, xuu300, app(app(ty_Either, fdg), fdh)) -> new_esEs18(xuu4000, xuu300, fdg, fdh) 37.21/18.34 new_compare7(xuu4000, xuu300, ty_Double) -> new_compare5(xuu4000, xuu300) 37.21/18.34 new_compare113(xuu158, xuu159, True, ddg, ddh) -> LT 37.21/18.34 new_esEs21(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 37.21/18.34 new_compare12(@0, @0) -> EQ 37.21/18.34 new_primMulInt(Pos(xuu40000), Neg(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.34 new_primMulInt(Neg(xuu40000), Pos(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.34 new_esEs10(xuu4000, xuu300, app(ty_[], dgd)) -> new_esEs26(xuu4000, xuu300, dgd) 37.21/18.34 new_esEs29(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.34 new_ltEs21(xuu84, xuu85, app(ty_Maybe, ecd)) -> new_ltEs13(xuu84, xuu85, ecd) 37.21/18.34 new_esEs12(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 37.21/18.34 new_esEs25(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 37.21/18.34 new_ltEs23(xuu122, xuu124, ty_Ordering) -> new_ltEs16(xuu122, xuu124) 37.21/18.34 new_ltEs22(xuu77, xuu78, app(app(ty_Either, egd), ege)) -> new_ltEs8(xuu77, xuu78, egd, ege) 37.21/18.34 new_esEs38(xuu121, xuu123, ty_Double) -> new_esEs12(xuu121, xuu123) 37.21/18.34 new_sr0(Integer(xuu40000), Integer(xuu3010)) -> Integer(new_primMulInt(xuu40000, xuu3010)) 37.21/18.34 new_esEs6(xuu4002, xuu302, ty_Int) -> new_esEs13(xuu4002, xuu302) 37.21/18.34 new_esEs31(xuu108, xuu111, ty_Float) -> new_esEs21(xuu108, xuu111) 37.21/18.34 new_esEs20(EQ, GT) -> False 37.21/18.34 new_esEs20(GT, EQ) -> False 37.21/18.34 new_ltEs9(xuu70, xuu71) -> new_fsEs(new_compare12(xuu70, xuu71)) 37.21/18.34 new_lt20(xuu108, xuu111, app(ty_[], bgh)) -> new_lt7(xuu108, xuu111, bgh) 37.21/18.34 new_compare15(Just(xuu4000), Nothing, bae) -> GT 37.21/18.34 new_lt24(xuu400, xuu30, app(ty_Ratio, ddd)) -> new_lt13(xuu400, xuu30, ddd) 37.21/18.34 new_esEs40(xuu700, xuu710, app(app(ty_@2, fgf), fgg)) -> new_esEs15(xuu700, xuu710, fgf, fgg) 37.21/18.34 new_lt6(xuu701, xuu711, app(app(ty_Either, dh), ea)) -> new_lt10(xuu701, xuu711, dh, ea) 37.21/18.34 new_esEs28(xuu701, xuu711, ty_@0) -> new_esEs24(xuu701, xuu711) 37.21/18.34 new_asAs(True, xuu146) -> xuu146 37.21/18.34 new_lt13(xuu400, xuu30, ddd) -> new_esEs14(new_compare13(xuu400, xuu30, ddd)) 37.21/18.34 new_esEs7(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.34 new_esEs38(xuu121, xuu123, ty_Int) -> new_esEs13(xuu121, xuu123) 37.21/18.34 new_esEs4(xuu4000, xuu300, app(ty_[], bdh)) -> new_esEs26(xuu4000, xuu300, bdh) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), bde, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.35 new_esEs14(LT) -> True 37.21/18.35 new_esEs39(xuu40000, xuu3000, app(ty_Ratio, fcg)) -> new_esEs22(xuu40000, xuu3000, fcg) 37.21/18.35 new_ltEs19(xuu70, xuu71, ty_Double) -> new_ltEs15(xuu70, xuu71) 37.21/18.35 new_compare11(Right(xuu4000), Right(xuu300), bcc, bcd) -> new_compare29(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, bcd), bcc, bcd) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), ty_Int, ge) -> new_ltEs7(xuu700, xuu710) 37.21/18.35 new_ltEs20(xuu110, xuu113, app(ty_Ratio, ccb)) -> new_ltEs11(xuu110, xuu113, ccb) 37.21/18.35 new_esEs40(xuu700, xuu710, ty_Ordering) -> new_esEs20(xuu700, xuu710) 37.21/18.35 new_sr(xuu4000, xuu301) -> new_primMulInt(xuu4000, xuu301) 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_Char) -> new_ltEs10(xuu77, xuu78) 37.21/18.35 new_ltEs16(GT, GT) -> True 37.21/18.35 new_esEs27(xuu700, xuu710, ty_Char) -> new_esEs19(xuu700, xuu710) 37.21/18.35 new_esEs7(xuu4000, xuu300, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs16(xuu4000, xuu300, fdd, fde, fdf) 37.21/18.35 new_esEs31(xuu108, xuu111, ty_Integer) -> new_esEs25(xuu108, xuu111) 37.21/18.35 new_primMulNat0(Zero, Zero) -> Zero 37.21/18.35 new_esEs7(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.35 new_esEs39(xuu40000, xuu3000, app(ty_[], fda)) -> new_esEs26(xuu40000, xuu3000, fda) 37.21/18.35 new_gt(xuu19, xuu14, ty_Char) -> new_esEs41(new_compare6(xuu19, xuu14)) 37.21/18.35 new_esEs7(xuu4000, xuu300, app(ty_Ratio, fea)) -> new_esEs22(xuu4000, xuu300, fea) 37.21/18.35 new_ltEs22(xuu77, xuu78, app(app(app(ty_@3, ega), egb), egc)) -> new_ltEs4(xuu77, xuu78, ega, egb, egc) 37.21/18.35 new_esEs8(xuu4000, xuu300, app(ty_Maybe, ffd)) -> new_esEs23(xuu4000, xuu300, ffd) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), gd, ty_@0) -> new_ltEs9(xuu700, xuu710) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_Ordering) -> new_ltEs16(xuu700, xuu710) 37.21/18.35 new_lt23(xuu700, xuu710, ty_Double) -> new_lt4(xuu700, xuu710) 37.21/18.35 new_esEs8(xuu4000, xuu300, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs16(xuu4000, xuu300, fef, feg, feh) 37.21/18.35 new_ltEs19(xuu70, xuu71, app(ty_Maybe, gg)) -> new_ltEs13(xuu70, xuu71, gg) 37.21/18.35 new_esEs26(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bdh) -> new_asAs(new_esEs39(xuu40000, xuu3000, bdh), new_esEs26(xuu40001, xuu3001, bdh)) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), bde, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.35 new_lt22(xuu121, xuu123, app(app(ty_Either, ehh), faa)) -> new_lt10(xuu121, xuu123, ehh, faa) 37.21/18.35 new_ltEs19(xuu70, xuu71, app(ty_Ratio, gf)) -> new_ltEs11(xuu70, xuu71, gf) 37.21/18.35 new_esEs6(xuu4002, xuu302, ty_Ordering) -> new_esEs20(xuu4002, xuu302) 37.21/18.35 new_esEs37(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) 37.21/18.35 new_lt20(xuu108, xuu111, app(ty_Ratio, bhf)) -> new_lt13(xuu108, xuu111, bhf) 37.21/18.35 new_esEs34(xuu40001, xuu3001, app(app(ty_@2, cdh), cea)) -> new_esEs15(xuu40001, xuu3001, cdh, cea) 37.21/18.35 new_lt24(xuu400, xuu30, ty_Double) -> new_lt4(xuu400, xuu30) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), app(ty_[], eab)) -> new_ltEs6(xuu700, xuu710, eab) 37.21/18.35 new_lt24(xuu400, xuu30, app(ty_[], hb)) -> new_lt7(xuu400, xuu30, hb) 37.21/18.35 new_compare14(False, False) -> EQ 37.21/18.35 new_lt23(xuu700, xuu710, app(app(ty_Either, fgb), fgc)) -> new_lt10(xuu700, xuu710, fgb, fgc) 37.21/18.35 new_esEs7(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.35 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 37.21/18.35 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 37.21/18.35 new_compare([], [], hb) -> EQ 37.21/18.35 new_esEs10(xuu4000, xuu300, app(app(ty_@2, dfc), dfd)) -> new_esEs15(xuu4000, xuu300, dfc, dfd) 37.21/18.35 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), app(app(ty_@2, gab), gac)) -> new_esEs15(xuu40000, xuu3000, gab, gac) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Int, bdf) -> new_esEs13(xuu40000, xuu3000) 37.21/18.35 new_esEs39(xuu40000, xuu3000, app(app(ty_@2, fbh), fca)) -> new_esEs15(xuu40000, xuu3000, fbh, fca) 37.21/18.35 new_esEs35(xuu40000, xuu3000, app(ty_[], dag)) -> new_esEs26(xuu40000, xuu3000, dag) 37.21/18.35 new_esEs8(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.35 new_esEs30(xuu40001, xuu3001, ty_Integer) -> new_esEs25(xuu40001, xuu3001) 37.21/18.35 new_lt24(xuu400, xuu30, app(app(ty_@2, dde), ddf)) -> new_lt16(xuu400, xuu30, dde, ddf) 37.21/18.35 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 37.21/18.35 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 37.21/18.35 new_gt(xuu19, xuu14, ty_Int) -> new_gt0(xuu19, xuu14) 37.21/18.35 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3000))) -> new_primCmpNat0(Succ(xuu3000), Zero) 37.21/18.35 new_esEs28(xuu701, xuu711, app(app(ty_Either, dh), ea)) -> new_esEs18(xuu701, xuu711, dh, ea) 37.21/18.35 new_esEs9(xuu4000, xuu300, app(ty_Maybe, bbf)) -> new_esEs23(xuu4000, xuu300, bbf) 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_Bool) -> new_ltEs12(xuu702, xuu712) 37.21/18.35 new_compare11(Left(xuu4000), Left(xuu300), bcc, bcd) -> new_compare25(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, bcc), bcc, bcd) 37.21/18.35 new_esEs8(xuu4000, xuu300, app(ty_Ratio, ffc)) -> new_esEs22(xuu4000, xuu300, ffc) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), gd, ty_Char) -> new_ltEs10(xuu700, xuu710) 37.21/18.35 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_Ordering) -> new_ltEs16(xuu77, xuu78) 37.21/18.35 new_ltEs19(xuu70, xuu71, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs4(xuu70, xuu71, bf, bg, bh) 37.21/18.35 new_ltEs23(xuu122, xuu124, ty_Bool) -> new_ltEs12(xuu122, xuu124) 37.21/18.35 new_primCompAux0(xuu4000, xuu300, xuu45, hb) -> new_primCompAux00(xuu45, new_compare7(xuu4000, xuu300, hb)) 37.21/18.35 new_compare7(xuu4000, xuu300, app(ty_[], hc)) -> new_compare(xuu4000, xuu300, hc) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), app(ty_[], edb), ge) -> new_ltEs6(xuu700, xuu710, edb) 37.21/18.35 new_esEs5(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) 37.21/18.35 new_esEs27(xuu700, xuu710, app(app(ty_Either, ce), cf)) -> new_esEs18(xuu700, xuu710, ce, cf) 37.21/18.35 new_esEs38(xuu121, xuu123, app(ty_Ratio, fab)) -> new_esEs22(xuu121, xuu123, fab) 37.21/18.35 new_ltEs23(xuu122, xuu124, ty_Char) -> new_ltEs10(xuu122, xuu124) 37.21/18.35 new_esEs40(xuu700, xuu710, ty_Int) -> new_esEs13(xuu700, xuu710) 37.21/18.35 new_not(False) -> True 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_Float) -> new_ltEs17(xuu700, xuu710) 37.21/18.35 new_ltEs24(xuu701, xuu711, ty_@0) -> new_ltEs9(xuu701, xuu711) 37.21/18.35 new_esEs40(xuu700, xuu710, app(ty_[], fff)) -> new_esEs26(xuu700, xuu710, fff) 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_Int) -> new_ltEs7(xuu702, xuu712) 37.21/18.35 new_compare7(xuu4000, xuu300, app(app(ty_@2, bac), bad)) -> new_compare16(xuu4000, xuu300, bac, bad) 37.21/18.35 new_ltEs21(xuu84, xuu85, ty_Bool) -> new_ltEs12(xuu84, xuu85) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_Integer) -> new_ltEs18(xuu700, xuu710) 37.21/18.35 new_lt4(xuu400, xuu30) -> new_esEs14(new_compare5(xuu400, xuu30)) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), app(ty_Ratio, gba)) -> new_esEs22(xuu40000, xuu3000, gba) 37.21/18.35 new_ltEs24(xuu701, xuu711, ty_Ordering) -> new_ltEs16(xuu701, xuu711) 37.21/18.35 new_esEs38(xuu121, xuu123, app(app(ty_@2, fad), fae)) -> new_esEs15(xuu121, xuu123, fad, fae) 37.21/18.35 new_lt6(xuu701, xuu711, app(ty_Ratio, eb)) -> new_lt13(xuu701, xuu711, eb) 37.21/18.35 new_esEs9(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.35 new_esEs4(xuu4000, xuu300, app(ty_Ratio, bcb)) -> new_esEs22(xuu4000, xuu300, bcb) 37.21/18.35 new_gt(xuu19, xuu14, ty_@0) -> new_esEs41(new_compare12(xuu19, xuu14)) 37.21/18.35 new_esEs15(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bch, bda) -> new_asAs(new_esEs33(xuu40000, xuu3000, bch), new_esEs34(xuu40001, xuu3001, bda)) 37.21/18.35 new_lt23(xuu700, xuu710, app(app(ty_@2, fgf), fgg)) -> new_lt16(xuu700, xuu710, fgf, fgg) 37.21/18.35 new_esEs36(xuu40001, xuu3001, app(ty_[], dca)) -> new_esEs26(xuu40001, xuu3001, dca) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), gd, ty_Bool) -> new_ltEs12(xuu700, xuu710) 37.21/18.35 new_esEs41(LT) -> False 37.21/18.35 new_esEs32(xuu109, xuu112, ty_Double) -> new_esEs12(xuu109, xuu112) 37.21/18.35 new_ltEs23(xuu122, xuu124, app(app(ty_Either, fbb), fbc)) -> new_ltEs8(xuu122, xuu124, fbb, fbc) 37.21/18.35 new_ltEs19(xuu70, xuu71, ty_Int) -> new_ltEs7(xuu70, xuu71) 37.21/18.35 new_ltEs19(xuu70, xuu71, ty_Char) -> new_ltEs10(xuu70, xuu71) 37.21/18.35 new_compare16(@2(xuu4000, xuu4001), @2(xuu300, xuu301), dde, ddf) -> new_compare28(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs10(xuu4000, xuu300, dde), new_esEs11(xuu4001, xuu301, ddf)), dde, ddf) 37.21/18.35 new_ltEs5(xuu702, xuu712, app(app(app(ty_@3, eg), eh), fa)) -> new_ltEs4(xuu702, xuu712, eg, eh, fa) 37.21/18.35 new_lt23(xuu700, xuu710, app(ty_Ratio, fgd)) -> new_lt13(xuu700, xuu710, fgd) 37.21/18.35 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 37.21/18.35 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 37.21/18.35 new_compare15(Nothing, Just(xuu300), bae) -> LT 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_Char) -> new_ltEs10(xuu702, xuu712) 37.21/18.35 new_lt24(xuu400, xuu30, app(app(ty_Either, bcc), bcd)) -> new_lt10(xuu400, xuu30, bcc, bcd) 37.21/18.35 new_lt20(xuu108, xuu111, app(app(ty_@2, bhh), caa)) -> new_lt16(xuu108, xuu111, bhh, caa) 37.21/18.35 new_esEs28(xuu701, xuu711, ty_Integer) -> new_esEs25(xuu701, xuu711) 37.21/18.35 new_compare7(xuu4000, xuu300, app(ty_Ratio, baa)) -> new_compare13(xuu4000, xuu300, baa) 37.21/18.35 new_ltEs20(xuu110, xuu113, ty_Int) -> new_ltEs7(xuu110, xuu113) 37.21/18.35 new_ltEs22(xuu77, xuu78, app(ty_Maybe, egg)) -> new_ltEs13(xuu77, xuu78, egg) 37.21/18.35 new_compare13(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Integer) -> new_compare19(new_sr0(xuu4000, xuu301), new_sr0(xuu300, xuu4001)) 37.21/18.35 new_esEs9(xuu4000, xuu300, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs16(xuu4000, xuu300, bah, bba, bbb) 37.21/18.35 new_compare112(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, False, xuu187, ecg, ech, eda) -> new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, xuu187, ecg, ech, eda) 37.21/18.35 new_lt6(xuu701, xuu711, app(ty_[], dd)) -> new_lt7(xuu701, xuu711, dd) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cfg), cfh), bdf) -> new_esEs18(xuu40000, xuu3000, cfg, cfh) 37.21/18.35 new_esEs11(xuu4001, xuu301, ty_Double) -> new_esEs12(xuu4001, xuu301) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), app(ty_[], gbc)) -> new_esEs26(xuu40000, xuu3000, gbc) 37.21/18.35 new_esEs27(xuu700, xuu710, ty_Float) -> new_esEs21(xuu700, xuu710) 37.21/18.35 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 37.21/18.35 new_lt21(xuu109, xuu112, app(app(ty_@2, cbb), cbc)) -> new_lt16(xuu109, xuu112, cbb, cbc) 37.21/18.35 new_ltEs21(xuu84, xuu85, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_ltEs4(xuu84, xuu85, ebf, ebg, ebh) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), bde, app(ty_Maybe, chd)) -> new_esEs23(xuu40000, xuu3000, chd) 37.21/18.35 new_esEs34(xuu40001, xuu3001, ty_Double) -> new_esEs12(xuu40001, xuu3001) 37.21/18.35 new_esEs40(xuu700, xuu710, app(ty_Ratio, fgd)) -> new_esEs22(xuu700, xuu710, fgd) 37.21/18.35 new_lt5(xuu700, xuu710, ty_Double) -> new_lt4(xuu700, xuu710) 37.21/18.35 new_lt5(xuu700, xuu710, app(ty_[], ca)) -> new_lt7(xuu700, xuu710, ca) 37.21/18.35 new_lt21(xuu109, xuu112, ty_Double) -> new_lt4(xuu109, xuu112) 37.21/18.35 new_esEs35(xuu40000, xuu3000, app(app(ty_@2, chf), chg)) -> new_esEs15(xuu40000, xuu3000, chf, chg) 37.21/18.35 new_lt5(xuu700, xuu710, app(app(ty_@2, db), dc)) -> new_lt16(xuu700, xuu710, db, dc) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), bde, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs16(xuu40000, xuu3000, cgf, cgg, cgh) 37.21/18.35 new_lt21(xuu109, xuu112, app(ty_Ratio, cah)) -> new_lt13(xuu109, xuu112, cah) 37.21/18.35 new_lt22(xuu121, xuu123, app(app(ty_@2, fad), fae)) -> new_lt16(xuu121, xuu123, fad, fae) 37.21/18.35 new_ltEs6(xuu70, xuu71, gc) -> new_fsEs(new_compare(xuu70, xuu71, gc)) 37.21/18.35 new_esEs37(xuu40002, xuu3002, app(ty_[], ddc)) -> new_esEs26(xuu40002, xuu3002, ddc) 37.21/18.35 new_esEs38(xuu121, xuu123, app(ty_[], ehd)) -> new_esEs26(xuu121, xuu123, ehd) 37.21/18.35 new_compare6(Char(xuu4000), Char(xuu300)) -> new_primCmpNat0(xuu4000, xuu300) 37.21/18.35 new_ltEs20(xuu110, xuu113, ty_Char) -> new_ltEs10(xuu110, xuu113) 37.21/18.35 new_esEs6(xuu4002, xuu302, app(ty_Ratio, bgb)) -> new_esEs22(xuu4002, xuu302, bgb) 37.21/18.35 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 37.21/18.35 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 37.21/18.35 new_lt6(xuu701, xuu711, ty_Double) -> new_lt4(xuu701, xuu711) 37.21/18.35 new_lt20(xuu108, xuu111, ty_Double) -> new_lt4(xuu108, xuu111) 37.21/18.35 new_ltEs24(xuu701, xuu711, app(ty_Maybe, fhg)) -> new_ltEs13(xuu701, xuu711, fhg) 37.21/18.35 new_lt22(xuu121, xuu123, app(ty_Ratio, fab)) -> new_lt13(xuu121, xuu123, fab) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.35 new_compare14(True, True) -> EQ 37.21/18.35 new_lt6(xuu701, xuu711, app(app(ty_@2, ed), ee)) -> new_lt16(xuu701, xuu711, ed, ee) 37.21/18.35 new_primEqNat0(Zero, Zero) -> True 37.21/18.35 new_gt(xuu19, xuu14, ty_Bool) -> new_esEs41(new_compare14(xuu19, xuu14)) 37.21/18.35 new_lt21(xuu109, xuu112, app(ty_[], cab)) -> new_lt7(xuu109, xuu112, cab) 37.21/18.35 new_esEs27(xuu700, xuu710, ty_Integer) -> new_esEs25(xuu700, xuu710) 37.21/18.35 new_esEs27(xuu700, xuu710, ty_@0) -> new_esEs24(xuu700, xuu710) 37.21/18.35 new_compare5(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.35 new_ltEs23(xuu122, xuu124, app(ty_Maybe, fbe)) -> new_ltEs13(xuu122, xuu124, fbe) 37.21/18.35 new_asAs(False, xuu146) -> False 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), bde, app(app(ty_Either, cha), chb)) -> new_esEs18(xuu40000, xuu3000, cha, chb) 37.21/18.35 new_ltEs21(xuu84, xuu85, ty_Char) -> new_ltEs10(xuu84, xuu85) 37.21/18.35 new_esEs20(GT, GT) -> True 37.21/18.35 new_esEs10(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.35 new_esEs4(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_Bool) -> new_ltEs12(xuu77, xuu78) 37.21/18.35 new_esEs5(xuu4001, xuu301, app(ty_Ratio, beh)) -> new_esEs22(xuu4001, xuu301, beh) 37.21/18.35 new_esEs8(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.35 new_ltEs20(xuu110, xuu113, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs4(xuu110, xuu113, cbe, cbf, cbg) 37.21/18.35 new_esEs36(xuu40001, xuu3001, app(app(ty_@2, dah), dba)) -> new_esEs15(xuu40001, xuu3001, dah, dba) 37.21/18.35 new_esEs39(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.35 new_esEs33(xuu40000, xuu3000, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.35 new_ltEs24(xuu701, xuu711, app(app(ty_Either, fhd), fhe)) -> new_ltEs8(xuu701, xuu711, fhd, fhe) 37.21/18.35 new_ltEs4(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bf, bg, bh) -> new_pePe(new_lt5(xuu700, xuu710, bf), new_asAs(new_esEs27(xuu700, xuu710, bf), new_pePe(new_lt6(xuu701, xuu711, bg), new_asAs(new_esEs28(xuu701, xuu711, bg), new_ltEs5(xuu702, xuu712, bh))))) 37.21/18.35 new_gt0(xuu19, xuu14) -> new_esEs41(new_compare9(xuu19, xuu14)) 37.21/18.35 37.21/18.35 The set Q consists of the following terms: 37.21/18.35 37.21/18.35 new_esEs4(x0, x1, ty_Char) 37.21/18.35 new_esEs33(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs31(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 37.21/18.35 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.21/18.35 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs15(@2(x0, x1), @2(x2, x3), x4, x5) 37.21/18.35 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs28(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_lt6(x0, x1, ty_Double) 37.21/18.35 new_lt23(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_gt(x0, x1, ty_Float) 37.21/18.35 new_lt23(x0, x1, ty_Ordering) 37.21/18.35 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_lt23(x0, x1, ty_Double) 37.21/18.35 new_ltEs22(x0, x1, ty_Bool) 37.21/18.35 new_compare111(x0, x1, x2, x3, False, x4, x5) 37.21/18.35 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), ty_Char) 37.21/18.35 new_ltEs22(x0, x1, ty_@0) 37.21/18.35 new_lt24(x0, x1, ty_Integer) 37.21/18.35 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_lt21(x0, x1, app(ty_[], x2)) 37.21/18.35 new_compare7(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_ltEs22(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs20(LT, GT) 37.21/18.35 new_esEs20(GT, LT) 37.21/18.35 new_lt24(x0, x1, ty_Bool) 37.21/18.35 new_lt22(x0, x1, ty_Char) 37.21/18.35 new_ltEs22(x0, x1, ty_Integer) 37.21/18.35 new_esEs10(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs11(x0, x1, ty_Char) 37.21/18.35 new_primEqInt(Pos(Zero), Pos(Zero)) 37.21/18.35 new_lt10(x0, x1, x2, x3) 37.21/18.35 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs29(x0, x1, ty_Integer) 37.21/18.35 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 37.21/18.35 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs5(x0, x1, ty_@0) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), ty_Double) 37.21/18.35 new_ltEs21(x0, x1, ty_Bool) 37.21/18.35 new_esEs7(x0, x1, ty_Float) 37.21/18.35 new_esEs4(x0, x1, ty_Ordering) 37.21/18.35 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs5(x0, x1, ty_@0) 37.21/18.35 new_primEqInt(Neg(Zero), Neg(Zero)) 37.21/18.35 new_esEs26([], [], x0) 37.21/18.35 new_esEs38(x0, x1, app(ty_[], x2)) 37.21/18.35 new_lt20(x0, x1, ty_Integer) 37.21/18.35 new_esEs10(x0, x1, ty_Int) 37.21/18.35 new_ltEs16(GT, EQ) 37.21/18.35 new_ltEs16(EQ, GT) 37.21/18.35 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_lt20(x0, x1, ty_Float) 37.21/18.35 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs20(x0, x1, ty_Double) 37.21/18.35 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs4(x0, x1, ty_Double) 37.21/18.35 new_esEs6(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_ltEs21(x0, x1, ty_Int) 37.21/18.35 new_compare11(Right(x0), Left(x1), x2, x3) 37.21/18.35 new_compare11(Left(x0), Right(x1), x2, x3) 37.21/18.35 new_ltEs16(LT, LT) 37.21/18.35 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs27(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_lt22(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs6(x0, x1, ty_Char) 37.21/18.35 new_ltEs19(x0, x1, ty_Integer) 37.21/18.35 new_primMulNat0(Zero, Succ(x0)) 37.21/18.35 new_ltEs11(x0, x1, x2) 37.21/18.35 new_compare15(Just(x0), Nothing, x1) 37.21/18.35 new_esEs11(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs10(x0, x1, ty_Bool) 37.21/18.35 new_esEs40(x0, x1, ty_Bool) 37.21/18.35 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs40(x0, x1, ty_Float) 37.21/18.35 new_esEs37(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_primEqInt(Pos(Zero), Neg(Zero)) 37.21/18.35 new_primEqInt(Neg(Zero), Pos(Zero)) 37.21/18.35 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.21/18.35 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs23(Just(x0), Just(x1), ty_@0) 37.21/18.35 new_esEs8(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 37.21/18.35 new_esEs40(x0, x1, ty_@0) 37.21/18.35 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 37.21/18.35 new_gt(x0, x1, ty_Integer) 37.21/18.35 new_sr(x0, x1) 37.21/18.35 new_esEs40(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs23(Just(x0), Just(x1), ty_Float) 37.21/18.35 new_ltEs5(x0, x1, app(ty_[], x2)) 37.21/18.35 new_lt6(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs21(x0, x1, ty_@0) 37.21/18.35 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 37.21/18.35 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 37.21/18.35 new_lt20(x0, x1, ty_Bool) 37.21/18.35 new_ltEs20(x0, x1, ty_Char) 37.21/18.35 new_lt5(x0, x1, ty_Int) 37.21/18.35 new_compare11(Right(x0), Right(x1), x2, x3) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.21/18.35 new_esEs32(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.21/18.35 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs8(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_ltEs22(x0, x1, ty_Float) 37.21/18.35 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs18(Left(x0), Right(x1), x2, x3) 37.21/18.35 new_esEs18(Right(x0), Left(x1), x2, x3) 37.21/18.35 new_esEs33(x0, x1, ty_Integer) 37.21/18.35 new_esEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.21/18.35 new_asAs(True, x0) 37.21/18.35 new_compare113(x0, x1, False, x2, x3) 37.21/18.35 new_compare17(EQ, EQ) 37.21/18.35 new_esEs32(x0, x1, app(ty_[], x2)) 37.21/18.35 new_ltEs22(x0, x1, ty_Int) 37.21/18.35 new_ltEs23(x0, x1, ty_Char) 37.21/18.35 new_lt24(x0, x1, ty_Float) 37.21/18.35 new_gt(x0, x1, ty_@0) 37.21/18.35 new_compare115(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.21/18.35 new_esEs10(x0, x1, ty_Integer) 37.21/18.35 new_esEs7(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_ltEs19(x0, x1, ty_Bool) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.21/18.35 new_primCmpNat0(Zero, Succ(x0)) 37.21/18.35 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_ltEs16(LT, EQ) 37.21/18.35 new_ltEs16(EQ, LT) 37.21/18.35 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs36(x0, x1, ty_Double) 37.21/18.35 new_esEs13(x0, x1) 37.21/18.35 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs31(x0, x1, ty_Double) 37.21/18.35 new_esEs11(x0, x1, ty_Ordering) 37.21/18.35 new_esEs23(Nothing, Nothing, x0) 37.21/18.35 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs19(Char(x0), Char(x1)) 37.21/18.35 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_lt22(x0, x1, ty_Ordering) 37.21/18.35 new_esEs5(x0, x1, ty_Integer) 37.21/18.35 new_compare29(x0, x1, True, x2, x3) 37.21/18.35 new_esEs5(x0, x1, ty_Float) 37.21/18.35 new_esEs10(x0, x1, ty_@0) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 37.21/18.35 new_esEs4(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs34(x0, x1, ty_Int) 37.21/18.35 new_compare7(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs21(Float(x0, x1), Float(x2, x3)) 37.21/18.35 new_ltEs19(x0, x1, ty_Int) 37.21/18.35 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_primPlusNat0(Succ(x0), Zero) 37.21/18.35 new_esEs39(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs38(x0, x1, ty_@0) 37.21/18.35 new_compare17(LT, EQ) 37.21/18.35 new_compare17(EQ, LT) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 37.21/18.35 new_esEs36(x0, x1, app(ty_[], x2)) 37.21/18.35 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 37.21/18.35 new_ltEs23(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs5(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs9(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_ltEs20(x0, x1, ty_Ordering) 37.21/18.35 new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs24(@0, @0) 37.21/18.35 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs5(x0, x1, ty_Int) 37.21/18.35 new_esEs26(:(x0, x1), [], x2) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, ty_Double) 37.21/18.35 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 37.21/18.35 new_esEs36(x0, x1, ty_@0) 37.21/18.35 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_lt11(x0, x1) 37.21/18.35 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs5(x0, x1, ty_Bool) 37.21/18.35 new_esEs31(x0, x1, ty_@0) 37.21/18.35 new_ltEs19(x0, x1, ty_Float) 37.21/18.35 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs34(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs24(x0, x1, ty_Double) 37.21/18.35 new_compare114(x0, x1, False, x2) 37.21/18.35 new_lt24(x0, x1, ty_Int) 37.21/18.35 new_compare14(False, False) 37.21/18.35 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs29(x0, x1, ty_Int) 37.21/18.35 new_ltEs23(x0, x1, ty_Ordering) 37.21/18.35 new_esEs28(x0, x1, ty_Float) 37.21/18.35 new_esEs8(x0, x1, ty_Char) 37.21/18.35 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs27(x0, x1, ty_Int) 37.21/18.35 new_gt(x0, x1, ty_Ordering) 37.21/18.35 new_esEs32(x0, x1, ty_@0) 37.21/18.35 new_compare7(x0, x1, ty_Bool) 37.21/18.35 new_esEs38(x0, x1, ty_Integer) 37.21/18.35 new_esEs33(x0, x1, ty_Char) 37.21/18.35 new_compare(:(x0, x1), :(x2, x3), x4) 37.21/18.35 new_esEs28(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs7(x0, x1, ty_Int) 37.21/18.35 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs7(x0, x1, ty_Char) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.21/18.35 new_lt24(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs35(x0, x1, ty_Int) 37.21/18.35 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_lt6(x0, x1, ty_Float) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.21/18.35 new_compare110(x0, x1, x2, x3, False, x4, x5, x6) 37.21/18.35 new_compare113(x0, x1, True, x2, x3) 37.21/18.35 new_esEs39(x0, x1, ty_Ordering) 37.21/18.35 new_esEs35(x0, x1, ty_Char) 37.21/18.35 new_compare7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 37.21/18.35 new_gt(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs8(x0, x1, ty_Float) 37.21/18.35 new_esEs17(True, True) 37.21/18.35 new_esEs36(x0, x1, ty_Char) 37.21/18.35 new_lt5(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs27(x0, x1, ty_Char) 37.21/18.35 new_compare7(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs27(x0, x1, ty_Double) 37.21/18.35 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, ty_@0) 37.21/18.35 new_compare13(:%(x0, x1), :%(x2, x3), ty_Integer) 37.21/18.35 new_esEs36(x0, x1, ty_Bool) 37.21/18.35 new_compare14(True, False) 37.21/18.35 new_compare14(False, True) 37.21/18.35 new_esEs31(x0, x1, app(ty_[], x2)) 37.21/18.35 new_compare15(Nothing, Nothing, x0) 37.21/18.35 new_esEs37(x0, x1, ty_Bool) 37.21/18.35 new_esEs33(x0, x1, ty_Int) 37.21/18.35 new_lt15(x0, x1, x2) 37.21/18.35 new_primPlusNat0(Zero, Zero) 37.21/18.35 new_ltEs19(x0, x1, ty_Double) 37.21/18.35 new_esEs33(x0, x1, ty_Double) 37.21/18.35 new_esEs28(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_not(True) 37.21/18.35 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs31(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs20(x0, x1, ty_@0) 37.21/18.35 new_esEs35(x0, x1, ty_@0) 37.21/18.35 new_ltEs12(True, True) 37.21/18.35 new_lt18(x0, x1) 37.21/18.35 new_esEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.21/18.35 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs37(x0, x1, ty_Char) 37.21/18.35 new_esEs33(x0, x1, ty_Bool) 37.21/18.35 new_lt13(x0, x1, x2) 37.21/18.35 new_esEs23(Just(x0), Just(x1), ty_Double) 37.21/18.35 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 37.21/18.35 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs37(x0, x1, ty_Int) 37.21/18.35 new_lt5(x0, x1, ty_Bool) 37.21/18.35 new_compare([], [], x0) 37.21/18.35 new_lt20(x0, x1, ty_Int) 37.21/18.35 new_lt6(x0, x1, ty_Integer) 37.21/18.35 new_ltEs19(x0, x1, ty_Ordering) 37.21/18.35 new_lt5(x0, x1, ty_Float) 37.21/18.35 new_esEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.21/18.35 new_esEs7(x0, x1, ty_Bool) 37.21/18.35 new_esEs20(LT, LT) 37.21/18.35 new_esEs17(False, True) 37.21/18.35 new_esEs17(True, False) 37.21/18.35 new_primEqNat0(Succ(x0), Succ(x1)) 37.21/18.35 new_ltEs21(x0, x1, ty_Float) 37.21/18.35 new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.21/18.35 new_lt5(x0, x1, ty_@0) 37.21/18.35 new_lt20(x0, x1, ty_Char) 37.21/18.35 new_ltEs20(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs37(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs40(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs40(x0, x1, ty_Char) 37.21/18.35 new_esEs9(x0, x1, ty_@0) 37.21/18.35 new_primCompAux00(x0, GT) 37.21/18.35 new_esEs18(Left(x0), Left(x1), ty_Int, x2) 37.21/18.35 new_esEs5(x0, x1, app(ty_[], x2)) 37.21/18.35 new_gt(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs40(x0, x1, ty_Int) 37.21/18.35 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_compare12(@0, @0) 37.21/18.35 new_esEs36(x0, x1, ty_Integer) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 37.21/18.35 new_lt23(x0, x1, ty_Integer) 37.21/18.35 new_ltEs21(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs36(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_compare7(x0, x1, ty_Integer) 37.21/18.35 new_primCompAux00(x0, LT) 37.21/18.35 new_esEs37(x0, x1, ty_Double) 37.21/18.35 new_esEs18(Left(x0), Left(x1), ty_Char, x2) 37.21/18.35 new_lt5(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs35(x0, x1, ty_Integer) 37.21/18.35 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_compare13(:%(x0, x1), :%(x2, x3), ty_Int) 37.21/18.35 new_esEs4(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs7(x0, x1, ty_Integer) 37.21/18.35 new_esEs39(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_lt6(x0, x1, ty_Bool) 37.21/18.35 new_gt0(x0, x1) 37.21/18.35 new_esEs38(x0, x1, ty_Int) 37.21/18.35 new_compare110(x0, x1, x2, x3, True, x4, x5, x6) 37.21/18.35 new_esEs38(x0, x1, ty_Char) 37.21/18.35 new_ltEs9(x0, x1) 37.21/18.35 new_esEs14(GT) 37.21/18.35 new_esEs34(x0, x1, ty_Double) 37.21/18.35 new_ltEs18(x0, x1) 37.21/18.35 new_primMulNat0(Succ(x0), Succ(x1)) 37.21/18.35 new_esEs8(x0, x1, app(ty_[], x2)) 37.21/18.35 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs5(x0, x1, ty_Ordering) 37.21/18.35 new_compare17(EQ, GT) 37.21/18.35 new_compare17(GT, EQ) 37.21/18.35 new_ltEs24(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_lt20(x0, x1, ty_@0) 37.21/18.35 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs38(x0, x1, ty_Float) 37.21/18.35 new_esEs7(x0, x1, ty_@0) 37.21/18.35 new_ltEs24(x0, x1, app(ty_[], x2)) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.21/18.35 new_lt23(x0, x1, ty_Bool) 37.21/18.35 new_lt21(x0, x1, ty_Integer) 37.21/18.35 new_lt21(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, ty_Float) 37.21/18.35 new_esEs35(x0, x1, ty_Bool) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, ty_Integer) 37.21/18.35 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 37.21/18.35 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 37.21/18.35 new_compare10(x0, x1, False, x2, x3) 37.21/18.35 new_primEqNat0(Zero, Zero) 37.21/18.35 new_esEs33(x0, x1, ty_Float) 37.21/18.35 new_not(False) 37.21/18.35 new_esEs23(Just(x0), Just(x1), ty_Ordering) 37.21/18.35 new_lt23(x0, x1, ty_Char) 37.21/18.35 new_lt6(x0, x1, ty_Char) 37.21/18.35 new_lt21(x0, x1, ty_Char) 37.21/18.35 new_esEs28(x0, x1, ty_Double) 37.21/18.35 new_compare7(x0, x1, ty_Char) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.21/18.35 new_esEs40(x0, x1, ty_Integer) 37.21/18.35 new_lt6(x0, x1, app(ty_[], x2)) 37.21/18.35 new_lt22(x0, x1, ty_Double) 37.21/18.35 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 37.21/18.35 new_esEs36(x0, x1, ty_Int) 37.21/18.35 new_ltEs21(x0, x1, ty_Integer) 37.21/18.35 new_esEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, ty_Int) 37.21/18.35 new_lt23(x0, x1, ty_Int) 37.21/18.35 new_lt5(x0, x1, ty_Integer) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 37.21/18.35 new_lt21(x0, x1, ty_Int) 37.21/18.35 new_lt24(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_primMulInt(Pos(x0), Neg(x1)) 37.21/18.35 new_primMulInt(Neg(x0), Pos(x1)) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 37.21/18.35 new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.21/18.35 new_compare7(x0, x1, ty_Int) 37.21/18.35 new_esEs8(x0, x1, ty_Double) 37.21/18.35 new_lt24(x0, x1, ty_Double) 37.21/18.35 new_esEs41(LT) 37.21/18.35 new_lt23(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, ty_Char) 37.21/18.35 new_lt21(x0, x1, ty_Bool) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.21/18.35 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.21/18.35 new_compare28(x0, x1, x2, x3, False, x4, x5) 37.21/18.35 new_ltEs22(x0, x1, ty_Double) 37.21/18.35 new_compare111(x0, x1, x2, x3, True, x4, x5) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, ty_Bool) 37.21/18.35 new_esEs36(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs36(x0, x1, ty_Float) 37.21/18.35 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 37.21/18.35 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 37.21/18.35 new_ltEs13(Nothing, Nothing, x0) 37.21/18.35 new_esEs38(x0, x1, ty_Bool) 37.21/18.35 new_lt23(x0, x1, ty_Float) 37.21/18.35 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_lt6(x0, x1, ty_Int) 37.21/18.35 new_esEs32(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_compare7(x0, x1, ty_Float) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.21/18.35 new_esEs6(x0, x1, ty_Bool) 37.21/18.35 new_compare17(LT, GT) 37.21/18.35 new_compare17(GT, LT) 37.21/18.35 new_compare29(x0, x1, False, x2, x3) 37.21/18.35 new_esEs10(x0, x1, ty_Char) 37.21/18.35 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 37.21/18.35 new_esEs8(x0, x1, ty_Int) 37.21/18.35 new_lt22(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), ty_Int) 37.21/18.35 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs37(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs22(:%(x0, x1), :%(x2, x3), x4) 37.21/18.35 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 37.21/18.35 new_primCmpNat0(Succ(x0), Zero) 37.21/18.35 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs9(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.21/18.35 new_compare7(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_asAs(False, x0) 37.21/18.35 new_compare6(Char(x0), Char(x1)) 37.21/18.35 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs24(x0, x1, ty_@0) 37.21/18.35 new_esEs4(x0, x1, ty_Int) 37.21/18.35 new_esEs6(x0, x1, ty_@0) 37.21/18.35 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 37.21/18.35 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 37.21/18.35 new_esEs18(Left(x0), Left(x1), ty_Integer, x2) 37.21/18.35 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 37.21/18.35 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs10(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_primCompAux00(x0, EQ) 37.21/18.35 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs35(x0, x1, app(ty_[], x2)) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 37.21/18.35 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 37.21/18.35 new_lt22(x0, x1, ty_Int) 37.21/18.35 new_esEs17(False, False) 37.21/18.35 new_ltEs8(Right(x0), Left(x1), x2, x3) 37.21/18.35 new_ltEs8(Left(x0), Right(x1), x2, x3) 37.21/18.35 new_lt21(x0, x1, ty_Float) 37.21/18.35 new_esEs10(x0, x1, ty_Ordering) 37.21/18.35 new_compare26(x0, x1, False, x2) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.21/18.35 new_esEs34(x0, x1, app(ty_[], x2)) 37.21/18.35 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 37.21/18.35 new_esEs6(x0, x1, ty_Integer) 37.21/18.35 new_lt22(x0, x1, ty_@0) 37.21/18.35 new_esEs11(x0, x1, ty_@0) 37.21/18.35 new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.21/18.35 new_ltEs23(x0, x1, ty_Bool) 37.21/18.35 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs18(Left(x0), Left(x1), ty_@0, x2) 37.21/18.35 new_esEs31(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs4(x0, x1, ty_@0) 37.21/18.35 new_ltEs24(x0, x1, ty_Integer) 37.21/18.35 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 37.21/18.35 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs39(x0, x1, app(ty_[], x2)) 37.21/18.35 new_ltEs23(x0, x1, ty_Float) 37.21/18.35 new_esEs33(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs23(x0, x1, ty_@0) 37.21/18.35 new_esEs10(x0, x1, ty_Double) 37.21/18.35 new_compare([], :(x0, x1), x2) 37.21/18.35 new_esEs27(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 37.21/18.35 new_esEs18(Left(x0), Left(x1), ty_Bool, x2) 37.21/18.35 new_esEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.21/18.35 new_esEs5(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 37.21/18.35 new_primMulInt(Neg(x0), Neg(x1)) 37.21/18.35 new_compare15(Nothing, Just(x0), x1) 37.21/18.35 new_esEs18(Left(x0), Left(x1), ty_Float, x2) 37.21/18.35 new_primPlusNat0(Succ(x0), Succ(x1)) 37.21/18.35 new_ltEs21(x0, x1, ty_Double) 37.21/18.35 new_esEs27(x0, x1, ty_Float) 37.21/18.35 new_lt24(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs21(x0, x1, ty_Char) 37.21/18.35 new_lt9(x0, x1) 37.21/18.35 new_lt5(x0, x1, ty_Char) 37.21/18.35 new_esEs38(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_fsEs(x0) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 37.21/18.35 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs20(x0, x1, ty_Int) 37.21/18.35 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_lt7(x0, x1, x2) 37.21/18.35 new_compare14(True, True) 37.21/18.35 new_lt5(x0, x1, ty_Double) 37.21/18.35 new_esEs34(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs35(x0, x1, ty_Float) 37.21/18.35 new_esEs32(x0, x1, ty_Float) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 37.21/18.35 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 37.21/18.35 new_esEs37(x0, x1, ty_Float) 37.21/18.35 new_esEs4(x0, x1, ty_Bool) 37.21/18.35 new_esEs9(x0, x1, ty_Float) 37.21/18.35 new_compare10(x0, x1, True, x2, x3) 37.21/18.35 new_ltEs22(x0, x1, ty_Ordering) 37.21/18.35 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 37.21/18.35 new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.21/18.35 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_ltEs15(x0, x1) 37.21/18.35 new_esEs6(x0, x1, ty_Float) 37.21/18.35 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_lt21(x0, x1, ty_@0) 37.21/18.35 new_esEs41(GT) 37.21/18.35 new_lt6(x0, x1, ty_@0) 37.21/18.35 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_compare7(x0, x1, ty_Ordering) 37.21/18.35 new_lt24(x0, x1, ty_Ordering) 37.21/18.35 new_esEs26([], :(x0, x1), x2) 37.21/18.35 new_lt23(x0, x1, ty_@0) 37.21/18.35 new_compare7(x0, x1, ty_Double) 37.21/18.35 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_ltEs5(x0, x1, ty_Double) 37.21/18.35 new_esEs39(x0, x1, ty_Integer) 37.21/18.35 new_esEs37(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs7(x0, x1) 37.21/18.35 new_esEs8(x0, x1, ty_Integer) 37.21/18.35 new_esEs32(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs16(GT, GT) 37.21/18.35 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs8(x0, x1, ty_Bool) 37.21/18.35 new_esEs4(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs6(x0, x1, ty_Int) 37.21/18.35 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs39(x0, x1, ty_@0) 37.21/18.35 new_esEs34(x0, x1, ty_Float) 37.21/18.35 new_esEs27(x0, x1, ty_Bool) 37.21/18.35 new_compare25(x0, x1, False, x2, x3) 37.21/18.35 new_esEs11(x0, x1, ty_Float) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.21/18.35 new_primCmpNat0(Succ(x0), Succ(x1)) 37.21/18.35 new_esEs23(Just(x0), Nothing, x1) 37.21/18.35 new_esEs5(x0, x1, ty_Ordering) 37.21/18.35 new_lt22(x0, x1, ty_Integer) 37.21/18.35 new_lt22(x0, x1, ty_Float) 37.21/18.35 new_esEs4(x0, x1, ty_Integer) 37.21/18.35 new_compare15(Just(x0), Just(x1), x2) 37.21/18.35 new_primEqNat0(Zero, Succ(x0)) 37.21/18.35 new_esEs34(x0, x1, ty_Ordering) 37.21/18.35 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_lt21(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs9(x0, x1, ty_Bool) 37.21/18.35 new_ltEs19(x0, x1, ty_Char) 37.21/18.35 new_compare28(x0, x1, x2, x3, True, x4, x5) 37.21/18.35 new_lt22(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs6(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_primCmpInt(Neg(Zero), Neg(Zero)) 37.21/18.35 new_lt17(x0, x1) 37.21/18.35 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs11(x0, x1, ty_Int) 37.21/18.35 new_esEs34(x0, x1, ty_Integer) 37.21/18.35 new_lt23(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) 37.21/18.35 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_primCmpInt(Pos(Zero), Neg(Zero)) 37.21/18.35 new_primCmpInt(Neg(Zero), Pos(Zero)) 37.21/18.35 new_esEs14(LT) 37.21/18.35 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), ty_@0) 37.21/18.35 new_compare16(@2(x0, x1), @2(x2, x3), x4, x5) 37.21/18.35 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs11(x0, x1, ty_Integer) 37.21/18.35 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs38(x0, x1, ty_Double) 37.21/18.35 new_esEs34(x0, x1, ty_Char) 37.21/18.35 new_esEs28(x0, x1, ty_Int) 37.21/18.35 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs14(EQ) 37.21/18.35 new_esEs34(x0, x1, ty_Bool) 37.21/18.35 new_primEqNat0(Succ(x0), Zero) 37.21/18.35 new_esEs20(EQ, EQ) 37.21/18.35 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_primPlusNat0(Zero, Succ(x0)) 37.21/18.35 new_lt24(x0, x1, ty_Char) 37.21/18.35 new_ltEs19(x0, x1, app(ty_[], x2)) 37.21/18.35 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs11(x0, x1, ty_Bool) 37.21/18.35 new_esEs5(x0, x1, ty_Char) 37.21/18.35 new_esEs40(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs9(x0, x1, ty_Ordering) 37.21/18.35 new_esEs27(x0, x1, ty_Ordering) 37.21/18.35 new_lt6(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_compare17(LT, LT) 37.21/18.35 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs37(x0, x1, ty_Integer) 37.21/18.35 new_esEs9(x0, x1, ty_Integer) 37.21/18.35 new_ltEs23(x0, x1, ty_Integer) 37.21/18.35 new_lt20(x0, x1, app(ty_[], x2)) 37.21/18.35 new_lt22(x0, x1, ty_Bool) 37.21/18.35 new_ltEs22(x0, x1, ty_Char) 37.21/18.35 new_compare(:(x0, x1), [], x2) 37.21/18.35 new_esEs32(x0, x1, ty_Integer) 37.21/18.35 new_esEs27(x0, x1, ty_Integer) 37.21/18.35 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_compare7(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs16(EQ, EQ) 37.21/18.35 new_lt21(x0, x1, ty_Double) 37.21/18.35 new_esEs37(x0, x1, ty_@0) 37.21/18.35 new_gt(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_lt5(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs39(x0, x1, ty_Int) 37.21/18.35 new_compare7(x0, x1, ty_@0) 37.21/18.35 new_ltEs20(x0, x1, ty_Integer) 37.21/18.35 new_primMulNat0(Zero, Zero) 37.21/18.35 new_lt8(x0, x1, x2, x3, x4) 37.21/18.35 new_lt21(x0, x1, ty_Ordering) 37.21/18.35 new_compare115(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.21/18.35 new_esEs9(x0, x1, ty_Int) 37.21/18.35 new_esEs35(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs23(Nothing, Just(x0), x1) 37.21/18.35 new_esEs10(x0, x1, app(ty_[], x2)) 37.21/18.35 new_lt4(x0, x1) 37.21/18.35 new_esEs25(Integer(x0), Integer(x1)) 37.21/18.35 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs39(x0, x1, ty_Char) 37.21/18.35 new_esEs9(x0, x1, ty_Char) 37.21/18.35 new_esEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.21/18.35 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs33(x0, x1, app(ty_[], x2)) 37.21/18.35 new_gt(x0, x1, ty_Int) 37.21/18.35 new_esEs9(x0, x1, ty_Double) 37.21/18.35 new_esEs31(x0, x1, ty_Char) 37.21/18.35 new_compare17(GT, GT) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.21/18.35 new_esEs28(x0, x1, ty_Char) 37.21/18.35 new_gt(x0, x1, ty_Double) 37.21/18.35 new_esEs32(x0, x1, ty_Bool) 37.21/18.35 new_esEs33(x0, x1, ty_Ordering) 37.21/18.35 new_esEs31(x0, x1, ty_Bool) 37.21/18.35 new_esEs4(x0, x1, ty_Float) 37.21/18.35 new_esEs11(x0, x1, app(ty_[], x2)) 37.21/18.35 new_esEs39(x0, x1, ty_Double) 37.21/18.35 new_esEs33(x0, x1, ty_@0) 37.21/18.35 new_gt(x0, x1, ty_Char) 37.21/18.35 new_esEs7(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs34(x0, x1, ty_@0) 37.21/18.35 new_lt20(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs20(LT, EQ) 37.21/18.35 new_esEs20(EQ, LT) 37.21/18.35 new_esEs28(x0, x1, ty_Bool) 37.21/18.35 new_ltEs20(x0, x1, ty_Float) 37.21/18.35 new_esEs12(Double(x0, x1), Double(x2, x3)) 37.21/18.35 new_esEs32(x0, x1, ty_Char) 37.21/18.35 new_ltEs23(x0, x1, ty_Double) 37.21/18.35 new_esEs8(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs20(GT, GT) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 37.21/18.35 new_esEs36(x0, x1, ty_Ordering) 37.21/18.35 new_esEs7(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs18(Left(x0), Left(x1), ty_Double, x2) 37.21/18.35 new_esEs30(x0, x1, ty_Integer) 37.21/18.35 new_pePe(False, x0) 37.21/18.35 new_esEs32(x0, x1, ty_Int) 37.21/18.35 new_primMulNat0(Succ(x0), Zero) 37.21/18.35 new_esEs23(Just(x0), Just(x1), ty_Int) 37.21/18.35 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_pePe(True, x0) 37.21/18.35 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs35(x0, x1, ty_Double) 37.21/18.35 new_ltEs20(x0, x1, ty_Bool) 37.21/18.35 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 37.21/18.35 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 37.21/18.35 new_esEs7(x0, x1, ty_Double) 37.21/18.35 new_ltEs12(False, True) 37.21/18.35 new_ltEs12(True, False) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.21/18.35 new_ltEs23(x0, x1, ty_Int) 37.21/18.35 new_lt6(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_lt12(x0, x1) 37.21/18.35 new_ltEs10(x0, x1) 37.21/18.35 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs27(x0, x1, ty_@0) 37.21/18.35 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs16(LT, GT) 37.21/18.35 new_ltEs16(GT, LT) 37.21/18.35 new_esEs40(x0, x1, ty_Double) 37.21/18.35 new_lt20(x0, x1, ty_Double) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 37.21/18.35 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_compare26(x0, x1, True, x2) 37.21/18.35 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_ltEs13(Just(x0), Nothing, x1) 37.21/18.35 new_primCmpInt(Pos(Zero), Pos(Zero)) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), ty_Integer) 37.21/18.35 new_esEs31(x0, x1, ty_Integer) 37.21/18.35 new_esEs28(x0, x1, ty_Integer) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.21/18.35 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 37.21/18.35 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 37.21/18.35 new_esEs6(x0, x1, ty_Ordering) 37.21/18.35 new_esEs6(x0, x1, ty_Double) 37.21/18.35 new_gt(x0, x1, ty_Bool) 37.21/18.35 new_lt16(x0, x1, x2, x3) 37.21/18.35 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_ltEs19(x0, x1, ty_@0) 37.21/18.35 new_esEs39(x0, x1, ty_Bool) 37.21/18.35 new_ltEs5(x0, x1, ty_Float) 37.21/18.35 new_esEs23(Just(x0), Just(x1), ty_Char) 37.21/18.35 new_esEs38(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 37.21/18.35 new_lt20(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.21/18.35 new_primCompAux0(x0, x1, x2, x3) 37.21/18.35 new_esEs11(x0, x1, ty_Double) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), ty_Bool) 37.21/18.35 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_esEs26(:(x0, x1), :(x2, x3), x4) 37.21/18.35 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs38(x0, x1, ty_Ordering) 37.21/18.35 new_esEs18(Right(x0), Right(x1), x2, ty_Ordering) 37.21/18.35 new_esEs30(x0, x1, ty_Int) 37.21/18.35 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_compare11(Left(x0), Left(x1), x2, x3) 37.21/18.35 new_compare114(x0, x1, True, x2) 37.21/18.35 new_esEs20(EQ, GT) 37.21/18.35 new_esEs20(GT, EQ) 37.21/18.35 new_compare9(x0, x1) 37.21/18.35 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs13(Nothing, Just(x0), x1) 37.21/18.35 new_esEs32(x0, x1, ty_Double) 37.21/18.35 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs5(x0, x1, ty_Int) 37.21/18.35 new_esEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 37.21/18.35 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs24(x0, x1, ty_Float) 37.21/18.35 new_esEs41(EQ) 37.21/18.35 new_ltEs6(x0, x1, x2) 37.21/18.35 new_primMulInt(Pos(x0), Pos(x1)) 37.21/18.35 new_esEs23(Just(x0), Just(x1), ty_Bool) 37.21/18.35 new_ltEs5(x0, x1, ty_Integer) 37.21/18.35 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 37.21/18.35 new_esEs27(x0, x1, app(ty_[], x2)) 37.21/18.35 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_esEs28(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.35 new_lt20(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs24(x0, x1, ty_Char) 37.21/18.35 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_lt5(x0, x1, ty_Ordering) 37.21/18.35 new_esEs28(x0, x1, ty_@0) 37.21/18.35 new_lt19(x0, x1) 37.21/18.35 new_ltEs12(False, False) 37.21/18.35 new_esEs8(x0, x1, ty_@0) 37.21/18.35 new_lt14(x0, x1) 37.21/18.35 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.35 new_ltEs5(x0, x1, ty_Char) 37.21/18.35 new_esEs10(x0, x1, ty_Float) 37.21/18.35 new_esEs35(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs24(x0, x1, ty_Int) 37.21/18.35 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_esEs31(x0, x1, ty_Int) 37.21/18.35 new_lt24(x0, x1, ty_@0) 37.21/18.35 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 37.21/18.35 new_compare25(x0, x1, True, x2, x3) 37.21/18.35 new_compare19(Integer(x0), Integer(x1)) 37.21/18.35 new_esEs23(Just(x0), Just(x1), ty_Integer) 37.21/18.35 new_esEs6(x0, x1, app(ty_[], x2)) 37.21/18.35 new_sr0(Integer(x0), Integer(x1)) 37.21/18.35 new_esEs35(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs24(x0, x1, ty_Bool) 37.21/18.35 new_esEs39(x0, x1, ty_Float) 37.21/18.35 new_esEs18(Left(x0), Left(x1), ty_Ordering, x2) 37.21/18.35 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.35 new_esEs5(x0, x1, ty_Double) 37.21/18.35 new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.21/18.35 new_ltEs5(x0, x1, ty_Bool) 37.21/18.35 new_esEs11(x0, x1, app(ty_Maybe, x2)) 37.21/18.35 new_esEs40(x0, x1, ty_Ordering) 37.21/18.35 new_ltEs21(x0, x1, ty_Ordering) 37.21/18.35 new_esEs7(x0, x1, app(ty_Ratio, x2)) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.21/18.35 new_ltEs17(x0, x1) 37.21/18.35 new_esEs9(x0, x1, app(ty_[], x2)) 37.21/18.35 new_ltEs13(Just(x0), Just(x1), ty_Float) 37.21/18.35 new_compare8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.21/18.35 new_primCmpNat0(Zero, Zero) 37.21/18.35 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 37.21/18.35 new_esEs31(x0, x1, ty_Float) 37.21/18.35 37.21/18.35 We have to consider all minimal (P,Q,R)-chains. 37.21/18.35 ---------------------------------------- 37.21/18.35 37.21/18.35 (24) QDPSizeChangeProof (EQUIVALENT) 37.21/18.35 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. 37.21/18.35 37.21/18.35 From the DPs we obtained the following set of size-change graphs: 37.21/18.35 *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) 37.21/18.35 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 7, 4 >= 9, 5 >= 10 37.21/18.35 37.21/18.35 37.21/18.35 *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) 37.21/18.35 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 37.21/18.35 37.21/18.35 37.21/18.35 *new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bb, bc) -> new_addToFM_C(xuu35, xuu36, xuu37, bb, bc) 37.21/18.35 The graph contains the following edges 5 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 37.21/18.35 37.21/18.35 37.21/18.35 *new_addToFM_C2(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, h, ba) -> new_addToFM_C(xuu17, xuu19, xuu20, h, ba) 37.21/18.35 The graph contains the following edges 4 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 37.21/18.35 37.21/18.35 37.21/18.35 ---------------------------------------- 37.21/18.35 37.21/18.35 (25) 37.21/18.35 YES 37.21/18.35 37.21/18.35 ---------------------------------------- 37.21/18.35 37.21/18.35 (26) 37.21/18.35 Obligation: 37.21/18.35 Q DP problem: 37.21/18.35 The TRS P consists of the following rules: 37.21/18.35 37.21/18.35 new_primCompAux(xuu4000, xuu300, xuu45, app(ty_[], ba)) -> new_compare0(xuu4000, xuu300, ba) 37.21/18.35 new_compare21(Just(xuu700), Just(xuu710), False, app(ty_Maybe, app(app(ty_Either, bfg), bfh)), gh) -> new_ltEs1(xuu700, xuu710, bfg, bfh) 37.21/18.35 new_compare21(Just(xuu700), Just(xuu710), False, app(ty_Maybe, app(app(ty_@2, bgb), bgc)), gh) -> new_ltEs3(xuu700, xuu710, bgb, bgc) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), app(app(ty_@2, bbd), bbe)), hc), gh) -> new_lt3(xuu701, xuu711, bbd, bbe) 37.21/18.35 new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, app(app(ty_Either, cac), cad)) -> new_ltEs1(xuu701, xuu711, cac, cad) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, app(ty_Maybe, baa)), hb), hc), gh) -> new_lt2(xuu700, xuu710, baa) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs0(xuu702, xuu712, bbg, bbh, bca) 37.21/18.35 new_compare21(xuu70, xuu71, False, app(ty_[], gg), gh) -> new_compare0(xuu70, xuu71, gg) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), hb), app(ty_[], bbf)), gh) -> new_ltEs(xuu702, xuu712, bbf) 37.21/18.35 new_compare24(xuu121, xuu122, xuu123, xuu124, False, cdf, app(app(app(ty_@3, cdh), cea), ceb)) -> new_ltEs0(xuu122, xuu124, cdh, cea, ceb) 37.21/18.35 new_compare21(Right(xuu700), Right(xuu710), False, app(app(ty_Either, bea), app(ty_Maybe, beh)), gh) -> new_ltEs2(xuu700, xuu710, beh) 37.21/18.35 new_compare24(xuu121, xuu122, xuu123, xuu124, False, app(app(app(ty_@3, ccf), ccg), cch), cce) -> new_lt0(xuu121, xuu123, ccf, ccg, cch) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), app(app(app(ty_@3, hd), he), hf), hb, hc) -> new_lt0(xuu700, xuu710, hd, he, hf) 37.21/18.35 new_ltEs1(Right(xuu700), Right(xuu710), bea, app(ty_[], beb)) -> new_ltEs(xuu700, xuu710, beb) 37.21/18.35 new_compare21(Right(xuu700), Right(xuu710), False, app(app(ty_Either, bea), app(ty_[], beb)), gh) -> new_ltEs(xuu700, xuu710, beb) 37.21/18.35 new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, app(ty_Maybe, bhc)), bge), gh) -> new_lt2(xuu700, xuu710, bhc) 37.21/18.35 new_compare21(Just(xuu700), Just(xuu710), False, app(ty_Maybe, app(ty_Maybe, bga)), gh) -> new_ltEs2(xuu700, xuu710, bga) 37.21/18.35 new_compare21(Left(xuu700), Left(xuu710), False, app(app(ty_Either, app(ty_Maybe, bdf)), bch), gh) -> new_ltEs2(xuu700, xuu710, bdf) 37.21/18.35 new_ltEs1(Left(xuu700), Left(xuu710), app(ty_Maybe, bdf), bch) -> new_ltEs2(xuu700, xuu710, bdf) 37.21/18.35 new_compare22(xuu77, xuu78, False, ceh, app(ty_[], cfa)) -> new_ltEs(xuu77, xuu78, cfa) 37.21/18.35 new_ltEs1(Left(xuu700), Left(xuu710), app(ty_[], bcg), bch) -> new_ltEs(xuu700, xuu710, bcg) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), app(ty_[], bae)), hc), gh) -> new_lt(xuu701, xuu711, bae) 37.21/18.35 new_compare21(Left(xuu700), Left(xuu710), False, app(app(ty_Either, app(ty_[], bcg)), bch), gh) -> new_ltEs(xuu700, xuu710, bcg) 37.21/18.35 new_compare22(xuu77, xuu78, False, ceh, app(app(ty_@2, cfh), cga)) -> new_ltEs3(xuu77, xuu78, cfh, cga) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs0(xuu110, xuu113, fd, ff, fg) 37.21/18.35 new_compare24(xuu121, xuu122, xuu123, xuu124, False, app(ty_Maybe, cdc), cce) -> new_lt2(xuu121, xuu123, cdc) 37.21/18.35 new_lt1(Left(xuu4000), Left(xuu300), ge, gf) -> new_compare21(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, ge), ge, gf) 37.21/18.35 new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, app(app(ty_@2, bhd), bhe)), bge), gh) -> new_lt3(xuu700, xuu710, bhd, bhe) 37.21/18.35 new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, app(app(ty_@2, caf), cag)) -> new_ltEs3(xuu701, xuu711, caf, cag) 37.21/18.35 new_ltEs1(Right(xuu700), Right(xuu710), bea, app(app(ty_Either, bef), beg)) -> new_ltEs1(xuu700, xuu710, bef, beg) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, app(ty_Maybe, gb)) -> new_ltEs2(xuu110, xuu113, gb) 37.21/18.35 new_ltEs1(Left(xuu700), Left(xuu710), app(app(ty_@2, bdg), bdh), bch) -> new_ltEs3(xuu700, xuu710, bdg, bdh) 37.21/18.35 new_compare2(Left(xuu4000), Left(xuu300), ge, gf) -> new_compare21(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, ge), ge, gf) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), hb), app(ty_Maybe, bcd)), gh) -> new_ltEs2(xuu702, xuu712, bcd) 37.21/18.35 new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), app(app(ty_@2, bhd), bhe), bge) -> new_lt3(xuu700, xuu710, bhd, bhe) 37.21/18.35 new_lt3(@2(xuu4000, xuu4001), @2(xuu300, xuu301), ccb, ccc) -> new_compare24(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs10(xuu4000, xuu300, ccb), new_esEs11(xuu4001, xuu301, ccc)), ccb, ccc) 37.21/18.35 new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, app(ty_Maybe, cae)) -> new_ltEs2(xuu701, xuu711, cae) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), app(ty_Maybe, baa), hb, hc) -> new_lt2(xuu700, xuu710, baa) 37.21/18.35 new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, bhf), app(app(ty_@2, caf), cag)), gh) -> new_ltEs3(xuu701, xuu711, caf, cag) 37.21/18.35 new_compare24(xuu121, xuu122, xuu123, xuu124, False, cdf, app(ty_[], cdg)) -> new_ltEs(xuu122, xuu124, cdg) 37.21/18.35 new_compare24(xuu121, xuu122, xuu123, xuu124, False, app(ty_[], ccd), cce) -> new_lt(xuu121, xuu123, ccd) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), app(ty_Maybe, bbc)), hc), gh) -> new_lt2(xuu701, xuu711, bbc) 37.21/18.35 new_compare21(Left(xuu700), Left(xuu710), False, app(app(ty_Either, app(app(ty_@2, bdg), bdh)), bch), gh) -> new_ltEs3(xuu700, xuu710, bdg, bdh) 37.21/18.35 new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, app(app(app(ty_@3, bgf), bgg), bgh)), bge), gh) -> new_lt0(xuu700, xuu710, bgf, bgg, bgh) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, app(app(ty_@2, bab), bac)), hb), hc), gh) -> new_lt3(xuu700, xuu710, bab, bac) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), app(ty_[], ha), hb, hc) -> new_lt(xuu700, xuu710, ha) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, app(ty_Maybe, df), cf, cg) -> new_lt2(xuu108, xuu111, df) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), app(app(ty_Either, bba), bbb)), hc), gh) -> new_lt1(xuu701, xuu711, bba, bbb) 37.21/18.35 new_compare22(xuu77, xuu78, False, ceh, app(app(ty_Either, cfe), cff)) -> new_ltEs1(xuu77, xuu78, cfe, cff) 37.21/18.35 new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, app(ty_[], bgd)), bge), gh) -> new_lt(xuu700, xuu710, bgd) 37.21/18.35 new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, bhf), app(ty_[], bhg)), gh) -> new_ltEs(xuu701, xuu711, bhg) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, app(ty_[], bae), hc) -> new_lt(xuu701, xuu711, bae) 37.21/18.35 new_ltEs1(Right(xuu700), Right(xuu710), bea, app(ty_Maybe, beh)) -> new_ltEs2(xuu700, xuu710, beh) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, app(app(ty_@2, dg), dh), cf, cg) -> new_lt3(xuu108, xuu111, dg, dh) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, app(ty_[], eb), cg) -> new_lt(xuu109, xuu112, eb) 37.21/18.35 new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, bhf), app(app(ty_Either, cac), cad)), gh) -> new_ltEs1(xuu701, xuu711, cac, cad) 37.21/18.35 new_compare24(xuu121, xuu122, xuu123, xuu124, False, cdf, app(ty_Maybe, cee)) -> new_ltEs2(xuu122, xuu124, cee) 37.21/18.35 new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), app(ty_[], bgd), bge) -> new_lt(xuu700, xuu710, bgd) 37.21/18.35 new_compare24(xuu121, xuu122, xuu123, xuu124, False, cdf, app(app(ty_@2, cef), ceg)) -> new_ltEs3(xuu122, xuu124, cef, ceg) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), hb), app(app(ty_@2, bce), bcf)), gh) -> new_ltEs3(xuu702, xuu712, bce, bcf) 37.21/18.35 new_compare21(Left(xuu700), Left(xuu710), False, app(app(ty_Either, app(app(ty_Either, bdd), bde)), bch), gh) -> new_ltEs1(xuu700, xuu710, bdd, bde) 37.21/18.35 new_compare21(Right(xuu700), Right(xuu710), False, app(app(ty_Either, bea), app(app(ty_Either, bef), beg)), gh) -> new_ltEs1(xuu700, xuu710, bef, beg) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, app(ty_[], ha)), hb), hc), gh) -> new_lt(xuu700, xuu710, ha) 37.21/18.35 new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs0(xuu701, xuu711, bhh, caa, cab) 37.21/18.35 new_compare0(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_compare0(xuu4001, xuu301, h) 37.21/18.35 new_compare1(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cb, cc, cd) -> new_compare20(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs4(xuu4000, xuu300, cb), new_asAs(new_esEs5(xuu4001, xuu301, cc), new_esEs6(xuu4002, xuu302, cd))), cb, cc, cd) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, app(app(ty_Either, bcb), bcc)) -> new_ltEs1(xuu702, xuu712, bcb, bcc) 37.21/18.35 new_ltEs2(Just(xuu700), Just(xuu710), app(ty_[], bfc)) -> new_ltEs(xuu700, xuu710, bfc) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, app(app(app(ty_@3, da), db), dc), cf, cg) -> new_lt0(xuu108, xuu111, da, db, dc) 37.21/18.35 new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, app(app(ty_Either, bha), bhb)), bge), gh) -> new_lt1(xuu700, xuu710, bha, bhb) 37.21/18.35 new_ltEs2(Just(xuu700), Just(xuu710), app(ty_Maybe, bga)) -> new_ltEs2(xuu700, xuu710, bga) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), app(app(ty_@2, bab), bac), hb, hc) -> new_lt3(xuu700, xuu710, bab, bac) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), hb), app(app(app(ty_@3, bbg), bbh), bca)), gh) -> new_ltEs0(xuu702, xuu712, bbg, bbh, bca) 37.21/18.35 new_compare23(xuu84, xuu85, False, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_ltEs0(xuu84, xuu85, cbb, cbc, cbd) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, app(app(ty_Either, fh), ga)) -> new_ltEs1(xuu110, xuu113, fh, ga) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, app(ty_[], bbf)) -> new_ltEs(xuu702, xuu712, bbf) 37.21/18.35 new_ltEs2(Just(xuu700), Just(xuu710), app(app(ty_@2, bgb), bgc)) -> new_ltEs3(xuu700, xuu710, bgb, bgc) 37.21/18.35 new_compare23(xuu84, xuu85, False, app(ty_[], cba)) -> new_ltEs(xuu84, xuu85, cba) 37.21/18.35 new_primCompAux(xuu4000, xuu300, xuu45, app(ty_Maybe, bg)) -> new_compare3(xuu4000, xuu300, bg) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, app(app(ty_@2, bbd), bbe), hc) -> new_lt3(xuu701, xuu711, bbd, bbe) 37.21/18.35 new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, app(ty_[], bhg)) -> new_ltEs(xuu701, xuu711, bhg) 37.21/18.35 new_lt1(Right(xuu4000), Right(xuu300), ge, gf) -> new_compare22(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, gf), ge, gf) 37.21/18.35 new_compare24(xuu121, xuu122, xuu123, xuu124, False, app(app(ty_Either, cda), cdb), cce) -> new_lt1(xuu121, xuu123, cda, cdb) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, app(ty_[], fc)) -> new_ltEs(xuu110, xuu113, fc) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, app(app(ty_Either, dd), de), cf, cg) -> new_lt1(xuu108, xuu111, dd, de) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, app(app(ty_Either, hg), hh)), hb), hc), gh) -> new_lt1(xuu700, xuu710, hg, hh) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, app(app(ty_@2, fa), fb), cg) -> new_lt3(xuu109, xuu112, fa, fb) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), app(app(app(ty_@3, baf), bag), bah)), hc), gh) -> new_lt0(xuu701, xuu711, baf, bag, bah) 37.21/18.35 new_lt(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_compare0(xuu4001, xuu301, h) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, app(app(ty_Either, bba), bbb), hc) -> new_lt1(xuu701, xuu711, bba, bbb) 37.21/18.35 new_compare24(xuu121, xuu122, xuu123, xuu124, False, cdf, app(app(ty_Either, cec), ced)) -> new_ltEs1(xuu122, xuu124, cec, ced) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, app(app(ty_@2, gc), gd)) -> new_ltEs3(xuu110, xuu113, gc, gd) 37.21/18.35 new_compare24(xuu121, xuu122, xuu123, xuu124, False, app(app(ty_@2, cdd), cde), cce) -> new_lt3(xuu121, xuu123, cdd, cde) 37.21/18.35 new_compare21(Left(xuu700), Left(xuu710), False, app(app(ty_Either, app(app(app(ty_@3, bda), bdb), bdc)), bch), gh) -> new_ltEs0(xuu700, xuu710, bda, bdb, bdc) 37.21/18.35 new_lt(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_primCompAux(xuu4000, xuu300, new_compare(xuu4001, xuu301, h), h) 37.21/18.35 new_ltEs2(Just(xuu700), Just(xuu710), app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs0(xuu700, xuu710, bfd, bfe, bff) 37.21/18.35 new_ltEs2(Just(xuu700), Just(xuu710), app(app(ty_Either, bfg), bfh)) -> new_ltEs1(xuu700, xuu710, bfg, bfh) 37.21/18.35 new_primCompAux(xuu4000, xuu300, xuu45, app(app(ty_Either, be), bf)) -> new_compare2(xuu4000, xuu300, be, bf) 37.21/18.35 new_ltEs1(Left(xuu700), Left(xuu710), app(app(app(ty_@3, bda), bdb), bdc), bch) -> new_ltEs0(xuu700, xuu710, bda, bdb, bdc) 37.21/18.35 new_compare21(Right(xuu700), Right(xuu710), False, app(app(ty_Either, bea), app(app(ty_@2, bfa), bfb)), gh) -> new_ltEs3(xuu700, xuu710, bfa, bfb) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, app(app(app(ty_@3, baf), bag), bah), hc) -> new_lt0(xuu701, xuu711, baf, bag, bah) 37.21/18.35 new_compare23(xuu84, xuu85, False, app(app(ty_@2, cbh), cca)) -> new_ltEs3(xuu84, xuu85, cbh, cca) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, app(app(ty_@2, bce), bcf)) -> new_ltEs3(xuu702, xuu712, bce, bcf) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), app(app(ty_Either, hg), hh), hb, hc) -> new_lt1(xuu700, xuu710, hg, hh) 37.21/18.35 new_lt2(Just(xuu4000), Just(xuu300), cah) -> new_compare23(xuu4000, xuu300, new_esEs9(xuu4000, xuu300, cah), cah) 37.21/18.35 new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, bhf), app(app(app(ty_@3, bhh), caa), cab)), gh) -> new_ltEs0(xuu701, xuu711, bhh, caa, cab) 37.21/18.35 new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), app(app(app(ty_@3, bgf), bgg), bgh), bge) -> new_lt0(xuu700, xuu710, bgf, bgg, bgh) 37.21/18.35 new_compare21(Just(xuu700), Just(xuu710), False, app(ty_Maybe, app(app(app(ty_@3, bfd), bfe), bff)), gh) -> new_ltEs0(xuu700, xuu710, bfd, bfe, bff) 37.21/18.35 new_compare0(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_primCompAux(xuu4000, xuu300, new_compare(xuu4001, xuu301, h), h) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), hb), app(app(ty_Either, bcb), bcc)), gh) -> new_ltEs1(xuu702, xuu712, bcb, bcc) 37.21/18.35 new_ltEs(xuu70, xuu71, gg) -> new_compare0(xuu70, xuu71, gg) 37.21/18.35 new_ltEs1(Left(xuu700), Left(xuu710), app(app(ty_Either, bdd), bde), bch) -> new_ltEs1(xuu700, xuu710, bdd, bde) 37.21/18.35 new_compare4(@2(xuu4000, xuu4001), @2(xuu300, xuu301), ccb, ccc) -> new_compare24(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs10(xuu4000, xuu300, ccb), new_esEs11(xuu4001, xuu301, ccc)), ccb, ccc) 37.21/18.35 new_compare2(Right(xuu4000), Right(xuu300), ge, gf) -> new_compare22(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, gf), ge, gf) 37.21/18.35 new_compare3(Just(xuu4000), Just(xuu300), cah) -> new_compare23(xuu4000, xuu300, new_esEs9(xuu4000, xuu300, cah), cah) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, app(ty_Maybe, bcd)) -> new_ltEs2(xuu702, xuu712, bcd) 37.21/18.35 new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), app(ty_Maybe, bhc), bge) -> new_lt2(xuu700, xuu710, bhc) 37.21/18.35 new_compare21(Just(xuu700), Just(xuu710), False, app(ty_Maybe, app(ty_[], bfc)), gh) -> new_ltEs(xuu700, xuu710, bfc) 37.21/18.35 new_compare22(xuu77, xuu78, False, ceh, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs0(xuu77, xuu78, cfb, cfc, cfd) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, app(ty_[], ce), cf, cg) -> new_lt(xuu108, xuu111, ce) 37.21/18.35 new_ltEs1(Right(xuu700), Right(xuu710), bea, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs0(xuu700, xuu710, bec, bed, bee) 37.21/18.35 new_primCompAux(xuu4000, xuu300, xuu45, app(app(ty_@2, bh), ca)) -> new_compare4(xuu4000, xuu300, bh, ca) 37.21/18.35 new_compare23(xuu84, xuu85, False, app(ty_Maybe, cbg)) -> new_ltEs2(xuu84, xuu85, cbg) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, app(ty_Maybe, eh), cg) -> new_lt2(xuu109, xuu112, eh) 37.21/18.35 new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, app(ty_Maybe, bbc), hc) -> new_lt2(xuu701, xuu711, bbc) 37.21/18.35 new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, bhf), app(ty_Maybe, cae)), gh) -> new_ltEs2(xuu701, xuu711, cae) 37.21/18.35 new_compare22(xuu77, xuu78, False, ceh, app(ty_Maybe, cfg)) -> new_ltEs2(xuu77, xuu78, cfg) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, app(app(ty_Either, ef), eg), cg) -> new_lt1(xuu109, xuu112, ef, eg) 37.21/18.35 new_lt0(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cb, cc, cd) -> new_compare20(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs4(xuu4000, xuu300, cb), new_asAs(new_esEs5(xuu4001, xuu301, cc), new_esEs6(xuu4002, xuu302, cd))), cb, cc, cd) 37.21/18.35 new_compare21(Right(xuu700), Right(xuu710), False, app(app(ty_Either, bea), app(app(app(ty_@3, bec), bed), bee)), gh) -> new_ltEs0(xuu700, xuu710, bec, bed, bee) 37.21/18.35 new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, app(app(app(ty_@3, hd), he), hf)), hb), hc), gh) -> new_lt0(xuu700, xuu710, hd, he, hf) 37.21/18.35 new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, app(app(app(ty_@3, ec), ed), ee), cg) -> new_lt0(xuu109, xuu112, ec, ed, ee) 37.21/18.35 new_primCompAux(xuu4000, xuu300, xuu45, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(xuu4000, xuu300, bb, bc, bd) 37.21/18.35 new_ltEs1(Right(xuu700), Right(xuu710), bea, app(app(ty_@2, bfa), bfb)) -> new_ltEs3(xuu700, xuu710, bfa, bfb) 37.21/18.35 new_compare23(xuu84, xuu85, False, app(app(ty_Either, cbe), cbf)) -> new_ltEs1(xuu84, xuu85, cbe, cbf) 37.21/18.35 new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), app(app(ty_Either, bha), bhb), bge) -> new_lt1(xuu700, xuu710, bha, bhb) 37.21/18.35 37.21/18.35 The TRS R consists of the following rules: 37.21/18.35 37.21/18.35 new_ltEs24(xuu701, xuu711, ty_Char) -> new_ltEs10(xuu701, xuu711) 37.21/18.35 new_esEs27(xuu700, xuu710, app(ty_[], ha)) -> new_esEs26(xuu700, xuu710, ha) 37.21/18.35 new_primCmpInt(Neg(Succ(xuu40000)), Pos(xuu300)) -> LT 37.21/18.35 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 37.21/18.35 new_primPlusNat0(Zero, Zero) -> Zero 37.21/18.35 new_lt15(xuu400, xuu30, cah) -> new_esEs14(new_compare15(xuu400, xuu30, cah)) 37.21/18.35 new_compare11(Right(xuu4000), Left(xuu300), ge, gf) -> GT 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.35 new_esEs24(@0, @0) -> True 37.21/18.35 new_esEs36(xuu40001, xuu3001, ty_Ordering) -> new_esEs20(xuu40001, xuu3001) 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_Float) -> new_ltEs17(xuu702, xuu712) 37.21/18.35 new_pePe(True, xuu210) -> True 37.21/18.35 new_esEs9(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.35 new_lt20(xuu108, xuu111, ty_Ordering) -> new_lt17(xuu108, xuu111) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), app(ty_Maybe, bga)) -> new_ltEs13(xuu700, xuu710, bga) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), app(ty_Ratio, fce), bch) -> new_ltEs11(xuu700, xuu710, fce) 37.21/18.35 new_fsEs(xuu211) -> new_not(new_esEs20(xuu211, GT)) 37.21/18.35 new_compare(:(xuu4000, xuu4001), [], h) -> GT 37.21/18.35 new_ltEs20(xuu110, xuu113, ty_Integer) -> new_ltEs18(xuu110, xuu113) 37.21/18.35 new_esEs6(xuu4002, xuu302, app(ty_[], deb)) -> new_esEs26(xuu4002, xuu302, deb) 37.21/18.35 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 37.21/18.35 new_ltEs24(xuu701, xuu711, ty_Bool) -> new_ltEs12(xuu701, xuu711) 37.21/18.35 new_esEs37(xuu40002, xuu3002, app(app(app(ty_@3, eff), efg), efh)) -> new_esEs16(xuu40002, xuu3002, eff, efg, efh) 37.21/18.35 new_esEs37(xuu40002, xuu3002, ty_Bool) -> new_esEs17(xuu40002, xuu3002) 37.21/18.35 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3000))) -> GT 37.21/18.35 new_compare(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_primCompAux0(xuu4000, xuu300, new_compare(xuu4001, xuu301, h), h) 37.21/18.35 new_compare5(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.35 new_compare5(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.35 new_esEs33(xuu40000, xuu3000, app(ty_[], dfg)) -> new_esEs26(xuu40000, xuu3000, dfg) 37.21/18.35 new_esEs32(xuu109, xuu112, app(app(ty_Either, ef), eg)) -> new_esEs18(xuu109, xuu112, ef, eg) 37.21/18.35 new_esEs14(GT) -> False 37.21/18.35 new_ltEs22(xuu77, xuu78, app(ty_Ratio, fch)) -> new_ltEs11(xuu77, xuu78, fch) 37.21/18.35 new_esEs32(xuu109, xuu112, ty_@0) -> new_esEs24(xuu109, xuu112) 37.21/18.35 new_compare113(xuu158, xuu159, False, egf, egg) -> GT 37.21/18.35 new_primCmpInt(Neg(Succ(xuu40000)), Neg(xuu300)) -> new_primCmpNat0(xuu300, Succ(xuu40000)) 37.21/18.35 new_ltEs14(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, bge) -> new_pePe(new_lt23(xuu700, xuu710, bhf), new_asAs(new_esEs40(xuu700, xuu710, bhf), new_ltEs24(xuu701, xuu711, bge))) 37.21/18.35 new_esEs5(xuu4001, xuu301, app(app(ty_Either, cgg), cgh)) -> new_esEs18(xuu4001, xuu301, cgg, cgh) 37.21/18.35 new_compare17(LT, GT) -> LT 37.21/18.35 new_esEs20(EQ, EQ) -> True 37.21/18.35 new_ltEs23(xuu122, xuu124, ty_Double) -> new_ltEs15(xuu122, xuu124) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, app(ty_Ratio, fcf)) -> new_ltEs11(xuu700, xuu710, fcf) 37.21/18.35 new_esEs37(xuu40002, xuu3002, app(ty_Ratio, egc)) -> new_esEs22(xuu40002, xuu3002, egc) 37.21/18.35 new_lt23(xuu700, xuu710, app(ty_Maybe, bhc)) -> new_lt15(xuu700, xuu710, bhc) 37.21/18.35 new_esEs4(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), ty_@0, dcf) -> new_esEs24(xuu40000, xuu3000) 37.21/18.35 new_esEs38(xuu121, xuu123, app(ty_Maybe, cdc)) -> new_esEs23(xuu121, xuu123, cdc) 37.21/18.35 new_esEs5(xuu4001, xuu301, ty_@0) -> new_esEs24(xuu4001, xuu301) 37.21/18.35 new_esEs39(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.35 new_compare111(xuu195, xuu196, xuu197, xuu198, False, dbe, dbf) -> GT 37.21/18.35 new_esEs31(xuu108, xuu111, ty_Double) -> new_esEs12(xuu108, xuu111) 37.21/18.35 new_esEs10(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.35 new_esEs9(xuu4000, xuu300, app(app(ty_Either, dah), dba)) -> new_esEs18(xuu4000, xuu300, dah, dba) 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_@0) -> new_ltEs9(xuu702, xuu712) 37.21/18.35 new_compare18(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.35 new_ltEs24(xuu701, xuu711, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs4(xuu701, xuu711, bhh, caa, cab) 37.21/18.35 new_ltEs22(xuu77, xuu78, app(app(ty_@2, cfh), cga)) -> new_ltEs14(xuu77, xuu78, cfh, cga) 37.21/18.35 new_compare28(xuu121, xuu122, xuu123, xuu124, True, cdf, cce) -> EQ 37.21/18.35 new_esEs36(xuu40001, xuu3001, app(app(ty_Either, eeg), eeh)) -> new_esEs18(xuu40001, xuu3001, eeg, eeh) 37.21/18.35 new_lt12(xuu400, xuu30) -> new_esEs14(new_compare6(xuu400, xuu30)) 37.21/18.35 new_ltEs20(xuu110, xuu113, ty_Bool) -> new_ltEs12(xuu110, xuu113) 37.21/18.35 new_compare17(LT, EQ) -> LT 37.21/18.35 new_compare17(GT, EQ) -> GT 37.21/18.35 new_esEs19(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 37.21/18.35 new_esEs11(xuu4001, xuu301, ty_@0) -> new_esEs24(xuu4001, xuu301) 37.21/18.35 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 37.21/18.35 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 37.21/18.35 new_lt5(xuu700, xuu710, ty_Float) -> new_lt18(xuu700, xuu710) 37.21/18.35 new_ltEs21(xuu84, xuu85, ty_Ordering) -> new_ltEs16(xuu84, xuu85) 37.21/18.35 new_lt5(xuu700, xuu710, app(ty_Ratio, chd)) -> new_lt13(xuu700, xuu710, chd) 37.21/18.35 new_compare110(xuu195, xuu196, xuu197, xuu198, False, xuu200, dbe, dbf) -> new_compare111(xuu195, xuu196, xuu197, xuu198, xuu200, dbe, dbf) 37.21/18.35 new_esEs37(xuu40002, xuu3002, app(app(ty_@2, efd), efe)) -> new_esEs15(xuu40002, xuu3002, efd, efe) 37.21/18.35 new_esEs22(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), dbg) -> new_asAs(new_esEs29(xuu40000, xuu3000, dbg), new_esEs30(xuu40001, xuu3001, dbg)) 37.21/18.35 new_esEs37(xuu40002, xuu3002, ty_Integer) -> new_esEs25(xuu40002, xuu3002) 37.21/18.35 new_lt6(xuu701, xuu711, app(app(app(ty_@3, baf), bag), bah)) -> new_lt8(xuu701, xuu711, baf, bag, bah) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), ty_Double, bch) -> new_ltEs15(xuu700, xuu710) 37.21/18.35 new_compare17(EQ, GT) -> LT 37.21/18.35 new_ltEs19(xuu70, xuu71, app(ty_[], gg)) -> new_ltEs6(xuu70, xuu71, gg) 37.21/18.35 new_esEs11(xuu4001, xuu301, ty_Ordering) -> new_esEs20(xuu4001, xuu301) 37.21/18.35 new_esEs32(xuu109, xuu112, app(app(ty_@2, fa), fb)) -> new_esEs15(xuu109, xuu112, fa, fb) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, ty_Ordering) -> new_ltEs16(xuu700, xuu710) 37.21/18.35 new_esEs5(xuu4001, xuu301, app(app(ty_@2, cgb), cgc)) -> new_esEs15(xuu4001, xuu301, cgb, cgc) 37.21/18.35 new_esEs35(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.35 new_compare112(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, True, xuu187, fcb, fcc, fcd) -> new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, True, fcb, fcc, fcd) 37.21/18.35 new_esEs14(EQ) -> False 37.21/18.35 new_lt23(xuu700, xuu710, ty_@0) -> new_lt11(xuu700, xuu710) 37.21/18.35 new_esEs8(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.35 new_lt16(xuu400, xuu30, ccb, ccc) -> new_esEs14(new_compare16(xuu400, xuu30, ccb, ccc)) 37.21/18.35 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 37.21/18.35 new_esEs23(Nothing, Just(xuu3000), dcg) -> False 37.21/18.35 new_esEs23(Just(xuu40000), Nothing, dcg) -> False 37.21/18.35 new_esEs28(xuu701, xuu711, ty_Float) -> new_esEs21(xuu701, xuu711) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Bool, dcf) -> new_esEs17(xuu40000, xuu3000) 37.21/18.35 new_ltEs20(xuu110, xuu113, app(app(ty_Either, fh), ga)) -> new_ltEs8(xuu110, xuu113, fh, ga) 37.21/18.35 new_not(True) -> False 37.21/18.35 new_lt22(xuu121, xuu123, app(ty_[], ccd)) -> new_lt7(xuu121, xuu123, ccd) 37.21/18.35 new_esEs31(xuu108, xuu111, ty_Ordering) -> new_esEs20(xuu108, xuu111) 37.21/18.35 new_lt22(xuu121, xuu123, ty_Double) -> new_lt4(xuu121, xuu123) 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_Double) -> new_ltEs15(xuu702, xuu712) 37.21/18.35 new_lt23(xuu700, xuu710, ty_Int) -> new_lt9(xuu700, xuu710) 37.21/18.35 new_esEs34(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_Char) -> new_ltEs10(xuu700, xuu710) 37.21/18.35 new_ltEs23(xuu122, xuu124, ty_Float) -> new_ltEs17(xuu122, xuu124) 37.21/18.35 new_primCompAux00(xuu49, LT) -> LT 37.21/18.35 new_primCmpNat0(Zero, Zero) -> EQ 37.21/18.35 new_esEs29(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.35 new_esEs28(xuu701, xuu711, app(ty_Maybe, bbc)) -> new_esEs23(xuu701, xuu711, bbc) 37.21/18.35 new_lt6(xuu701, xuu711, ty_Int) -> new_lt9(xuu701, xuu711) 37.21/18.35 new_esEs33(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.35 new_lt20(xuu108, xuu111, ty_Bool) -> new_lt14(xuu108, xuu111) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), app(app(app(ty_@3, bda), bdb), bdc), bch) -> new_ltEs4(xuu700, xuu710, bda, bdb, bdc) 37.21/18.35 new_esEs27(xuu700, xuu710, ty_Bool) -> new_esEs17(xuu700, xuu710) 37.21/18.35 new_ltEs5(xuu702, xuu712, app(ty_Ratio, chf)) -> new_ltEs11(xuu702, xuu712, chf) 37.21/18.35 new_esEs33(xuu40000, xuu3000, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs16(xuu40000, xuu3000, deh, dfa, dfb) 37.21/18.35 new_esEs23(Nothing, Nothing, dcg) -> True 37.21/18.35 new_esEs27(xuu700, xuu710, app(app(app(ty_@3, hd), he), hf)) -> new_esEs16(xuu700, xuu710, hd, he, hf) 37.21/18.35 new_lt19(xuu400, xuu30) -> new_esEs14(new_compare19(xuu400, xuu30)) 37.21/18.35 new_ltEs16(GT, EQ) -> False 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Ordering, dcf) -> new_esEs20(xuu40000, xuu3000) 37.21/18.35 new_esEs5(xuu4001, xuu301, ty_Ordering) -> new_esEs20(xuu4001, xuu301) 37.21/18.35 new_ltEs24(xuu701, xuu711, ty_Integer) -> new_ltEs18(xuu701, xuu711) 37.21/18.35 new_esEs36(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_Float) -> new_ltEs17(xuu77, xuu78) 37.21/18.35 new_esEs40(xuu700, xuu710, ty_Char) -> new_esEs19(xuu700, xuu710) 37.21/18.35 new_lt23(xuu700, xuu710, app(ty_[], bgd)) -> new_lt7(xuu700, xuu710, bgd) 37.21/18.35 new_compare7(xuu4000, xuu300, ty_Int) -> new_compare9(xuu4000, xuu300) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), app(app(ty_Either, bdd), bde), bch) -> new_ltEs8(xuu700, xuu710, bdd, bde) 37.21/18.35 new_compare25(xuu70, xuu71, False, chg, gh) -> new_compare10(xuu70, xuu71, new_ltEs19(xuu70, xuu71, chg), chg, gh) 37.21/18.35 new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, True, fcb, fcc, fcd) -> LT 37.21/18.35 new_esEs34(xuu40001, xuu3001, app(ty_Maybe, dgh)) -> new_esEs23(xuu40001, xuu3001, dgh) 37.21/18.35 new_esEs27(xuu700, xuu710, app(ty_Ratio, chd)) -> new_esEs22(xuu700, xuu710, chd) 37.21/18.35 new_ltEs19(xuu70, xuu71, ty_Bool) -> new_ltEs12(xuu70, xuu71) 37.21/18.35 new_primEqNat0(Succ(xuu400000), Zero) -> False 37.21/18.35 new_primEqNat0(Zero, Succ(xuu30000)) -> False 37.21/18.35 new_compare13(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Int) -> new_compare9(new_sr(xuu4000, xuu301), new_sr(xuu300, xuu4001)) 37.21/18.35 new_esEs5(xuu4001, xuu301, ty_Integer) -> new_esEs25(xuu4001, xuu301) 37.21/18.35 new_esEs36(xuu40001, xuu3001, ty_@0) -> new_esEs24(xuu40001, xuu3001) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Integer, dcf) -> new_esEs25(xuu40000, xuu3000) 37.21/18.35 new_compare114(xuu167, xuu168, False, fbf) -> GT 37.21/18.35 new_lt9(xuu400, xuu30) -> new_esEs14(new_compare9(xuu400, xuu30)) 37.21/18.35 new_compare10(xuu151, xuu152, True, fbd, fbe) -> LT 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_Double) -> new_ltEs15(xuu700, xuu710) 37.21/18.35 new_esEs11(xuu4001, xuu301, app(app(ty_@2, fab), fac)) -> new_esEs15(xuu4001, xuu301, fab, fac) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), ty_Char, bch) -> new_ltEs10(xuu700, xuu710) 37.21/18.35 new_esEs33(xuu40000, xuu3000, app(ty_Ratio, dfe)) -> new_esEs22(xuu40000, xuu3000, dfe) 37.21/18.35 new_esEs35(xuu40000, xuu3000, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_Int) -> new_ltEs7(xuu77, xuu78) 37.21/18.35 new_lt20(xuu108, xuu111, ty_Integer) -> new_lt19(xuu108, xuu111) 37.21/18.35 new_lt5(xuu700, xuu710, app(app(app(ty_@3, hd), he), hf)) -> new_lt8(xuu700, xuu710, hd, he, hf) 37.21/18.35 new_esEs35(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.35 new_primCompAux00(xuu49, GT) -> GT 37.21/18.35 new_esEs33(xuu40000, xuu3000, app(app(ty_@2, def), deg)) -> new_esEs15(xuu40000, xuu3000, def, deg) 37.21/18.35 new_esEs33(xuu40000, xuu3000, app(ty_Maybe, dff)) -> new_esEs23(xuu40000, xuu3000, dff) 37.21/18.35 new_primCmpInt(Pos(Succ(xuu40000)), Neg(xuu300)) -> GT 37.21/18.35 new_esEs6(xuu4002, xuu302, ty_Float) -> new_esEs21(xuu4002, xuu302) 37.21/18.35 new_esEs6(xuu4002, xuu302, ty_Integer) -> new_esEs25(xuu4002, xuu302) 37.21/18.35 new_compare9(xuu400, xuu30) -> new_primCmpInt(xuu400, xuu30) 37.21/18.35 new_ltEs24(xuu701, xuu711, ty_Double) -> new_ltEs15(xuu701, xuu711) 37.21/18.35 new_ltEs16(LT, LT) -> True 37.21/18.35 new_compare15(Just(xuu4000), Just(xuu300), cah) -> new_compare26(xuu4000, xuu300, new_esEs9(xuu4000, xuu300, cah), cah) 37.21/18.35 new_esEs4(xuu4000, xuu300, app(app(ty_Either, dce), dcf)) -> new_esEs18(xuu4000, xuu300, dce, dcf) 37.21/18.35 new_ltEs21(xuu84, xuu85, ty_Int) -> new_ltEs7(xuu84, xuu85) 37.21/18.35 new_compare7(xuu4000, xuu300, app(ty_Maybe, bg)) -> new_compare15(xuu4000, xuu300, bg) 37.21/18.35 new_esEs28(xuu701, xuu711, ty_Char) -> new_esEs19(xuu701, xuu711) 37.21/18.35 new_compare17(EQ, LT) -> GT 37.21/18.35 new_esEs32(xuu109, xuu112, app(ty_Ratio, ded)) -> new_esEs22(xuu109, xuu112, ded) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), ty_@0, bch) -> new_ltEs9(xuu700, xuu710) 37.21/18.35 new_ltEs19(xuu70, xuu71, ty_Integer) -> new_ltEs18(xuu70, xuu71) 37.21/18.35 new_lt7(xuu400, xuu30, h) -> new_esEs14(new_compare(xuu400, xuu30, h)) 37.21/18.35 new_esEs27(xuu700, xuu710, app(ty_Maybe, baa)) -> new_esEs23(xuu700, xuu710, baa) 37.21/18.35 new_esEs27(xuu700, xuu710, app(app(ty_@2, bab), bac)) -> new_esEs15(xuu700, xuu710, bab, bac) 37.21/18.35 new_esEs36(xuu40001, xuu3001, ty_Double) -> new_esEs12(xuu40001, xuu3001) 37.21/18.35 new_esEs11(xuu4001, xuu301, app(app(ty_Either, fag), fah)) -> new_esEs18(xuu4001, xuu301, fag, fah) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), app(ty_Maybe, fhb)) -> new_esEs23(xuu40000, xuu3000, fhb) 37.21/18.35 new_lt6(xuu701, xuu711, app(ty_Maybe, bbc)) -> new_lt15(xuu701, xuu711, bbc) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_@0) -> new_ltEs9(xuu700, xuu710) 37.21/18.35 new_esEs32(xuu109, xuu112, ty_Bool) -> new_esEs17(xuu109, xuu112) 37.21/18.35 new_esEs35(xuu40000, xuu3000, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.35 new_primCmpNat0(Zero, Succ(xuu3000)) -> LT 37.21/18.35 new_esEs31(xuu108, xuu111, ty_Int) -> new_esEs13(xuu108, xuu111) 37.21/18.35 new_ltEs23(xuu122, xuu124, app(app(app(ty_@3, cdh), cea), ceb)) -> new_ltEs4(xuu122, xuu124, cdh, cea, ceb) 37.21/18.35 new_ltEs23(xuu122, xuu124, ty_@0) -> new_ltEs9(xuu122, xuu124) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs4(xuu700, xuu710, bfd, bfe, bff) 37.21/18.35 new_esEs9(xuu4000, xuu300, app(app(ty_@2, dac), dad)) -> new_esEs15(xuu4000, xuu300, dac, dad) 37.21/18.35 new_esEs32(xuu109, xuu112, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs16(xuu109, xuu112, ec, ed, ee) 37.21/18.35 new_esEs5(xuu4001, xuu301, app(ty_[], chc)) -> new_esEs26(xuu4001, xuu301, chc) 37.21/18.35 new_lt22(xuu121, xuu123, ty_Float) -> new_lt18(xuu121, xuu123) 37.21/18.35 new_esEs34(xuu40001, xuu3001, app(ty_[], dha)) -> new_esEs26(xuu40001, xuu3001, dha) 37.21/18.35 new_esEs4(xuu4000, xuu300, app(app(ty_@2, dbh), dca)) -> new_esEs15(xuu4000, xuu300, dbh, dca) 37.21/18.35 new_esEs10(xuu4000, xuu300, app(app(ty_Either, ehe), ehf)) -> new_esEs18(xuu4000, xuu300, ehe, ehf) 37.21/18.35 new_primCmpNat0(Succ(xuu40000), Zero) -> GT 37.21/18.35 new_ltEs21(xuu84, xuu85, app(app(ty_Either, cbe), cbf)) -> new_ltEs8(xuu84, xuu85, cbe, cbf) 37.21/18.35 new_esEs38(xuu121, xuu123, ty_Bool) -> new_esEs17(xuu121, xuu123) 37.21/18.35 new_esEs6(xuu4002, xuu302, ty_@0) -> new_esEs24(xuu4002, xuu302) 37.21/18.35 new_esEs9(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.35 new_esEs32(xuu109, xuu112, ty_Int) -> new_esEs13(xuu109, xuu112) 37.21/18.35 new_ltEs20(xuu110, xuu113, app(ty_Maybe, gb)) -> new_ltEs13(xuu110, xuu113, gb) 37.21/18.35 new_pePe(False, xuu210) -> xuu210 37.21/18.35 new_esEs39(xuu40000, xuu3000, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.35 new_lt20(xuu108, xuu111, ty_@0) -> new_lt11(xuu108, xuu111) 37.21/18.35 new_esEs33(xuu40000, xuu3000, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.35 new_ltEs23(xuu122, xuu124, app(ty_Ratio, fdb)) -> new_ltEs11(xuu122, xuu124, fdb) 37.21/18.35 new_compare7(xuu4000, xuu300, ty_Bool) -> new_compare14(xuu4000, xuu300) 37.21/18.35 new_esEs11(xuu4001, xuu301, app(ty_[], fbc)) -> new_esEs26(xuu4001, xuu301, fbc) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.35 new_esEs33(xuu40000, xuu3000, app(app(ty_Either, dfc), dfd)) -> new_esEs18(xuu40000, xuu3000, dfc, dfd) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Double, dcf) -> new_esEs12(xuu40000, xuu3000) 37.21/18.35 new_compare25(xuu70, xuu71, True, chg, gh) -> EQ 37.21/18.35 new_esEs6(xuu4002, xuu302, app(app(ty_Either, ddf), ddg)) -> new_esEs18(xuu4002, xuu302, ddf, ddg) 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_Double) -> new_ltEs15(xuu77, xuu78) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, ty_Integer) -> new_ltEs18(xuu700, xuu710) 37.21/18.35 new_esEs31(xuu108, xuu111, app(app(ty_@2, dg), dh)) -> new_esEs15(xuu108, xuu111, dg, dh) 37.21/18.35 new_lt22(xuu121, xuu123, app(ty_Maybe, cdc)) -> new_lt15(xuu121, xuu123, cdc) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, fgd), fge), fgf)) -> new_esEs16(xuu40000, xuu3000, fgd, fge, fgf) 37.21/18.35 new_ltEs16(LT, GT) -> True 37.21/18.35 new_esEs39(xuu40000, xuu3000, app(ty_Maybe, ffe)) -> new_esEs23(xuu40000, xuu3000, ffe) 37.21/18.35 new_lt23(xuu700, xuu710, ty_Bool) -> new_lt14(xuu700, xuu710) 37.21/18.35 new_esEs37(xuu40002, xuu3002, ty_Ordering) -> new_esEs20(xuu40002, xuu3002) 37.21/18.35 new_esEs8(xuu4000, xuu300, app(app(ty_Either, fdh), fea)) -> new_esEs18(xuu4000, xuu300, fdh, fea) 37.21/18.35 new_lt6(xuu701, xuu711, ty_Bool) -> new_lt14(xuu701, xuu711) 37.21/18.35 new_ltEs16(LT, EQ) -> True 37.21/18.35 new_ltEs16(EQ, LT) -> False 37.21/18.35 new_compare110(xuu195, xuu196, xuu197, xuu198, True, xuu200, dbe, dbf) -> new_compare111(xuu195, xuu196, xuu197, xuu198, True, dbe, dbf) 37.21/18.35 new_esEs16(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), dcb, dcc, dcd) -> new_asAs(new_esEs35(xuu40000, xuu3000, dcb), new_asAs(new_esEs36(xuu40001, xuu3001, dcc), new_esEs37(xuu40002, xuu3002, dcd))) 37.21/18.35 new_ltEs23(xuu122, xuu124, app(app(ty_@2, cef), ceg)) -> new_ltEs14(xuu122, xuu124, cef, ceg) 37.21/18.35 new_esEs31(xuu108, xuu111, ty_Char) -> new_esEs19(xuu108, xuu111) 37.21/18.35 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 37.21/18.35 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.35 new_esEs27(xuu700, xuu710, ty_Ordering) -> new_esEs20(xuu700, xuu710) 37.21/18.35 new_lt6(xuu701, xuu711, ty_Float) -> new_lt18(xuu701, xuu711) 37.21/18.35 new_esEs38(xuu121, xuu123, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs16(xuu121, xuu123, ccf, ccg, cch) 37.21/18.35 new_esEs7(xuu4000, xuu300, app(ty_[], ecg)) -> new_esEs26(xuu4000, xuu300, ecg) 37.21/18.35 new_compare7(xuu4000, xuu300, ty_@0) -> new_compare12(xuu4000, xuu300) 37.21/18.35 new_ltEs16(GT, LT) -> False 37.21/18.35 new_ltEs11(xuu70, xuu71, chh) -> new_fsEs(new_compare13(xuu70, xuu71, chh)) 37.21/18.35 new_esEs20(LT, EQ) -> False 37.21/18.35 new_esEs20(EQ, LT) -> False 37.21/18.35 new_compare17(LT, LT) -> EQ 37.21/18.35 new_esEs40(xuu700, xuu710, app(ty_Maybe, bhc)) -> new_esEs23(xuu700, xuu710, bhc) 37.21/18.35 new_lt23(xuu700, xuu710, ty_Char) -> new_lt12(xuu700, xuu710) 37.21/18.35 new_ltEs5(xuu702, xuu712, app(ty_Maybe, bcd)) -> new_ltEs13(xuu702, xuu712, bcd) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.35 new_esEs9(xuu4000, xuu300, app(ty_Ratio, dbb)) -> new_esEs22(xuu4000, xuu300, dbb) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, ty_Float) -> new_ltEs17(xuu700, xuu710) 37.21/18.35 new_esEs37(xuu40002, xuu3002, ty_Double) -> new_esEs12(xuu40002, xuu3002) 37.21/18.35 new_esEs7(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.35 new_ltEs19(xuu70, xuu71, app(app(ty_@2, bhf), bge)) -> new_ltEs14(xuu70, xuu71, bhf, bge) 37.21/18.35 new_esEs31(xuu108, xuu111, ty_Bool) -> new_esEs17(xuu108, xuu111) 37.21/18.35 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 37.21/18.35 new_esEs32(xuu109, xuu112, ty_Float) -> new_esEs21(xuu109, xuu112) 37.21/18.35 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3000))) -> LT 37.21/18.35 new_esEs5(xuu4001, xuu301, ty_Double) -> new_esEs12(xuu4001, xuu301) 37.21/18.35 new_ltEs7(xuu70, xuu71) -> new_fsEs(new_compare9(xuu70, xuu71)) 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_@0) -> new_ltEs9(xuu77, xuu78) 37.21/18.35 new_esEs9(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.35 new_esEs4(xuu4000, xuu300, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs16(xuu4000, xuu300, dcb, dcc, dcd) 37.21/18.35 new_esEs31(xuu108, xuu111, ty_@0) -> new_esEs24(xuu108, xuu111) 37.21/18.35 new_esEs4(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.35 new_primMulInt(Pos(xuu40000), Pos(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.35 new_esEs40(xuu700, xuu710, ty_Double) -> new_esEs12(xuu700, xuu710) 37.21/18.35 new_lt5(xuu700, xuu710, ty_@0) -> new_lt11(xuu700, xuu710) 37.21/18.35 new_ltEs5(xuu702, xuu712, app(app(ty_@2, bce), bcf)) -> new_ltEs14(xuu702, xuu712, bce, bcf) 37.21/18.35 new_esEs31(xuu108, xuu111, app(app(app(ty_@3, da), db), dc)) -> new_esEs16(xuu108, xuu111, da, db, dc) 37.21/18.35 new_ltEs20(xuu110, xuu113, ty_Double) -> new_ltEs15(xuu110, xuu113) 37.21/18.35 new_esEs36(xuu40001, xuu3001, app(ty_Ratio, efa)) -> new_esEs22(xuu40001, xuu3001, efa) 37.21/18.35 new_lt21(xuu109, xuu112, ty_Float) -> new_lt18(xuu109, xuu112) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), app(app(ty_Either, bfg), bfh)) -> new_ltEs8(xuu700, xuu710, bfg, bfh) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_Bool) -> new_ltEs12(xuu700, xuu710) 37.21/18.35 new_compare18(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.35 new_compare18(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.35 new_esEs6(xuu4002, xuu302, ty_Char) -> new_esEs19(xuu4002, xuu302) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.35 new_esEs11(xuu4001, xuu301, ty_Integer) -> new_esEs25(xuu4001, xuu301) 37.21/18.35 new_esEs32(xuu109, xuu112, app(ty_Maybe, eh)) -> new_esEs23(xuu109, xuu112, eh) 37.21/18.35 new_esEs11(xuu4001, xuu301, app(ty_Ratio, fba)) -> new_esEs22(xuu4001, xuu301, fba) 37.21/18.35 new_ltEs24(xuu701, xuu711, ty_Float) -> new_ltEs17(xuu701, xuu711) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, app(ty_[], beb)) -> new_ltEs6(xuu700, xuu710, beb) 37.21/18.35 new_ltEs8(Right(xuu700), Left(xuu710), bea, bch) -> False 37.21/18.35 new_esEs39(xuu40000, xuu3000, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.35 new_lt21(xuu109, xuu112, ty_Bool) -> new_lt14(xuu109, xuu112) 37.21/18.35 new_primMulNat0(Succ(xuu400000), Zero) -> Zero 37.21/18.35 new_primMulNat0(Zero, Succ(xuu30100)) -> Zero 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, app(ty_Maybe, beh)) -> new_ltEs13(xuu700, xuu710, beh) 37.21/18.35 new_esEs5(xuu4001, xuu301, app(ty_Maybe, chb)) -> new_esEs23(xuu4001, xuu301, chb) 37.21/18.35 new_esEs34(xuu40001, xuu3001, ty_Integer) -> new_esEs25(xuu40001, xuu3001) 37.21/18.35 new_esEs7(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.35 new_esEs9(xuu4000, xuu300, app(ty_[], dbd)) -> new_esEs26(xuu4000, xuu300, dbd) 37.21/18.35 new_lt23(xuu700, xuu710, ty_Ordering) -> new_lt17(xuu700, xuu710) 37.21/18.35 new_compare7(xuu4000, xuu300, ty_Float) -> new_compare18(xuu4000, xuu300) 37.21/18.35 new_ltEs21(xuu84, xuu85, ty_Integer) -> new_ltEs18(xuu84, xuu85) 37.21/18.35 new_esEs20(LT, LT) -> True 37.21/18.35 new_esEs10(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.35 new_ltEs18(xuu70, xuu71) -> new_fsEs(new_compare19(xuu70, xuu71)) 37.21/18.35 new_compare26(xuu84, xuu85, True, fbh) -> EQ 37.21/18.35 new_esEs33(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.35 new_compare28(xuu121, xuu122, xuu123, xuu124, False, cdf, cce) -> new_compare110(xuu121, xuu122, xuu123, xuu124, new_lt22(xuu121, xuu123, cdf), new_asAs(new_esEs38(xuu121, xuu123, cdf), new_ltEs23(xuu122, xuu124, cce)), cdf, cce) 37.21/18.35 new_ltEs23(xuu122, xuu124, ty_Int) -> new_ltEs7(xuu122, xuu124) 37.21/18.35 new_compare14(False, True) -> LT 37.21/18.35 new_ltEs12(False, True) -> True 37.21/18.35 new_esEs11(xuu4001, xuu301, ty_Float) -> new_esEs21(xuu4001, xuu301) 37.21/18.35 new_esEs7(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.35 new_esEs4(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.35 new_primPlusNat0(Succ(xuu39200), Zero) -> Succ(xuu39200) 37.21/18.35 new_primPlusNat0(Zero, Succ(xuu13400)) -> Succ(xuu13400) 37.21/18.35 new_compare7(xuu4000, xuu300, app(app(ty_Either, be), bf)) -> new_compare11(xuu4000, xuu300, be, bf) 37.21/18.35 new_ltEs16(EQ, GT) -> True 37.21/18.35 new_compare26(xuu84, xuu85, False, fbh) -> new_compare114(xuu84, xuu85, new_ltEs21(xuu84, xuu85, fbh), fbh) 37.21/18.35 new_lt20(xuu108, xuu111, app(app(ty_Either, dd), de)) -> new_lt10(xuu108, xuu111, dd, de) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, app(app(ty_Either, bef), beg)) -> new_ltEs8(xuu700, xuu710, bef, beg) 37.21/18.35 new_ltEs16(EQ, EQ) -> True 37.21/18.35 new_esEs34(xuu40001, xuu3001, ty_Float) -> new_esEs21(xuu40001, xuu3001) 37.21/18.35 new_esEs8(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.35 new_esEs9(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.35 new_esEs40(xuu700, xuu710, ty_Bool) -> new_esEs17(xuu700, xuu710) 37.21/18.35 new_ltEs19(xuu70, xuu71, app(app(ty_Either, bea), bch)) -> new_ltEs8(xuu70, xuu71, bea, bch) 37.21/18.35 new_lt21(xuu109, xuu112, app(app(ty_Either, ef), eg)) -> new_lt10(xuu109, xuu112, ef, eg) 37.21/18.35 new_esEs6(xuu4002, xuu302, ty_Bool) -> new_esEs17(xuu4002, xuu302) 37.21/18.35 new_compare19(Integer(xuu4000), Integer(xuu300)) -> new_primCmpInt(xuu4000, xuu300) 37.21/18.35 new_esEs6(xuu4002, xuu302, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs16(xuu4002, xuu302, ddc, ddd, dde) 37.21/18.35 new_lt20(xuu108, xuu111, ty_Char) -> new_lt12(xuu108, xuu111) 37.21/18.35 new_ltEs20(xuu110, xuu113, ty_@0) -> new_ltEs9(xuu110, xuu113) 37.21/18.35 new_esEs34(xuu40001, xuu3001, app(ty_Ratio, dgg)) -> new_esEs22(xuu40001, xuu3001, dgg) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), ty_Bool, bch) -> new_ltEs12(xuu700, xuu710) 37.21/18.35 new_esEs28(xuu701, xuu711, ty_Double) -> new_esEs12(xuu701, xuu711) 37.21/18.35 new_lt5(xuu700, xuu710, ty_Char) -> new_lt12(xuu700, xuu710) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, dhd), dhe), dhf), dcf) -> new_esEs16(xuu40000, xuu3000, dhd, dhe, dhf) 37.21/18.35 new_lt22(xuu121, xuu123, ty_Char) -> new_lt12(xuu121, xuu123) 37.21/18.35 new_esEs32(xuu109, xuu112, ty_Integer) -> new_esEs25(xuu109, xuu112) 37.21/18.35 new_esEs9(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.35 new_esEs7(xuu4000, xuu300, app(ty_Maybe, ecf)) -> new_esEs23(xuu4000, xuu300, ecf) 37.21/18.35 new_esEs28(xuu701, xuu711, ty_Bool) -> new_esEs17(xuu701, xuu711) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.35 new_esEs9(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.35 new_lt6(xuu701, xuu711, ty_@0) -> new_lt11(xuu701, xuu711) 37.21/18.35 new_ltEs5(xuu702, xuu712, app(app(ty_Either, bcb), bcc)) -> new_ltEs8(xuu702, xuu712, bcb, bcc) 37.21/18.35 new_ltEs23(xuu122, xuu124, ty_Integer) -> new_ltEs18(xuu122, xuu124) 37.21/18.35 new_esEs40(xuu700, xuu710, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs16(xuu700, xuu710, bgf, bgg, bgh) 37.21/18.35 new_esEs7(xuu4000, xuu300, app(app(ty_@2, ebf), ebg)) -> new_esEs15(xuu4000, xuu300, ebf, ebg) 37.21/18.35 new_ltEs20(xuu110, xuu113, app(app(ty_@2, gc), gd)) -> new_ltEs14(xuu110, xuu113, gc, gd) 37.21/18.35 new_esEs8(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.35 new_esEs28(xuu701, xuu711, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs16(xuu701, xuu711, baf, bag, bah) 37.21/18.35 new_lt20(xuu108, xuu111, ty_Float) -> new_lt18(xuu108, xuu111) 37.21/18.35 new_ltEs21(xuu84, xuu85, ty_@0) -> new_ltEs9(xuu84, xuu85) 37.21/18.35 new_ltEs20(xuu110, xuu113, ty_Ordering) -> new_ltEs16(xuu110, xuu113) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs4(xuu700, xuu710, bec, bed, bee) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, ty_Int) -> new_ltEs7(xuu700, xuu710) 37.21/18.35 new_esEs34(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 37.21/18.35 new_ltEs12(True, True) -> True 37.21/18.35 new_esEs38(xuu121, xuu123, ty_Ordering) -> new_esEs20(xuu121, xuu123) 37.21/18.35 new_esEs31(xuu108, xuu111, app(app(ty_Either, dd), de)) -> new_esEs18(xuu108, xuu111, dd, de) 37.21/18.35 new_ltEs15(xuu70, xuu71) -> new_fsEs(new_compare5(xuu70, xuu71)) 37.21/18.35 new_lt22(xuu121, xuu123, ty_@0) -> new_lt11(xuu121, xuu123) 37.21/18.35 new_esEs8(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.35 new_esEs6(xuu4002, xuu302, app(app(ty_@2, dda), ddb)) -> new_esEs15(xuu4002, xuu302, dda, ddb) 37.21/18.35 new_ltEs21(xuu84, xuu85, app(ty_Ratio, fca)) -> new_ltEs11(xuu84, xuu85, fca) 37.21/18.35 new_lt22(xuu121, xuu123, ty_Bool) -> new_lt14(xuu121, xuu123) 37.21/18.35 new_esEs6(xuu4002, xuu302, app(ty_Maybe, dea)) -> new_esEs23(xuu4002, xuu302, dea) 37.21/18.35 new_lt6(xuu701, xuu711, ty_Char) -> new_lt12(xuu701, xuu711) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.35 new_primMulInt(Neg(xuu40000), Neg(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.35 new_esEs11(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) 37.21/18.35 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3000))) -> new_primCmpNat0(Zero, Succ(xuu3000)) 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_Integer) -> new_ltEs18(xuu77, xuu78) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, app(ty_Ratio, ebc)) -> new_esEs22(xuu40000, xuu3000, ebc) 37.21/18.35 new_esEs32(xuu109, xuu112, ty_Char) -> new_esEs19(xuu109, xuu112) 37.21/18.35 new_esEs33(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.35 new_ltEs21(xuu84, xuu85, app(app(ty_@2, cbh), cca)) -> new_ltEs14(xuu84, xuu85, cbh, cca) 37.21/18.35 new_compare([], :(xuu300, xuu301), h) -> LT 37.21/18.35 new_esEs10(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.35 new_ltEs19(xuu70, xuu71, ty_Ordering) -> new_ltEs16(xuu70, xuu71) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), app(ty_Maybe, eab), dcf) -> new_esEs23(xuu40000, xuu3000, eab) 37.21/18.35 new_esEs10(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.35 new_esEs8(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.35 new_esEs33(xuu40000, xuu3000, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.35 new_lt5(xuu700, xuu710, app(app(ty_Either, hg), hh)) -> new_lt10(xuu700, xuu710, hg, hh) 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_Ordering) -> new_ltEs16(xuu702, xuu712) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.35 new_esEs27(xuu700, xuu710, ty_Double) -> new_esEs12(xuu700, xuu710) 37.21/18.35 new_esEs35(xuu40000, xuu3000, app(ty_Ratio, edg)) -> new_esEs22(xuu40000, xuu3000, edg) 37.21/18.35 new_compare29(xuu77, xuu78, False, ceh, fcg) -> new_compare113(xuu77, xuu78, new_ltEs22(xuu77, xuu78, fcg), ceh, fcg) 37.21/18.35 new_esEs5(xuu4001, xuu301, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs16(xuu4001, xuu301, cgd, cge, cgf) 37.21/18.35 new_lt21(xuu109, xuu112, ty_Char) -> new_lt12(xuu109, xuu112) 37.21/18.35 new_esEs5(xuu4001, xuu301, ty_Bool) -> new_esEs17(xuu4001, xuu301) 37.21/18.35 new_esEs32(xuu109, xuu112, app(ty_[], eb)) -> new_esEs26(xuu109, xuu112, eb) 37.21/18.35 new_esEs7(xuu4000, xuu300, app(app(ty_Either, ecc), ecd)) -> new_esEs18(xuu4000, xuu300, ecc, ecd) 37.21/18.35 new_esEs10(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.35 new_ltEs21(xuu84, xuu85, ty_Double) -> new_ltEs15(xuu84, xuu85) 37.21/18.35 new_ltEs24(xuu701, xuu711, ty_Int) -> new_ltEs7(xuu701, xuu711) 37.21/18.35 new_compare7(xuu4000, xuu300, ty_Double) -> new_compare5(xuu4000, xuu300) 37.21/18.35 new_compare113(xuu158, xuu159, True, egf, egg) -> LT 37.21/18.35 new_ltEs24(xuu701, xuu711, app(app(ty_@2, caf), cag)) -> new_ltEs14(xuu701, xuu711, caf, cag) 37.21/18.35 new_esEs21(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 37.21/18.35 new_compare12(@0, @0) -> EQ 37.21/18.35 new_esEs40(xuu700, xuu710, ty_@0) -> new_esEs24(xuu700, xuu710) 37.21/18.35 new_esEs31(xuu108, xuu111, app(ty_Maybe, df)) -> new_esEs23(xuu108, xuu111, df) 37.21/18.35 new_compare15(Nothing, Nothing, cah) -> EQ 37.21/18.35 new_esEs4(xuu4000, xuu300, app(ty_Maybe, dcg)) -> new_esEs23(xuu4000, xuu300, dcg) 37.21/18.35 new_primMulInt(Pos(xuu40000), Neg(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.35 new_primMulInt(Neg(xuu40000), Pos(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.35 new_esEs10(xuu4000, xuu300, app(ty_[], faa)) -> new_esEs26(xuu4000, xuu300, faa) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.35 new_esEs28(xuu701, xuu711, ty_Ordering) -> new_esEs20(xuu701, xuu711) 37.21/18.35 new_esEs40(xuu700, xuu710, app(app(ty_Either, bha), bhb)) -> new_esEs18(xuu700, xuu710, bha, bhb) 37.21/18.35 new_esEs39(xuu40000, xuu3000, app(app(app(ty_@3, feg), feh), ffa)) -> new_esEs16(xuu40000, xuu3000, feg, feh, ffa) 37.21/18.35 new_esEs29(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), app(ty_[], eac), dcf) -> new_esEs26(xuu40000, xuu3000, eac) 37.21/18.35 new_ltEs21(xuu84, xuu85, app(ty_Maybe, cbg)) -> new_ltEs13(xuu84, xuu85, cbg) 37.21/18.35 new_esEs8(xuu4000, xuu300, app(ty_[], fed)) -> new_esEs26(xuu4000, xuu300, fed) 37.21/18.35 new_esEs12(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 37.21/18.35 new_esEs35(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.35 new_lt22(xuu121, xuu123, ty_Ordering) -> new_lt17(xuu121, xuu123) 37.21/18.35 new_esEs25(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_Int) -> new_ltEs7(xuu700, xuu710) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, app(ty_[], ebe)) -> new_esEs26(xuu40000, xuu3000, ebe) 37.21/18.35 new_ltEs23(xuu122, xuu124, ty_Ordering) -> new_ltEs16(xuu122, xuu124) 37.21/18.35 new_lt21(xuu109, xuu112, ty_@0) -> new_lt11(xuu109, xuu112) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Char, dcf) -> new_esEs19(xuu40000, xuu3000) 37.21/18.35 new_ltEs19(xuu70, xuu71, ty_@0) -> new_ltEs9(xuu70, xuu71) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, app(app(ty_@2, bfa), bfb)) -> new_ltEs14(xuu700, xuu710, bfa, bfb) 37.21/18.35 new_ltEs22(xuu77, xuu78, app(app(ty_Either, cfe), cff)) -> new_ltEs8(xuu77, xuu78, cfe, cff) 37.21/18.35 new_compare17(GT, GT) -> EQ 37.21/18.35 new_esEs33(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.35 new_esEs38(xuu121, xuu123, ty_Double) -> new_esEs12(xuu121, xuu123) 37.21/18.35 new_esEs4(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.35 new_sr0(Integer(xuu40000), Integer(xuu3010)) -> Integer(new_primMulInt(xuu40000, xuu3010)) 37.21/18.35 new_esEs6(xuu4002, xuu302, ty_Int) -> new_esEs13(xuu4002, xuu302) 37.21/18.35 new_esEs31(xuu108, xuu111, ty_Float) -> new_esEs21(xuu108, xuu111) 37.21/18.35 new_esEs20(EQ, GT) -> False 37.21/18.35 new_esEs20(GT, EQ) -> False 37.21/18.35 new_compare7(xuu4000, xuu300, ty_Char) -> new_compare6(xuu4000, xuu300) 37.21/18.35 new_ltEs9(xuu70, xuu71) -> new_fsEs(new_compare12(xuu70, xuu71)) 37.21/18.35 new_lt20(xuu108, xuu111, app(ty_[], ce)) -> new_lt7(xuu108, xuu111, ce) 37.21/18.35 new_compare15(Just(xuu4000), Nothing, cah) -> GT 37.21/18.35 new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 37.21/18.35 new_esEs40(xuu700, xuu710, app(app(ty_@2, bhd), bhe)) -> new_esEs15(xuu700, xuu710, bhd, bhe) 37.21/18.35 new_esEs26([], [], dch) -> True 37.21/18.35 new_lt17(xuu400, xuu30) -> new_esEs14(new_compare17(xuu400, xuu30)) 37.21/18.35 new_ltEs23(xuu122, xuu124, app(ty_[], cdg)) -> new_ltEs6(xuu122, xuu124, cdg) 37.21/18.35 new_lt5(xuu700, xuu710, ty_Bool) -> new_lt14(xuu700, xuu710) 37.21/18.35 new_lt6(xuu701, xuu711, app(app(ty_Either, bba), bbb)) -> new_lt10(xuu701, xuu711, bba, bbb) 37.21/18.35 new_esEs28(xuu701, xuu711, ty_@0) -> new_esEs24(xuu701, xuu711) 37.21/18.35 new_compare114(xuu167, xuu168, True, fbf) -> LT 37.21/18.35 new_compare111(xuu195, xuu196, xuu197, xuu198, True, dbe, dbf) -> LT 37.21/18.35 new_asAs(True, xuu146) -> xuu146 37.21/18.35 new_lt13(xuu400, xuu30, ffg) -> new_esEs14(new_compare13(xuu400, xuu30, ffg)) 37.21/18.35 new_compare10(xuu151, xuu152, False, fbd, fbe) -> GT 37.21/18.35 new_esEs31(xuu108, xuu111, app(ty_[], ce)) -> new_esEs26(xuu108, xuu111, ce) 37.21/18.35 new_esEs7(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.35 new_esEs17(False, True) -> False 37.21/18.35 new_esEs17(True, False) -> False 37.21/18.35 new_esEs39(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.35 new_esEs38(xuu121, xuu123, ty_Int) -> new_esEs13(xuu121, xuu123) 37.21/18.35 new_esEs4(xuu4000, xuu300, app(ty_[], dch)) -> new_esEs26(xuu4000, xuu300, dch) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.35 new_esEs14(LT) -> True 37.21/18.35 new_esEs39(xuu40000, xuu3000, app(ty_Ratio, ffd)) -> new_esEs22(xuu40000, xuu3000, ffd) 37.21/18.35 new_ltEs19(xuu70, xuu71, ty_Double) -> new_ltEs15(xuu70, xuu71) 37.21/18.35 new_compare11(Right(xuu4000), Right(xuu300), ge, gf) -> new_compare29(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, gf), ge, gf) 37.21/18.35 new_esEs7(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.35 new_esEs34(xuu40001, xuu3001, ty_@0) -> new_esEs24(xuu40001, xuu3001) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), ty_Int, bch) -> new_ltEs7(xuu700, xuu710) 37.21/18.35 new_ltEs20(xuu110, xuu113, app(ty_Ratio, dee)) -> new_ltEs11(xuu110, xuu113, dee) 37.21/18.35 new_esEs34(xuu40001, xuu3001, ty_Ordering) -> new_esEs20(xuu40001, xuu3001) 37.21/18.35 new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, False, fcb, fcc, fcd) -> GT 37.21/18.35 new_primCmpInt(Pos(Succ(xuu40000)), Pos(xuu300)) -> new_primCmpNat0(Succ(xuu40000), xuu300) 37.21/18.35 new_esEs40(xuu700, xuu710, ty_Ordering) -> new_esEs20(xuu700, xuu710) 37.21/18.35 new_esEs39(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.35 new_primCompAux00(xuu49, EQ) -> xuu49 37.21/18.35 new_lt5(xuu700, xuu710, ty_Ordering) -> new_lt17(xuu700, xuu710) 37.21/18.35 new_sr(xuu4000, xuu301) -> new_primMulInt(xuu4000, xuu301) 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_Char) -> new_ltEs10(xuu77, xuu78) 37.21/18.35 new_ltEs16(GT, GT) -> True 37.21/18.35 new_esEs27(xuu700, xuu710, ty_Char) -> new_esEs19(xuu700, xuu710) 37.21/18.35 new_esEs7(xuu4000, xuu300, app(app(app(ty_@3, ebh), eca), ecb)) -> new_esEs16(xuu4000, xuu300, ebh, eca, ecb) 37.21/18.35 new_compare5(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.35 new_esEs31(xuu108, xuu111, ty_Integer) -> new_esEs25(xuu108, xuu111) 37.21/18.35 new_esEs10(xuu4000, xuu300, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs16(xuu4000, xuu300, ehb, ehc, ehd) 37.21/18.35 new_esEs10(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.35 new_esEs7(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.35 new_primMulNat0(Zero, Zero) -> Zero 37.21/18.35 new_ltEs5(xuu702, xuu712, app(ty_[], bbf)) -> new_ltEs6(xuu702, xuu712, bbf) 37.21/18.35 new_ltEs13(Nothing, Nothing, daa) -> True 37.21/18.35 new_esEs39(xuu40000, xuu3000, app(ty_[], fff)) -> new_esEs26(xuu40000, xuu3000, fff) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), app(app(ty_@2, bgb), bgc)) -> new_ltEs14(xuu700, xuu710, bgb, bgc) 37.21/18.35 new_esEs7(xuu4000, xuu300, app(ty_Ratio, ece)) -> new_esEs22(xuu4000, xuu300, ece) 37.21/18.35 new_ltEs13(Just(xuu700), Nothing, daa) -> False 37.21/18.35 new_esEs11(xuu4001, xuu301, ty_Char) -> new_esEs19(xuu4001, xuu301) 37.21/18.35 new_esEs8(xuu4000, xuu300, app(app(ty_@2, fdc), fdd)) -> new_esEs15(xuu4000, xuu300, fdc, fdd) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), app(app(ty_Either, fgg), fgh)) -> new_esEs18(xuu40000, xuu3000, fgg, fgh) 37.21/18.35 new_ltEs22(xuu77, xuu78, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs4(xuu77, xuu78, cfb, cfc, cfd) 37.21/18.35 new_esEs8(xuu4000, xuu300, app(ty_Maybe, fec)) -> new_esEs23(xuu4000, xuu300, fec) 37.21/18.35 new_primMulNat0(Succ(xuu400000), Succ(xuu30100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu30100)), Succ(xuu30100)) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, ty_@0) -> new_ltEs9(xuu700, xuu710) 37.21/18.35 new_esEs7(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.35 new_ltEs12(True, False) -> False 37.21/18.35 new_compare7(xuu4000, xuu300, ty_Ordering) -> new_compare17(xuu4000, xuu300) 37.21/18.35 new_lt5(xuu700, xuu710, ty_Integer) -> new_lt19(xuu700, xuu710) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_Ordering) -> new_ltEs16(xuu700, xuu710) 37.21/18.35 new_lt23(xuu700, xuu710, ty_Double) -> new_lt4(xuu700, xuu710) 37.21/18.35 new_esEs8(xuu4000, xuu300, app(app(app(ty_@3, fde), fdf), fdg)) -> new_esEs16(xuu4000, xuu300, fde, fdf, fdg) 37.21/18.35 new_ltEs19(xuu70, xuu71, app(ty_Maybe, daa)) -> new_ltEs13(xuu70, xuu71, daa) 37.21/18.35 new_lt20(xuu108, xuu111, app(app(app(ty_@3, da), db), dc)) -> new_lt8(xuu108, xuu111, da, db, dc) 37.21/18.35 new_esEs26(:(xuu40000, xuu40001), :(xuu3000, xuu3001), dch) -> new_asAs(new_esEs39(xuu40000, xuu3000, dch), new_esEs26(xuu40001, xuu3001, dch)) 37.21/18.35 new_esEs39(xuu40000, xuu3000, app(app(ty_Either, ffb), ffc)) -> new_esEs18(xuu40000, xuu3000, ffb, ffc) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.35 new_lt22(xuu121, xuu123, app(app(ty_Either, cda), cdb)) -> new_lt10(xuu121, xuu123, cda, cdb) 37.21/18.35 new_ltEs19(xuu70, xuu71, app(ty_Ratio, chh)) -> new_ltEs11(xuu70, xuu71, chh) 37.21/18.35 new_esEs35(xuu40000, xuu3000, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.35 new_esEs6(xuu4002, xuu302, ty_Ordering) -> new_esEs20(xuu4002, xuu302) 37.21/18.35 new_esEs37(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) 37.21/18.35 new_lt10(xuu400, xuu30, ge, gf) -> new_esEs14(new_compare11(xuu400, xuu30, ge, gf)) 37.21/18.35 new_ltEs17(xuu70, xuu71) -> new_fsEs(new_compare18(xuu70, xuu71)) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), ty_Ordering, bch) -> new_ltEs16(xuu700, xuu710) 37.21/18.35 new_lt20(xuu108, xuu111, app(ty_Ratio, dec)) -> new_lt13(xuu108, xuu111, dec) 37.21/18.35 new_lt21(xuu109, xuu112, ty_Int) -> new_lt9(xuu109, xuu112) 37.21/18.35 new_esEs28(xuu701, xuu711, app(app(ty_@2, bbd), bbe)) -> new_esEs15(xuu701, xuu711, bbd, bbe) 37.21/18.35 new_esEs34(xuu40001, xuu3001, app(app(ty_@2, dfh), dga)) -> new_esEs15(xuu40001, xuu3001, dfh, dga) 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), app(ty_[], bfc)) -> new_ltEs6(xuu700, xuu710, bfc) 37.21/18.35 new_esEs10(xuu4000, xuu300, app(ty_Ratio, ehg)) -> new_esEs22(xuu4000, xuu300, ehg) 37.21/18.35 new_esEs11(xuu4001, xuu301, app(ty_Maybe, fbb)) -> new_esEs23(xuu4001, xuu301, fbb) 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_Integer) -> new_ltEs18(xuu702, xuu712) 37.21/18.35 new_compare14(False, False) -> EQ 37.21/18.35 new_lt23(xuu700, xuu710, app(app(ty_Either, bha), bhb)) -> new_lt10(xuu700, xuu710, bha, bhb) 37.21/18.35 new_esEs7(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.35 new_esEs5(xuu4001, xuu301, ty_Char) -> new_esEs19(xuu4001, xuu301) 37.21/18.35 new_ltEs12(False, False) -> True 37.21/18.35 new_esEs35(xuu40000, xuu3000, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.35 new_esEs10(xuu4000, xuu300, app(ty_Maybe, ehh)) -> new_esEs23(xuu4000, xuu300, ehh) 37.21/18.35 new_lt6(xuu701, xuu711, ty_Ordering) -> new_lt17(xuu701, xuu711) 37.21/18.35 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 37.21/18.35 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 37.21/18.35 new_compare([], [], h) -> EQ 37.21/18.35 new_esEs36(xuu40001, xuu3001, ty_Float) -> new_esEs21(xuu40001, xuu3001) 37.21/18.35 new_esEs10(xuu4000, xuu300, app(app(ty_@2, egh), eha)) -> new_esEs15(xuu4000, xuu300, egh, eha) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, ty_Double) -> new_ltEs15(xuu700, xuu710) 37.21/18.35 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 37.21/18.35 new_ltEs24(xuu701, xuu711, app(ty_[], bhg)) -> new_ltEs6(xuu701, xuu711, bhg) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), app(app(ty_@2, fgb), fgc)) -> new_esEs15(xuu40000, xuu3000, fgb, fgc) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Int, dcf) -> new_esEs13(xuu40000, xuu3000) 37.21/18.35 new_esEs39(xuu40000, xuu3000, app(app(ty_@2, fee), fef)) -> new_esEs15(xuu40000, xuu3000, fee, fef) 37.21/18.35 new_esEs35(xuu40000, xuu3000, app(ty_[], eea)) -> new_esEs26(xuu40000, xuu3000, eea) 37.21/18.35 new_esEs8(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.35 new_esEs30(xuu40001, xuu3001, ty_Integer) -> new_esEs25(xuu40001, xuu3001) 37.21/18.35 new_lt22(xuu121, xuu123, ty_Int) -> new_lt9(xuu121, xuu123) 37.21/18.35 new_ltEs24(xuu701, xuu711, app(ty_Ratio, fga)) -> new_ltEs11(xuu701, xuu711, fga) 37.21/18.35 new_compare17(EQ, EQ) -> EQ 37.21/18.35 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 37.21/18.35 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 37.21/18.35 new_lt21(xuu109, xuu112, app(ty_Maybe, eh)) -> new_lt15(xuu109, xuu112, eh) 37.21/18.35 new_esEs6(xuu4002, xuu302, ty_Double) -> new_esEs12(xuu4002, xuu302) 37.21/18.35 new_esEs34(xuu40001, xuu3001, app(app(ty_Either, dge), dgf)) -> new_esEs18(xuu40001, xuu3001, dge, dgf) 37.21/18.35 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3000))) -> new_primCmpNat0(Succ(xuu3000), Zero) 37.21/18.35 new_esEs28(xuu701, xuu711, app(app(ty_Either, bba), bbb)) -> new_esEs18(xuu701, xuu711, bba, bbb) 37.21/18.35 new_esEs9(xuu4000, xuu300, app(ty_Maybe, dbc)) -> new_esEs23(xuu4000, xuu300, dbc) 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_Bool) -> new_ltEs12(xuu702, xuu712) 37.21/18.35 new_compare8(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cb, cc, cd) -> new_compare27(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs4(xuu4000, xuu300, cb), new_asAs(new_esEs5(xuu4001, xuu301, cc), new_esEs6(xuu4002, xuu302, cd))), cb, cc, cd) 37.21/18.35 new_esEs8(xuu4000, xuu300, app(ty_Ratio, feb)) -> new_esEs22(xuu4000, xuu300, feb) 37.21/18.35 new_compare11(Left(xuu4000), Left(xuu300), ge, gf) -> new_compare25(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, ge), ge, gf) 37.21/18.35 new_compare27(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, cg) -> new_compare112(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, new_lt20(xuu108, xuu111, ea), new_asAs(new_esEs31(xuu108, xuu111, ea), new_pePe(new_lt21(xuu109, xuu112, cf), new_asAs(new_esEs32(xuu109, xuu112, cf), new_ltEs20(xuu110, xuu113, cg)))), ea, cf, cg) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, ty_Char) -> new_ltEs10(xuu700, xuu710) 37.21/18.35 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_Ordering) -> new_ltEs16(xuu77, xuu78) 37.21/18.35 new_ltEs19(xuu70, xuu71, app(app(app(ty_@3, bad), hb), hc)) -> new_ltEs4(xuu70, xuu71, bad, hb, hc) 37.21/18.35 new_lt21(xuu109, xuu112, ty_Ordering) -> new_lt17(xuu109, xuu112) 37.21/18.35 new_ltEs23(xuu122, xuu124, ty_Bool) -> new_ltEs12(xuu122, xuu124) 37.21/18.35 new_esEs39(xuu40000, xuu3000, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.35 new_lt5(xuu700, xuu710, app(ty_Maybe, baa)) -> new_lt15(xuu700, xuu710, baa) 37.21/18.35 new_primCompAux0(xuu4000, xuu300, xuu45, h) -> new_primCompAux00(xuu45, new_compare7(xuu4000, xuu300, h)) 37.21/18.35 new_compare7(xuu4000, xuu300, app(ty_[], ba)) -> new_compare(xuu4000, xuu300, ba) 37.21/18.35 new_esEs17(True, True) -> True 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), app(ty_[], bcg), bch) -> new_ltEs6(xuu700, xuu710, bcg) 37.21/18.35 new_esEs5(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) 37.21/18.35 new_compare18(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.35 new_ltEs22(xuu77, xuu78, app(ty_[], cfa)) -> new_ltEs6(xuu77, xuu78, cfa) 37.21/18.35 new_esEs38(xuu121, xuu123, ty_Char) -> new_esEs19(xuu121, xuu123) 37.21/18.35 new_esEs27(xuu700, xuu710, app(app(ty_Either, hg), hh)) -> new_esEs18(xuu700, xuu710, hg, hh) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), ty_Float, bch) -> new_ltEs17(xuu700, xuu710) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), ty_Integer, bch) -> new_ltEs18(xuu700, xuu710) 37.21/18.35 new_esEs38(xuu121, xuu123, app(ty_Ratio, fda)) -> new_esEs22(xuu121, xuu123, fda) 37.21/18.35 new_ltEs23(xuu122, xuu124, ty_Char) -> new_ltEs10(xuu122, xuu124) 37.21/18.35 new_esEs28(xuu701, xuu711, app(ty_[], bae)) -> new_esEs26(xuu701, xuu711, bae) 37.21/18.35 new_esEs40(xuu700, xuu710, ty_Int) -> new_esEs13(xuu700, xuu710) 37.21/18.35 new_esEs26(:(xuu40000, xuu40001), [], dch) -> False 37.21/18.35 new_esEs26([], :(xuu3000, xuu3001), dch) -> False 37.21/18.35 new_not(False) -> True 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_Float) -> new_ltEs17(xuu700, xuu710) 37.21/18.35 new_ltEs8(Left(xuu700), Right(xuu710), bea, bch) -> True 37.21/18.35 new_ltEs24(xuu701, xuu711, ty_@0) -> new_ltEs9(xuu701, xuu711) 37.21/18.35 new_esEs35(xuu40000, xuu3000, app(app(ty_Either, ede), edf)) -> new_esEs18(xuu40000, xuu3000, ede, edf) 37.21/18.35 new_esEs4(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.35 new_esEs40(xuu700, xuu710, app(ty_[], bgd)) -> new_esEs26(xuu700, xuu710, bgd) 37.21/18.35 new_lt8(xuu400, xuu30, cb, cc, cd) -> new_esEs14(new_compare8(xuu400, xuu30, cb, cc, cd)) 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_Int) -> new_ltEs7(xuu702, xuu712) 37.21/18.35 new_compare7(xuu4000, xuu300, app(app(ty_@2, bh), ca)) -> new_compare16(xuu4000, xuu300, bh, ca) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Float, dcf) -> new_esEs21(xuu40000, xuu3000) 37.21/18.35 new_ltEs21(xuu84, xuu85, ty_Bool) -> new_ltEs12(xuu84, xuu85) 37.21/18.35 new_compare14(True, False) -> GT 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), ty_Integer) -> new_ltEs18(xuu700, xuu710) 37.21/18.35 new_lt4(xuu400, xuu30) -> new_esEs14(new_compare5(xuu400, xuu30)) 37.21/18.35 new_esEs36(xuu40001, xuu3001, ty_Integer) -> new_esEs25(xuu40001, xuu3001) 37.21/18.35 new_primPlusNat0(Succ(xuu39200), Succ(xuu13400)) -> Succ(Succ(new_primPlusNat0(xuu39200, xuu13400))) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), app(ty_Ratio, fha)) -> new_esEs22(xuu40000, xuu3000, fha) 37.21/18.35 new_ltEs24(xuu701, xuu711, ty_Ordering) -> new_ltEs16(xuu701, xuu711) 37.21/18.35 new_esEs38(xuu121, xuu123, app(app(ty_@2, cdd), cde)) -> new_esEs15(xuu121, xuu123, cdd, cde) 37.21/18.35 new_lt6(xuu701, xuu711, app(ty_Ratio, che)) -> new_lt13(xuu701, xuu711, che) 37.21/18.35 new_ltEs10(xuu70, xuu71) -> new_fsEs(new_compare6(xuu70, xuu71)) 37.21/18.35 new_esEs36(xuu40001, xuu3001, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs16(xuu40001, xuu3001, eed, eee, eef) 37.21/18.35 new_esEs9(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.35 new_esEs4(xuu4000, xuu300, app(ty_Ratio, dbg)) -> new_esEs22(xuu4000, xuu300, dbg) 37.21/18.35 new_esEs31(xuu108, xuu111, app(ty_Ratio, dec)) -> new_esEs22(xuu108, xuu111, dec) 37.21/18.35 new_esEs15(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), dbh, dca) -> new_asAs(new_esEs33(xuu40000, xuu3000, dbh), new_esEs34(xuu40001, xuu3001, dca)) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.35 new_esEs37(xuu40002, xuu3002, ty_Float) -> new_esEs21(xuu40002, xuu3002) 37.21/18.35 new_lt23(xuu700, xuu710, app(app(ty_@2, bhd), bhe)) -> new_lt16(xuu700, xuu710, bhd, bhe) 37.21/18.35 new_esEs5(xuu4001, xuu301, ty_Float) -> new_esEs21(xuu4001, xuu301) 37.21/18.35 new_esEs36(xuu40001, xuu3001, app(ty_[], efc)) -> new_esEs26(xuu40001, xuu3001, efc) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), app(ty_Maybe, bdf), bch) -> new_ltEs13(xuu700, xuu710, bdf) 37.21/18.35 new_ltEs8(Right(xuu700), Right(xuu710), bea, ty_Bool) -> new_ltEs12(xuu700, xuu710) 37.21/18.35 new_esEs36(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 37.21/18.35 new_ltEs8(Left(xuu700), Left(xuu710), app(app(ty_@2, bdg), bdh), bch) -> new_ltEs14(xuu700, xuu710, bdg, bdh) 37.21/18.35 new_lt20(xuu108, xuu111, ty_Int) -> new_lt9(xuu108, xuu111) 37.21/18.35 new_esEs30(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 37.21/18.35 new_esEs37(xuu40002, xuu3002, app(ty_Maybe, egd)) -> new_esEs23(xuu40002, xuu3002, egd) 37.21/18.35 new_esEs4(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.35 new_lt11(xuu400, xuu30) -> new_esEs14(new_compare12(xuu400, xuu30)) 37.21/18.35 new_esEs40(xuu700, xuu710, ty_Float) -> new_esEs21(xuu700, xuu710) 37.21/18.35 new_esEs28(xuu701, xuu711, app(ty_Ratio, che)) -> new_esEs22(xuu701, xuu711, che) 37.21/18.35 new_esEs32(xuu109, xuu112, ty_Double) -> new_esEs12(xuu109, xuu112) 37.21/18.35 new_ltEs23(xuu122, xuu124, app(app(ty_Either, cec), ced)) -> new_ltEs8(xuu122, xuu124, cec, ced) 37.21/18.35 new_ltEs19(xuu70, xuu71, ty_Int) -> new_ltEs7(xuu70, xuu71) 37.21/18.35 new_ltEs20(xuu110, xuu113, app(ty_[], fc)) -> new_ltEs6(xuu110, xuu113, fc) 37.21/18.35 new_esEs20(LT, GT) -> False 37.21/18.35 new_esEs20(GT, LT) -> False 37.21/18.35 new_lt14(xuu400, xuu30) -> new_esEs14(new_compare14(xuu400, xuu30)) 37.21/18.35 new_lt23(xuu700, xuu710, ty_Float) -> new_lt18(xuu700, xuu710) 37.21/18.35 new_lt23(xuu700, xuu710, ty_Integer) -> new_lt19(xuu700, xuu710) 37.21/18.35 new_ltEs19(xuu70, xuu71, ty_Char) -> new_ltEs10(xuu70, xuu71) 37.21/18.35 new_lt20(xuu108, xuu111, app(ty_Maybe, df)) -> new_lt15(xuu108, xuu111, df) 37.21/18.35 new_esEs36(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) 37.21/18.35 new_compare16(@2(xuu4000, xuu4001), @2(xuu300, xuu301), ccb, ccc) -> new_compare28(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs10(xuu4000, xuu300, ccb), new_esEs11(xuu4001, xuu301, ccc)), ccb, ccc) 37.21/18.35 new_lt5(xuu700, xuu710, ty_Int) -> new_lt9(xuu700, xuu710) 37.21/18.35 new_ltEs5(xuu702, xuu712, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs4(xuu702, xuu712, bbg, bbh, bca) 37.21/18.35 new_lt23(xuu700, xuu710, app(ty_Ratio, ffh)) -> new_lt13(xuu700, xuu710, ffh) 37.21/18.35 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 37.21/18.35 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 37.21/18.35 new_compare15(Nothing, Just(xuu300), cah) -> LT 37.21/18.35 new_ltEs13(Just(xuu700), Just(xuu710), app(ty_Ratio, fbg)) -> new_ltEs11(xuu700, xuu710, fbg) 37.21/18.35 new_ltEs5(xuu702, xuu712, ty_Char) -> new_ltEs10(xuu702, xuu712) 37.21/18.35 new_lt20(xuu108, xuu111, app(app(ty_@2, dg), dh)) -> new_lt16(xuu108, xuu111, dg, dh) 37.21/18.35 new_lt18(xuu400, xuu30) -> new_esEs14(new_compare18(xuu400, xuu30)) 37.21/18.35 new_esEs28(xuu701, xuu711, ty_Integer) -> new_esEs25(xuu701, xuu711) 37.21/18.35 new_compare7(xuu4000, xuu300, app(ty_Ratio, dab)) -> new_compare13(xuu4000, xuu300, dab) 37.21/18.35 new_ltEs20(xuu110, xuu113, ty_Int) -> new_ltEs7(xuu110, xuu113) 37.21/18.35 new_ltEs22(xuu77, xuu78, app(ty_Maybe, cfg)) -> new_ltEs13(xuu77, xuu78, cfg) 37.21/18.35 new_compare13(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Integer) -> new_compare19(new_sr0(xuu4000, xuu301), new_sr0(xuu300, xuu4001)) 37.21/18.35 new_esEs9(xuu4000, xuu300, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs16(xuu4000, xuu300, dae, daf, dag) 37.21/18.35 new_esEs18(Left(xuu40000), Right(xuu3000), dce, dcf) -> False 37.21/18.35 new_esEs18(Right(xuu40000), Left(xuu3000), dce, dcf) -> False 37.21/18.35 new_compare112(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, False, xuu187, fcb, fcc, fcd) -> new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, xuu187, fcb, fcc, fcd) 37.21/18.35 new_compare7(xuu4000, xuu300, ty_Integer) -> new_compare19(xuu4000, xuu300) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.35 new_ltEs21(xuu84, xuu85, ty_Float) -> new_ltEs17(xuu84, xuu85) 37.21/18.35 new_esEs40(xuu700, xuu710, ty_Integer) -> new_esEs25(xuu700, xuu710) 37.21/18.35 new_lt6(xuu701, xuu711, app(ty_[], bae)) -> new_lt7(xuu701, xuu711, bae) 37.21/18.35 new_lt21(xuu109, xuu112, app(app(app(ty_@3, ec), ed), ee)) -> new_lt8(xuu109, xuu112, ec, ed, ee) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), app(app(ty_Either, dhg), dhh), dcf) -> new_esEs18(xuu40000, xuu3000, dhg, dhh) 37.21/18.35 new_esEs11(xuu4001, xuu301, ty_Double) -> new_esEs12(xuu4001, xuu301) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), app(ty_[], fhc)) -> new_esEs26(xuu40000, xuu3000, fhc) 37.21/18.35 new_esEs4(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.35 new_esEs27(xuu700, xuu710, ty_Float) -> new_esEs21(xuu700, xuu710) 37.21/18.35 new_esEs37(xuu40002, xuu3002, ty_@0) -> new_esEs24(xuu40002, xuu3002) 37.21/18.35 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 37.21/18.35 new_lt21(xuu109, xuu112, app(app(ty_@2, fa), fb)) -> new_lt16(xuu109, xuu112, fa, fb) 37.21/18.35 new_esEs17(False, False) -> True 37.21/18.35 new_ltEs21(xuu84, xuu85, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_ltEs4(xuu84, xuu85, cbb, cbc, cbd) 37.21/18.35 new_esEs38(xuu121, xuu123, app(app(ty_Either, cda), cdb)) -> new_esEs18(xuu121, xuu123, cda, cdb) 37.21/18.35 new_esEs34(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, app(ty_Maybe, ebd)) -> new_esEs23(xuu40000, xuu3000, ebd) 37.21/18.35 new_lt21(xuu109, xuu112, ty_Integer) -> new_lt19(xuu109, xuu112) 37.21/18.35 new_esEs34(xuu40001, xuu3001, ty_Double) -> new_esEs12(xuu40001, xuu3001) 37.21/18.35 new_compare7(xuu4000, xuu300, app(app(app(ty_@3, bb), bc), bd)) -> new_compare8(xuu4000, xuu300, bb, bc, bd) 37.21/18.35 new_compare29(xuu77, xuu78, True, ceh, fcg) -> EQ 37.21/18.35 new_esEs40(xuu700, xuu710, app(ty_Ratio, ffh)) -> new_esEs22(xuu700, xuu710, ffh) 37.21/18.35 new_esEs35(xuu40000, xuu3000, app(ty_Maybe, edh)) -> new_esEs23(xuu40000, xuu3000, edh) 37.21/18.35 new_lt5(xuu700, xuu710, ty_Double) -> new_lt4(xuu700, xuu710) 37.21/18.35 new_primCmpNat0(Succ(xuu40000), Succ(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) 37.21/18.35 new_lt5(xuu700, xuu710, app(ty_[], ha)) -> new_lt7(xuu700, xuu710, ha) 37.21/18.35 new_lt21(xuu109, xuu112, ty_Double) -> new_lt4(xuu109, xuu112) 37.21/18.35 new_esEs35(xuu40000, xuu3000, app(app(ty_@2, ech), eda)) -> new_esEs15(xuu40000, xuu3000, ech, eda) 37.21/18.35 new_lt5(xuu700, xuu710, app(app(ty_@2, bab), bac)) -> new_lt16(xuu700, xuu710, bab, bac) 37.21/18.35 new_lt6(xuu701, xuu711, ty_Integer) -> new_lt19(xuu701, xuu711) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, app(app(ty_@2, ead), eae)) -> new_esEs15(xuu40000, xuu3000, ead, eae) 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, app(app(app(ty_@3, eaf), eag), eah)) -> new_esEs16(xuu40000, xuu3000, eaf, eag, eah) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), app(ty_Ratio, eaa), dcf) -> new_esEs22(xuu40000, xuu3000, eaa) 37.21/18.35 new_esEs28(xuu701, xuu711, ty_Int) -> new_esEs13(xuu701, xuu711) 37.21/18.35 new_esEs11(xuu4001, xuu301, ty_Bool) -> new_esEs17(xuu4001, xuu301) 37.21/18.35 new_compare11(Left(xuu4000), Right(xuu300), ge, gf) -> LT 37.21/18.35 new_esEs11(xuu4001, xuu301, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs16(xuu4001, xuu301, fad, fae, faf) 37.21/18.35 new_lt21(xuu109, xuu112, app(ty_Ratio, ded)) -> new_lt13(xuu109, xuu112, ded) 37.21/18.35 new_lt22(xuu121, xuu123, app(app(ty_@2, cdd), cde)) -> new_lt16(xuu121, xuu123, cdd, cde) 37.21/18.35 new_ltEs6(xuu70, xuu71, gg) -> new_fsEs(new_compare(xuu70, xuu71, gg)) 37.21/18.35 new_esEs32(xuu109, xuu112, ty_Ordering) -> new_esEs20(xuu109, xuu112) 37.21/18.35 new_esEs37(xuu40002, xuu3002, app(ty_[], ege)) -> new_esEs26(xuu40002, xuu3002, ege) 37.21/18.35 new_esEs38(xuu121, xuu123, app(ty_[], ccd)) -> new_esEs26(xuu121, xuu123, ccd) 37.21/18.35 new_compare6(Char(xuu4000), Char(xuu300)) -> new_primCmpNat0(xuu4000, xuu300) 37.21/18.35 new_esEs39(xuu40000, xuu3000, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.35 new_ltEs20(xuu110, xuu113, ty_Char) -> new_ltEs10(xuu110, xuu113) 37.21/18.35 new_esEs6(xuu4002, xuu302, app(ty_Ratio, ddh)) -> new_esEs22(xuu4002, xuu302, ddh) 37.21/18.35 new_compare27(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, True, ea, cf, cg) -> EQ 37.21/18.35 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 37.21/18.35 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 37.21/18.35 new_lt6(xuu701, xuu711, ty_Double) -> new_lt4(xuu701, xuu711) 37.21/18.35 new_lt20(xuu108, xuu111, ty_Double) -> new_lt4(xuu108, xuu111) 37.21/18.35 new_lt23(xuu700, xuu710, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt8(xuu700, xuu710, bgf, bgg, bgh) 37.21/18.35 new_ltEs24(xuu701, xuu711, app(ty_Maybe, cae)) -> new_ltEs13(xuu701, xuu711, cae) 37.21/18.35 new_esEs8(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.35 new_esEs34(xuu40001, xuu3001, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs16(xuu40001, xuu3001, dgb, dgc, dgd) 37.21/18.35 new_lt22(xuu121, xuu123, app(ty_Ratio, fda)) -> new_lt13(xuu121, xuu123, fda) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.35 new_esEs27(xuu700, xuu710, ty_Int) -> new_esEs13(xuu700, xuu710) 37.21/18.35 new_compare14(True, True) -> EQ 37.21/18.35 new_lt6(xuu701, xuu711, app(app(ty_@2, bbd), bbe)) -> new_lt16(xuu701, xuu711, bbd, bbe) 37.21/18.35 new_primEqNat0(Zero, Zero) -> True 37.21/18.35 new_esEs10(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.35 new_esEs33(xuu40000, xuu3000, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.35 new_lt21(xuu109, xuu112, app(ty_[], eb)) -> new_lt7(xuu109, xuu112, eb) 37.21/18.35 new_esEs27(xuu700, xuu710, ty_Integer) -> new_esEs25(xuu700, xuu710) 37.21/18.35 new_esEs27(xuu700, xuu710, ty_@0) -> new_esEs24(xuu700, xuu710) 37.21/18.35 new_compare5(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.35 new_ltEs23(xuu122, xuu124, app(ty_Maybe, cee)) -> new_ltEs13(xuu122, xuu124, cee) 37.21/18.35 new_esEs18(Left(xuu40000), Left(xuu3000), app(app(ty_@2, dhb), dhc), dcf) -> new_esEs15(xuu40000, xuu3000, dhb, dhc) 37.21/18.35 new_asAs(False, xuu146) -> False 37.21/18.35 new_esEs18(Right(xuu40000), Right(xuu3000), dce, app(app(ty_Either, eba), ebb)) -> new_esEs18(xuu40000, xuu3000, eba, ebb) 37.21/18.35 new_ltEs21(xuu84, xuu85, ty_Char) -> new_ltEs10(xuu84, xuu85) 37.21/18.35 new_esEs35(xuu40000, xuu3000, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs16(xuu40000, xuu3000, edb, edc, edd) 37.21/18.35 new_ltEs20(xuu110, xuu113, ty_Float) -> new_ltEs17(xuu110, xuu113) 37.21/18.35 new_esEs9(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.35 new_esEs37(xuu40002, xuu3002, app(app(ty_Either, ega), egb)) -> new_esEs18(xuu40002, xuu3002, ega, egb) 37.21/18.35 new_esEs20(GT, GT) -> True 37.21/18.35 new_esEs10(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.35 new_lt22(xuu121, xuu123, app(app(app(ty_@3, ccf), ccg), cch)) -> new_lt8(xuu121, xuu123, ccf, ccg, cch) 37.21/18.35 new_esEs38(xuu121, xuu123, ty_Float) -> new_esEs21(xuu121, xuu123) 37.21/18.35 new_esEs4(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.35 new_ltEs22(xuu77, xuu78, ty_Bool) -> new_ltEs12(xuu77, xuu78) 37.21/18.35 new_esEs23(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.35 new_esEs35(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.35 new_ltEs13(Nothing, Just(xuu710), daa) -> True 37.21/18.35 new_esEs5(xuu4001, xuu301, app(ty_Ratio, cha)) -> new_esEs22(xuu4001, xuu301, cha) 37.21/18.35 new_esEs8(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.35 new_esEs38(xuu121, xuu123, ty_@0) -> new_esEs24(xuu121, xuu123) 37.21/18.36 new_ltEs20(xuu110, xuu113, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs4(xuu110, xuu113, fd, ff, fg) 37.21/18.36 new_esEs36(xuu40001, xuu3001, app(app(ty_@2, eeb), eec)) -> new_esEs15(xuu40001, xuu3001, eeb, eec) 37.21/18.36 new_esEs36(xuu40001, xuu3001, app(ty_Maybe, efb)) -> new_esEs23(xuu40001, xuu3001, efb) 37.21/18.36 new_esEs39(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.36 new_ltEs19(xuu70, xuu71, ty_Float) -> new_ltEs17(xuu70, xuu71) 37.21/18.36 new_esEs37(xuu40002, xuu3002, ty_Char) -> new_esEs19(xuu40002, xuu3002) 37.21/18.36 new_ltEs21(xuu84, xuu85, app(ty_[], cba)) -> new_ltEs6(xuu84, xuu85, cba) 37.21/18.36 new_esEs33(xuu40000, xuu3000, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.36 new_ltEs24(xuu701, xuu711, app(app(ty_Either, cac), cad)) -> new_ltEs8(xuu701, xuu711, cac, cad) 37.21/18.36 new_compare17(GT, LT) -> GT 37.21/18.36 new_esEs38(xuu121, xuu123, ty_Integer) -> new_esEs25(xuu121, xuu123) 37.21/18.36 new_ltEs4(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, hc) -> new_pePe(new_lt5(xuu700, xuu710, bad), new_asAs(new_esEs27(xuu700, xuu710, bad), new_pePe(new_lt6(xuu701, xuu711, hb), new_asAs(new_esEs28(xuu701, xuu711, hb), new_ltEs5(xuu702, xuu712, hc))))) 37.21/18.36 new_lt22(xuu121, xuu123, ty_Integer) -> new_lt19(xuu121, xuu123) 37.21/18.36 37.21/18.36 The set Q consists of the following terms: 37.21/18.36 37.21/18.36 new_esEs6(x0, x1, ty_Bool) 37.21/18.36 new_esEs4(x0, x1, ty_Char) 37.21/18.36 new_esEs18(Left(x0), Right(x1), x2, x3) 37.21/18.36 new_esEs18(Right(x0), Left(x1), x2, x3) 37.21/18.36 new_compare17(LT, GT) 37.21/18.36 new_compare17(GT, LT) 37.21/18.36 new_esEs10(x0, x1, ty_Char) 37.21/18.36 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 37.21/18.36 new_esEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.21/18.36 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 37.21/18.36 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 37.21/18.36 new_esEs8(x0, x1, ty_Int) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), ty_Int) 37.21/18.36 new_lt6(x0, x1, ty_Double) 37.21/18.36 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_compare8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.21/18.36 new_esEs4(x0, x1, app(ty_[], x2)) 37.21/18.36 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs18(Left(x0), Left(x1), ty_Bool, x2) 37.21/18.36 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_lt23(x0, x1, ty_Ordering) 37.21/18.36 new_compare29(x0, x1, True, x2, x3) 37.21/18.36 new_primCmpNat0(Succ(x0), Zero) 37.21/18.36 new_lt23(x0, x1, ty_Double) 37.21/18.36 new_ltEs22(x0, x1, ty_Bool) 37.21/18.36 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_asAs(False, x0) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), ty_Char) 37.21/18.36 new_ltEs22(x0, x1, ty_@0) 37.21/18.36 new_compare7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_compare6(Char(x0), Char(x1)) 37.21/18.36 new_compare11(Left(x0), Left(x1), x2, x3) 37.21/18.36 new_ltEs24(x0, x1, ty_@0) 37.21/18.36 new_esEs4(x0, x1, ty_Int) 37.21/18.36 new_esEs38(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs6(x0, x1, ty_@0) 37.21/18.36 new_esEs35(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs20(LT, GT) 37.21/18.36 new_esEs20(GT, LT) 37.21/18.36 new_esEs27(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 37.21/18.36 new_esEs18(Left(x0), Left(x1), ty_@0, x2) 37.21/18.36 new_lt22(x0, x1, ty_Char) 37.21/18.36 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_ltEs22(x0, x1, ty_Integer) 37.21/18.36 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 37.21/18.36 new_lt23(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs11(x0, x1, ty_Char) 37.21/18.36 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_primEqInt(Pos(Zero), Pos(Zero)) 37.21/18.36 new_primCompAux00(x0, EQ) 37.21/18.36 new_esEs29(x0, x1, ty_Integer) 37.21/18.36 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 37.21/18.36 new_compare(:(x0, x1), :(x2, x3), x4) 37.21/18.36 new_esEs5(x0, x1, ty_@0) 37.21/18.36 new_compare28(x0, x1, x2, x3, True, x4, x5) 37.21/18.36 new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.21/18.36 new_compare110(x0, x1, x2, x3, False, x4, x5, x6) 37.21/18.36 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 37.21/18.36 new_lt22(x0, x1, ty_Int) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), ty_Double) 37.21/18.36 new_esEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.21/18.36 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs17(False, False) 37.21/18.36 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs21(x0, x1, ty_Bool) 37.21/18.36 new_lt21(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs7(x0, x1, ty_Float) 37.21/18.36 new_esEs4(x0, x1, ty_Ordering) 37.21/18.36 new_compare7(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 37.21/18.36 new_lt21(x0, x1, ty_Float) 37.21/18.36 new_ltEs5(x0, x1, ty_@0) 37.21/18.36 new_esEs10(x0, x1, ty_Ordering) 37.21/18.36 new_esEs5(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 37.21/18.36 new_lt21(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_primEqInt(Neg(Zero), Neg(Zero)) 37.21/18.36 new_esEs6(x0, x1, ty_Integer) 37.21/18.36 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_compare26(x0, x1, True, x2) 37.21/18.36 new_lt22(x0, x1, ty_@0) 37.21/18.36 new_esEs11(x0, x1, ty_@0) 37.21/18.36 new_lt20(x0, x1, ty_Integer) 37.21/18.36 new_ltEs23(x0, x1, ty_Bool) 37.21/18.36 new_esEs10(x0, x1, ty_Int) 37.21/18.36 new_ltEs16(GT, EQ) 37.21/18.36 new_ltEs16(EQ, GT) 37.21/18.36 new_lt20(x0, x1, ty_Float) 37.21/18.36 new_lt5(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs5(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_ltEs13(Nothing, Nothing, x0) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.21/18.36 new_ltEs20(x0, x1, ty_Double) 37.21/18.36 new_esEs4(x0, x1, ty_@0) 37.21/18.36 new_ltEs24(x0, x1, ty_Integer) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 37.21/18.36 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs4(x0, x1, ty_Double) 37.21/18.36 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 37.21/18.36 new_ltEs21(x0, x1, ty_Int) 37.21/18.36 new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_ltEs23(x0, x1, ty_Float) 37.21/18.36 new_ltEs16(LT, LT) 37.21/18.36 new_esEs7(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_ltEs23(x0, x1, ty_@0) 37.21/18.36 new_lt6(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs10(x0, x1, ty_Double) 37.21/18.36 new_esEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.21/18.36 new_esEs28(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 37.21/18.36 new_esEs6(x0, x1, ty_Char) 37.21/18.36 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs31(x0, x1, app(ty_[], x2)) 37.21/18.36 new_ltEs19(x0, x1, ty_Integer) 37.21/18.36 new_primMulNat0(Zero, Succ(x0)) 37.21/18.36 new_ltEs5(x0, x1, app(ty_[], x2)) 37.21/18.36 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.21/18.36 new_esEs10(x0, x1, ty_Bool) 37.21/18.36 new_compare115(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.21/18.36 new_lt15(x0, x1, x2) 37.21/18.36 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_compare15(Just(x0), Just(x1), x2) 37.21/18.36 new_esEs40(x0, x1, ty_Bool) 37.21/18.36 new_esEs34(x0, x1, app(ty_[], x2)) 37.21/18.36 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_lt20(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_primMulInt(Neg(x0), Neg(x1)) 37.21/18.36 new_esEs8(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs40(x0, x1, ty_Float) 37.21/18.36 new_primPlusNat0(Succ(x0), Succ(x1)) 37.21/18.36 new_ltEs21(x0, x1, ty_Double) 37.21/18.36 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs27(x0, x1, ty_Float) 37.21/18.36 new_primEqInt(Pos(Zero), Neg(Zero)) 37.21/18.36 new_primEqInt(Neg(Zero), Pos(Zero)) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, ty_Float) 37.21/18.36 new_esEs36(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_compare113(x0, x1, False, x2, x3) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.21/18.36 new_ltEs21(x0, x1, ty_Char) 37.21/18.36 new_lt9(x0, x1) 37.21/18.36 new_compare110(x0, x1, x2, x3, True, x4, x5, x6) 37.21/18.36 new_esEs23(Just(x0), Just(x1), ty_@0) 37.21/18.36 new_esEs8(x0, x1, ty_Ordering) 37.21/18.36 new_lt5(x0, x1, ty_Char) 37.21/18.36 new_fsEs(x0) 37.21/18.36 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 37.21/18.36 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 37.21/18.36 new_esEs40(x0, x1, ty_@0) 37.21/18.36 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs20(x0, x1, ty_Int) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 37.21/18.36 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs26([], [], x0) 37.21/18.36 new_compare14(True, True) 37.21/18.36 new_lt5(x0, x1, ty_Double) 37.21/18.36 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs18(Left(x0), Left(x1), ty_Integer, x2) 37.21/18.36 new_sr(x0, x1) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs23(Just(x0), Just(x1), ty_Float) 37.21/18.36 new_lt6(x0, x1, ty_Ordering) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.21/18.36 new_esEs32(x0, x1, ty_Float) 37.21/18.36 new_esEs35(x0, x1, ty_Float) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.21/18.36 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 37.21/18.36 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 37.21/18.36 new_ltEs21(x0, x1, ty_@0) 37.21/18.36 new_lt20(x0, x1, ty_Bool) 37.21/18.36 new_compare([], [], x0) 37.21/18.36 new_ltEs20(x0, x1, ty_Char) 37.21/18.36 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 37.21/18.36 new_lt5(x0, x1, ty_Int) 37.21/18.36 new_compare11(Right(x0), Left(x1), x2, x3) 37.21/18.36 new_compare11(Left(x0), Right(x1), x2, x3) 37.21/18.36 new_esEs4(x0, x1, ty_Bool) 37.21/18.36 new_esEs37(x0, x1, ty_Float) 37.21/18.36 new_esEs9(x0, x1, ty_Float) 37.21/18.36 new_lt8(x0, x1, x2, x3, x4) 37.21/18.36 new_esEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.21/18.36 new_ltEs22(x0, x1, ty_Ordering) 37.21/18.36 new_lt22(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs7(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_compare7(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_ltEs15(x0, x1) 37.21/18.36 new_esEs37(x0, x1, app(ty_[], x2)) 37.21/18.36 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 37.21/18.36 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs6(x0, x1, ty_Float) 37.21/18.36 new_compare16(@2(x0, x1), @2(x2, x3), x4, x5) 37.21/18.36 new_lt21(x0, x1, ty_@0) 37.21/18.36 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_lt6(x0, x1, ty_@0) 37.21/18.36 new_esEs11(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs33(x0, x1, app(ty_[], x2)) 37.21/18.36 new_ltEs22(x0, x1, ty_Float) 37.21/18.36 new_esEs10(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs15(@2(x0, x1), @2(x2, x3), x4, x5) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, ty_Integer) 37.21/18.36 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.21/18.36 new_compare7(x0, x1, ty_Ordering) 37.21/18.36 new_lt23(x0, x1, ty_@0) 37.21/18.36 new_esEs9(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_compare7(x0, x1, ty_Double) 37.21/18.36 new_lt10(x0, x1, x2, x3) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.21/18.36 new_esEs33(x0, x1, ty_Integer) 37.21/18.36 new_ltEs5(x0, x1, ty_Double) 37.21/18.36 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs39(x0, x1, ty_Integer) 37.21/18.36 new_esEs37(x0, x1, ty_Ordering) 37.21/18.36 new_ltEs7(x0, x1) 37.21/18.36 new_esEs36(x0, x1, app(ty_[], x2)) 37.21/18.36 new_asAs(True, x0) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.21/18.36 new_esEs8(x0, x1, ty_Integer) 37.21/18.36 new_esEs10(x0, x1, app(ty_[], x2)) 37.21/18.36 new_compare17(EQ, EQ) 37.21/18.36 new_ltEs22(x0, x1, ty_Int) 37.21/18.36 new_esEs6(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_ltEs23(x0, x1, ty_Char) 37.21/18.36 new_esEs32(x0, x1, ty_Ordering) 37.21/18.36 new_esEs10(x0, x1, ty_Integer) 37.21/18.36 new_ltEs16(GT, GT) 37.21/18.36 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs8(x0, x1, ty_Bool) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.21/18.36 new_esEs6(x0, x1, ty_Int) 37.21/18.36 new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.21/18.36 new_esEs18(Left(x0), Left(x1), ty_Ordering, x2) 37.21/18.36 new_ltEs19(x0, x1, ty_Bool) 37.21/18.36 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs34(x0, x1, ty_Float) 37.21/18.36 new_esEs39(x0, x1, ty_@0) 37.21/18.36 new_esEs27(x0, x1, ty_Bool) 37.21/18.36 new_esEs11(x0, x1, ty_Float) 37.21/18.36 new_lt22(x0, x1, app(ty_[], x2)) 37.21/18.36 new_primCmpNat0(Zero, Succ(x0)) 37.21/18.36 new_ltEs16(LT, EQ) 37.21/18.36 new_ltEs16(EQ, LT) 37.21/18.36 new_compare111(x0, x1, x2, x3, True, x4, x5) 37.21/18.36 new_esEs36(x0, x1, ty_Double) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.21/18.36 new_primCmpNat0(Succ(x0), Succ(x1)) 37.21/18.36 new_esEs13(x0, x1) 37.21/18.36 new_esEs32(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, ty_Bool) 37.21/18.36 new_esEs5(x0, x1, ty_Ordering) 37.21/18.36 new_lt22(x0, x1, ty_Integer) 37.21/18.36 new_esEs28(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs31(x0, x1, ty_Double) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 37.21/18.36 new_lt22(x0, x1, ty_Float) 37.21/18.36 new_esEs11(x0, x1, ty_Ordering) 37.21/18.36 new_esEs4(x0, x1, ty_Integer) 37.21/18.36 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs11(x0, x1, x2) 37.21/18.36 new_primEqNat0(Zero, Succ(x0)) 37.21/18.36 new_esEs34(x0, x1, ty_Ordering) 37.21/18.36 new_esEs19(Char(x0), Char(x1)) 37.21/18.36 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_lt22(x0, x1, ty_Ordering) 37.21/18.36 new_esEs9(x0, x1, ty_Bool) 37.21/18.36 new_esEs5(x0, x1, ty_Integer) 37.21/18.36 new_esEs18(Left(x0), Left(x1), ty_Double, x2) 37.21/18.36 new_ltEs19(x0, x1, ty_Char) 37.21/18.36 new_esEs4(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs5(x0, x1, ty_Float) 37.21/18.36 new_primCompAux0(x0, x1, x2, x3) 37.21/18.36 new_esEs10(x0, x1, ty_@0) 37.21/18.36 new_primCmpInt(Neg(Zero), Neg(Zero)) 37.21/18.36 new_lt17(x0, x1) 37.21/18.36 new_esEs34(x0, x1, ty_Int) 37.21/18.36 new_esEs21(Float(x0, x1), Float(x2, x3)) 37.21/18.36 new_ltEs19(x0, x1, ty_Int) 37.21/18.36 new_compare114(x0, x1, True, x2) 37.21/18.36 new_esEs39(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.21/18.36 new_primPlusNat0(Succ(x0), Zero) 37.21/18.36 new_esEs11(x0, x1, ty_Int) 37.21/18.36 new_esEs9(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs34(x0, x1, ty_Integer) 37.21/18.36 new_esEs38(x0, x1, ty_@0) 37.21/18.36 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs10(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_primCmpInt(Pos(Zero), Neg(Zero)) 37.21/18.36 new_primCmpInt(Neg(Zero), Pos(Zero)) 37.21/18.36 new_esEs23(Nothing, Just(x0), x1) 37.21/18.36 new_compare17(LT, EQ) 37.21/18.36 new_compare17(EQ, LT) 37.21/18.36 new_esEs14(LT) 37.21/18.36 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), ty_@0) 37.21/18.36 new_esEs11(x0, x1, ty_Integer) 37.21/18.36 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.21/18.36 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs38(x0, x1, ty_Double) 37.21/18.36 new_esEs35(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 37.21/18.36 new_ltEs20(x0, x1, ty_Ordering) 37.21/18.36 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.21/18.36 new_esEs24(@0, @0) 37.21/18.36 new_esEs31(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs34(x0, x1, ty_Char) 37.21/18.36 new_esEs5(x0, x1, ty_Int) 37.21/18.36 new_esEs28(x0, x1, ty_Int) 37.21/18.36 new_compare10(x0, x1, True, x2, x3) 37.21/18.36 new_esEs40(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_compare7(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs14(EQ) 37.21/18.36 new_esEs36(x0, x1, ty_@0) 37.21/18.36 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_lt11(x0, x1) 37.21/18.36 new_esEs34(x0, x1, ty_Bool) 37.21/18.36 new_primEqNat0(Succ(x0), Zero) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.21/18.36 new_esEs20(EQ, EQ) 37.21/18.36 new_esEs5(x0, x1, ty_Bool) 37.21/18.36 new_compare25(x0, x1, False, x2, x3) 37.21/18.36 new_primPlusNat0(Zero, Succ(x0)) 37.21/18.36 new_esEs11(x0, x1, ty_Bool) 37.21/18.36 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs5(x0, x1, ty_Char) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 37.21/18.36 new_esEs31(x0, x1, ty_@0) 37.21/18.36 new_ltEs19(x0, x1, ty_Float) 37.21/18.36 new_esEs8(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs9(x0, x1, ty_Ordering) 37.21/18.36 new_compare115(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.21/18.36 new_esEs27(x0, x1, ty_Ordering) 37.21/18.36 new_compare17(LT, LT) 37.21/18.36 new_esEs37(x0, x1, ty_Integer) 37.21/18.36 new_ltEs24(x0, x1, ty_Double) 37.21/18.36 new_ltEs24(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs9(x0, x1, ty_Integer) 37.21/18.36 new_compare14(False, False) 37.21/18.36 new_ltEs23(x0, x1, ty_Integer) 37.21/18.36 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs29(x0, x1, ty_Int) 37.21/18.36 new_ltEs23(x0, x1, ty_Ordering) 37.21/18.36 new_lt22(x0, x1, ty_Bool) 37.21/18.36 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_ltEs22(x0, x1, ty_Char) 37.21/18.36 new_esEs28(x0, x1, ty_Float) 37.21/18.36 new_esEs32(x0, x1, ty_Integer) 37.21/18.36 new_esEs27(x0, x1, ty_Integer) 37.21/18.36 new_esEs8(x0, x1, ty_Char) 37.21/18.36 new_esEs26(:(x0, x1), :(x2, x3), x4) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 37.21/18.36 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_compare7(x0, x1, app(ty_[], x2)) 37.21/18.36 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs28(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, ty_Ordering) 37.21/18.36 new_esEs27(x0, x1, ty_Int) 37.21/18.36 new_esEs32(x0, x1, ty_@0) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, ty_Int) 37.21/18.36 new_esEs40(x0, x1, app(ty_[], x2)) 37.21/18.36 new_compare7(x0, x1, ty_Bool) 37.21/18.36 new_esEs38(x0, x1, ty_Integer) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 37.21/18.36 new_esEs33(x0, x1, ty_Char) 37.21/18.36 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_ltEs16(EQ, EQ) 37.21/18.36 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_lt21(x0, x1, ty_Double) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 37.21/18.36 new_esEs37(x0, x1, ty_@0) 37.21/18.36 new_esEs7(x0, x1, ty_Int) 37.21/18.36 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs39(x0, x1, ty_Int) 37.21/18.36 new_esEs7(x0, x1, ty_Char) 37.21/18.36 new_compare7(x0, x1, ty_@0) 37.21/18.36 new_ltEs20(x0, x1, ty_Integer) 37.21/18.36 new_primMulNat0(Zero, Zero) 37.21/18.36 new_esEs35(x0, x1, ty_Int) 37.21/18.36 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_lt6(x0, x1, ty_Float) 37.21/18.36 new_esEs39(x0, x1, ty_Ordering) 37.21/18.36 new_lt21(x0, x1, ty_Ordering) 37.21/18.36 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs6(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_compare(:(x0, x1), [], x2) 37.21/18.36 new_esEs9(x0, x1, ty_Int) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, ty_Char) 37.21/18.36 new_esEs35(x0, x1, ty_Char) 37.21/18.36 new_lt4(x0, x1) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 37.21/18.36 new_esEs25(Integer(x0), Integer(x1)) 37.21/18.36 new_esEs8(x0, x1, ty_Float) 37.21/18.36 new_ltEs13(Nothing, Just(x0), x1) 37.21/18.36 new_esEs39(x0, x1, ty_Char) 37.21/18.36 new_compare25(x0, x1, True, x2, x3) 37.21/18.36 new_esEs17(True, True) 37.21/18.36 new_esEs38(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 37.21/18.36 new_esEs9(x0, x1, ty_Char) 37.21/18.36 new_esEs36(x0, x1, ty_Char) 37.21/18.36 new_esEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.21/18.36 new_esEs27(x0, x1, ty_Char) 37.21/18.36 new_esEs27(x0, x1, ty_Double) 37.21/18.36 new_esEs9(x0, x1, ty_Double) 37.21/18.36 new_esEs31(x0, x1, ty_Char) 37.21/18.36 new_compare17(GT, GT) 37.21/18.36 new_esEs28(x0, x1, ty_Char) 37.21/18.36 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_compare13(:%(x0, x1), :%(x2, x3), ty_Integer) 37.21/18.36 new_esEs32(x0, x1, ty_Bool) 37.21/18.36 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs4(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs36(x0, x1, ty_Bool) 37.21/18.36 new_compare14(False, True) 37.21/18.36 new_compare14(True, False) 37.21/18.36 new_esEs33(x0, x1, ty_Ordering) 37.21/18.36 new_esEs31(x0, x1, ty_Bool) 37.21/18.36 new_esEs37(x0, x1, ty_Bool) 37.21/18.36 new_lt13(x0, x1, x2) 37.21/18.36 new_esEs4(x0, x1, ty_Float) 37.21/18.36 new_compare15(Just(x0), Nothing, x1) 37.21/18.36 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs33(x0, x1, ty_Int) 37.21/18.36 new_esEs39(x0, x1, ty_Double) 37.21/18.36 new_esEs33(x0, x1, ty_@0) 37.21/18.36 new_esEs7(x0, x1, ty_Ordering) 37.21/18.36 new_primPlusNat0(Zero, Zero) 37.21/18.36 new_esEs34(x0, x1, ty_@0) 37.21/18.36 new_esEs27(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs19(x0, x1, ty_Double) 37.21/18.36 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs20(LT, EQ) 37.21/18.36 new_esEs20(EQ, LT) 37.21/18.36 new_esEs33(x0, x1, ty_Double) 37.21/18.36 new_esEs28(x0, x1, ty_Ordering) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 37.21/18.36 new_not(True) 37.21/18.36 new_esEs31(x0, x1, ty_Ordering) 37.21/18.36 new_esEs28(x0, x1, ty_Bool) 37.21/18.36 new_esEs12(Double(x0, x1), Double(x2, x3)) 37.21/18.36 new_ltEs20(x0, x1, ty_Float) 37.21/18.36 new_esEs32(x0, x1, ty_Char) 37.21/18.36 new_ltEs21(x0, x1, app(ty_[], x2)) 37.21/18.36 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs20(x0, x1, ty_@0) 37.21/18.36 new_esEs34(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_ltEs23(x0, x1, ty_Double) 37.21/18.36 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs35(x0, x1, ty_@0) 37.21/18.36 new_esEs20(GT, GT) 37.21/18.36 new_ltEs12(True, True) 37.21/18.36 new_lt23(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_lt18(x0, x1) 37.21/18.36 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_lt16(x0, x1, x2, x3) 37.21/18.36 new_esEs36(x0, x1, ty_Ordering) 37.21/18.36 new_lt20(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs37(x0, x1, ty_Char) 37.21/18.36 new_esEs33(x0, x1, ty_Bool) 37.21/18.36 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs30(x0, x1, ty_Integer) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.21/18.36 new_esEs23(Just(x0), Just(x1), ty_Double) 37.21/18.36 new_compare11(Right(x0), Right(x1), x2, x3) 37.21/18.36 new_pePe(False, x0) 37.21/18.36 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 37.21/18.36 new_esEs32(x0, x1, ty_Int) 37.21/18.36 new_primMulNat0(Succ(x0), Zero) 37.21/18.36 new_esEs23(Just(x0), Just(x1), ty_Int) 37.21/18.36 new_pePe(True, x0) 37.21/18.36 new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.21/18.36 new_esEs35(x0, x1, ty_Double) 37.21/18.36 new_esEs22(:%(x0, x1), :%(x2, x3), x4) 37.21/18.36 new_esEs37(x0, x1, ty_Int) 37.21/18.36 new_lt5(x0, x1, ty_Bool) 37.21/18.36 new_esEs37(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_ltEs20(x0, x1, ty_Bool) 37.21/18.36 new_lt20(x0, x1, ty_Int) 37.21/18.36 new_lt6(x0, x1, ty_Integer) 37.21/18.36 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 37.21/18.36 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, ty_Double) 37.21/18.36 new_esEs27(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_ltEs19(x0, x1, ty_Ordering) 37.21/18.36 new_lt5(x0, x1, ty_Float) 37.21/18.36 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.21/18.36 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs7(x0, x1, ty_Double) 37.21/18.36 new_esEs26([], :(x0, x1), x2) 37.21/18.36 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_ltEs12(False, True) 37.21/18.36 new_ltEs12(True, False) 37.21/18.36 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_ltEs23(x0, x1, ty_Int) 37.21/18.36 new_lt12(x0, x1) 37.21/18.36 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs7(x0, x1, ty_Bool) 37.21/18.36 new_esEs20(LT, LT) 37.21/18.36 new_esEs17(False, True) 37.21/18.36 new_esEs17(True, False) 37.21/18.36 new_primEqNat0(Succ(x0), Succ(x1)) 37.21/18.36 new_ltEs21(x0, x1, ty_Float) 37.21/18.36 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_ltEs10(x0, x1) 37.21/18.36 new_lt5(x0, x1, ty_@0) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.21/18.36 new_lt6(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_lt20(x0, x1, ty_Char) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.21/18.36 new_compare([], :(x0, x1), x2) 37.21/18.36 new_esEs27(x0, x1, ty_@0) 37.21/18.36 new_lt21(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs32(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_ltEs16(LT, GT) 37.21/18.36 new_ltEs16(GT, LT) 37.21/18.36 new_esEs40(x0, x1, ty_Double) 37.21/18.36 new_esEs40(x0, x1, ty_Char) 37.21/18.36 new_esEs11(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 37.21/18.36 new_esEs9(x0, x1, ty_@0) 37.21/18.36 new_lt20(x0, x1, ty_Double) 37.21/18.36 new_primCompAux00(x0, GT) 37.21/18.36 new_lt5(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_lt7(x0, x1, x2) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.21/18.36 new_ltEs8(Right(x0), Left(x1), x2, x3) 37.21/18.36 new_compare28(x0, x1, x2, x3, False, x4, x5) 37.21/18.36 new_ltEs8(Left(x0), Right(x1), x2, x3) 37.21/18.36 new_lt20(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs40(x0, x1, ty_Int) 37.21/18.36 new_esEs18(Right(x0), Right(x1), x2, ty_@0) 37.21/18.36 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs32(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_compare15(Nothing, Just(x0), x1) 37.21/18.36 new_compare12(@0, @0) 37.21/18.36 new_esEs39(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs36(x0, x1, ty_Integer) 37.21/18.36 new_primCmpInt(Pos(Zero), Pos(Zero)) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), ty_Integer) 37.21/18.36 new_esEs31(x0, x1, ty_Integer) 37.21/18.36 new_esEs28(x0, x1, ty_Integer) 37.21/18.36 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_lt23(x0, x1, ty_Integer) 37.21/18.36 new_compare7(x0, x1, ty_Integer) 37.21/18.36 new_esEs34(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_primCompAux00(x0, LT) 37.21/18.36 new_esEs37(x0, x1, ty_Double) 37.21/18.36 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs35(x0, x1, ty_Integer) 37.21/18.36 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 37.21/18.36 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 37.21/18.36 new_ltEs19(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs6(x0, x1, ty_Ordering) 37.21/18.36 new_esEs6(x0, x1, ty_Double) 37.21/18.36 new_esEs18(Left(x0), Left(x1), ty_Float, x2) 37.21/18.36 new_compare13(:%(x0, x1), :%(x2, x3), ty_Int) 37.21/18.36 new_esEs26(:(x0, x1), [], x2) 37.21/18.36 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_lt22(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_compare7(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs7(x0, x1, ty_Integer) 37.21/18.36 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_lt6(x0, x1, ty_Bool) 37.21/18.36 new_esEs6(x0, x1, app(ty_[], x2)) 37.21/18.36 new_ltEs19(x0, x1, ty_@0) 37.21/18.36 new_compare29(x0, x1, False, x2, x3) 37.21/18.36 new_esEs38(x0, x1, ty_Int) 37.21/18.36 new_esEs39(x0, x1, ty_Bool) 37.21/18.36 new_ltEs5(x0, x1, ty_Float) 37.21/18.36 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs23(Just(x0), Just(x1), ty_Char) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 37.21/18.36 new_esEs38(x0, x1, ty_Char) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 37.21/18.36 new_ltEs9(x0, x1) 37.21/18.36 new_esEs23(Just(x0), Nothing, x1) 37.21/18.36 new_esEs14(GT) 37.21/18.36 new_esEs37(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs34(x0, x1, ty_Double) 37.21/18.36 new_esEs7(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs8(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_lt5(x0, x1, app(ty_[], x2)) 37.21/18.36 new_ltEs18(x0, x1) 37.21/18.36 new_ltEs23(x0, x1, app(ty_[], x2)) 37.21/18.36 new_primMulNat0(Succ(x0), Succ(x1)) 37.21/18.36 new_esEs11(x0, x1, ty_Double) 37.21/18.36 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_compare113(x0, x1, True, x2, x3) 37.21/18.36 new_ltEs5(x0, x1, ty_Ordering) 37.21/18.36 new_ltEs22(x0, x1, app(ty_[], x2)) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), ty_Bool) 37.21/18.36 new_esEs35(x0, x1, app(ty_[], x2)) 37.21/18.36 new_compare17(GT, EQ) 37.21/18.36 new_compare17(EQ, GT) 37.21/18.36 new_ltEs24(x0, x1, ty_Ordering) 37.21/18.36 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_compare10(x0, x1, False, x2, x3) 37.21/18.36 new_lt20(x0, x1, ty_@0) 37.21/18.36 new_esEs38(x0, x1, ty_Ordering) 37.21/18.36 new_esEs30(x0, x1, ty_Int) 37.21/18.36 new_esEs33(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs38(x0, x1, ty_Float) 37.21/18.36 new_lt23(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs7(x0, x1, ty_@0) 37.21/18.36 new_esEs20(EQ, GT) 37.21/18.36 new_esEs20(GT, EQ) 37.21/18.36 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_compare9(x0, x1) 37.21/18.36 new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) 37.21/18.36 new_esEs32(x0, x1, ty_Double) 37.21/18.36 new_lt23(x0, x1, ty_Bool) 37.21/18.36 new_ltEs5(x0, x1, ty_Int) 37.21/18.36 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 37.21/18.36 new_esEs31(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_lt21(x0, x1, ty_Integer) 37.21/18.36 new_ltEs24(x0, x1, ty_Float) 37.21/18.36 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs38(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs9(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs35(x0, x1, ty_Bool) 37.21/18.36 new_primMulInt(Pos(x0), Pos(x1)) 37.21/18.36 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 37.21/18.36 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs33(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs23(Just(x0), Just(x1), ty_Bool) 37.21/18.36 new_ltEs5(x0, x1, ty_Integer) 37.21/18.36 new_esEs18(Left(x0), Left(x1), ty_Char, x2) 37.21/18.36 new_compare114(x0, x1, False, x2) 37.21/18.36 new_primEqNat0(Zero, Zero) 37.21/18.36 new_esEs33(x0, x1, ty_Float) 37.21/18.36 new_esEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.21/18.36 new_not(False) 37.21/18.36 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs23(Just(x0), Just(x1), ty_Ordering) 37.21/18.36 new_ltEs13(Just(x0), Nothing, x1) 37.21/18.36 new_ltEs24(x0, x1, ty_Char) 37.21/18.36 new_lt20(x0, x1, ty_Ordering) 37.21/18.36 new_lt23(x0, x1, ty_Char) 37.21/18.36 new_lt6(x0, x1, ty_Char) 37.21/18.36 new_lt21(x0, x1, ty_Char) 37.21/18.36 new_esEs28(x0, x1, ty_Double) 37.21/18.36 new_compare7(x0, x1, ty_Char) 37.21/18.36 new_lt5(x0, x1, ty_Ordering) 37.21/18.36 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_esEs23(Nothing, Nothing, x0) 37.21/18.36 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs40(x0, x1, ty_Integer) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.21/18.36 new_esEs39(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs28(x0, x1, ty_@0) 37.21/18.36 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 37.21/18.36 new_lt22(x0, x1, ty_Double) 37.21/18.36 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_lt19(x0, x1) 37.21/18.36 new_ltEs12(False, False) 37.21/18.36 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs18(Left(x0), Left(x1), ty_Int, x2) 37.21/18.36 new_esEs36(x0, x1, ty_Int) 37.21/18.36 new_esEs8(x0, x1, ty_@0) 37.21/18.36 new_ltEs21(x0, x1, ty_Integer) 37.21/18.36 new_lt14(x0, x1) 37.21/18.36 new_ltEs5(x0, x1, ty_Char) 37.21/18.36 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs10(x0, x1, ty_Float) 37.21/18.36 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_lt23(x0, x1, ty_Int) 37.21/18.36 new_compare15(Nothing, Nothing, x0) 37.21/18.36 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_lt5(x0, x1, ty_Integer) 37.21/18.36 new_ltEs24(x0, x1, ty_Int) 37.21/18.36 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_lt21(x0, x1, ty_Int) 37.21/18.36 new_esEs31(x0, x1, ty_Int) 37.21/18.36 new_primMulInt(Pos(x0), Neg(x1)) 37.21/18.36 new_primMulInt(Neg(x0), Pos(x1)) 37.21/18.36 new_lt6(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 37.21/18.36 new_compare7(x0, x1, ty_Int) 37.21/18.36 new_compare19(Integer(x0), Integer(x1)) 37.21/18.36 new_esEs23(Just(x0), Just(x1), ty_Integer) 37.21/18.36 new_sr0(Integer(x0), Integer(x1)) 37.21/18.36 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.36 new_esEs35(x0, x1, ty_Ordering) 37.21/18.36 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs8(x0, x1, ty_Double) 37.21/18.36 new_ltEs24(x0, x1, ty_Bool) 37.21/18.36 new_esEs40(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_compare26(x0, x1, False, x2) 37.21/18.36 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_esEs39(x0, x1, ty_Float) 37.21/18.36 new_ltEs20(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs5(x0, x1, app(ty_[], x2)) 37.21/18.36 new_esEs5(x0, x1, ty_Double) 37.21/18.36 new_ltEs5(x0, x1, ty_Bool) 37.21/18.36 new_lt21(x0, x1, ty_Bool) 37.21/18.36 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.36 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 37.21/18.36 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 37.21/18.36 new_esEs40(x0, x1, ty_Ordering) 37.21/18.36 new_ltEs21(x0, x1, ty_Ordering) 37.21/18.36 new_ltEs22(x0, x1, ty_Double) 37.21/18.36 new_ltEs17(x0, x1) 37.21/18.36 new_esEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.21/18.36 new_esEs11(x0, x1, app(ty_Maybe, x2)) 37.21/18.36 new_ltEs13(Just(x0), Just(x1), ty_Float) 37.21/18.36 new_ltEs6(x0, x1, x2) 37.21/18.36 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 37.21/18.36 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 37.21/18.36 new_esEs36(x0, x1, ty_Float) 37.21/18.36 new_primCmpNat0(Zero, Zero) 37.21/18.36 new_esEs38(x0, x1, ty_Bool) 37.21/18.36 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.36 new_lt23(x0, x1, ty_Float) 37.21/18.36 new_esEs31(x0, x1, ty_Float) 37.21/18.36 new_compare111(x0, x1, x2, x3, False, x4, x5) 37.21/18.36 new_esEs36(x0, x1, app(ty_Ratio, x2)) 37.21/18.36 new_lt6(x0, x1, ty_Int) 37.21/18.36 new_compare7(x0, x1, ty_Float) 37.21/18.36 37.21/18.36 We have to consider all minimal (P,Q,R)-chains. 37.21/18.36 ---------------------------------------- 37.21/18.36 37.21/18.36 (27) QDPSizeChangeProof (EQUIVALENT) 37.21/18.36 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. 37.21/18.36 37.21/18.36 From the DPs we obtained the following set of size-change graphs: 37.21/18.36 *new_compare0(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_primCompAux(xuu4000, xuu300, new_compare(xuu4001, xuu301, h), h) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare0(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_compare0(xuu4001, xuu301, h) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_lt(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_primCompAux(xuu4000, xuu300, new_compare(xuu4001, xuu301, h), h) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_lt3(@2(xuu4000, xuu4001), @2(xuu300, xuu301), ccb, ccc) -> new_compare24(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs10(xuu4000, xuu300, ccb), new_esEs11(xuu4001, xuu301, ccc)), ccb, ccc) 37.21/18.36 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, app(app(ty_@2, caf), cag)) -> new_ltEs3(xuu701, xuu711, caf, cag) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_lt2(Just(xuu4000), Just(xuu300), cah) -> new_compare23(xuu4000, xuu300, new_esEs9(xuu4000, xuu300, cah), cah) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs0(xuu701, xuu711, bhh, caa, cab) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, app(app(ty_@2, bce), bcf)) -> new_ltEs3(xuu702, xuu712, bce, bcf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs0(xuu702, xuu712, bbg, bbh, bca) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs(xuu70, xuu71, gg) -> new_compare0(xuu70, xuu71, gg) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare4(@2(xuu4000, xuu4001), @2(xuu300, xuu301), ccb, ccc) -> new_compare24(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs10(xuu4000, xuu300, ccb), new_esEs11(xuu4001, xuu301, ccc)), ccb, ccc) 37.21/18.36 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs2(Just(xuu700), Just(xuu710), app(app(ty_@2, bgb), bgc)) -> new_ltEs3(xuu700, xuu710, bgb, bgc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs2(Just(xuu700), Just(xuu710), app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs0(xuu700, xuu710, bfd, bfe, bff) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_lt0(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cb, cc, cd) -> new_compare20(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs4(xuu4000, xuu300, cb), new_asAs(new_esEs5(xuu4001, xuu301, cc), new_esEs6(xuu4002, xuu302, cd))), cb, cc, cd) 37.21/18.36 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, app(app(ty_Either, cac), cad)) -> new_ltEs1(xuu701, xuu711, cac, cad) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, app(app(ty_Either, bcb), bcc)) -> new_ltEs1(xuu702, xuu712, bcb, bcc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs2(Just(xuu700), Just(xuu710), app(app(ty_Either, bfg), bfh)) -> new_ltEs1(xuu700, xuu710, bfg, bfh) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_lt(:(xuu4000, xuu4001), :(xuu300, xuu301), h) -> new_compare0(xuu4001, xuu301, h) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare1(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cb, cc, cd) -> new_compare20(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs4(xuu4000, xuu300, cb), new_asAs(new_esEs5(xuu4001, xuu301, cc), new_esEs6(xuu4002, xuu302, cd))), cb, cc, cd) 37.21/18.36 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), app(app(ty_Either, bha), bhb), bge) -> new_lt1(xuu700, xuu710, bha, bhb) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_primCompAux(xuu4000, xuu300, xuu45, app(app(ty_Either, be), bf)) -> new_compare2(xuu4000, xuu300, be, bf) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), app(app(ty_@2, bhd), bhe), bge) -> new_lt3(xuu700, xuu710, bhd, bhe) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare24(xuu121, xuu122, xuu123, xuu124, False, cdf, app(app(ty_@2, cef), ceg)) -> new_ltEs3(xuu122, xuu124, cef, ceg) 37.21/18.36 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare24(xuu121, xuu122, xuu123, xuu124, False, cdf, app(app(app(ty_@3, cdh), cea), ceb)) -> new_ltEs0(xuu122, xuu124, cdh, cea, ceb) 37.21/18.36 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare24(xuu121, xuu122, xuu123, xuu124, False, cdf, app(app(ty_Either, cec), ced)) -> new_ltEs1(xuu122, xuu124, cec, ced) 37.21/18.36 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare24(xuu121, xuu122, xuu123, xuu124, False, app(app(ty_Either, cda), cdb), cce) -> new_lt1(xuu121, xuu123, cda, cdb) 37.21/18.36 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare24(xuu121, xuu122, xuu123, xuu124, False, app(app(ty_@2, cdd), cde), cce) -> new_lt3(xuu121, xuu123, cdd, cde) 37.21/18.36 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_lt1(Left(xuu4000), Left(xuu300), ge, gf) -> new_compare21(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, ge), ge, gf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare2(Left(xuu4000), Left(xuu300), ge, gf) -> new_compare21(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, ge), ge, gf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_lt1(Right(xuu4000), Right(xuu300), ge, gf) -> new_compare22(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, gf), ge, gf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare2(Right(xuu4000), Right(xuu300), ge, gf) -> new_compare22(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, gf), ge, gf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(xuu70, xuu71, False, app(ty_[], gg), gh) -> new_compare0(xuu70, xuu71, gg) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_primCompAux(xuu4000, xuu300, xuu45, app(ty_[], ba)) -> new_compare0(xuu4000, xuu300, ba) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, app(app(ty_@2, gc), gd)) -> new_ltEs3(xuu110, xuu113, gc, gd) 37.21/18.36 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs0(xuu110, xuu113, fd, ff, fg) 37.21/18.36 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, app(app(ty_Either, fh), ga)) -> new_ltEs1(xuu110, xuu113, fh, ga) 37.21/18.36 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_primCompAux(xuu4000, xuu300, xuu45, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(xuu4000, xuu300, bb, bc, bd) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, app(ty_Maybe, cae)) -> new_ltEs2(xuu701, xuu711, cae) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, app(ty_Maybe, bcd)) -> new_ltEs2(xuu702, xuu712, bcd) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs2(Just(xuu700), Just(xuu710), app(ty_Maybe, bga)) -> new_ltEs2(xuu700, xuu710, bga) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs2(Just(xuu700), Just(xuu710), app(ty_[], bfc)) -> new_ltEs(xuu700, xuu710, bfc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare24(xuu121, xuu122, xuu123, xuu124, False, cdf, app(ty_Maybe, cee)) -> new_ltEs2(xuu122, xuu124, cee) 37.21/18.36 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, app(ty_Maybe, gb)) -> new_ltEs2(xuu110, xuu113, gb) 37.21/18.36 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare3(Just(xuu4000), Just(xuu300), cah) -> new_compare23(xuu4000, xuu300, new_esEs9(xuu4000, xuu300, cah), cah) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare22(xuu77, xuu78, False, ceh, app(app(ty_@2, cfh), cga)) -> new_ltEs3(xuu77, xuu78, cfh, cga) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare23(xuu84, xuu85, False, app(app(ty_@2, cbh), cca)) -> new_ltEs3(xuu84, xuu85, cbh, cca) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare22(xuu77, xuu78, False, ceh, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs0(xuu77, xuu78, cfb, cfc, cfd) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare23(xuu84, xuu85, False, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_ltEs0(xuu84, xuu85, cbb, cbc, cbd) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare22(xuu77, xuu78, False, ceh, app(app(ty_Either, cfe), cff)) -> new_ltEs1(xuu77, xuu78, cfe, cff) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare23(xuu84, xuu85, False, app(app(ty_Either, cbe), cbf)) -> new_ltEs1(xuu84, xuu85, cbe, cbf) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare22(xuu77, xuu78, False, ceh, app(ty_Maybe, cfg)) -> new_ltEs2(xuu77, xuu78, cfg) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare23(xuu84, xuu85, False, app(ty_Maybe, cbg)) -> new_ltEs2(xuu84, xuu85, cbg) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare22(xuu77, xuu78, False, ceh, app(ty_[], cfa)) -> new_ltEs(xuu77, xuu78, cfa) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), app(ty_[], bgd), bge) -> new_lt(xuu700, xuu710, bgd) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare24(xuu121, xuu122, xuu123, xuu124, False, app(ty_[], ccd), cce) -> new_lt(xuu121, xuu123, ccd) 37.21/18.36 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare23(xuu84, xuu85, False, app(ty_[], cba)) -> new_ltEs(xuu84, xuu85, cba) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), app(ty_Maybe, bhc), bge) -> new_lt2(xuu700, xuu710, bhc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare24(xuu121, xuu122, xuu123, xuu124, False, app(ty_Maybe, cdc), cce) -> new_lt2(xuu121, xuu123, cdc) 37.21/18.36 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), bhf, app(ty_[], bhg)) -> new_ltEs(xuu701, xuu711, bhg) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs3(@2(xuu700, xuu701), @2(xuu710, xuu711), app(app(app(ty_@3, bgf), bgg), bgh), bge) -> new_lt0(xuu700, xuu710, bgf, bgg, bgh) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, hb, app(ty_[], bbf)) -> new_ltEs(xuu702, xuu712, bbf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare24(xuu121, xuu122, xuu123, xuu124, False, cdf, app(ty_[], cdg)) -> new_ltEs(xuu122, xuu124, cdg) 37.21/18.36 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare24(xuu121, xuu122, xuu123, xuu124, False, app(app(app(ty_@3, ccf), ccg), cch), cce) -> new_lt0(xuu121, xuu123, ccf, ccg, cch) 37.21/18.36 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, cf, app(ty_[], fc)) -> new_ltEs(xuu110, xuu113, fc) 37.21/18.36 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_primCompAux(xuu4000, xuu300, xuu45, app(app(ty_@2, bh), ca)) -> new_compare4(xuu4000, xuu300, bh, ca) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_primCompAux(xuu4000, xuu300, xuu45, app(ty_Maybe, bg)) -> new_compare3(xuu4000, xuu300, bg) 37.21/18.36 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs1(Left(xuu700), Left(xuu710), app(app(ty_@2, bdg), bdh), bch) -> new_ltEs3(xuu700, xuu710, bdg, bdh) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs1(Right(xuu700), Right(xuu710), bea, app(app(ty_@2, bfa), bfb)) -> new_ltEs3(xuu700, xuu710, bfa, bfb) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs1(Left(xuu700), Left(xuu710), app(app(app(ty_@3, bda), bdb), bdc), bch) -> new_ltEs0(xuu700, xuu710, bda, bdb, bdc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs1(Right(xuu700), Right(xuu710), bea, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs0(xuu700, xuu710, bec, bed, bee) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs1(Right(xuu700), Right(xuu710), bea, app(app(ty_Either, bef), beg)) -> new_ltEs1(xuu700, xuu710, bef, beg) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs1(Left(xuu700), Left(xuu710), app(app(ty_Either, bdd), bde), bch) -> new_ltEs1(xuu700, xuu710, bdd, bde) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs1(Left(xuu700), Left(xuu710), app(ty_Maybe, bdf), bch) -> new_ltEs2(xuu700, xuu710, bdf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs1(Right(xuu700), Right(xuu710), bea, app(ty_Maybe, beh)) -> new_ltEs2(xuu700, xuu710, beh) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs1(Right(xuu700), Right(xuu710), bea, app(ty_[], beb)) -> new_ltEs(xuu700, xuu710, beb) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs1(Left(xuu700), Left(xuu710), app(ty_[], bcg), bch) -> new_ltEs(xuu700, xuu710, bcg) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Just(xuu700), Just(xuu710), False, app(ty_Maybe, app(app(ty_@2, bgb), bgc)), gh) -> new_ltEs3(xuu700, xuu710, bgb, bgc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, bhf), app(app(ty_@2, caf), cag)), gh) -> new_ltEs3(xuu701, xuu711, caf, cag) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Left(xuu700), Left(xuu710), False, app(app(ty_Either, app(app(ty_@2, bdg), bdh)), bch), gh) -> new_ltEs3(xuu700, xuu710, bdg, bdh) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), hb), app(app(ty_@2, bce), bcf)), gh) -> new_ltEs3(xuu702, xuu712, bce, bcf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Right(xuu700), Right(xuu710), False, app(app(ty_Either, bea), app(app(ty_@2, bfa), bfb)), gh) -> new_ltEs3(xuu700, xuu710, bfa, bfb) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, app(app(ty_Either, bba), bbb), hc) -> new_lt1(xuu701, xuu711, bba, bbb) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), app(app(ty_Either, hg), hh), hb, hc) -> new_lt1(xuu700, xuu710, hg, hh) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), app(app(ty_@2, bab), bac), hb, hc) -> new_lt3(xuu700, xuu710, bab, bac) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, app(app(ty_@2, bbd), bbe), hc) -> new_lt3(xuu701, xuu711, bbd, bbe) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), app(ty_[], ha), hb, hc) -> new_lt(xuu700, xuu710, ha) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, app(ty_[], bae), hc) -> new_lt(xuu701, xuu711, bae) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), app(ty_Maybe, baa), hb, hc) -> new_lt2(xuu700, xuu710, baa) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, app(ty_Maybe, bbc), hc) -> new_lt2(xuu701, xuu711, bbc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), app(app(app(ty_@3, hd), he), hf), hb, hc) -> new_lt0(xuu700, xuu710, hd, he, hf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_ltEs0(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bad, app(app(app(ty_@3, baf), bag), bah), hc) -> new_lt0(xuu701, xuu711, baf, bag, bah) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), hb), app(app(app(ty_@3, bbg), bbh), bca)), gh) -> new_ltEs0(xuu702, xuu712, bbg, bbh, bca) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Left(xuu700), Left(xuu710), False, app(app(ty_Either, app(app(app(ty_@3, bda), bdb), bdc)), bch), gh) -> new_ltEs0(xuu700, xuu710, bda, bdb, bdc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, bhf), app(app(app(ty_@3, bhh), caa), cab)), gh) -> new_ltEs0(xuu701, xuu711, bhh, caa, cab) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Just(xuu700), Just(xuu710), False, app(ty_Maybe, app(app(app(ty_@3, bfd), bfe), bff)), gh) -> new_ltEs0(xuu700, xuu710, bfd, bfe, bff) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Right(xuu700), Right(xuu710), False, app(app(ty_Either, bea), app(app(app(ty_@3, bec), bed), bee)), gh) -> new_ltEs0(xuu700, xuu710, bec, bed, bee) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Just(xuu700), Just(xuu710), False, app(ty_Maybe, app(app(ty_Either, bfg), bfh)), gh) -> new_ltEs1(xuu700, xuu710, bfg, bfh) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, bhf), app(app(ty_Either, cac), cad)), gh) -> new_ltEs1(xuu701, xuu711, cac, cad) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Left(xuu700), Left(xuu710), False, app(app(ty_Either, app(app(ty_Either, bdd), bde)), bch), gh) -> new_ltEs1(xuu700, xuu710, bdd, bde) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Right(xuu700), Right(xuu710), False, app(app(ty_Either, bea), app(app(ty_Either, bef), beg)), gh) -> new_ltEs1(xuu700, xuu710, bef, beg) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), hb), app(app(ty_Either, bcb), bcc)), gh) -> new_ltEs1(xuu702, xuu712, bcb, bcc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), app(app(ty_Either, bba), bbb)), hc), gh) -> new_lt1(xuu701, xuu711, bba, bbb) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, app(app(ty_Either, bha), bhb)), bge), gh) -> new_lt1(xuu700, xuu710, bha, bhb) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, app(app(ty_Either, hg), hh)), hb), hc), gh) -> new_lt1(xuu700, xuu710, hg, hh) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), app(app(ty_@2, bbd), bbe)), hc), gh) -> new_lt3(xuu701, xuu711, bbd, bbe) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, app(app(ty_@2, bhd), bhe)), bge), gh) -> new_lt3(xuu700, xuu710, bhd, bhe) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, app(app(ty_@2, bab), bac)), hb), hc), gh) -> new_lt3(xuu700, xuu710, bab, bac) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Right(xuu700), Right(xuu710), False, app(app(ty_Either, bea), app(ty_Maybe, beh)), gh) -> new_ltEs2(xuu700, xuu710, beh) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Just(xuu700), Just(xuu710), False, app(ty_Maybe, app(ty_Maybe, bga)), gh) -> new_ltEs2(xuu700, xuu710, bga) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Left(xuu700), Left(xuu710), False, app(app(ty_Either, app(ty_Maybe, bdf)), bch), gh) -> new_ltEs2(xuu700, xuu710, bdf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), hb), app(ty_Maybe, bcd)), gh) -> new_ltEs2(xuu702, xuu712, bcd) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, bhf), app(ty_Maybe, cae)), gh) -> new_ltEs2(xuu701, xuu711, cae) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), app(ty_[], bae)), hc), gh) -> new_lt(xuu701, xuu711, bae) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, app(ty_[], bgd)), bge), gh) -> new_lt(xuu700, xuu710, bgd) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, app(ty_[], ha)), hb), hc), gh) -> new_lt(xuu700, xuu710, ha) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, app(ty_Maybe, baa)), hb), hc), gh) -> new_lt2(xuu700, xuu710, baa) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, app(ty_Maybe, bhc)), bge), gh) -> new_lt2(xuu700, xuu710, bhc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), app(ty_Maybe, bbc)), hc), gh) -> new_lt2(xuu701, xuu711, bbc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), hb), app(ty_[], bbf)), gh) -> new_ltEs(xuu702, xuu712, bbf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Right(xuu700), Right(xuu710), False, app(app(ty_Either, bea), app(ty_[], beb)), gh) -> new_ltEs(xuu700, xuu710, beb) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Left(xuu700), Left(xuu710), False, app(app(ty_Either, app(ty_[], bcg)), bch), gh) -> new_ltEs(xuu700, xuu710, bcg) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, bhf), app(ty_[], bhg)), gh) -> new_ltEs(xuu701, xuu711, bhg) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(Just(xuu700), Just(xuu710), False, app(ty_Maybe, app(ty_[], bfc)), gh) -> new_ltEs(xuu700, xuu710, bfc) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@2(xuu700, xuu701), @2(xuu710, xuu711), False, app(app(ty_@2, app(app(app(ty_@3, bgf), bgg), bgh)), bge), gh) -> new_lt0(xuu700, xuu710, bgf, bgg, bgh) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, bad), app(app(app(ty_@3, baf), bag), bah)), hc), gh) -> new_lt0(xuu701, xuu711, baf, bag, bah) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare21(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), False, app(app(app(ty_@3, app(app(app(ty_@3, hd), he), hf)), hb), hc), gh) -> new_lt0(xuu700, xuu710, hd, he, hf) 37.21/18.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, app(app(ty_Either, dd), de), cf, cg) -> new_lt1(xuu108, xuu111, dd, de) 37.21/18.36 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, app(app(ty_Either, ef), eg), cg) -> new_lt1(xuu109, xuu112, ef, eg) 37.21/18.36 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, app(app(ty_@2, dg), dh), cf, cg) -> new_lt3(xuu108, xuu111, dg, dh) 37.21/18.36 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, app(app(ty_@2, fa), fb), cg) -> new_lt3(xuu109, xuu112, fa, fb) 37.21/18.36 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, app(ty_[], eb), cg) -> new_lt(xuu109, xuu112, eb) 37.21/18.36 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, app(ty_[], ce), cf, cg) -> new_lt(xuu108, xuu111, ce) 37.21/18.36 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, app(ty_Maybe, df), cf, cg) -> new_lt2(xuu108, xuu111, df) 37.21/18.36 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, app(ty_Maybe, eh), cg) -> new_lt2(xuu109, xuu112, eh) 37.21/18.36 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, app(app(app(ty_@3, da), db), dc), cf, cg) -> new_lt0(xuu108, xuu111, da, db, dc) 37.21/18.36 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 37.21/18.36 37.21/18.36 37.21/18.36 *new_compare20(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ea, app(app(app(ty_@3, ec), ed), ee), cg) -> new_lt0(xuu109, xuu112, ec, ed, ee) 37.21/18.36 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 37.21/18.36 37.21/18.36 37.21/18.36 ---------------------------------------- 37.21/18.36 37.21/18.36 (28) 37.21/18.36 YES 37.21/18.36 37.21/18.36 ---------------------------------------- 37.21/18.36 37.21/18.36 (29) 37.21/18.36 Obligation: 37.21/18.36 Q DP problem: 37.21/18.36 The TRS P consists of the following rules: 37.21/18.36 37.21/18.36 new_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) 37.21/18.36 37.21/18.36 The TRS R consists of the following rules: 37.21/18.36 37.21/18.36 new_lt24(xuu400, xuu30, ty_Bool) -> new_lt14(xuu400, xuu30) 37.21/18.36 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 37.21/18.36 new_primPlusNat0(Zero, Zero) -> Zero 37.21/18.36 new_compare11(Right(xuu4000), Left(xuu300), ed, ee) -> GT 37.21/18.36 new_esEs24(@0, @0) -> True 37.21/18.36 new_ltEs5(xuu702, xuu712, ty_Float) -> new_ltEs17(xuu702, xuu712) 37.21/18.36 new_pePe(True, xuu210) -> True 37.21/18.36 new_esEs9(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.36 new_lt20(xuu108, xuu111, ty_Ordering) -> new_lt17(xuu108, xuu111) 37.21/18.36 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 37.21/18.36 new_ltEs24(xuu701, xuu711, ty_Bool) -> new_ltEs12(xuu701, xuu711) 37.21/18.36 new_addToFM_C20(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_mkBalBranch(xuu14, xuu15, new_addToFM_C0(xuu17, xuu19, xuu20, bb, bc), xuu18, bb, bc) 37.21/18.36 new_esEs37(xuu40002, xuu3002, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs16(xuu40002, xuu3002, eef, eeg, eeh) 37.21/18.36 new_mkBalBranch6MkBalBranch3(xuu14, xuu15, xuu39, xuu18, False, bb, bc) -> new_mkBranchResult(xuu14, xuu15, xuu39, xuu18, bb, bc) 37.21/18.36 new_esEs33(xuu40000, xuu3000, app(ty_[], gb)) -> new_esEs26(xuu40000, xuu3000, gb) 37.21/18.36 new_esEs32(xuu109, xuu112, app(app(ty_Either, dfd), dfe)) -> new_esEs18(xuu109, xuu112, dfd, dfe) 37.21/18.36 new_emptyFM(h, ba) -> EmptyFM 37.21/18.36 new_esEs32(xuu109, xuu112, ty_@0) -> new_esEs24(xuu109, xuu112) 37.21/18.36 new_ltEs14(@2(xuu700, xuu701), @2(xuu710, xuu711), cf, cg) -> new_pePe(new_lt23(xuu700, xuu710, cf), new_asAs(new_esEs40(xuu700, xuu710, cf), new_ltEs24(xuu701, xuu711, cg))) 37.21/18.36 new_compare113(xuu158, xuu159, False, eff, efg) -> GT 37.21/18.36 new_compare17(LT, GT) -> LT 37.21/18.36 new_esEs20(EQ, EQ) -> True 37.21/18.36 new_ltEs23(xuu122, xuu124, ty_Double) -> new_ltEs15(xuu122, xuu124) 37.21/18.36 new_ltEs8(Right(xuu700), Right(xuu710), cb, app(ty_Ratio, fcf)) -> new_ltEs11(xuu700, xuu710, fcf) 37.21/18.36 new_lt23(xuu700, xuu710, app(ty_Maybe, caa)) -> new_lt15(xuu700, xuu710, caa) 37.21/18.36 new_esEs37(xuu40002, xuu3002, app(ty_Ratio, efc)) -> new_esEs22(xuu40002, xuu3002, efc) 37.21/18.36 new_esEs38(xuu121, xuu123, app(ty_Maybe, ffe)) -> new_esEs23(xuu121, xuu123, ffe) 37.21/18.36 new_esEs39(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.36 new_compare111(xuu195, xuu196, xuu197, xuu198, False, che, chf) -> GT 37.21/18.36 new_esEs31(xuu108, xuu111, ty_Double) -> new_esEs12(xuu108, xuu111) 37.21/18.36 new_esEs10(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.36 new_esEs9(xuu4000, xuu300, app(app(ty_Either, cgd), cge)) -> new_esEs18(xuu4000, xuu300, cgd, cge) 37.21/18.36 new_ltEs24(xuu701, xuu711, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs4(xuu701, xuu711, cae, caf, cag) 37.21/18.36 new_compare18(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.36 new_lt12(xuu400, xuu30) -> new_esEs14(new_compare6(xuu400, xuu30)) 37.21/18.36 new_compare17(LT, EQ) -> LT 37.21/18.36 new_ltEs21(xuu84, xuu85, ty_Ordering) -> new_ltEs16(xuu84, xuu85) 37.21/18.36 new_lt5(xuu700, xuu710, ty_Float) -> new_lt18(xuu700, xuu710) 37.21/18.36 new_lt5(xuu700, xuu710, app(ty_Ratio, ccf)) -> new_lt13(xuu700, xuu710, ccf) 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), ty_Double, cc) -> new_ltEs15(xuu700, xuu710) 37.21/18.36 new_compare17(EQ, GT) -> LT 37.21/18.36 new_ltEs19(xuu70, xuu71, app(ty_[], bf)) -> new_ltEs6(xuu70, xuu71, bf) 37.21/18.36 new_esEs5(xuu4001, xuu301, app(app(ty_@2, dag), dah)) -> new_esEs15(xuu4001, xuu301, dag, dah) 37.21/18.36 new_esEs35(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.36 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 37.21/18.36 new_esEs28(xuu701, xuu711, ty_Float) -> new_esEs21(xuu701, xuu711) 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Bool, dad) -> new_esEs17(xuu40000, xuu3000) 37.21/18.36 new_not(True) -> False 37.21/18.36 new_lt22(xuu121, xuu123, app(ty_[], fef)) -> new_lt7(xuu121, xuu123, fef) 37.21/18.36 new_lt22(xuu121, xuu123, ty_Double) -> new_lt4(xuu121, xuu123) 37.21/18.36 new_lt23(xuu700, xuu710, ty_Int) -> new_lt9(xuu700, xuu710) 37.21/18.36 new_esEs34(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) 37.21/18.36 new_primCompAux00(xuu49, LT) -> LT 37.21/18.36 new_esEs28(xuu701, xuu711, app(ty_Maybe, cea)) -> new_esEs23(xuu701, xuu711, cea) 37.21/18.36 new_esEs33(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.36 new_lt19(xuu400, xuu30) -> new_esEs14(new_compare19(xuu400, xuu30)) 37.21/18.36 new_esEs27(xuu700, xuu710, app(app(app(ty_@3, cca), ccb), ccc)) -> new_esEs16(xuu700, xuu710, cca, ccb, ccc) 37.21/18.36 new_ltEs24(xuu701, xuu711, ty_Integer) -> new_ltEs18(xuu701, xuu711) 37.21/18.36 new_ltEs22(xuu77, xuu78, ty_Float) -> new_ltEs17(xuu77, xuu78) 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), app(app(ty_Either, fbb), fbc), cc) -> new_ltEs8(xuu700, xuu710, fbb, fbc) 37.21/18.36 new_compare25(xuu70, xuu71, False, bd, be) -> new_compare10(xuu70, xuu71, new_ltEs19(xuu70, xuu71, bd), bd, be) 37.21/18.36 new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, True, bce, bcf, bcg) -> LT 37.21/18.36 new_ltEs19(xuu70, xuu71, ty_Bool) -> new_ltEs12(xuu70, xuu71) 37.21/18.36 new_primEqNat0(Succ(xuu400000), Zero) -> False 37.21/18.36 new_primEqNat0(Zero, Succ(xuu30000)) -> False 37.21/18.36 new_esEs27(xuu700, xuu710, app(ty_Ratio, ccf)) -> new_esEs22(xuu700, xuu710, ccf) 37.21/18.36 new_esEs5(xuu4001, xuu301, ty_Integer) -> new_esEs25(xuu4001, xuu301) 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Integer, dad) -> new_esEs25(xuu40000, xuu3000) 37.21/18.36 new_lt24(xuu400, xuu30, ty_@0) -> new_lt11(xuu400, xuu30) 37.21/18.36 new_compare10(xuu151, xuu152, True, fad, fae) -> LT 37.21/18.36 new_esEs11(xuu4001, xuu301, app(app(ty_@2, ehb), ehc)) -> new_esEs15(xuu4001, xuu301, ehb, ehc) 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), ty_Char, cc) -> new_ltEs10(xuu700, xuu710) 37.21/18.36 new_lt20(xuu108, xuu111, ty_Integer) -> new_lt19(xuu108, xuu111) 37.21/18.36 new_lt5(xuu700, xuu710, app(app(app(ty_@3, cca), ccb), ccc)) -> new_lt8(xuu700, xuu710, cca, ccb, ccc) 37.21/18.36 new_esEs33(xuu40000, xuu3000, app(app(ty_@2, eh), fa)) -> new_esEs15(xuu40000, xuu3000, eh, fa) 37.21/18.36 new_esEs33(xuu40000, xuu3000, app(ty_Maybe, ga)) -> new_esEs23(xuu40000, xuu3000, ga) 37.21/18.36 new_primPlusInt(Pos(xuu3920), Pos(xuu1340)) -> Pos(new_primPlusNat0(xuu3920, xuu1340)) 37.21/18.36 new_primCmpInt(Pos(Succ(xuu40000)), Neg(xuu300)) -> GT 37.21/18.36 new_compare9(xuu400, xuu30) -> new_primCmpInt(xuu400, xuu30) 37.21/18.36 new_ltEs21(xuu84, xuu85, ty_Int) -> new_ltEs7(xuu84, xuu85) 37.21/18.36 new_esEs4(xuu4000, xuu300, app(app(ty_Either, dac), dad)) -> new_esEs18(xuu4000, xuu300, dac, dad) 37.21/18.36 new_mkBalBranch6MkBalBranch5(xuu14, xuu15, xuu39, xuu18, True, bb, bc) -> new_mkBranchResult(xuu14, xuu15, xuu39, xuu18, bb, bc) 37.21/18.36 new_esEs32(xuu109, xuu112, app(ty_Ratio, dff)) -> new_esEs22(xuu109, xuu112, dff) 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), ty_@0, cc) -> new_ltEs9(xuu700, xuu710) 37.21/18.36 new_ltEs19(xuu70, xuu71, ty_Integer) -> new_ltEs18(xuu70, xuu71) 37.21/18.36 new_esEs36(xuu40001, xuu3001, ty_Double) -> new_esEs12(xuu40001, xuu3001) 37.21/18.36 new_esEs35(xuu40000, xuu3000, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.36 new_primCmpNat0(Zero, Succ(xuu3000)) -> LT 37.21/18.36 new_ltEs23(xuu122, xuu124, ty_@0) -> new_ltEs9(xuu122, xuu124) 37.21/18.36 new_ltEs13(Just(xuu700), Just(xuu710), app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs4(xuu700, xuu710, baa, bab, bac) 37.21/18.36 new_sizeFM(EmptyFM, bb, bc) -> Pos(Zero) 37.21/18.36 new_esEs32(xuu109, xuu112, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs16(xuu109, xuu112, dfa, dfb, dfc) 37.21/18.36 new_esEs5(xuu4001, xuu301, app(ty_[], dbh)) -> new_esEs26(xuu4001, xuu301, dbh) 37.21/18.36 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 37.21/18.36 new_esEs10(xuu4000, xuu300, app(app(ty_Either, ege), egf)) -> new_esEs18(xuu4000, xuu300, ege, egf) 37.21/18.36 new_ltEs21(xuu84, xuu85, app(app(ty_Either, bbg), bbh)) -> new_ltEs8(xuu84, xuu85, bbg, bbh) 37.21/18.36 new_esEs38(xuu121, xuu123, ty_Bool) -> new_esEs17(xuu121, xuu123) 37.21/18.36 new_esEs6(xuu4002, xuu302, ty_@0) -> new_esEs24(xuu4002, xuu302) 37.21/18.36 new_esEs32(xuu109, xuu112, ty_Int) -> new_esEs13(xuu109, xuu112) 37.21/18.36 new_ltEs20(xuu110, xuu113, app(ty_Maybe, dha)) -> new_ltEs13(xuu110, xuu113, dha) 37.21/18.36 new_esEs39(xuu40000, xuu3000, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.36 new_ltEs23(xuu122, xuu124, app(ty_Ratio, fgf)) -> new_ltEs11(xuu122, xuu124, fgf) 37.21/18.36 new_compare7(xuu4000, xuu300, ty_Bool) -> new_compare14(xuu4000, xuu300) 37.21/18.36 new_esEs11(xuu4001, xuu301, app(ty_[], fac)) -> new_esEs26(xuu4001, xuu301, fac) 37.21/18.36 new_esEs18(Right(xuu40000), Right(xuu3000), dac, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Double, dad) -> new_esEs12(xuu40000, xuu3000) 37.21/18.36 new_esEs6(xuu4002, xuu302, app(app(ty_Either, dcf), dcg)) -> new_esEs18(xuu4002, xuu302, dcf, dcg) 37.21/18.36 new_esEs31(xuu108, xuu111, app(app(ty_@2, def), deg)) -> new_esEs15(xuu108, xuu111, def, deg) 37.21/18.36 new_esEs23(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, gaf), gag), gah)) -> new_esEs16(xuu40000, xuu3000, gaf, gag, gah) 37.21/18.36 new_esEs37(xuu40002, xuu3002, ty_Ordering) -> new_esEs20(xuu40002, xuu3002) 37.21/18.36 new_lt6(xuu701, xuu711, ty_Bool) -> new_lt14(xuu701, xuu711) 37.21/18.36 new_ltEs23(xuu122, xuu124, app(app(ty_@2, fgh), fha)) -> new_ltEs14(xuu122, xuu124, fgh, fha) 37.21/18.36 new_esEs31(xuu108, xuu111, ty_Char) -> new_esEs19(xuu108, xuu111) 37.21/18.36 new_esEs27(xuu700, xuu710, ty_Ordering) -> new_esEs20(xuu700, xuu710) 37.21/18.36 new_esEs7(xuu4000, xuu300, app(ty_[], bfg)) -> new_esEs26(xuu4000, xuu300, bfg) 37.21/18.36 new_esEs40(xuu700, xuu710, app(ty_Maybe, caa)) -> new_esEs23(xuu700, xuu710, caa) 37.21/18.36 new_lt23(xuu700, xuu710, ty_Char) -> new_lt12(xuu700, xuu710) 37.21/18.36 new_esEs18(Right(xuu40000), Right(xuu3000), dac, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.36 new_mkBalBranch6MkBalBranch01(xuu14, xuu15, xuu39, xuu180, xuu181, xuu182, EmptyFM, xuu184, False, bb, bc) -> error([]) 37.21/18.36 new_esEs9(xuu4000, xuu300, app(ty_Ratio, cgf)) -> new_esEs22(xuu4000, xuu300, cgf) 37.21/18.36 new_ltEs8(Right(xuu700), Right(xuu710), cb, ty_Float) -> new_ltEs17(xuu700, xuu710) 37.21/18.36 new_esEs7(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.36 new_ltEs19(xuu70, xuu71, app(app(ty_@2, cf), cg)) -> new_ltEs14(xuu70, xuu71, cf, cg) 37.21/18.36 new_esEs31(xuu108, xuu111, ty_Bool) -> new_esEs17(xuu108, xuu111) 37.21/18.36 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 37.21/18.36 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3000))) -> LT 37.21/18.36 new_esEs5(xuu4001, xuu301, ty_Double) -> new_esEs12(xuu4001, xuu301) 37.21/18.36 new_esEs4(xuu4000, xuu300, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs16(xuu4000, xuu300, chh, daa, dab) 37.21/18.36 new_primMulInt(Pos(xuu40000), Pos(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.36 new_ltEs20(xuu110, xuu113, ty_Double) -> new_ltEs15(xuu110, xuu113) 37.21/18.36 new_lt21(xuu109, xuu112, ty_Float) -> new_lt18(xuu109, xuu112) 37.21/18.36 new_ltEs13(Just(xuu700), Just(xuu710), app(app(ty_Either, bad), bae)) -> new_ltEs8(xuu700, xuu710, bad, bae) 37.21/18.36 new_ltEs13(Just(xuu700), Just(xuu710), ty_Bool) -> new_ltEs12(xuu700, xuu710) 37.21/18.36 new_compare18(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.36 new_compare18(Float(xuu4000, Neg(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.36 new_esEs6(xuu4002, xuu302, ty_Char) -> new_esEs19(xuu4002, xuu302) 37.21/18.36 new_esEs18(Right(xuu40000), Right(xuu3000), dac, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.36 new_esEs11(xuu4001, xuu301, ty_Integer) -> new_esEs25(xuu4001, xuu301) 37.21/18.36 new_ltEs24(xuu701, xuu711, ty_Float) -> new_ltEs17(xuu701, xuu711) 37.21/18.36 new_ltEs8(Right(xuu700), Right(xuu710), cb, app(ty_[], fbh)) -> new_ltEs6(xuu700, xuu710, fbh) 37.21/18.36 new_ltEs8(Right(xuu700), Left(xuu710), cb, cc) -> False 37.21/18.36 new_mkBalBranch6MkBalBranch11(xuu14, xuu15, xuu390, xuu391, xuu392, xuu393, Branch(xuu3940, xuu3941, xuu3942, xuu3943, xuu3944), xuu18, False, bb, bc) -> 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, bb, bc), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xuu14, xuu15, xuu3944, xuu18, bb, bc) 37.21/18.36 new_primMulNat0(Succ(xuu400000), Zero) -> Zero 37.21/18.36 new_primMulNat0(Zero, Succ(xuu30100)) -> Zero 37.21/18.36 new_lt21(xuu109, xuu112, ty_Bool) -> new_lt14(xuu109, xuu112) 37.21/18.36 new_ltEs8(Right(xuu700), Right(xuu710), cb, app(ty_Maybe, fcg)) -> new_ltEs13(xuu700, xuu710, fcg) 37.21/18.36 new_esEs5(xuu4001, xuu301, app(ty_Maybe, dbg)) -> new_esEs23(xuu4001, xuu301, dbg) 37.21/18.36 new_esEs7(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.36 new_lt23(xuu700, xuu710, ty_Ordering) -> new_lt17(xuu700, xuu710) 37.21/18.36 new_ltEs21(xuu84, xuu85, ty_Integer) -> new_ltEs18(xuu84, xuu85) 37.21/18.36 new_compare26(xuu84, xuu85, True, bbb) -> EQ 37.21/18.36 new_esEs20(LT, LT) -> True 37.21/18.36 new_addListToFM_CAdd(xuu3, @2(xuu400, xuu401), h, ba) -> new_addToFM_C0(xuu3, xuu400, xuu401, h, ba) 37.21/18.36 new_ltEs18(xuu70, xuu71) -> new_fsEs(new_compare19(xuu70, xuu71)) 37.21/18.36 new_compare28(xuu121, xuu122, xuu123, xuu124, False, fed, fee) -> new_compare110(xuu121, xuu122, xuu123, xuu124, new_lt22(xuu121, xuu123, fed), new_asAs(new_esEs38(xuu121, xuu123, fed), new_ltEs23(xuu122, xuu124, fee)), fed, fee) 37.21/18.36 new_ltEs23(xuu122, xuu124, ty_Int) -> new_ltEs7(xuu122, xuu124) 37.21/18.36 new_ltEs12(False, True) -> True 37.21/18.36 new_esEs11(xuu4001, xuu301, ty_Float) -> new_esEs21(xuu4001, xuu301) 37.21/18.36 new_primPlusNat0(Succ(xuu39200), Zero) -> Succ(xuu39200) 37.21/18.36 new_primPlusNat0(Zero, Succ(xuu13400)) -> Succ(xuu13400) 37.21/18.36 new_esEs4(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.36 new_compare26(xuu84, xuu85, False, bbb) -> new_compare114(xuu84, xuu85, new_ltEs21(xuu84, xuu85, bbb), bbb) 37.21/18.36 new_lt20(xuu108, xuu111, app(app(ty_Either, deb), dec)) -> new_lt10(xuu108, xuu111, deb, dec) 37.21/18.36 new_esEs40(xuu700, xuu710, ty_Bool) -> new_esEs17(xuu700, xuu710) 37.21/18.36 new_esEs9(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.36 new_ltEs19(xuu70, xuu71, app(app(ty_Either, cb), cc)) -> new_ltEs8(xuu70, xuu71, cb, cc) 37.21/18.36 new_compare19(Integer(xuu4000), Integer(xuu300)) -> new_primCmpInt(xuu4000, xuu300) 37.21/18.36 new_esEs6(xuu4002, xuu302, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs16(xuu4002, xuu302, dcc, dcd, dce) 37.21/18.36 new_lt20(xuu108, xuu111, ty_Char) -> new_lt12(xuu108, xuu111) 37.21/18.36 new_ltEs20(xuu110, xuu113, ty_@0) -> new_ltEs9(xuu110, xuu113) 37.21/18.36 new_esEs34(xuu40001, xuu3001, app(ty_Ratio, hb)) -> new_esEs22(xuu40001, xuu3001, hb) 37.21/18.36 new_gt(xuu19, xuu14, app(app(ty_Either, fdf), fdg)) -> new_esEs41(new_compare11(xuu19, xuu14, fdf, fdg)) 37.21/18.36 new_lt5(xuu700, xuu710, ty_Char) -> new_lt12(xuu700, xuu710) 37.21/18.36 new_esEs9(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.36 new_esEs7(xuu4000, xuu300, app(ty_Maybe, bff)) -> new_esEs23(xuu4000, xuu300, bff) 37.21/18.36 new_esEs28(xuu701, xuu711, ty_Bool) -> new_esEs17(xuu701, xuu711) 37.21/18.36 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.36 new_lt6(xuu701, xuu711, ty_@0) -> new_lt11(xuu701, xuu711) 37.21/18.36 new_ltEs5(xuu702, xuu712, app(app(ty_Either, ceh), cfa)) -> new_ltEs8(xuu702, xuu712, ceh, cfa) 37.21/18.36 new_esEs7(xuu4000, xuu300, app(app(ty_@2, bef), beg)) -> new_esEs15(xuu4000, xuu300, bef, beg) 37.21/18.36 new_esEs8(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.36 new_ltEs21(xuu84, xuu85, ty_@0) -> new_ltEs9(xuu84, xuu85) 37.21/18.36 new_ltEs8(Right(xuu700), Right(xuu710), cb, app(app(app(ty_@3, fca), fcb), fcc)) -> new_ltEs4(xuu700, xuu710, fca, fcb, fcc) 37.21/18.36 new_ltEs12(True, True) -> True 37.21/18.36 new_ltEs15(xuu70, xuu71) -> new_fsEs(new_compare5(xuu70, xuu71)) 37.21/18.36 new_lt22(xuu121, xuu123, ty_@0) -> new_lt11(xuu121, xuu123) 37.21/18.36 new_ltEs21(xuu84, xuu85, app(ty_Ratio, bca)) -> new_ltEs11(xuu84, xuu85, bca) 37.21/18.36 new_lt22(xuu121, xuu123, ty_Bool) -> new_lt14(xuu121, xuu123) 37.21/18.36 new_esEs33(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.36 new_ltEs21(xuu84, xuu85, app(app(ty_@2, bcc), bcd)) -> new_ltEs14(xuu84, xuu85, bcc, bcd) 37.21/18.36 new_compare([], :(xuu300, xuu301), da) -> LT 37.21/18.36 new_ltEs19(xuu70, xuu71, ty_Ordering) -> new_ltEs16(xuu70, xuu71) 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), app(ty_Maybe, ead), dad) -> new_esEs23(xuu40000, xuu3000, ead) 37.21/18.36 new_esEs10(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.36 new_esEs8(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.36 new_esEs33(xuu40000, xuu3000, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.36 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.36 new_esEs35(xuu40000, xuu3000, app(ty_Ratio, ecg)) -> new_esEs22(xuu40000, xuu3000, ecg) 37.21/18.36 new_mkBalBranch6MkBalBranch11(xuu14, xuu15, xuu390, xuu391, xuu392, xuu393, EmptyFM, xuu18, False, bb, bc) -> error([]) 37.21/18.36 new_compare29(xuu77, xuu78, False, bdb, bdc) -> new_compare113(xuu77, xuu78, new_ltEs22(xuu77, xuu78, bdc), bdb, bdc) 37.21/18.36 new_mkBalBranch(xuu14, xuu15, xuu39, xuu18, bb, bc) -> new_mkBalBranch6MkBalBranch5(xuu14, xuu15, xuu39, xuu18, new_lt9(new_primPlusInt(new_mkBalBranch6Size_l(xuu14, xuu15, xuu39, xuu18, bb, bc), new_mkBalBranch6Size_r(xuu14, xuu15, xuu39, xuu18, bb, bc)), Pos(Succ(Succ(Zero)))), bb, bc) 37.21/18.36 new_esEs5(xuu4001, xuu301, ty_Bool) -> new_esEs17(xuu4001, xuu301) 37.21/18.36 new_ltEs21(xuu84, xuu85, ty_Double) -> new_ltEs15(xuu84, xuu85) 37.21/18.36 new_esEs10(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.36 new_ltEs24(xuu701, xuu711, ty_Int) -> new_ltEs7(xuu701, xuu711) 37.21/18.36 new_ltEs24(xuu701, xuu711, app(app(ty_@2, cbd), cbe)) -> new_ltEs14(xuu701, xuu711, cbd, cbe) 37.21/18.36 new_esEs40(xuu700, xuu710, ty_@0) -> new_esEs24(xuu700, xuu710) 37.21/18.36 new_esEs31(xuu108, xuu111, app(ty_Maybe, dee)) -> new_esEs23(xuu108, xuu111, dee) 37.21/18.36 new_compare15(Nothing, Nothing, cff) -> EQ 37.21/18.36 new_esEs4(xuu4000, xuu300, app(ty_Maybe, dae)) -> new_esEs23(xuu4000, xuu300, dae) 37.21/18.36 new_esEs18(Right(xuu40000), Right(xuu3000), dac, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.36 new_esEs40(xuu700, xuu710, app(app(ty_Either, bhf), bhg)) -> new_esEs18(xuu700, xuu710, bhf, bhg) 37.21/18.36 new_esEs28(xuu701, xuu711, ty_Ordering) -> new_esEs20(xuu701, xuu711) 37.21/18.36 new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, True, bch, bda) -> new_mkBalBranch(xuu31, xuu32, xuu34, new_addToFM_C0(xuu35, xuu36, xuu37, bch, bda), bch, bda) 37.21/18.36 new_esEs39(xuu40000, xuu3000, app(app(app(ty_@3, fhd), fhe), fhf)) -> new_esEs16(xuu40000, xuu3000, fhd, fhe, fhf) 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), app(ty_[], eae), dad) -> new_esEs26(xuu40000, xuu3000, eae) 37.21/18.36 new_esEs8(xuu4000, xuu300, app(ty_[], bha)) -> new_esEs26(xuu4000, xuu300, bha) 37.21/18.36 new_esEs35(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.36 new_lt22(xuu121, xuu123, ty_Ordering) -> new_lt17(xuu121, xuu123) 37.21/18.36 new_ltEs13(Just(xuu700), Just(xuu710), ty_Int) -> new_ltEs7(xuu700, xuu710) 37.21/18.36 new_esEs18(Right(xuu40000), Right(xuu3000), dac, app(ty_[], ebg)) -> new_esEs26(xuu40000, xuu3000, ebg) 37.21/18.36 new_lt21(xuu109, xuu112, ty_@0) -> new_lt11(xuu109, xuu112) 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Char, dad) -> new_esEs19(xuu40000, xuu3000) 37.21/18.36 new_ltEs19(xuu70, xuu71, ty_@0) -> new_ltEs9(xuu70, xuu71) 37.21/18.36 new_ltEs8(Right(xuu700), Right(xuu710), cb, app(app(ty_@2, fch), fda)) -> new_ltEs14(xuu700, xuu710, fch, fda) 37.21/18.36 new_esEs33(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.36 new_compare17(GT, GT) -> EQ 37.21/18.36 new_esEs4(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.36 new_primPlusInt(Neg(xuu3920), Neg(xuu1340)) -> Neg(new_primPlusNat0(xuu3920, xuu1340)) 37.21/18.36 new_compare7(xuu4000, xuu300, ty_Char) -> new_compare6(xuu4000, xuu300) 37.21/18.36 new_esEs13(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 37.21/18.36 new_lt24(xuu400, xuu30, ty_Float) -> new_lt18(xuu400, xuu30) 37.21/18.36 new_esEs26([], [], daf) -> True 37.21/18.36 new_lt17(xuu400, xuu30) -> new_esEs14(new_compare17(xuu400, xuu30)) 37.21/18.36 new_ltEs23(xuu122, xuu124, app(ty_[], ffh)) -> new_ltEs6(xuu122, xuu124, ffh) 37.21/18.36 new_lt5(xuu700, xuu710, ty_Bool) -> new_lt14(xuu700, xuu710) 37.21/18.36 new_mkBranch(xuu239, xuu240, xuu241, xuu242, xuu243, xuu244, xuu245, xuu246, xuu247, he, hf) -> new_mkBranchResult(xuu240, xuu241, xuu242, new_mkBranch0(xuu243, xuu244, xuu245, xuu246, xuu247, he, hf), he, hf) 37.21/18.36 new_compare114(xuu167, xuu168, True, hg) -> LT 37.21/18.36 new_compare111(xuu195, xuu196, xuu197, xuu198, True, che, chf) -> LT 37.21/18.36 new_compare10(xuu151, xuu152, False, fad, fae) -> GT 37.21/18.36 new_esEs31(xuu108, xuu111, app(ty_[], ddf)) -> new_esEs26(xuu108, xuu111, ddf) 37.21/18.36 new_esEs17(False, True) -> False 37.21/18.36 new_esEs17(True, False) -> False 37.21/18.36 new_esEs39(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.36 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 37.21/18.36 new_esEs7(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.36 new_esEs34(xuu40001, xuu3001, ty_@0) -> new_esEs24(xuu40001, xuu3001) 37.21/18.36 new_esEs34(xuu40001, xuu3001, ty_Ordering) -> new_esEs20(xuu40001, xuu3001) 37.21/18.36 new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, False, bce, bcf, bcg) -> GT 37.21/18.36 new_primCmpInt(Pos(Succ(xuu40000)), Pos(xuu300)) -> new_primCmpNat0(Succ(xuu40000), xuu300) 37.21/18.36 new_esEs39(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.36 new_primCompAux00(xuu49, EQ) -> xuu49 37.21/18.36 new_lt5(xuu700, xuu710, ty_Ordering) -> new_lt17(xuu700, xuu710) 37.21/18.36 new_mkBalBranch6MkBalBranch4(xuu14, xuu15, xuu39, EmptyFM, True, bb, bc) -> error([]) 37.21/18.36 new_compare5(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.36 new_esEs10(xuu4000, xuu300, app(app(app(ty_@3, egb), egc), egd)) -> new_esEs16(xuu4000, xuu300, egb, egc, egd) 37.21/18.36 new_esEs10(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.36 new_mkBranchResult(xuu14, xuu15, xuu39, xuu18, bb, bc) -> Branch(xuu14, xuu15, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu39, bb, bc)), new_sizeFM(xuu18, bb, bc)), xuu39, xuu18) 37.21/18.36 new_ltEs5(xuu702, xuu712, app(ty_[], ced)) -> new_ltEs6(xuu702, xuu712, ced) 37.21/18.36 new_ltEs13(Nothing, Nothing, ce) -> True 37.21/18.36 new_ltEs13(Just(xuu700), Just(xuu710), app(app(ty_@2, bah), bba)) -> new_ltEs14(xuu700, xuu710, bah, bba) 37.21/18.36 new_ltEs13(Just(xuu700), Nothing, ce) -> False 37.21/18.36 new_esEs8(xuu4000, xuu300, app(app(ty_@2, bfh), bga)) -> new_esEs15(xuu4000, xuu300, bfh, bga) 37.21/18.36 new_esEs11(xuu4001, xuu301, ty_Char) -> new_esEs19(xuu4001, xuu301) 37.21/18.36 new_esEs23(Just(xuu40000), Just(xuu3000), app(app(ty_Either, gba), gbb)) -> new_esEs18(xuu40000, xuu3000, gba, gbb) 37.21/18.36 new_primMulNat0(Succ(xuu400000), Succ(xuu30100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu30100)), Succ(xuu30100)) 37.21/18.36 new_esEs7(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.36 new_ltEs12(True, False) -> False 37.21/18.36 new_compare7(xuu4000, xuu300, ty_Ordering) -> new_compare17(xuu4000, xuu300) 37.21/18.36 new_lt5(xuu700, xuu710, ty_Integer) -> new_lt19(xuu700, xuu710) 37.21/18.36 new_gt(xuu19, xuu14, app(app(ty_@2, feb), fec)) -> new_esEs41(new_compare16(xuu19, xuu14, feb, fec)) 37.21/18.36 new_lt20(xuu108, xuu111, app(app(app(ty_@3, ddg), ddh), dea)) -> new_lt8(xuu108, xuu111, ddg, ddh, dea) 37.21/18.36 new_esEs39(xuu40000, xuu3000, app(app(ty_Either, fhg), fhh)) -> new_esEs18(xuu40000, xuu3000, fhg, fhh) 37.21/18.36 new_esEs35(xuu40000, xuu3000, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.36 new_lt10(xuu400, xuu30, ed, ee) -> new_esEs14(new_compare11(xuu400, xuu30, ed, ee)) 37.21/18.36 new_gt(xuu19, xuu14, ty_Integer) -> new_esEs41(new_compare19(xuu19, xuu14)) 37.21/18.36 new_ltEs17(xuu70, xuu71) -> new_fsEs(new_compare18(xuu70, xuu71)) 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), ty_Ordering, cc) -> new_ltEs16(xuu700, xuu710) 37.21/18.36 new_lt21(xuu109, xuu112, ty_Int) -> new_lt9(xuu109, xuu112) 37.21/18.36 new_esEs28(xuu701, xuu711, app(app(ty_@2, ceb), cec)) -> new_esEs15(xuu701, xuu711, ceb, cec) 37.21/18.36 new_esEs10(xuu4000, xuu300, app(ty_Ratio, egg)) -> new_esEs22(xuu4000, xuu300, egg) 37.21/18.36 new_esEs11(xuu4001, xuu301, app(ty_Maybe, fab)) -> new_esEs23(xuu4001, xuu301, fab) 37.21/18.36 new_ltEs5(xuu702, xuu712, ty_Integer) -> new_ltEs18(xuu702, xuu712) 37.21/18.36 new_esEs5(xuu4001, xuu301, ty_Char) -> new_esEs19(xuu4001, xuu301) 37.21/18.36 new_ltEs12(False, False) -> True 37.21/18.36 new_esEs35(xuu40000, xuu3000, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.36 new_esEs10(xuu4000, xuu300, app(ty_Maybe, egh)) -> new_esEs23(xuu4000, xuu300, egh) 37.21/18.36 new_lt6(xuu701, xuu711, ty_Ordering) -> new_lt17(xuu701, xuu711) 37.21/18.36 new_mkBalBranch6MkBalBranch3(xuu14, xuu15, EmptyFM, xuu18, True, bb, bc) -> error([]) 37.21/18.36 new_esEs36(xuu40001, xuu3001, ty_Float) -> new_esEs21(xuu40001, xuu3001) 37.21/18.36 new_ltEs8(Right(xuu700), Right(xuu710), cb, ty_Double) -> new_ltEs15(xuu700, xuu710) 37.21/18.36 new_ltEs24(xuu701, xuu711, app(ty_[], cad)) -> new_ltEs6(xuu701, xuu711, cad) 37.21/18.36 new_lt22(xuu121, xuu123, ty_Int) -> new_lt9(xuu121, xuu123) 37.21/18.36 new_ltEs24(xuu701, xuu711, app(ty_Ratio, cbb)) -> new_ltEs11(xuu701, xuu711, cbb) 37.21/18.36 new_compare17(EQ, EQ) -> EQ 37.21/18.36 new_esEs41(GT) -> True 37.21/18.36 new_lt21(xuu109, xuu112, app(ty_Maybe, dfg)) -> new_lt15(xuu109, xuu112, dfg) 37.21/18.36 new_mkBranch0(xuu243, xuu244, xuu245, xuu246, xuu247, he, hf) -> new_mkBranchResult(xuu244, xuu245, xuu246, xuu247, he, hf) 37.21/18.36 new_esEs34(xuu40001, xuu3001, app(app(ty_Either, gh), ha)) -> new_esEs18(xuu40001, xuu3001, gh, ha) 37.21/18.36 new_esEs6(xuu4002, xuu302, ty_Double) -> new_esEs12(xuu4002, xuu302) 37.21/18.36 new_compare8(@3(xuu4000, xuu4001, xuu4002), @3(xuu300, xuu301, xuu302), cha, chb, chc) -> new_compare27(xuu4000, xuu4001, xuu4002, xuu300, xuu301, xuu302, new_asAs(new_esEs4(xuu4000, xuu300, cha), new_asAs(new_esEs5(xuu4001, xuu301, chb), new_esEs6(xuu4002, xuu302, chc))), cha, chb, chc) 37.21/18.36 new_compare27(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, False, ddc, ddd, dde) -> new_compare112(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, new_lt20(xuu108, xuu111, ddc), new_asAs(new_esEs31(xuu108, xuu111, ddc), new_pePe(new_lt21(xuu109, xuu112, ddd), new_asAs(new_esEs32(xuu109, xuu112, ddd), new_ltEs20(xuu110, xuu113, dde)))), ddc, ddd, dde) 37.21/18.36 new_gt(xuu19, xuu14, app(ty_Ratio, fdh)) -> new_esEs41(new_compare13(xuu19, xuu14, fdh)) 37.21/18.36 new_lt21(xuu109, xuu112, ty_Ordering) -> new_lt17(xuu109, xuu112) 37.21/18.36 new_esEs39(xuu40000, xuu3000, ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.36 new_esEs17(True, True) -> True 37.21/18.36 new_lt5(xuu700, xuu710, app(ty_Maybe, ccg)) -> new_lt15(xuu700, xuu710, ccg) 37.21/18.36 new_compare18(Float(xuu4000, Pos(xuu40010)), Float(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.36 new_ltEs22(xuu77, xuu78, app(ty_[], bdd)) -> new_ltEs6(xuu77, xuu78, bdd) 37.21/18.36 new_esEs38(xuu121, xuu123, ty_Char) -> new_esEs19(xuu121, xuu123) 37.21/18.36 new_sizeFM(Branch(xuu180, xuu181, xuu182, xuu183, xuu184), bb, bc) -> xuu182 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), ty_Float, cc) -> new_ltEs17(xuu700, xuu710) 37.21/18.36 new_gt(xuu19, xuu14, ty_Double) -> new_esEs41(new_compare5(xuu19, xuu14)) 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), ty_Integer, cc) -> new_ltEs18(xuu700, xuu710) 37.21/18.36 new_mkBalBranch6MkBalBranch11(xuu14, xuu15, xuu390, xuu391, xuu392, xuu393, xuu394, xuu18, True, bb, bc) -> 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, bb, bc) 37.21/18.36 new_esEs28(xuu701, xuu711, app(ty_[], cdb)) -> new_esEs26(xuu701, xuu711, cdb) 37.21/18.36 new_esEs26(:(xuu40000, xuu40001), [], daf) -> False 37.21/18.36 new_esEs26([], :(xuu3000, xuu3001), daf) -> False 37.21/18.36 new_ltEs8(Left(xuu700), Right(xuu710), cb, cc) -> True 37.21/18.36 new_esEs35(xuu40000, xuu3000, app(app(ty_Either, ece), ecf)) -> new_esEs18(xuu40000, xuu3000, ece, ecf) 37.21/18.36 new_esEs4(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.36 new_lt8(xuu400, xuu30, cha, chb, chc) -> new_esEs14(new_compare8(xuu400, xuu30, cha, chb, chc)) 37.21/18.36 new_compare14(True, False) -> GT 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Float, dad) -> new_esEs21(xuu40000, xuu3000) 37.21/18.36 new_mkBalBranch6MkBalBranch3(xuu14, xuu15, Branch(xuu390, xuu391, xuu392, xuu393, xuu394), xuu18, True, bb, bc) -> new_mkBalBranch6MkBalBranch11(xuu14, xuu15, xuu390, xuu391, xuu392, xuu393, xuu394, xuu18, new_lt9(new_sizeFM(xuu394, bb, bc), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu393, bb, bc))), bb, bc) 37.21/18.36 new_primPlusNat0(Succ(xuu39200), Succ(xuu13400)) -> Succ(Succ(new_primPlusNat0(xuu39200, xuu13400))) 37.21/18.36 new_esEs36(xuu40001, xuu3001, ty_Integer) -> new_esEs25(xuu40001, xuu3001) 37.21/18.36 new_ltEs10(xuu70, xuu71) -> new_fsEs(new_compare6(xuu70, xuu71)) 37.21/18.36 new_esEs36(xuu40001, xuu3001, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs16(xuu40001, xuu3001, edd, ede, edf) 37.21/18.36 new_esEs31(xuu108, xuu111, app(ty_Ratio, ded)) -> new_esEs22(xuu108, xuu111, ded) 37.21/18.36 new_esEs18(Right(xuu40000), Right(xuu3000), dac, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.36 new_esEs37(xuu40002, xuu3002, ty_Float) -> new_esEs21(xuu40002, xuu3002) 37.21/18.36 new_esEs5(xuu4001, xuu301, ty_Float) -> new_esEs21(xuu4001, xuu301) 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), app(ty_Maybe, fbe), cc) -> new_ltEs13(xuu700, xuu710, fbe) 37.21/18.36 new_esEs36(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), app(app(ty_@2, fbf), fbg), cc) -> new_ltEs14(xuu700, xuu710, fbf, fbg) 37.21/18.36 new_lt20(xuu108, xuu111, ty_Int) -> new_lt9(xuu108, xuu111) 37.21/18.36 new_esEs30(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 37.21/18.36 new_esEs37(xuu40002, xuu3002, app(ty_Maybe, efd)) -> new_esEs23(xuu40002, xuu3002, efd) 37.21/18.36 new_esEs4(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.36 new_esEs40(xuu700, xuu710, ty_Float) -> new_esEs21(xuu700, xuu710) 37.21/18.36 new_lt11(xuu400, xuu30) -> new_esEs14(new_compare12(xuu400, xuu30)) 37.21/18.36 new_esEs28(xuu701, xuu711, app(ty_Ratio, cdh)) -> new_esEs22(xuu701, xuu711, cdh) 37.21/18.36 new_ltEs20(xuu110, xuu113, app(ty_[], dgb)) -> new_ltEs6(xuu110, xuu113, dgb) 37.21/18.36 new_lt14(xuu400, xuu30) -> new_esEs14(new_compare14(xuu400, xuu30)) 37.21/18.36 new_esEs20(LT, GT) -> False 37.21/18.36 new_esEs20(GT, LT) -> False 37.21/18.36 new_lt24(xuu400, xuu30, app(app(app(ty_@3, cha), chb), chc)) -> new_lt8(xuu400, xuu30, cha, chb, chc) 37.21/18.36 new_lt23(xuu700, xuu710, ty_Float) -> new_lt18(xuu700, xuu710) 37.21/18.36 new_lt23(xuu700, xuu710, ty_Integer) -> new_lt19(xuu700, xuu710) 37.21/18.36 new_lt20(xuu108, xuu111, app(ty_Maybe, dee)) -> new_lt15(xuu108, xuu111, dee) 37.21/18.36 new_esEs36(xuu40001, xuu3001, ty_Char) -> new_esEs19(xuu40001, xuu3001) 37.21/18.36 new_lt5(xuu700, xuu710, ty_Int) -> new_lt9(xuu700, xuu710) 37.21/18.36 new_ltEs13(Just(xuu700), Just(xuu710), app(ty_Ratio, baf)) -> new_ltEs11(xuu700, xuu710, baf) 37.21/18.36 new_lt18(xuu400, xuu30) -> new_esEs14(new_compare18(xuu400, xuu30)) 37.21/18.36 new_esEs18(Left(xuu40000), Right(xuu3000), dac, dad) -> False 37.21/18.36 new_esEs18(Right(xuu40000), Left(xuu3000), dac, dad) -> False 37.21/18.36 new_compare7(xuu4000, xuu300, ty_Integer) -> new_compare19(xuu4000, xuu300) 37.21/18.36 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.36 new_ltEs21(xuu84, xuu85, ty_Float) -> new_ltEs17(xuu84, xuu85) 37.21/18.36 new_esEs40(xuu700, xuu710, ty_Integer) -> new_esEs25(xuu700, xuu710) 37.21/18.36 new_lt21(xuu109, xuu112, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_lt8(xuu109, xuu112, dfa, dfb, dfc) 37.21/18.36 new_esEs4(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.36 new_esEs37(xuu40002, xuu3002, ty_@0) -> new_esEs24(xuu40002, xuu3002) 37.21/18.36 new_esEs17(False, False) -> True 37.21/18.36 new_esEs38(xuu121, xuu123, app(app(ty_Either, ffb), ffc)) -> new_esEs18(xuu121, xuu123, ffb, ffc) 37.21/18.36 new_esEs34(xuu40001, xuu3001, ty_Bool) -> new_esEs17(xuu40001, xuu3001) 37.21/18.36 new_lt21(xuu109, xuu112, ty_Integer) -> new_lt19(xuu109, xuu112) 37.21/18.36 new_mkBalBranch6MkBalBranch4(xuu14, xuu15, xuu39, Branch(xuu180, xuu181, xuu182, xuu183, xuu184), True, bb, bc) -> new_mkBalBranch6MkBalBranch01(xuu14, xuu15, xuu39, xuu180, xuu181, xuu182, xuu183, xuu184, new_lt9(new_sizeFM(xuu183, bb, bc), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu184, bb, bc))), bb, bc) 37.21/18.36 new_compare7(xuu4000, xuu300, app(app(app(ty_@3, dc), dd), de)) -> new_compare8(xuu4000, xuu300, dc, dd, de) 37.21/18.36 new_compare29(xuu77, xuu78, True, bdb, bdc) -> EQ 37.21/18.36 new_esEs35(xuu40000, xuu3000, app(ty_Maybe, ech)) -> new_esEs23(xuu40000, xuu3000, ech) 37.21/18.36 new_primCmpNat0(Succ(xuu40000), Succ(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) 37.21/18.36 new_lt6(xuu701, xuu711, ty_Integer) -> new_lt19(xuu701, xuu711) 37.21/18.36 new_esEs18(Right(xuu40000), Right(xuu3000), dac, app(app(ty_@2, eaf), eag)) -> new_esEs15(xuu40000, xuu3000, eaf, eag) 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), app(ty_Ratio, eac), dad) -> new_esEs22(xuu40000, xuu3000, eac) 37.21/18.36 new_esEs28(xuu701, xuu711, ty_Int) -> new_esEs13(xuu701, xuu711) 37.21/18.36 new_compare11(Left(xuu4000), Right(xuu300), ed, ee) -> LT 37.21/18.36 new_esEs11(xuu4001, xuu301, ty_Bool) -> new_esEs17(xuu4001, xuu301) 37.21/18.36 new_esEs11(xuu4001, xuu301, app(app(app(ty_@3, ehd), ehe), ehf)) -> new_esEs16(xuu4001, xuu301, ehd, ehe, ehf) 37.21/18.36 new_primMinusNat0(Zero, Succ(xuu13400)) -> Neg(Succ(xuu13400)) 37.21/18.36 new_esEs32(xuu109, xuu112, ty_Ordering) -> new_esEs20(xuu109, xuu112) 37.21/18.36 new_esEs39(xuu40000, xuu3000, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.36 new_compare27(xuu108, xuu109, xuu110, xuu111, xuu112, xuu113, True, ddc, ddd, dde) -> EQ 37.21/18.36 new_lt23(xuu700, xuu710, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_lt8(xuu700, xuu710, bhc, bhd, bhe) 37.21/18.36 new_esEs8(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.36 new_esEs34(xuu40001, xuu3001, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs16(xuu40001, xuu3001, ge, gf, gg) 37.21/18.36 new_esEs27(xuu700, xuu710, ty_Int) -> new_esEs13(xuu700, xuu710) 37.21/18.36 new_esEs10(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.36 new_esEs33(xuu40000, xuu3000, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.36 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), app(app(ty_@2, dhd), dhe), dad) -> new_esEs15(xuu40000, xuu3000, dhd, dhe) 37.21/18.36 new_esEs35(xuu40000, xuu3000, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs16(xuu40000, xuu3000, ecb, ecc, ecd) 37.21/18.36 new_ltEs20(xuu110, xuu113, ty_Float) -> new_ltEs17(xuu110, xuu113) 37.21/18.36 new_esEs9(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.36 new_esEs37(xuu40002, xuu3002, app(app(ty_Either, efa), efb)) -> new_esEs18(xuu40002, xuu3002, efa, efb) 37.21/18.36 new_gt(xuu19, xuu14, ty_Float) -> new_esEs41(new_compare18(xuu19, xuu14)) 37.21/18.36 new_lt22(xuu121, xuu123, app(app(app(ty_@3, feg), feh), ffa)) -> new_lt8(xuu121, xuu123, feg, feh, ffa) 37.21/18.36 new_esEs38(xuu121, xuu123, ty_Float) -> new_esEs21(xuu121, xuu123) 37.21/18.36 new_esEs23(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.36 new_ltEs13(Nothing, Just(xuu710), ce) -> True 37.21/18.36 new_esEs35(xuu40000, xuu3000, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.36 new_esEs38(xuu121, xuu123, ty_@0) -> new_esEs24(xuu121, xuu123) 37.21/18.36 new_esEs36(xuu40001, xuu3001, app(ty_Maybe, eeb)) -> new_esEs23(xuu40001, xuu3001, eeb) 37.21/18.36 new_ltEs19(xuu70, xuu71, ty_Float) -> new_ltEs17(xuu70, xuu71) 37.21/18.36 new_ltEs21(xuu84, xuu85, app(ty_[], bbc)) -> new_ltEs6(xuu84, xuu85, bbc) 37.21/18.36 new_esEs37(xuu40002, xuu3002, ty_Char) -> new_esEs19(xuu40002, xuu3002) 37.21/18.36 new_compare17(GT, LT) -> GT 37.21/18.36 new_esEs38(xuu121, xuu123, ty_Integer) -> new_esEs25(xuu121, xuu123) 37.21/18.36 new_lt22(xuu121, xuu123, ty_Integer) -> new_lt19(xuu121, xuu123) 37.21/18.36 new_ltEs24(xuu701, xuu711, ty_Char) -> new_ltEs10(xuu701, xuu711) 37.21/18.36 new_esEs27(xuu700, xuu710, app(ty_[], cbh)) -> new_esEs26(xuu700, xuu710, cbh) 37.21/18.36 new_primCmpInt(Neg(Succ(xuu40000)), Pos(xuu300)) -> LT 37.21/18.36 new_lt15(xuu400, xuu30, cff) -> new_esEs14(new_compare15(xuu400, xuu30, cff)) 37.21/18.36 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs21(xuu40000, xuu3000) 37.21/18.36 new_esEs36(xuu40001, xuu3001, ty_Ordering) -> new_esEs20(xuu40001, xuu3001) 37.21/18.36 new_ltEs13(Just(xuu700), Just(xuu710), app(ty_Maybe, bag)) -> new_ltEs13(xuu700, xuu710, bag) 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), app(ty_Ratio, fbd), cc) -> new_ltEs11(xuu700, xuu710, fbd) 37.21/18.36 new_fsEs(xuu211) -> new_not(new_esEs20(xuu211, GT)) 37.21/18.36 new_compare(:(xuu4000, xuu4001), [], da) -> GT 37.21/18.36 new_ltEs20(xuu110, xuu113, ty_Integer) -> new_ltEs18(xuu110, xuu113) 37.21/18.36 new_esEs6(xuu4002, xuu302, app(ty_[], ddb)) -> new_esEs26(xuu4002, xuu302, ddb) 37.21/18.36 new_esEs37(xuu40002, xuu3002, ty_Bool) -> new_esEs17(xuu40002, xuu3002) 37.21/18.36 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3000))) -> GT 37.21/18.36 new_compare(:(xuu4000, xuu4001), :(xuu300, xuu301), da) -> new_primCompAux0(xuu4000, xuu300, new_compare(xuu4001, xuu301, da), da) 37.21/18.36 new_compare5(Double(xuu4000, Pos(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Pos(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.36 new_compare5(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Pos(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Pos(xuu40010), xuu300)) 37.21/18.36 new_esEs14(GT) -> False 37.21/18.36 new_ltEs22(xuu77, xuu78, app(ty_Ratio, beb)) -> new_ltEs11(xuu77, xuu78, beb) 37.21/18.36 new_primCmpInt(Neg(Succ(xuu40000)), Neg(xuu300)) -> new_primCmpNat0(xuu300, Succ(xuu40000)) 37.21/18.36 new_esEs5(xuu4001, xuu301, app(app(ty_Either, dbd), dbe)) -> new_esEs18(xuu4001, xuu301, dbd, dbe) 37.21/18.36 new_esEs4(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), ty_@0, dad) -> new_esEs24(xuu40000, xuu3000) 37.21/18.36 new_esEs5(xuu4001, xuu301, ty_@0) -> new_esEs24(xuu4001, xuu301) 37.21/18.36 new_lt24(xuu400, xuu30, ty_Integer) -> new_lt19(xuu400, xuu30) 37.21/18.36 new_ltEs5(xuu702, xuu712, ty_@0) -> new_ltEs9(xuu702, xuu712) 37.21/18.36 new_ltEs22(xuu77, xuu78, app(app(ty_@2, bed), bee)) -> new_ltEs14(xuu77, xuu78, bed, bee) 37.21/18.36 new_esEs41(EQ) -> False 37.21/18.36 new_compare28(xuu121, xuu122, xuu123, xuu124, True, fed, fee) -> EQ 37.21/18.36 new_esEs36(xuu40001, xuu3001, app(app(ty_Either, edg), edh)) -> new_esEs18(xuu40001, xuu3001, edg, edh) 37.21/18.36 new_ltEs20(xuu110, xuu113, ty_Bool) -> new_ltEs12(xuu110, xuu113) 37.21/18.36 new_compare17(GT, EQ) -> GT 37.21/18.36 new_esEs19(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 37.21/18.36 new_esEs11(xuu4001, xuu301, ty_@0) -> new_esEs24(xuu4001, xuu301) 37.21/18.36 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 37.21/18.36 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 37.21/18.36 new_compare110(xuu195, xuu196, xuu197, xuu198, False, xuu200, che, chf) -> new_compare111(xuu195, xuu196, xuu197, xuu198, xuu200, che, chf) 37.21/18.36 new_esEs37(xuu40002, xuu3002, app(app(ty_@2, eed), eee)) -> new_esEs15(xuu40002, xuu3002, eed, eee) 37.21/18.36 new_esEs22(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), chg) -> new_asAs(new_esEs29(xuu40000, xuu3000, chg), new_esEs30(xuu40001, xuu3001, chg)) 37.21/18.36 new_esEs37(xuu40002, xuu3002, ty_Integer) -> new_esEs25(xuu40002, xuu3002) 37.21/18.36 new_lt6(xuu701, xuu711, app(app(app(ty_@3, cdc), cdd), cde)) -> new_lt8(xuu701, xuu711, cdc, cdd, cde) 37.21/18.36 new_esEs11(xuu4001, xuu301, ty_Ordering) -> new_esEs20(xuu4001, xuu301) 37.21/18.36 new_esEs32(xuu109, xuu112, app(app(ty_@2, dfh), dga)) -> new_esEs15(xuu109, xuu112, dfh, dga) 37.21/18.36 new_ltEs8(Right(xuu700), Right(xuu710), cb, ty_Ordering) -> new_ltEs16(xuu700, xuu710) 37.21/18.36 new_compare112(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, True, xuu187, bce, bcf, bcg) -> new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, True, bce, bcf, bcg) 37.21/18.36 new_esEs14(EQ) -> False 37.21/18.36 new_lt23(xuu700, xuu710, ty_@0) -> new_lt11(xuu700, xuu710) 37.21/18.36 new_esEs8(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.36 new_lt16(xuu400, xuu30, cbf, cbg) -> new_esEs14(new_compare16(xuu400, xuu30, cbf, cbg)) 37.21/18.36 new_esEs23(Nothing, Just(xuu3000), dae) -> False 37.21/18.36 new_esEs23(Just(xuu40000), Nothing, dae) -> False 37.21/18.36 new_addToFM_C20(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C10(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_gt(xuu19, xuu14, bb), bb, bc) 37.21/18.36 new_ltEs20(xuu110, xuu113, app(app(ty_Either, dgf), dgg)) -> new_ltEs8(xuu110, xuu113, dgf, dgg) 37.21/18.36 new_esEs31(xuu108, xuu111, ty_Ordering) -> new_esEs20(xuu108, xuu111) 37.21/18.36 new_ltEs5(xuu702, xuu712, ty_Double) -> new_ltEs15(xuu702, xuu712) 37.21/18.36 new_ltEs13(Just(xuu700), Just(xuu710), ty_Char) -> new_ltEs10(xuu700, xuu710) 37.21/18.36 new_ltEs23(xuu122, xuu124, ty_Float) -> new_ltEs17(xuu122, xuu124) 37.21/18.36 new_primCmpNat0(Zero, Zero) -> EQ 37.21/18.36 new_esEs29(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.36 new_gt(xuu19, xuu14, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs41(new_compare8(xuu19, xuu14, fdc, fdd, fde)) 37.21/18.36 new_lt6(xuu701, xuu711, ty_Int) -> new_lt9(xuu701, xuu711) 37.21/18.36 new_lt20(xuu108, xuu111, ty_Bool) -> new_lt14(xuu108, xuu111) 37.21/18.36 new_ltEs8(Left(xuu700), Left(xuu710), app(app(app(ty_@3, fag), fah), fba), cc) -> new_ltEs4(xuu700, xuu710, fag, fah, fba) 37.21/18.36 new_esEs27(xuu700, xuu710, ty_Bool) -> new_esEs17(xuu700, xuu710) 37.21/18.36 new_ltEs5(xuu702, xuu712, app(ty_Ratio, cfb)) -> new_ltEs11(xuu702, xuu712, cfb) 37.21/18.36 new_esEs33(xuu40000, xuu3000, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs16(xuu40000, xuu3000, fb, fc, fd) 37.21/18.36 new_esEs23(Nothing, Nothing, dae) -> True 37.21/18.36 new_ltEs16(GT, EQ) -> False 37.21/18.36 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Ordering, dad) -> new_esEs20(xuu40000, xuu3000) 37.21/18.36 new_esEs5(xuu4001, xuu301, ty_Ordering) -> new_esEs20(xuu4001, xuu301) 37.21/18.36 new_esEs36(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 37.21/18.36 new_esEs40(xuu700, xuu710, ty_Char) -> new_esEs19(xuu700, xuu710) 37.21/18.36 new_lt23(xuu700, xuu710, app(ty_[], bhb)) -> new_lt7(xuu700, xuu710, bhb) 37.21/18.36 new_compare7(xuu4000, xuu300, ty_Int) -> new_compare9(xuu4000, xuu300) 37.21/18.36 new_esEs34(xuu40001, xuu3001, app(ty_Maybe, hc)) -> new_esEs23(xuu40001, xuu3001, hc) 37.21/18.36 new_compare13(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Int) -> new_compare9(new_sr(xuu4000, xuu301), new_sr(xuu300, xuu4001)) 37.21/18.36 new_esEs36(xuu40001, xuu3001, ty_@0) -> new_esEs24(xuu40001, xuu3001) 37.21/18.36 new_compare114(xuu167, xuu168, False, hg) -> GT 37.21/18.36 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) 37.21/18.36 new_lt9(xuu400, xuu30) -> new_esEs14(new_compare9(xuu400, xuu30)) 37.21/18.36 new_ltEs13(Just(xuu700), Just(xuu710), ty_Double) -> new_ltEs15(xuu700, xuu710) 37.21/18.36 new_esEs33(xuu40000, xuu3000, app(ty_Ratio, fh)) -> new_esEs22(xuu40000, xuu3000, fh) 37.21/18.36 new_esEs35(xuu40000, xuu3000, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.36 new_ltEs22(xuu77, xuu78, ty_Int) -> new_ltEs7(xuu77, xuu78) 37.21/18.36 new_primCompAux00(xuu49, GT) -> GT 37.21/18.36 new_esEs35(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.36 new_primMinusNat0(Succ(xuu39200), Zero) -> Pos(Succ(xuu39200)) 37.21/18.36 new_mkBalBranch6MkBalBranch01(xuu14, xuu15, xuu39, xuu180, xuu181, xuu182, xuu183, xuu184, True, bb, bc) -> new_mkBranchResult(xuu180, xuu181, new_mkBranchResult(xuu14, xuu15, xuu39, xuu183, bb, bc), xuu184, bb, bc) 37.21/18.36 new_esEs6(xuu4002, xuu302, ty_Float) -> new_esEs21(xuu4002, xuu302) 37.21/18.36 new_esEs6(xuu4002, xuu302, ty_Integer) -> new_esEs25(xuu4002, xuu302) 37.21/18.36 new_ltEs24(xuu701, xuu711, ty_Double) -> new_ltEs15(xuu701, xuu711) 37.21/18.36 new_ltEs16(LT, LT) -> True 37.21/18.36 new_compare15(Just(xuu4000), Just(xuu300), cff) -> new_compare26(xuu4000, xuu300, new_esEs9(xuu4000, xuu300, cff), cff) 37.21/18.36 new_compare7(xuu4000, xuu300, app(ty_Maybe, ea)) -> new_compare15(xuu4000, xuu300, ea) 37.21/18.36 new_esEs28(xuu701, xuu711, ty_Char) -> new_esEs19(xuu701, xuu711) 37.21/18.36 new_compare17(EQ, LT) -> GT 37.21/18.36 new_lt7(xuu400, xuu30, da) -> new_esEs14(new_compare(xuu400, xuu30, da)) 37.21/18.36 new_esEs27(xuu700, xuu710, app(ty_Maybe, ccg)) -> new_esEs23(xuu700, xuu710, ccg) 37.21/18.36 new_esEs27(xuu700, xuu710, app(app(ty_@2, cch), cda)) -> new_esEs15(xuu700, xuu710, cch, cda) 37.21/18.36 new_esEs11(xuu4001, xuu301, app(app(ty_Either, ehg), ehh)) -> new_esEs18(xuu4001, xuu301, ehg, ehh) 37.21/18.36 new_esEs23(Just(xuu40000), Just(xuu3000), app(ty_Maybe, gbd)) -> new_esEs23(xuu40000, xuu3000, gbd) 37.21/18.36 new_ltEs13(Just(xuu700), Just(xuu710), ty_@0) -> new_ltEs9(xuu700, xuu710) 37.21/18.36 new_lt6(xuu701, xuu711, app(ty_Maybe, cea)) -> new_lt15(xuu701, xuu711, cea) 37.21/18.36 new_esEs32(xuu109, xuu112, ty_Bool) -> new_esEs17(xuu109, xuu112) 37.21/18.36 new_lt24(xuu400, xuu30, ty_Char) -> new_lt12(xuu400, xuu30) 37.21/18.36 new_esEs31(xuu108, xuu111, ty_Int) -> new_esEs13(xuu108, xuu111) 37.21/18.36 new_ltEs23(xuu122, xuu124, app(app(app(ty_@3, fga), fgb), fgc)) -> new_ltEs4(xuu122, xuu124, fga, fgb, fgc) 37.21/18.36 new_esEs9(xuu4000, xuu300, app(app(ty_@2, cfg), cfh)) -> new_esEs15(xuu4000, xuu300, cfg, cfh) 37.21/18.36 new_lt22(xuu121, xuu123, ty_Float) -> new_lt18(xuu121, xuu123) 37.21/18.36 new_esEs34(xuu40001, xuu3001, app(ty_[], hd)) -> new_esEs26(xuu40001, xuu3001, hd) 37.21/18.36 new_esEs4(xuu4000, xuu300, app(app(ty_@2, ef), eg)) -> new_esEs15(xuu4000, xuu300, ef, eg) 37.21/18.36 new_primCmpNat0(Succ(xuu40000), Zero) -> GT 37.21/18.36 new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu35, xuu36, xuu37, False, bch, bda) -> Branch(xuu36, xuu37, xuu33, xuu34, xuu35) 37.21/18.36 new_esEs9(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.36 new_pePe(False, xuu210) -> xuu210 37.21/18.36 new_lt20(xuu108, xuu111, ty_@0) -> new_lt11(xuu108, xuu111) 37.21/18.36 new_esEs33(xuu40000, xuu3000, ty_@0) -> new_esEs24(xuu40000, xuu3000) 37.21/18.36 new_mkBalBranch6MkBalBranch4(xuu14, xuu15, xuu39, xuu18, False, bb, bc) -> new_mkBalBranch6MkBalBranch3(xuu14, xuu15, xuu39, xuu18, new_gt0(new_mkBalBranch6Size_l(xuu14, xuu15, xuu39, xuu18, bb, bc), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu14, xuu15, xuu39, xuu18, bb, bc))), bb, bc) 37.21/18.36 new_esEs33(xuu40000, xuu3000, app(app(ty_Either, ff), fg)) -> new_esEs18(xuu40000, xuu3000, ff, fg) 37.21/18.36 new_compare25(xuu70, xuu71, True, bd, be) -> EQ 37.21/18.36 new_ltEs22(xuu77, xuu78, ty_Double) -> new_ltEs15(xuu77, xuu78) 37.21/18.36 new_ltEs8(Right(xuu700), Right(xuu710), cb, ty_Integer) -> new_ltEs18(xuu700, xuu710) 37.21/18.36 new_lt22(xuu121, xuu123, app(ty_Maybe, ffe)) -> new_lt15(xuu121, xuu123, ffe) 37.21/18.36 new_ltEs16(LT, GT) -> True 37.21/18.36 new_primMinusNat0(Succ(xuu39200), Succ(xuu13400)) -> new_primMinusNat0(xuu39200, xuu13400) 37.21/18.36 new_esEs39(xuu40000, xuu3000, app(ty_Maybe, gab)) -> new_esEs23(xuu40000, xuu3000, gab) 37.21/18.36 new_lt23(xuu700, xuu710, ty_Bool) -> new_lt14(xuu700, xuu710) 37.21/18.36 new_esEs8(xuu4000, xuu300, app(app(ty_Either, bge), bgf)) -> new_esEs18(xuu4000, xuu300, bge, bgf) 37.21/18.36 new_ltEs16(LT, EQ) -> True 37.21/18.36 new_ltEs16(EQ, LT) -> False 37.21/18.36 new_compare110(xuu195, xuu196, xuu197, xuu198, True, xuu200, che, chf) -> new_compare111(xuu195, xuu196, xuu197, xuu198, True, che, chf) 37.21/18.36 new_esEs16(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), chh, daa, dab) -> new_asAs(new_esEs35(xuu40000, xuu3000, chh), new_asAs(new_esEs36(xuu40001, xuu3001, daa), new_esEs37(xuu40002, xuu3002, dab))) 37.21/18.36 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 37.21/18.36 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 37.21/18.36 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.36 new_lt6(xuu701, xuu711, ty_Float) -> new_lt18(xuu701, xuu711) 37.21/18.36 new_esEs38(xuu121, xuu123, app(app(app(ty_@3, feg), feh), ffa)) -> new_esEs16(xuu121, xuu123, feg, feh, ffa) 37.21/18.36 new_compare7(xuu4000, xuu300, ty_@0) -> new_compare12(xuu4000, xuu300) 37.21/18.36 new_ltEs16(GT, LT) -> False 37.21/18.36 new_ltEs11(xuu70, xuu71, cd) -> new_fsEs(new_compare13(xuu70, xuu71, cd)) 37.21/18.36 new_esEs20(LT, EQ) -> False 37.21/18.36 new_esEs20(EQ, LT) -> False 37.21/18.36 new_compare17(LT, LT) -> EQ 37.21/18.36 new_ltEs5(xuu702, xuu712, app(ty_Maybe, cfc)) -> new_ltEs13(xuu702, xuu712, cfc) 37.21/18.36 new_mkBalBranch6Size_r(xuu14, xuu15, xuu39, xuu18, bb, bc) -> new_sizeFM(xuu18, bb, bc) 37.21/18.36 new_esEs37(xuu40002, xuu3002, ty_Double) -> new_esEs12(xuu40002, xuu3002) 37.21/18.36 new_gt(xuu19, xuu14, ty_Ordering) -> new_esEs41(new_compare17(xuu19, xuu14)) 37.21/18.36 new_gt(xuu19, xuu14, app(ty_[], fdb)) -> new_esEs41(new_compare(xuu19, xuu14, fdb)) 37.21/18.36 new_esEs32(xuu109, xuu112, ty_Float) -> new_esEs21(xuu109, xuu112) 37.21/18.36 new_ltEs7(xuu70, xuu71) -> new_fsEs(new_compare9(xuu70, xuu71)) 37.21/18.36 new_ltEs22(xuu77, xuu78, ty_@0) -> new_ltEs9(xuu77, xuu78) 37.21/18.36 new_esEs9(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.36 new_esEs31(xuu108, xuu111, ty_@0) -> new_esEs24(xuu108, xuu111) 37.21/18.36 new_esEs4(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.36 new_esEs40(xuu700, xuu710, ty_Double) -> new_esEs12(xuu700, xuu710) 37.21/18.36 new_lt5(xuu700, xuu710, ty_@0) -> new_lt11(xuu700, xuu710) 37.21/18.36 new_ltEs5(xuu702, xuu712, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu702, xuu712, cfd, cfe) 37.21/18.36 new_esEs31(xuu108, xuu111, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs16(xuu108, xuu111, ddg, ddh, dea) 37.21/18.36 new_esEs36(xuu40001, xuu3001, app(ty_Ratio, eea)) -> new_esEs22(xuu40001, xuu3001, eea) 37.21/18.36 new_esEs32(xuu109, xuu112, app(ty_Maybe, dfg)) -> new_esEs23(xuu109, xuu112, dfg) 37.21/18.37 new_esEs11(xuu4001, xuu301, app(ty_Ratio, faa)) -> new_esEs22(xuu4001, xuu301, faa) 37.21/18.37 new_esEs39(xuu40000, xuu3000, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.37 new_esEs34(xuu40001, xuu3001, ty_Integer) -> new_esEs25(xuu40001, xuu3001) 37.21/18.37 new_esEs9(xuu4000, xuu300, app(ty_[], cgh)) -> new_esEs26(xuu4000, xuu300, cgh) 37.21/18.37 new_compare7(xuu4000, xuu300, ty_Float) -> new_compare18(xuu4000, xuu300) 37.21/18.37 new_esEs10(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.37 new_esEs33(xuu40000, xuu3000, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.37 new_compare14(False, True) -> LT 37.21/18.37 new_esEs7(xuu4000, xuu300, ty_Char) -> new_esEs19(xuu4000, xuu300) 37.21/18.37 new_compare7(xuu4000, xuu300, app(app(ty_Either, df), dg)) -> new_compare11(xuu4000, xuu300, df, dg) 37.21/18.37 new_ltEs16(EQ, GT) -> True 37.21/18.37 new_ltEs8(Right(xuu700), Right(xuu710), cb, app(app(ty_Either, fcd), fce)) -> new_ltEs8(xuu700, xuu710, fcd, fce) 37.21/18.37 new_ltEs16(EQ, EQ) -> True 37.21/18.37 new_esEs34(xuu40001, xuu3001, ty_Float) -> new_esEs21(xuu40001, xuu3001) 37.21/18.37 new_esEs8(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.37 new_lt21(xuu109, xuu112, app(app(ty_Either, dfd), dfe)) -> new_lt10(xuu109, xuu112, dfd, dfe) 37.21/18.37 new_esEs6(xuu4002, xuu302, ty_Bool) -> new_esEs17(xuu4002, xuu302) 37.21/18.37 new_ltEs8(Left(xuu700), Left(xuu710), ty_Bool, cc) -> new_ltEs12(xuu700, xuu710) 37.21/18.37 new_esEs28(xuu701, xuu711, ty_Double) -> new_esEs12(xuu701, xuu711) 37.21/18.37 new_lt24(xuu400, xuu30, ty_Int) -> new_lt9(xuu400, xuu30) 37.21/18.37 new_esEs18(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, dhf), dhg), dhh), dad) -> new_esEs16(xuu40000, xuu3000, dhf, dhg, dhh) 37.21/18.37 new_lt22(xuu121, xuu123, ty_Char) -> new_lt12(xuu121, xuu123) 37.21/18.37 new_esEs32(xuu109, xuu112, ty_Integer) -> new_esEs25(xuu109, xuu112) 37.21/18.37 new_esEs9(xuu4000, xuu300, ty_Float) -> new_esEs21(xuu4000, xuu300) 37.21/18.37 new_esEs40(xuu700, xuu710, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs16(xuu700, xuu710, bhc, bhd, bhe) 37.21/18.37 new_ltEs23(xuu122, xuu124, ty_Integer) -> new_ltEs18(xuu122, xuu124) 37.21/18.37 new_gt(xuu19, xuu14, app(ty_Maybe, fea)) -> new_esEs41(new_compare15(xuu19, xuu14, fea)) 37.21/18.37 new_ltEs20(xuu110, xuu113, app(app(ty_@2, dhb), dhc)) -> new_ltEs14(xuu110, xuu113, dhb, dhc) 37.21/18.37 new_esEs28(xuu701, xuu711, app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs16(xuu701, xuu711, cdc, cdd, cde) 37.21/18.37 new_lt20(xuu108, xuu111, ty_Float) -> new_lt18(xuu108, xuu111) 37.21/18.37 new_ltEs20(xuu110, xuu113, ty_Ordering) -> new_ltEs16(xuu110, xuu113) 37.21/18.37 new_ltEs8(Right(xuu700), Right(xuu710), cb, ty_Int) -> new_ltEs7(xuu700, xuu710) 37.21/18.37 new_esEs34(xuu40001, xuu3001, ty_Int) -> new_esEs13(xuu40001, xuu3001) 37.21/18.37 new_esEs38(xuu121, xuu123, ty_Ordering) -> new_esEs20(xuu121, xuu123) 37.21/18.37 new_esEs31(xuu108, xuu111, app(app(ty_Either, deb), dec)) -> new_esEs18(xuu108, xuu111, deb, dec) 37.21/18.37 new_esEs8(xuu4000, xuu300, ty_@0) -> new_esEs24(xuu4000, xuu300) 37.21/18.37 new_lt24(xuu400, xuu30, app(ty_Maybe, cff)) -> new_lt15(xuu400, xuu30, cff) 37.21/18.37 new_esEs6(xuu4002, xuu302, app(app(ty_@2, dca), dcb)) -> new_esEs15(xuu4002, xuu302, dca, dcb) 37.21/18.37 new_esEs6(xuu4002, xuu302, app(ty_Maybe, dda)) -> new_esEs23(xuu4002, xuu302, dda) 37.21/18.37 new_lt6(xuu701, xuu711, ty_Char) -> new_lt12(xuu701, xuu711) 37.21/18.37 new_primMulInt(Neg(xuu40000), Neg(xuu3010)) -> Pos(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.37 new_esEs18(Right(xuu40000), Right(xuu3000), dac, ty_Char) -> new_esEs19(xuu40000, xuu3000) 37.21/18.37 new_esEs11(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) 37.21/18.37 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3000))) -> new_primCmpNat0(Zero, Succ(xuu3000)) 37.21/18.37 new_ltEs22(xuu77, xuu78, ty_Integer) -> new_ltEs18(xuu77, xuu78) 37.21/18.37 new_esEs18(Right(xuu40000), Right(xuu3000), dac, app(ty_Ratio, ebe)) -> new_esEs22(xuu40000, xuu3000, ebe) 37.21/18.37 new_esEs32(xuu109, xuu112, ty_Char) -> new_esEs19(xuu109, xuu112) 37.21/18.37 new_esEs10(xuu4000, xuu300, ty_Integer) -> new_esEs25(xuu4000, xuu300) 37.21/18.37 new_lt24(xuu400, xuu30, ty_Ordering) -> new_lt17(xuu400, xuu30) 37.21/18.37 new_lt5(xuu700, xuu710, app(app(ty_Either, ccd), cce)) -> new_lt10(xuu700, xuu710, ccd, cce) 37.21/18.37 new_ltEs5(xuu702, xuu712, ty_Ordering) -> new_ltEs16(xuu702, xuu712) 37.21/18.37 new_esEs27(xuu700, xuu710, ty_Double) -> new_esEs12(xuu700, xuu710) 37.21/18.37 new_esEs5(xuu4001, xuu301, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs16(xuu4001, xuu301, dba, dbb, dbc) 37.21/18.37 new_lt21(xuu109, xuu112, ty_Char) -> new_lt12(xuu109, xuu112) 37.21/18.37 new_esEs32(xuu109, xuu112, app(ty_[], deh)) -> new_esEs26(xuu109, xuu112, deh) 37.21/18.37 new_esEs7(xuu4000, xuu300, app(app(ty_Either, bfc), bfd)) -> new_esEs18(xuu4000, xuu300, bfc, bfd) 37.21/18.37 new_compare7(xuu4000, xuu300, ty_Double) -> new_compare5(xuu4000, xuu300) 37.21/18.37 new_compare113(xuu158, xuu159, True, eff, efg) -> LT 37.21/18.37 new_esEs21(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 37.21/18.37 new_compare12(@0, @0) -> EQ 37.21/18.37 new_primMulInt(Pos(xuu40000), Neg(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.37 new_primMulInt(Neg(xuu40000), Pos(xuu3010)) -> Neg(new_primMulNat0(xuu40000, xuu3010)) 37.21/18.37 new_esEs10(xuu4000, xuu300, app(ty_[], eha)) -> new_esEs26(xuu4000, xuu300, eha) 37.21/18.37 new_esEs29(xuu40000, xuu3000, ty_Integer) -> new_esEs25(xuu40000, xuu3000) 37.21/18.37 new_ltEs21(xuu84, xuu85, app(ty_Maybe, bcb)) -> new_ltEs13(xuu84, xuu85, bcb) 37.21/18.37 new_esEs12(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs13(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 37.21/18.37 new_esEs25(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 37.21/18.37 new_ltEs23(xuu122, xuu124, ty_Ordering) -> new_ltEs16(xuu122, xuu124) 37.21/18.37 new_ltEs22(xuu77, xuu78, app(app(ty_Either, bdh), bea)) -> new_ltEs8(xuu77, xuu78, bdh, bea) 37.21/18.37 new_esEs38(xuu121, xuu123, ty_Double) -> new_esEs12(xuu121, xuu123) 37.21/18.37 new_sr0(Integer(xuu40000), Integer(xuu3010)) -> Integer(new_primMulInt(xuu40000, xuu3010)) 37.21/18.37 new_esEs6(xuu4002, xuu302, ty_Int) -> new_esEs13(xuu4002, xuu302) 37.21/18.37 new_esEs31(xuu108, xuu111, ty_Float) -> new_esEs21(xuu108, xuu111) 37.21/18.37 new_ltEs9(xuu70, xuu71) -> new_fsEs(new_compare12(xuu70, xuu71)) 37.21/18.37 new_esEs20(EQ, GT) -> False 37.21/18.37 new_esEs20(GT, EQ) -> False 37.21/18.37 new_lt20(xuu108, xuu111, app(ty_[], ddf)) -> new_lt7(xuu108, xuu111, ddf) 37.21/18.37 new_compare15(Just(xuu4000), Nothing, cff) -> GT 37.21/18.37 new_lt24(xuu400, xuu30, app(ty_Ratio, chd)) -> new_lt13(xuu400, xuu30, chd) 37.21/18.37 new_esEs40(xuu700, xuu710, app(app(ty_@2, cab), cac)) -> new_esEs15(xuu700, xuu710, cab, cac) 37.21/18.37 new_lt6(xuu701, xuu711, app(app(ty_Either, cdf), cdg)) -> new_lt10(xuu701, xuu711, cdf, cdg) 37.21/18.37 new_esEs28(xuu701, xuu711, ty_@0) -> new_esEs24(xuu701, xuu711) 37.21/18.37 new_asAs(True, xuu146) -> xuu146 37.21/18.37 new_lt13(xuu400, xuu30, chd) -> new_esEs14(new_compare13(xuu400, xuu30, chd)) 37.21/18.37 new_esEs7(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.37 new_esEs38(xuu121, xuu123, ty_Int) -> new_esEs13(xuu121, xuu123) 37.21/18.37 new_esEs4(xuu4000, xuu300, app(ty_[], daf)) -> new_esEs26(xuu4000, xuu300, daf) 37.21/18.37 new_esEs18(Right(xuu40000), Right(xuu3000), dac, ty_Ordering) -> new_esEs20(xuu40000, xuu3000) 37.21/18.37 new_esEs14(LT) -> True 37.21/18.37 new_esEs39(xuu40000, xuu3000, app(ty_Ratio, gaa)) -> new_esEs22(xuu40000, xuu3000, gaa) 37.21/18.37 new_ltEs19(xuu70, xuu71, ty_Double) -> new_ltEs15(xuu70, xuu71) 37.21/18.37 new_compare11(Right(xuu4000), Right(xuu300), ed, ee) -> new_compare29(xuu4000, xuu300, new_esEs8(xuu4000, xuu300, ee), ed, ee) 37.21/18.37 new_ltEs8(Left(xuu700), Left(xuu710), ty_Int, cc) -> new_ltEs7(xuu700, xuu710) 37.21/18.37 new_ltEs20(xuu110, xuu113, app(ty_Ratio, dgh)) -> new_ltEs11(xuu110, xuu113, dgh) 37.21/18.37 new_primPlusInt(Pos(xuu3920), Neg(xuu1340)) -> new_primMinusNat0(xuu3920, xuu1340) 37.21/18.37 new_primPlusInt(Neg(xuu3920), Pos(xuu1340)) -> new_primMinusNat0(xuu1340, xuu3920) 37.21/18.37 new_esEs40(xuu700, xuu710, ty_Ordering) -> new_esEs20(xuu700, xuu710) 37.21/18.37 new_ltEs22(xuu77, xuu78, ty_Char) -> new_ltEs10(xuu77, xuu78) 37.21/18.37 new_sr(xuu4000, xuu301) -> new_primMulInt(xuu4000, xuu301) 37.21/18.37 new_ltEs16(GT, GT) -> True 37.21/18.37 new_esEs27(xuu700, xuu710, ty_Char) -> new_esEs19(xuu700, xuu710) 37.21/18.37 new_esEs7(xuu4000, xuu300, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs16(xuu4000, xuu300, beh, bfa, bfb) 37.21/18.37 new_esEs31(xuu108, xuu111, ty_Integer) -> new_esEs25(xuu108, xuu111) 37.21/18.37 new_primMulNat0(Zero, Zero) -> Zero 37.21/18.37 new_esEs7(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.37 new_mkBalBranch6MkBalBranch01(xuu14, xuu15, xuu39, xuu180, xuu181, xuu182, Branch(xuu1830, xuu1831, xuu1832, xuu1833, xuu1834), xuu184, False, bb, bc) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu1830, xuu1831, new_mkBranchResult(xuu14, xuu15, xuu39, xuu1833, bb, bc), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu180, xuu181, xuu1834, xuu184, bb, bc) 37.21/18.37 new_esEs39(xuu40000, xuu3000, app(ty_[], gac)) -> new_esEs26(xuu40000, xuu3000, gac) 37.21/18.37 new_esEs7(xuu4000, xuu300, app(ty_Ratio, bfe)) -> new_esEs22(xuu4000, xuu300, bfe) 37.21/18.37 new_gt(xuu19, xuu14, ty_Char) -> new_esEs41(new_compare6(xuu19, xuu14)) 37.21/18.37 new_ltEs22(xuu77, xuu78, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs4(xuu77, xuu78, bde, bdf, bdg) 37.21/18.37 new_esEs8(xuu4000, xuu300, app(ty_Maybe, bgh)) -> new_esEs23(xuu4000, xuu300, bgh) 37.21/18.37 new_ltEs8(Right(xuu700), Right(xuu710), cb, ty_@0) -> new_ltEs9(xuu700, xuu710) 37.21/18.37 new_ltEs13(Just(xuu700), Just(xuu710), ty_Ordering) -> new_ltEs16(xuu700, xuu710) 37.21/18.37 new_lt23(xuu700, xuu710, ty_Double) -> new_lt4(xuu700, xuu710) 37.21/18.37 new_esEs8(xuu4000, xuu300, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs16(xuu4000, xuu300, bgb, bgc, bgd) 37.21/18.37 new_ltEs19(xuu70, xuu71, app(ty_Maybe, ce)) -> new_ltEs13(xuu70, xuu71, ce) 37.21/18.37 new_esEs26(:(xuu40000, xuu40001), :(xuu3000, xuu3001), daf) -> new_asAs(new_esEs39(xuu40000, xuu3000, daf), new_esEs26(xuu40001, xuu3001, daf)) 37.21/18.37 new_esEs18(Right(xuu40000), Right(xuu3000), dac, ty_Bool) -> new_esEs17(xuu40000, xuu3000) 37.21/18.37 new_lt22(xuu121, xuu123, app(app(ty_Either, ffb), ffc)) -> new_lt10(xuu121, xuu123, ffb, ffc) 37.21/18.37 new_ltEs19(xuu70, xuu71, app(ty_Ratio, cd)) -> new_ltEs11(xuu70, xuu71, cd) 37.21/18.37 new_esEs6(xuu4002, xuu302, ty_Ordering) -> new_esEs20(xuu4002, xuu302) 37.21/18.37 new_esEs37(xuu40002, xuu3002, ty_Int) -> new_esEs13(xuu40002, xuu3002) 37.21/18.37 new_lt20(xuu108, xuu111, app(ty_Ratio, ded)) -> new_lt13(xuu108, xuu111, ded) 37.21/18.37 new_esEs34(xuu40001, xuu3001, app(app(ty_@2, gc), gd)) -> new_esEs15(xuu40001, xuu3001, gc, gd) 37.21/18.37 new_ltEs13(Just(xuu700), Just(xuu710), app(ty_[], hh)) -> new_ltEs6(xuu700, xuu710, hh) 37.21/18.37 new_lt24(xuu400, xuu30, ty_Double) -> new_lt4(xuu400, xuu30) 37.21/18.37 new_lt24(xuu400, xuu30, app(ty_[], da)) -> new_lt7(xuu400, xuu30, da) 37.21/18.37 new_compare14(False, False) -> EQ 37.21/18.37 new_lt23(xuu700, xuu710, app(app(ty_Either, bhf), bhg)) -> new_lt10(xuu700, xuu710, bhf, bhg) 37.21/18.37 new_esEs7(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.37 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 37.21/18.37 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 37.21/18.37 new_compare([], [], da) -> EQ 37.21/18.37 new_esEs10(xuu4000, xuu300, app(app(ty_@2, efh), ega)) -> new_esEs15(xuu4000, xuu300, efh, ega) 37.21/18.37 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 37.21/18.37 new_esEs23(Just(xuu40000), Just(xuu3000), app(app(ty_@2, gad), gae)) -> new_esEs15(xuu40000, xuu3000, gad, gae) 37.21/18.37 new_esEs18(Left(xuu40000), Left(xuu3000), ty_Int, dad) -> new_esEs13(xuu40000, xuu3000) 37.21/18.37 new_esEs39(xuu40000, xuu3000, app(app(ty_@2, fhb), fhc)) -> new_esEs15(xuu40000, xuu3000, fhb, fhc) 37.21/18.37 new_esEs8(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.37 new_esEs35(xuu40000, xuu3000, app(ty_[], eda)) -> new_esEs26(xuu40000, xuu3000, eda) 37.21/18.37 new_esEs30(xuu40001, xuu3001, ty_Integer) -> new_esEs25(xuu40001, xuu3001) 37.21/18.37 new_lt24(xuu400, xuu30, app(app(ty_@2, cbf), cbg)) -> new_lt16(xuu400, xuu30, cbf, cbg) 37.21/18.37 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 37.21/18.37 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 37.21/18.37 new_gt(xuu19, xuu14, ty_Int) -> new_gt0(xuu19, xuu14) 37.21/18.37 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3000))) -> new_primCmpNat0(Succ(xuu3000), Zero) 37.21/18.37 new_esEs28(xuu701, xuu711, app(app(ty_Either, cdf), cdg)) -> new_esEs18(xuu701, xuu711, cdf, cdg) 37.21/18.37 new_esEs9(xuu4000, xuu300, app(ty_Maybe, cgg)) -> new_esEs23(xuu4000, xuu300, cgg) 37.21/18.37 new_ltEs5(xuu702, xuu712, ty_Bool) -> new_ltEs12(xuu702, xuu712) 37.21/18.37 new_compare11(Left(xuu4000), Left(xuu300), ed, ee) -> new_compare25(xuu4000, xuu300, new_esEs7(xuu4000, xuu300, ed), ed, ee) 37.21/18.37 new_esEs8(xuu4000, xuu300, app(ty_Ratio, bgg)) -> new_esEs22(xuu4000, xuu300, bgg) 37.21/18.37 new_ltEs8(Right(xuu700), Right(xuu710), cb, ty_Char) -> new_ltEs10(xuu700, xuu710) 37.21/18.37 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 37.21/18.37 new_mkBalBranch6Size_l(xuu14, xuu15, xuu39, xuu18, bb, bc) -> new_sizeFM(xuu39, bb, bc) 37.21/18.37 new_ltEs22(xuu77, xuu78, ty_Ordering) -> new_ltEs16(xuu77, xuu78) 37.21/18.37 new_ltEs19(xuu70, xuu71, app(app(app(ty_@3, bg), bh), ca)) -> new_ltEs4(xuu70, xuu71, bg, bh, ca) 37.21/18.37 new_ltEs23(xuu122, xuu124, ty_Bool) -> new_ltEs12(xuu122, xuu124) 37.21/18.37 new_primCompAux0(xuu4000, xuu300, xuu45, da) -> new_primCompAux00(xuu45, new_compare7(xuu4000, xuu300, da)) 37.21/18.37 new_compare7(xuu4000, xuu300, app(ty_[], db)) -> new_compare(xuu4000, xuu300, db) 37.21/18.37 new_ltEs8(Left(xuu700), Left(xuu710), app(ty_[], faf), cc) -> new_ltEs6(xuu700, xuu710, faf) 37.21/18.37 new_esEs5(xuu4001, xuu301, ty_Int) -> new_esEs13(xuu4001, xuu301) 37.21/18.37 new_esEs27(xuu700, xuu710, app(app(ty_Either, ccd), cce)) -> new_esEs18(xuu700, xuu710, ccd, cce) 37.21/18.37 new_esEs38(xuu121, xuu123, app(ty_Ratio, ffd)) -> new_esEs22(xuu121, xuu123, ffd) 37.21/18.37 new_ltEs23(xuu122, xuu124, ty_Char) -> new_ltEs10(xuu122, xuu124) 37.21/18.37 new_esEs40(xuu700, xuu710, ty_Int) -> new_esEs13(xuu700, xuu710) 37.21/18.37 new_not(False) -> True 37.21/18.37 new_ltEs13(Just(xuu700), Just(xuu710), ty_Float) -> new_ltEs17(xuu700, xuu710) 37.21/18.37 new_ltEs24(xuu701, xuu711, ty_@0) -> new_ltEs9(xuu701, xuu711) 37.21/18.37 new_mkBalBranch6MkBalBranch5(xuu14, xuu15, xuu39, xuu18, False, bb, bc) -> new_mkBalBranch6MkBalBranch4(xuu14, xuu15, xuu39, xuu18, new_gt0(new_mkBalBranch6Size_r(xuu14, xuu15, xuu39, xuu18, bb, bc), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu14, xuu15, xuu39, xuu18, bb, bc))), bb, bc) 37.21/18.37 new_esEs40(xuu700, xuu710, app(ty_[], bhb)) -> new_esEs26(xuu700, xuu710, bhb) 37.21/18.37 new_compare7(xuu4000, xuu300, app(app(ty_@2, eb), ec)) -> new_compare16(xuu4000, xuu300, eb, ec) 37.21/18.37 new_ltEs5(xuu702, xuu712, ty_Int) -> new_ltEs7(xuu702, xuu712) 37.21/18.37 new_ltEs21(xuu84, xuu85, ty_Bool) -> new_ltEs12(xuu84, xuu85) 37.21/18.37 new_ltEs13(Just(xuu700), Just(xuu710), ty_Integer) -> new_ltEs18(xuu700, xuu710) 37.21/18.37 new_lt4(xuu400, xuu30) -> new_esEs14(new_compare5(xuu400, xuu30)) 37.21/18.37 new_esEs23(Just(xuu40000), Just(xuu3000), app(ty_Ratio, gbc)) -> new_esEs22(xuu40000, xuu3000, gbc) 37.21/18.37 new_ltEs24(xuu701, xuu711, ty_Ordering) -> new_ltEs16(xuu701, xuu711) 37.21/18.37 new_esEs38(xuu121, xuu123, app(app(ty_@2, fff), ffg)) -> new_esEs15(xuu121, xuu123, fff, ffg) 37.21/18.37 new_lt6(xuu701, xuu711, app(ty_Ratio, cdh)) -> new_lt13(xuu701, xuu711, cdh) 37.21/18.37 new_esEs9(xuu4000, xuu300, ty_Bool) -> new_esEs17(xuu4000, xuu300) 37.21/18.37 new_esEs4(xuu4000, xuu300, app(ty_Ratio, chg)) -> new_esEs22(xuu4000, xuu300, chg) 37.21/18.37 new_gt(xuu19, xuu14, ty_@0) -> new_esEs41(new_compare12(xuu19, xuu14)) 37.21/18.37 new_esEs15(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), ef, eg) -> new_asAs(new_esEs33(xuu40000, xuu3000, ef), new_esEs34(xuu40001, xuu3001, eg)) 37.21/18.37 new_lt23(xuu700, xuu710, app(app(ty_@2, cab), cac)) -> new_lt16(xuu700, xuu710, cab, cac) 37.21/18.37 new_esEs36(xuu40001, xuu3001, app(ty_[], eec)) -> new_esEs26(xuu40001, xuu3001, eec) 37.21/18.37 new_ltEs8(Right(xuu700), Right(xuu710), cb, ty_Bool) -> new_ltEs12(xuu700, xuu710) 37.21/18.37 new_esEs41(LT) -> False 37.21/18.37 new_esEs32(xuu109, xuu112, ty_Double) -> new_esEs12(xuu109, xuu112) 37.21/18.37 new_ltEs23(xuu122, xuu124, app(app(ty_Either, fgd), fge)) -> new_ltEs8(xuu122, xuu124, fgd, fge) 37.21/18.37 new_ltEs19(xuu70, xuu71, ty_Int) -> new_ltEs7(xuu70, xuu71) 37.21/18.37 new_ltEs19(xuu70, xuu71, ty_Char) -> new_ltEs10(xuu70, xuu71) 37.21/18.37 new_compare16(@2(xuu4000, xuu4001), @2(xuu300, xuu301), cbf, cbg) -> new_compare28(xuu4000, xuu4001, xuu300, xuu301, new_asAs(new_esEs10(xuu4000, xuu300, cbf), new_esEs11(xuu4001, xuu301, cbg)), cbf, cbg) 37.21/18.37 new_ltEs5(xuu702, xuu712, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs4(xuu702, xuu712, cee, cef, ceg) 37.21/18.37 new_lt23(xuu700, xuu710, app(ty_Ratio, bhh)) -> new_lt13(xuu700, xuu710, bhh) 37.21/18.37 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 37.21/18.37 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 37.21/18.37 new_compare15(Nothing, Just(xuu300), cff) -> LT 37.21/18.37 new_ltEs5(xuu702, xuu712, ty_Char) -> new_ltEs10(xuu702, xuu712) 37.21/18.37 new_lt24(xuu400, xuu30, app(app(ty_Either, ed), ee)) -> new_lt10(xuu400, xuu30, ed, ee) 37.21/18.37 new_lt20(xuu108, xuu111, app(app(ty_@2, def), deg)) -> new_lt16(xuu108, xuu111, def, deg) 37.21/18.37 new_compare7(xuu4000, xuu300, app(ty_Ratio, dh)) -> new_compare13(xuu4000, xuu300, dh) 37.21/18.37 new_ltEs22(xuu77, xuu78, app(ty_Maybe, bec)) -> new_ltEs13(xuu77, xuu78, bec) 37.21/18.37 new_esEs28(xuu701, xuu711, ty_Integer) -> new_esEs25(xuu701, xuu711) 37.21/18.37 new_ltEs20(xuu110, xuu113, ty_Int) -> new_ltEs7(xuu110, xuu113) 37.21/18.37 new_compare13(:%(xuu4000, xuu4001), :%(xuu300, xuu301), ty_Integer) -> new_compare19(new_sr0(xuu4000, xuu301), new_sr0(xuu300, xuu4001)) 37.21/18.37 new_compare112(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, False, xuu187, bce, bcf, bcg) -> new_compare115(xuu180, xuu181, xuu182, xuu183, xuu184, xuu185, xuu187, bce, bcf, bcg) 37.21/18.37 new_esEs9(xuu4000, xuu300, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs16(xuu4000, xuu300, cga, cgb, cgc) 37.21/18.37 new_lt6(xuu701, xuu711, app(ty_[], cdb)) -> new_lt7(xuu701, xuu711, cdb) 37.21/18.37 new_esEs18(Left(xuu40000), Left(xuu3000), app(app(ty_Either, eaa), eab), dad) -> new_esEs18(xuu40000, xuu3000, eaa, eab) 37.21/18.37 new_esEs11(xuu4001, xuu301, ty_Double) -> new_esEs12(xuu4001, xuu301) 37.21/18.37 new_esEs23(Just(xuu40000), Just(xuu3000), app(ty_[], gbe)) -> new_esEs26(xuu40000, xuu3000, gbe) 37.21/18.37 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 37.21/18.37 new_esEs27(xuu700, xuu710, ty_Float) -> new_esEs21(xuu700, xuu710) 37.21/18.37 new_lt21(xuu109, xuu112, app(app(ty_@2, dfh), dga)) -> new_lt16(xuu109, xuu112, dfh, dga) 37.21/18.37 new_ltEs21(xuu84, xuu85, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs4(xuu84, xuu85, bbd, bbe, bbf) 37.21/18.37 new_esEs18(Right(xuu40000), Right(xuu3000), dac, app(ty_Maybe, ebf)) -> new_esEs23(xuu40000, xuu3000, ebf) 37.21/18.37 new_esEs34(xuu40001, xuu3001, ty_Double) -> new_esEs12(xuu40001, xuu3001) 37.21/18.37 new_esEs40(xuu700, xuu710, app(ty_Ratio, bhh)) -> new_esEs22(xuu700, xuu710, bhh) 37.21/18.37 new_lt5(xuu700, xuu710, ty_Double) -> new_lt4(xuu700, xuu710) 37.21/18.37 new_lt5(xuu700, xuu710, app(ty_[], cbh)) -> new_lt7(xuu700, xuu710, cbh) 37.21/18.37 new_lt21(xuu109, xuu112, ty_Double) -> new_lt4(xuu109, xuu112) 37.21/18.37 new_esEs35(xuu40000, xuu3000, app(app(ty_@2, ebh), eca)) -> new_esEs15(xuu40000, xuu3000, ebh, eca) 37.21/18.37 new_lt5(xuu700, xuu710, app(app(ty_@2, cch), cda)) -> new_lt16(xuu700, xuu710, cch, cda) 37.21/18.37 new_esEs18(Right(xuu40000), Right(xuu3000), dac, app(app(app(ty_@3, eah), eba), ebb)) -> new_esEs16(xuu40000, xuu3000, eah, eba, ebb) 37.21/18.37 new_lt21(xuu109, xuu112, app(ty_Ratio, dff)) -> new_lt13(xuu109, xuu112, dff) 37.21/18.37 new_lt22(xuu121, xuu123, app(app(ty_@2, fff), ffg)) -> new_lt16(xuu121, xuu123, fff, ffg) 37.21/18.37 new_addToFM_C0(EmptyFM, xuu400, xuu401, h, ba) -> Branch(xuu400, xuu401, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) 37.21/18.37 new_ltEs6(xuu70, xuu71, bf) -> new_fsEs(new_compare(xuu70, xuu71, bf)) 37.21/18.37 new_esEs37(xuu40002, xuu3002, app(ty_[], efe)) -> new_esEs26(xuu40002, xuu3002, efe) 37.21/18.37 new_esEs38(xuu121, xuu123, app(ty_[], fef)) -> new_esEs26(xuu121, xuu123, fef) 37.21/18.37 new_compare6(Char(xuu4000), Char(xuu300)) -> new_primCmpNat0(xuu4000, xuu300) 37.21/18.37 new_ltEs20(xuu110, xuu113, ty_Char) -> new_ltEs10(xuu110, xuu113) 37.21/18.37 new_esEs6(xuu4002, xuu302, app(ty_Ratio, dch)) -> new_esEs22(xuu4002, xuu302, dch) 37.21/18.37 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 37.21/18.37 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 37.21/18.37 new_ltEs24(xuu701, xuu711, app(ty_Maybe, cbc)) -> new_ltEs13(xuu701, xuu711, cbc) 37.21/18.37 new_lt6(xuu701, xuu711, ty_Double) -> new_lt4(xuu701, xuu711) 37.21/18.37 new_lt20(xuu108, xuu111, ty_Double) -> new_lt4(xuu108, xuu111) 37.21/18.37 new_lt22(xuu121, xuu123, app(ty_Ratio, ffd)) -> new_lt13(xuu121, xuu123, ffd) 37.21/18.37 new_esEs23(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.37 new_compare14(True, True) -> EQ 37.21/18.37 new_lt6(xuu701, xuu711, app(app(ty_@2, ceb), cec)) -> new_lt16(xuu701, xuu711, ceb, cec) 37.21/18.37 new_primEqNat0(Zero, Zero) -> True 37.21/18.37 new_gt(xuu19, xuu14, ty_Bool) -> new_esEs41(new_compare14(xuu19, xuu14)) 37.21/18.37 new_lt21(xuu109, xuu112, app(ty_[], deh)) -> new_lt7(xuu109, xuu112, deh) 37.21/18.37 new_esEs27(xuu700, xuu710, ty_Integer) -> new_esEs25(xuu700, xuu710) 37.21/18.37 new_esEs27(xuu700, xuu710, ty_@0) -> new_esEs24(xuu700, xuu710) 37.21/18.37 new_compare5(Double(xuu4000, Neg(xuu40010)), Double(xuu300, Neg(xuu3010))) -> new_compare9(new_sr(xuu4000, Neg(xuu3010)), new_sr(Neg(xuu40010), xuu300)) 37.21/18.37 new_ltEs23(xuu122, xuu124, app(ty_Maybe, fgg)) -> new_ltEs13(xuu122, xuu124, fgg) 37.21/18.37 new_asAs(False, xuu146) -> False 37.21/18.37 new_esEs18(Right(xuu40000), Right(xuu3000), dac, app(app(ty_Either, ebc), ebd)) -> new_esEs18(xuu40000, xuu3000, ebc, ebd) 37.21/18.37 new_ltEs21(xuu84, xuu85, ty_Char) -> new_ltEs10(xuu84, xuu85) 37.21/18.37 new_esEs20(GT, GT) -> True 37.21/18.37 new_esEs10(xuu4000, xuu300, ty_Double) -> new_esEs12(xuu4000, xuu300) 37.21/18.37 new_ltEs22(xuu77, xuu78, ty_Bool) -> new_ltEs12(xuu77, xuu78) 37.21/18.37 new_esEs4(xuu4000, xuu300, ty_Int) -> new_esEs13(xuu4000, xuu300) 37.21/18.37 new_esEs8(xuu4000, xuu300, ty_Ordering) -> new_esEs20(xuu4000, xuu300) 37.21/18.37 new_esEs5(xuu4001, xuu301, app(ty_Ratio, dbf)) -> new_esEs22(xuu4001, xuu301, dbf) 37.21/18.37 new_ltEs20(xuu110, xuu113, app(app(app(ty_@3, dgc), dgd), dge)) -> new_ltEs4(xuu110, xuu113, dgc, dgd, dge) 37.21/18.37 new_esEs36(xuu40001, xuu3001, app(app(ty_@2, edb), edc)) -> new_esEs15(xuu40001, xuu3001, edb, edc) 37.21/18.37 new_esEs39(xuu40000, xuu3000, ty_Int) -> new_esEs13(xuu40000, xuu3000) 37.21/18.37 new_esEs33(xuu40000, xuu3000, ty_Double) -> new_esEs12(xuu40000, xuu3000) 37.21/18.37 new_ltEs24(xuu701, xuu711, app(app(ty_Either, cah), cba)) -> new_ltEs8(xuu701, xuu711, cah, cba) 37.21/18.37 new_gt0(xuu19, xuu14) -> new_esEs41(new_compare9(xuu19, xuu14)) 37.21/18.37 new_ltEs4(@3(xuu700, xuu701, xuu702), @3(xuu710, xuu711, xuu712), bg, bh, ca) -> new_pePe(new_lt5(xuu700, xuu710, bg), new_asAs(new_esEs27(xuu700, xuu710, bg), new_pePe(new_lt6(xuu701, xuu711, bh), new_asAs(new_esEs28(xuu701, xuu711, bh), new_ltEs5(xuu702, xuu712, ca))))) 37.21/18.37 37.21/18.37 The set Q consists of the following terms: 37.21/18.37 37.21/18.37 new_esEs4(x0, x1, ty_Char) 37.21/18.37 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 37.21/18.37 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 37.21/18.37 new_compare26(x0, x1, False, x2) 37.21/18.37 new_lt6(x0, x1, ty_Double) 37.21/18.37 new_gt(x0, x1, ty_Float) 37.21/18.37 new_lt23(x0, x1, ty_Ordering) 37.21/18.37 new_esEs18(Left(x0), Left(x1), ty_Float, x2) 37.21/18.37 new_lt23(x0, x1, ty_Double) 37.21/18.37 new_ltEs22(x0, x1, ty_Bool) 37.21/18.37 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), ty_Char) 37.21/18.37 new_ltEs22(x0, x1, ty_@0) 37.21/18.37 new_lt24(x0, x1, ty_Integer) 37.21/18.37 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs20(LT, GT) 37.21/18.37 new_esEs20(GT, LT) 37.21/18.37 new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) 37.21/18.37 new_lt24(x0, x1, ty_Bool) 37.21/18.37 new_lt22(x0, x1, ty_Char) 37.21/18.37 new_compare7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs22(x0, x1, ty_Integer) 37.21/18.37 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_lt21(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs11(x0, x1, ty_Char) 37.21/18.37 new_lt5(x0, x1, app(ty_[], x2)) 37.21/18.37 new_primEqInt(Pos(Zero), Pos(Zero)) 37.21/18.37 new_esEs29(x0, x1, ty_Integer) 37.21/18.37 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 37.21/18.37 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs5(x0, x1, ty_@0) 37.21/18.37 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 37.21/18.37 new_compare114(x0, x1, False, x2) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), ty_Double) 37.21/18.37 new_compare16(@2(x0, x1), @2(x2, x3), x4, x5) 37.21/18.37 new_ltEs21(x0, x1, ty_Bool) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 37.21/18.37 new_esEs7(x0, x1, ty_Float) 37.21/18.37 new_esEs4(x0, x1, ty_Ordering) 37.21/18.37 new_lt20(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_ltEs5(x0, x1, ty_@0) 37.21/18.37 new_esEs4(x0, x1, app(ty_[], x2)) 37.21/18.37 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) 37.21/18.37 new_primEqInt(Neg(Zero), Neg(Zero)) 37.21/18.37 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_compare115(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.21/18.37 new_primPlusInt(Neg(x0), Neg(x1)) 37.21/18.37 new_lt20(x0, x1, ty_Integer) 37.21/18.37 new_esEs10(x0, x1, ty_Int) 37.21/18.37 new_ltEs16(GT, EQ) 37.21/18.37 new_ltEs16(EQ, GT) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.21/18.37 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_lt20(x0, x1, ty_Float) 37.21/18.37 new_compare7(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.21/18.37 new_ltEs20(x0, x1, ty_Double) 37.21/18.37 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs4(x0, x1, ty_Double) 37.21/18.37 new_ltEs21(x0, x1, ty_Int) 37.21/18.37 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) 37.21/18.37 new_ltEs16(LT, LT) 37.21/18.37 new_esEs6(x0, x1, ty_Char) 37.21/18.37 new_ltEs19(x0, x1, ty_Integer) 37.21/18.37 new_primMulNat0(Zero, Succ(x0)) 37.21/18.37 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_compare113(x0, x1, True, x2, x3) 37.21/18.37 new_esEs10(x0, x1, ty_Bool) 37.21/18.37 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs40(x0, x1, ty_Bool) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.21/18.37 new_esEs40(x0, x1, ty_Float) 37.21/18.37 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_primPlusInt(Pos(x0), Neg(x1)) 37.21/18.37 new_primPlusInt(Neg(x0), Pos(x1)) 37.21/18.37 new_primEqInt(Pos(Zero), Neg(Zero)) 37.21/18.37 new_primEqInt(Neg(Zero), Pos(Zero)) 37.21/18.37 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs23(Just(x0), Just(x1), ty_@0) 37.21/18.37 new_ltEs22(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs8(x0, x1, ty_Ordering) 37.21/18.37 new_sizeFM(EmptyFM, x0, x1) 37.21/18.37 new_esEs8(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs40(x0, x1, ty_@0) 37.21/18.37 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 37.21/18.37 new_gt(x0, x1, ty_Integer) 37.21/18.37 new_esEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.21/18.37 new_esEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.21/18.37 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_compare25(x0, x1, False, x2, x3) 37.21/18.37 new_sr(x0, x1) 37.21/18.37 new_esEs23(Just(x0), Just(x1), ty_Float) 37.21/18.37 new_lt6(x0, x1, ty_Ordering) 37.21/18.37 new_ltEs21(x0, x1, ty_@0) 37.21/18.37 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 37.21/18.37 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 37.21/18.37 new_lt20(x0, x1, ty_Bool) 37.21/18.37 new_ltEs20(x0, x1, ty_Char) 37.21/18.37 new_lt5(x0, x1, ty_Int) 37.21/18.37 new_primCompAux0(x0, x1, x2, x3) 37.21/18.37 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 37.21/18.37 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, ty_Int) 37.21/18.37 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 37.21/18.37 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_ltEs22(x0, x1, ty_Float) 37.21/18.37 new_esEs18(Left(x0), Left(x1), ty_Bool, x2) 37.21/18.37 new_compare15(Nothing, Just(x0), x1) 37.21/18.37 new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) 37.21/18.37 new_esEs33(x0, x1, ty_Integer) 37.21/18.37 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.21/18.37 new_asAs(True, x0) 37.21/18.37 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs10(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_lt24(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_compare17(EQ, EQ) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 37.21/18.37 new_lt23(x0, x1, app(ty_[], x2)) 37.21/18.37 new_ltEs22(x0, x1, ty_Int) 37.21/18.37 new_ltEs23(x0, x1, ty_Char) 37.21/18.37 new_lt24(x0, x1, ty_Float) 37.21/18.37 new_gt(x0, x1, ty_@0) 37.21/18.37 new_esEs10(x0, x1, ty_Integer) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs34(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs18(Left(x0), Left(x1), ty_@0, x2) 37.21/18.37 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_ltEs13(Just(x0), Nothing, x1) 37.21/18.37 new_esEs38(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_ltEs19(x0, x1, ty_Bool) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.21/18.37 new_primCmpNat0(Zero, Succ(x0)) 37.21/18.37 new_ltEs16(LT, EQ) 37.21/18.37 new_ltEs16(EQ, LT) 37.21/18.37 new_esEs36(x0, x1, ty_Double) 37.21/18.37 new_esEs13(x0, x1) 37.21/18.37 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 37.21/18.37 new_esEs18(Left(x0), Left(x1), ty_Integer, x2) 37.21/18.37 new_esEs31(x0, x1, ty_Double) 37.21/18.37 new_esEs11(x0, x1, ty_Ordering) 37.21/18.37 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs39(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs40(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs19(Char(x0), Char(x1)) 37.21/18.37 new_esEs7(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_lt22(x0, x1, ty_Ordering) 37.21/18.37 new_esEs5(x0, x1, ty_Integer) 37.21/18.37 new_ltEs5(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs26(:(x0, x1), :(x2, x3), x4) 37.21/18.37 new_esEs37(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs5(x0, x1, ty_Float) 37.21/18.37 new_esEs10(x0, x1, ty_@0) 37.21/18.37 new_esEs34(x0, x1, ty_Int) 37.21/18.37 new_esEs21(Float(x0, x1), Float(x2, x3)) 37.21/18.37 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_ltEs19(x0, x1, ty_Int) 37.21/18.37 new_primPlusNat0(Succ(x0), Zero) 37.21/18.37 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs35(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs38(x0, x1, ty_@0) 37.21/18.37 new_compare17(LT, EQ) 37.21/18.37 new_compare17(EQ, LT) 37.21/18.37 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs23(Nothing, Just(x0), x1) 37.21/18.37 new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 37.21/18.37 new_esEs6(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_ltEs20(x0, x1, ty_Ordering) 37.21/18.37 new_esEs24(@0, @0) 37.21/18.37 new_esEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 37.21/18.37 new_esEs5(x0, x1, ty_Int) 37.21/18.37 new_esEs36(x0, x1, ty_@0) 37.21/18.37 new_esEs27(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, ty_Bool) 37.21/18.37 new_lt11(x0, x1) 37.21/18.37 new_esEs5(x0, x1, ty_Bool) 37.21/18.37 new_esEs32(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_lt23(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs31(x0, x1, ty_@0) 37.21/18.37 new_ltEs19(x0, x1, ty_Float) 37.21/18.37 new_esEs11(x0, x1, app(ty_[], x2)) 37.21/18.37 new_primMinusNat0(Zero, Succ(x0)) 37.21/18.37 new_ltEs24(x0, x1, ty_Double) 37.21/18.37 new_esEs31(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_lt24(x0, x1, ty_Int) 37.21/18.37 new_compare14(False, False) 37.21/18.37 new_esEs29(x0, x1, ty_Int) 37.21/18.37 new_ltEs23(x0, x1, ty_Ordering) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 37.21/18.37 new_esEs28(x0, x1, ty_Float) 37.21/18.37 new_esEs8(x0, x1, ty_Char) 37.21/18.37 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_lt6(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs27(x0, x1, ty_Int) 37.21/18.37 new_gt(x0, x1, ty_Ordering) 37.21/18.37 new_lt20(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs32(x0, x1, ty_@0) 37.21/18.37 new_esEs40(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_compare7(x0, x1, ty_Bool) 37.21/18.37 new_esEs38(x0, x1, ty_Integer) 37.21/18.37 new_esEs33(x0, x1, ty_Char) 37.21/18.37 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 37.21/18.37 new_esEs26(:(x0, x1), [], x2) 37.21/18.37 new_esEs7(x0, x1, ty_Int) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.21/18.37 new_esEs7(x0, x1, ty_Char) 37.21/18.37 new_esEs35(x0, x1, ty_Int) 37.21/18.37 new_esEs23(Just(x0), Nothing, x1) 37.21/18.37 new_lt6(x0, x1, ty_Float) 37.21/18.37 new_esEs39(x0, x1, ty_Ordering) 37.21/18.37 new_esEs35(x0, x1, ty_Char) 37.21/18.37 new_ltEs13(Nothing, Nothing, x0) 37.21/18.37 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 37.21/18.37 new_compare111(x0, x1, x2, x3, False, x4, x5) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.21/18.37 new_esEs8(x0, x1, ty_Float) 37.21/18.37 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 37.21/18.37 new_esEs17(True, True) 37.21/18.37 new_esEs36(x0, x1, ty_Char) 37.21/18.37 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.21/18.37 new_esEs27(x0, x1, ty_Char) 37.21/18.37 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_ltEs21(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs27(x0, x1, ty_Double) 37.21/18.37 new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) 37.21/18.37 new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 37.21/18.37 new_compare13(:%(x0, x1), :%(x2, x3), ty_Integer) 37.21/18.37 new_esEs36(x0, x1, ty_Bool) 37.21/18.37 new_compare14(True, False) 37.21/18.37 new_compare14(False, True) 37.21/18.37 new_esEs37(x0, x1, ty_Bool) 37.21/18.37 new_lt7(x0, x1, x2) 37.21/18.37 new_esEs33(x0, x1, ty_Int) 37.21/18.37 new_esEs11(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_primPlusNat0(Zero, Zero) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.21/18.37 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs19(x0, x1, ty_Double) 37.21/18.37 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_ltEs24(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs33(x0, x1, ty_Double) 37.21/18.37 new_esEs28(x0, x1, ty_Ordering) 37.21/18.37 new_esEs18(Left(x0), Left(x1), ty_Char, x2) 37.21/18.37 new_not(True) 37.21/18.37 new_esEs31(x0, x1, ty_Ordering) 37.21/18.37 new_compare7(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_ltEs20(x0, x1, ty_@0) 37.21/18.37 new_esEs35(x0, x1, ty_@0) 37.21/18.37 new_ltEs12(True, True) 37.21/18.37 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs7(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_lt18(x0, x1) 37.21/18.37 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs37(x0, x1, ty_Char) 37.21/18.37 new_esEs33(x0, x1, ty_Bool) 37.21/18.37 new_esEs23(Just(x0), Just(x1), ty_Double) 37.21/18.37 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 37.21/18.37 new_primMinusNat0(Succ(x0), Succ(x1)) 37.21/18.37 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs37(x0, x1, ty_Int) 37.21/18.37 new_lt5(x0, x1, ty_Bool) 37.21/18.37 new_lt20(x0, x1, ty_Int) 37.21/18.37 new_lt6(x0, x1, ty_Integer) 37.21/18.37 new_ltEs19(x0, x1, ty_Ordering) 37.21/18.37 new_lt5(x0, x1, ty_Float) 37.21/18.37 new_mkBalBranch6MkBalBranch3(x0, x1, EmptyFM, x2, True, x3, x4) 37.21/18.37 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs7(x0, x1, ty_Bool) 37.21/18.37 new_esEs4(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs20(LT, LT) 37.21/18.37 new_esEs17(False, True) 37.21/18.37 new_esEs17(True, False) 37.21/18.37 new_primEqNat0(Succ(x0), Succ(x1)) 37.21/18.37 new_ltEs21(x0, x1, ty_Float) 37.21/18.37 new_lt5(x0, x1, ty_@0) 37.21/18.37 new_esEs18(Left(x0), Left(x1), ty_Int, x2) 37.21/18.37 new_compare15(Just(x0), Nothing, x1) 37.21/18.37 new_compare15(Nothing, Nothing, x0) 37.21/18.37 new_lt20(x0, x1, ty_Char) 37.21/18.37 new_esEs4(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs40(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_lt8(x0, x1, x2, x3, x4) 37.21/18.37 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs40(x0, x1, ty_Char) 37.21/18.37 new_esEs9(x0, x1, ty_@0) 37.21/18.37 new_esEs15(@2(x0, x1), @2(x2, x3), x4, x5) 37.21/18.37 new_primCompAux00(x0, GT) 37.21/18.37 new_lt22(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs31(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs40(x0, x1, ty_Int) 37.21/18.37 new_compare12(@0, @0) 37.21/18.37 new_esEs36(x0, x1, ty_Integer) 37.21/18.37 new_esEs38(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs18(Left(x0), Left(x1), ty_Double, x2) 37.21/18.37 new_lt23(x0, x1, ty_Integer) 37.21/18.37 new_compare7(x0, x1, ty_Integer) 37.21/18.37 new_primCompAux00(x0, LT) 37.21/18.37 new_esEs37(x0, x1, ty_Double) 37.21/18.37 new_esEs35(x0, x1, ty_Integer) 37.21/18.37 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs37(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_compare13(:%(x0, x1), :%(x2, x3), ty_Int) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 37.21/18.37 new_esEs39(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs7(x0, x1, ty_Integer) 37.21/18.37 new_compare26(x0, x1, True, x2) 37.21/18.37 new_lt6(x0, x1, ty_Bool) 37.21/18.37 new_gt0(x0, x1) 37.21/18.37 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs38(x0, x1, ty_Int) 37.21/18.37 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_ltEs6(x0, x1, x2) 37.21/18.37 new_esEs38(x0, x1, ty_Char) 37.21/18.37 new_ltEs9(x0, x1) 37.21/18.37 new_ltEs23(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs14(GT) 37.21/18.37 new_esEs34(x0, x1, ty_Double) 37.21/18.37 new_esEs36(x0, x1, app(ty_[], x2)) 37.21/18.37 new_ltEs18(x0, x1) 37.21/18.37 new_primMulNat0(Succ(x0), Succ(x1)) 37.21/18.37 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs5(x0, x1, ty_Ordering) 37.21/18.37 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 37.21/18.37 new_compare17(EQ, GT) 37.21/18.37 new_compare17(GT, EQ) 37.21/18.37 new_ltEs24(x0, x1, ty_Ordering) 37.21/18.37 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_lt20(x0, x1, ty_@0) 37.21/18.37 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs38(x0, x1, ty_Float) 37.21/18.37 new_esEs7(x0, x1, ty_@0) 37.21/18.37 new_lt24(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs8(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs33(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_lt23(x0, x1, ty_Bool) 37.21/18.37 new_esEs11(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_lt21(x0, x1, ty_Integer) 37.21/18.37 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) 37.21/18.37 new_esEs35(x0, x1, ty_Bool) 37.21/18.37 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 37.21/18.37 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 37.21/18.37 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 37.21/18.37 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_primEqNat0(Zero, Zero) 37.21/18.37 new_esEs33(x0, x1, ty_Float) 37.21/18.37 new_esEs37(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 37.21/18.37 new_not(False) 37.21/18.37 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs23(Just(x0), Just(x1), ty_Ordering) 37.21/18.37 new_lt23(x0, x1, ty_Char) 37.21/18.37 new_lt6(x0, x1, ty_Char) 37.21/18.37 new_lt21(x0, x1, ty_Char) 37.21/18.37 new_esEs28(x0, x1, ty_Double) 37.21/18.37 new_compare7(x0, x1, ty_Char) 37.21/18.37 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs40(x0, x1, ty_Integer) 37.21/18.37 new_lt22(x0, x1, ty_Double) 37.21/18.37 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 37.21/18.37 new_esEs7(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs36(x0, x1, ty_Int) 37.21/18.37 new_ltEs21(x0, x1, ty_Integer) 37.21/18.37 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_lt23(x0, x1, ty_Int) 37.21/18.37 new_lt5(x0, x1, ty_Integer) 37.21/18.37 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_lt21(x0, x1, ty_Int) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, ty_Double) 37.21/18.37 new_primPlusInt(Pos(x0), Pos(x1)) 37.21/18.37 new_primMulInt(Pos(x0), Neg(x1)) 37.21/18.37 new_primMulInt(Neg(x0), Pos(x1)) 37.21/18.37 new_compare7(x0, x1, ty_Int) 37.21/18.37 new_compare110(x0, x1, x2, x3, False, x4, x5, x6) 37.21/18.37 new_esEs8(x0, x1, ty_Double) 37.21/18.37 new_lt24(x0, x1, ty_Double) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.21/18.37 new_lt16(x0, x1, x2, x3) 37.21/18.37 new_esEs41(LT) 37.21/18.37 new_lt21(x0, x1, ty_Bool) 37.21/18.37 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.21/18.37 new_ltEs22(x0, x1, ty_Double) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.21/18.37 new_compare114(x0, x1, True, x2) 37.21/18.37 new_esEs36(x0, x1, ty_Float) 37.21/18.37 new_compare8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.21/18.37 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 37.21/18.37 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 37.21/18.37 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_compare10(x0, x1, True, x2, x3) 37.21/18.37 new_esEs38(x0, x1, ty_Bool) 37.21/18.37 new_lt23(x0, x1, ty_Float) 37.21/18.37 new_lt6(x0, x1, ty_Int) 37.21/18.37 new_compare7(x0, x1, ty_Float) 37.21/18.37 new_esEs6(x0, x1, ty_Bool) 37.21/18.37 new_compare17(LT, GT) 37.21/18.37 new_compare17(GT, LT) 37.21/18.37 new_esEs10(x0, x1, ty_Char) 37.21/18.37 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.21/18.37 new_esEs8(x0, x1, ty_Int) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), ty_Int) 37.21/18.37 new_esEs5(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs35(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_primCmpNat0(Succ(x0), Zero) 37.21/18.37 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.21/18.37 new_esEs9(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs28(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_asAs(False, x0) 37.21/18.37 new_compare6(Char(x0), Char(x1)) 37.21/18.37 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) 37.21/18.37 new_ltEs24(x0, x1, ty_@0) 37.21/18.37 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs10(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs4(x0, x1, ty_Int) 37.21/18.37 new_esEs6(x0, x1, ty_@0) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 37.21/18.37 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 37.21/18.37 new_compare11(Right(x0), Left(x1), x2, x3) 37.21/18.37 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 37.21/18.37 new_compare11(Left(x0), Right(x1), x2, x3) 37.21/18.37 new_lt21(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 37.21/18.37 new_primCompAux00(x0, EQ) 37.21/18.37 new_primMinusNat0(Zero, Zero) 37.21/18.37 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.21/18.37 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 37.21/18.37 new_lt22(x0, x1, ty_Int) 37.21/18.37 new_emptyFM(x0, x1) 37.21/18.37 new_esEs26([], [], x0) 37.21/18.37 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs17(False, False) 37.21/18.37 new_lt20(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_lt21(x0, x1, ty_Float) 37.21/18.37 new_esEs10(x0, x1, ty_Ordering) 37.21/18.37 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 37.21/18.37 new_esEs6(x0, x1, ty_Integer) 37.21/18.37 new_lt22(x0, x1, ty_@0) 37.21/18.37 new_esEs11(x0, x1, ty_@0) 37.21/18.37 new_ltEs23(x0, x1, ty_Bool) 37.21/18.37 new_gt(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_sIZE_RATIO 37.21/18.37 new_esEs4(x0, x1, ty_@0) 37.21/18.37 new_ltEs24(x0, x1, ty_Integer) 37.21/18.37 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 37.21/18.37 new_ltEs23(x0, x1, ty_Float) 37.21/18.37 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_ltEs23(x0, x1, ty_@0) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.21/18.37 new_esEs10(x0, x1, ty_Double) 37.21/18.37 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_lt24(x0, x1, app(ty_[], x2)) 37.21/18.37 new_lt10(x0, x1, x2, x3) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 37.21/18.37 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 37.21/18.37 new_compare113(x0, x1, False, x2, x3) 37.21/18.37 new_ltEs8(Right(x0), Left(x1), x2, x3) 37.21/18.37 new_ltEs8(Left(x0), Right(x1), x2, x3) 37.21/18.37 new_primMulInt(Neg(x0), Neg(x1)) 37.21/18.37 new_esEs10(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_primPlusNat0(Succ(x0), Succ(x1)) 37.21/18.37 new_ltEs21(x0, x1, ty_Double) 37.21/18.37 new_esEs32(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs27(x0, x1, ty_Float) 37.21/18.37 new_esEs38(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs33(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs27(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_ltEs21(x0, x1, ty_Char) 37.21/18.37 new_lt9(x0, x1) 37.21/18.37 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_lt5(x0, x1, ty_Char) 37.21/18.37 new_fsEs(x0) 37.21/18.37 new_ltEs20(x0, x1, ty_Int) 37.21/18.37 new_compare14(True, True) 37.21/18.37 new_lt5(x0, x1, ty_Double) 37.21/18.37 new_esEs35(x0, x1, ty_Float) 37.21/18.37 new_esEs32(x0, x1, ty_Float) 37.21/18.37 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 37.21/18.37 new_esEs37(x0, x1, ty_Float) 37.21/18.37 new_esEs4(x0, x1, ty_Bool) 37.21/18.37 new_esEs9(x0, x1, ty_Float) 37.21/18.37 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_ltEs22(x0, x1, ty_Ordering) 37.21/18.37 new_ltEs15(x0, x1) 37.21/18.37 new_esEs6(x0, x1, ty_Float) 37.21/18.37 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_lt21(x0, x1, ty_@0) 37.21/18.37 new_esEs41(GT) 37.21/18.37 new_lt6(x0, x1, ty_@0) 37.21/18.37 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_compare11(Right(x0), Right(x1), x2, x3) 37.21/18.37 new_esEs36(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_ltEs13(Nothing, Just(x0), x1) 37.21/18.37 new_esEs31(x0, x1, app(ty_[], x2)) 37.21/18.37 new_compare7(x0, x1, ty_Ordering) 37.21/18.37 new_lt24(x0, x1, ty_Ordering) 37.21/18.37 new_lt23(x0, x1, ty_@0) 37.21/18.37 new_compare7(x0, x1, ty_Double) 37.21/18.37 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.21/18.37 new_ltEs5(x0, x1, ty_Double) 37.21/18.37 new_esEs39(x0, x1, ty_Integer) 37.21/18.37 new_esEs37(x0, x1, ty_Ordering) 37.21/18.37 new_ltEs7(x0, x1) 37.21/18.37 new_addToFM_C0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 37.21/18.37 new_mkBalBranch(x0, x1, x2, x3, x4, x5) 37.21/18.37 new_esEs8(x0, x1, ty_Integer) 37.21/18.37 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs32(x0, x1, ty_Ordering) 37.21/18.37 new_esEs39(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, ty_Char) 37.21/18.37 new_ltEs16(GT, GT) 37.21/18.37 new_esEs8(x0, x1, ty_Bool) 37.21/18.37 new_lt6(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs6(x0, x1, ty_Int) 37.21/18.37 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, ty_Float) 37.21/18.37 new_esEs39(x0, x1, ty_@0) 37.21/18.37 new_esEs34(x0, x1, ty_Float) 37.21/18.37 new_esEs27(x0, x1, ty_Bool) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.21/18.37 new_esEs11(x0, x1, ty_Float) 37.21/18.37 new_compare110(x0, x1, x2, x3, True, x4, x5, x6) 37.21/18.37 new_primCmpNat0(Succ(x0), Succ(x1)) 37.21/18.37 new_compare10(x0, x1, False, x2, x3) 37.21/18.37 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_compare111(x0, x1, x2, x3, True, x4, x5) 37.21/18.37 new_esEs5(x0, x1, ty_Ordering) 37.21/18.37 new_lt22(x0, x1, ty_Integer) 37.21/18.37 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_lt22(x0, x1, ty_Float) 37.21/18.37 new_esEs4(x0, x1, ty_Integer) 37.21/18.37 new_esEs8(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, ty_Ordering) 37.21/18.37 new_primEqNat0(Zero, Succ(x0)) 37.21/18.37 new_esEs34(x0, x1, ty_Ordering) 37.21/18.37 new_esEs9(x0, x1, ty_Bool) 37.21/18.37 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_ltEs19(x0, x1, ty_Char) 37.21/18.37 new_esEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.21/18.37 new_primCmpInt(Neg(Zero), Neg(Zero)) 37.21/18.37 new_lt17(x0, x1) 37.21/18.37 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) 37.21/18.37 new_esEs11(x0, x1, ty_Int) 37.21/18.37 new_compare11(Left(x0), Left(x1), x2, x3) 37.21/18.37 new_primMinusNat0(Succ(x0), Zero) 37.21/18.37 new_esEs34(x0, x1, ty_Integer) 37.21/18.37 new_primCmpInt(Pos(Zero), Neg(Zero)) 37.21/18.37 new_primCmpInt(Neg(Zero), Pos(Zero)) 37.21/18.37 new_lt23(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs14(LT) 37.21/18.37 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), ty_@0) 37.21/18.37 new_esEs11(x0, x1, ty_Integer) 37.21/18.37 new_esEs38(x0, x1, ty_Double) 37.21/18.37 new_lt15(x0, x1, x2) 37.21/18.37 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs34(x0, x1, ty_Char) 37.21/18.37 new_esEs28(x0, x1, ty_Int) 37.21/18.37 new_mkBranchResult(x0, x1, x2, x3, x4, x5) 37.21/18.37 new_esEs14(EQ) 37.21/18.37 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 37.21/18.37 new_esEs34(x0, x1, ty_Bool) 37.21/18.37 new_primEqNat0(Succ(x0), Zero) 37.21/18.37 new_esEs20(EQ, EQ) 37.21/18.37 new_primPlusNat0(Zero, Succ(x0)) 37.21/18.37 new_lt24(x0, x1, ty_Char) 37.21/18.37 new_esEs11(x0, x1, ty_Bool) 37.21/18.37 new_esEs5(x0, x1, ty_Char) 37.21/18.37 new_ltEs11(x0, x1, x2) 37.21/18.37 new_esEs9(x0, x1, ty_Ordering) 37.21/18.37 new_esEs27(x0, x1, ty_Ordering) 37.21/18.37 new_compare17(LT, LT) 37.21/18.37 new_esEs37(x0, x1, ty_Integer) 37.21/18.37 new_esEs9(x0, x1, ty_Integer) 37.21/18.37 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs23(x0, x1, ty_Integer) 37.21/18.37 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_lt21(x0, x1, app(ty_[], x2)) 37.21/18.37 new_lt22(x0, x1, ty_Bool) 37.21/18.37 new_ltEs22(x0, x1, ty_Char) 37.21/18.37 new_esEs32(x0, x1, ty_Integer) 37.21/18.37 new_esEs27(x0, x1, ty_Integer) 37.21/18.37 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 37.21/18.37 new_esEs18(Left(x0), Right(x1), x2, x3) 37.21/18.37 new_esEs18(Right(x0), Left(x1), x2, x3) 37.21/18.37 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs16(EQ, EQ) 37.21/18.37 new_compare28(x0, x1, x2, x3, True, x4, x5) 37.21/18.37 new_lt21(x0, x1, ty_Double) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, ty_Integer) 37.21/18.37 new_esEs37(x0, x1, ty_@0) 37.21/18.37 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 37.21/18.37 new_esEs39(x0, x1, ty_Int) 37.21/18.37 new_esEs18(Left(x0), Left(x1), ty_Ordering, x2) 37.21/18.37 new_esEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.21/18.37 new_compare7(x0, x1, ty_@0) 37.21/18.37 new_ltEs20(x0, x1, ty_Integer) 37.21/18.37 new_primMulNat0(Zero, Zero) 37.21/18.37 new_lt5(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_lt21(x0, x1, ty_Ordering) 37.21/18.37 new_esEs9(x0, x1, ty_Int) 37.21/18.37 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs9(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_lt4(x0, x1) 37.21/18.37 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs25(Integer(x0), Integer(x1)) 37.21/18.37 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs39(x0, x1, ty_Char) 37.21/18.37 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs9(x0, x1, ty_Char) 37.21/18.37 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_compare7(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_gt(x0, x1, ty_Int) 37.21/18.37 new_esEs9(x0, x1, ty_Double) 37.21/18.37 new_esEs31(x0, x1, ty_Char) 37.21/18.37 new_compare17(GT, GT) 37.21/18.37 new_esEs28(x0, x1, ty_Char) 37.21/18.37 new_gt(x0, x1, ty_Double) 37.21/18.37 new_esEs32(x0, x1, ty_Bool) 37.21/18.37 new_esEs33(x0, x1, ty_Ordering) 37.21/18.37 new_esEs33(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs31(x0, x1, ty_Bool) 37.21/18.37 new_esEs4(x0, x1, ty_Float) 37.21/18.37 new_esEs39(x0, x1, ty_Double) 37.21/18.37 new_esEs33(x0, x1, ty_@0) 37.21/18.37 new_gt(x0, x1, ty_Char) 37.21/18.37 new_esEs7(x0, x1, ty_Ordering) 37.21/18.37 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, ty_@0) 37.21/18.37 new_esEs34(x0, x1, ty_@0) 37.21/18.37 new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4) 37.21/18.37 new_esEs20(LT, EQ) 37.21/18.37 new_esEs20(EQ, LT) 37.21/18.37 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs28(x0, x1, ty_Bool) 37.21/18.37 new_ltEs20(x0, x1, ty_Float) 37.21/18.37 new_esEs12(Double(x0, x1), Double(x2, x3)) 37.21/18.37 new_esEs32(x0, x1, ty_Char) 37.21/18.37 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_ltEs23(x0, x1, ty_Double) 37.21/18.37 new_esEs22(:%(x0, x1), :%(x2, x3), x4) 37.21/18.37 new_esEs20(GT, GT) 37.21/18.37 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 37.21/18.37 new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs36(x0, x1, ty_Ordering) 37.21/18.37 new_addToFM_C0(EmptyFM, x0, x1, x2, x3) 37.21/18.37 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) 37.21/18.37 new_esEs30(x0, x1, ty_Integer) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.21/18.37 new_pePe(False, x0) 37.21/18.37 new_esEs32(x0, x1, ty_Int) 37.21/18.37 new_primMulNat0(Succ(x0), Zero) 37.21/18.37 new_esEs23(Just(x0), Just(x1), ty_Int) 37.21/18.37 new_pePe(True, x0) 37.21/18.37 new_esEs35(x0, x1, ty_Double) 37.21/18.37 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 37.21/18.37 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs9(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_ltEs20(x0, x1, ty_Bool) 37.21/18.37 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 37.21/18.37 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 37.21/18.37 new_esEs7(x0, x1, ty_Double) 37.21/18.37 new_ltEs12(False, True) 37.21/18.37 new_ltEs12(True, False) 37.21/18.37 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.21/18.37 new_ltEs20(x0, x1, app(ty_[], x2)) 37.21/18.37 new_ltEs23(x0, x1, ty_Int) 37.21/18.37 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs5(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_lt12(x0, x1) 37.21/18.37 new_esEs34(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_ltEs10(x0, x1) 37.21/18.37 new_esEs6(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs27(x0, x1, ty_@0) 37.21/18.37 new_compare115(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.21/18.37 new_ltEs16(LT, GT) 37.21/18.37 new_ltEs16(GT, LT) 37.21/18.37 new_esEs40(x0, x1, ty_Double) 37.21/18.37 new_lt20(x0, x1, ty_Double) 37.21/18.37 new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.21/18.37 new_compare29(x0, x1, False, x2, x3) 37.21/18.37 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_primCmpInt(Pos(Zero), Pos(Zero)) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), ty_Integer) 37.21/18.37 new_esEs31(x0, x1, ty_Integer) 37.21/18.37 new_esEs28(x0, x1, ty_Integer) 37.21/18.37 new_lt13(x0, x1, x2) 37.21/18.37 new_lt22(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.21/18.37 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 37.21/18.37 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 37.21/18.37 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs6(x0, x1, ty_Ordering) 37.21/18.37 new_esEs6(x0, x1, ty_Double) 37.21/18.37 new_gt(x0, x1, ty_Bool) 37.21/18.37 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_esEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.21/18.37 new_esEs27(x0, x1, app(ty_[], x2)) 37.21/18.37 new_ltEs19(x0, x1, ty_@0) 37.21/18.37 new_gt(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs39(x0, x1, ty_Bool) 37.21/18.37 new_ltEs5(x0, x1, ty_Float) 37.21/18.37 new_esEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.21/18.37 new_esEs23(Just(x0), Just(x1), ty_Char) 37.21/18.37 new_esEs6(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_mkBalBranch6MkBalBranch3(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) 37.21/18.37 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_compare7(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs11(x0, x1, ty_Double) 37.21/18.37 new_compare([], [], x0) 37.21/18.37 new_lt6(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), ty_Bool) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.21/18.37 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_esEs38(x0, x1, ty_Ordering) 37.21/18.37 new_compare29(x0, x1, True, x2, x3) 37.21/18.37 new_esEs32(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs30(x0, x1, ty_Int) 37.21/18.37 new_compare([], :(x0, x1), x2) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 37.21/18.37 new_esEs20(EQ, GT) 37.21/18.37 new_esEs20(GT, EQ) 37.21/18.37 new_esEs34(x0, x1, app(ty_[], x2)) 37.21/18.37 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_compare9(x0, x1) 37.21/18.37 new_esEs36(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs32(x0, x1, ty_Double) 37.21/18.37 new_ltEs5(x0, x1, ty_Int) 37.21/18.37 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_compare28(x0, x1, x2, x3, False, x4, x5) 37.21/18.37 new_ltEs24(x0, x1, ty_Float) 37.21/18.37 new_esEs41(EQ) 37.21/18.37 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 37.21/18.37 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 37.21/18.37 new_primMulInt(Pos(x0), Pos(x1)) 37.21/18.37 new_esEs28(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs23(Just(x0), Just(x1), ty_Bool) 37.21/18.37 new_ltEs5(x0, x1, ty_Integer) 37.21/18.37 new_compare(:(x0, x1), :(x2, x3), x4) 37.21/18.37 new_lt22(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_lt20(x0, x1, ty_Ordering) 37.21/18.37 new_ltEs24(x0, x1, ty_Char) 37.21/18.37 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_lt5(x0, x1, ty_Ordering) 37.21/18.37 new_compare(:(x0, x1), [], x2) 37.21/18.37 new_esEs28(x0, x1, ty_@0) 37.21/18.37 new_lt5(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_lt19(x0, x1) 37.21/18.37 new_ltEs12(False, False) 37.21/18.37 new_esEs28(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_compare25(x0, x1, True, x2, x3) 37.21/18.37 new_esEs23(Nothing, Nothing, x0) 37.21/18.37 new_compare15(Just(x0), Just(x1), x2) 37.21/18.37 new_esEs8(x0, x1, ty_@0) 37.21/18.37 new_lt14(x0, x1) 37.21/18.37 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_ltEs5(x0, x1, ty_Char) 37.21/18.37 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs10(x0, x1, ty_Float) 37.21/18.37 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 37.21/18.37 new_esEs26([], :(x0, x1), x2) 37.21/18.37 new_ltEs24(x0, x1, ty_Int) 37.21/18.37 new_esEs31(x0, x1, ty_Int) 37.21/18.37 new_lt24(x0, x1, ty_@0) 37.21/18.37 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 37.21/18.37 new_compare19(Integer(x0), Integer(x1)) 37.21/18.37 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs23(Just(x0), Just(x1), ty_Integer) 37.21/18.37 new_esEs5(x0, x1, app(ty_Maybe, x2)) 37.21/18.37 new_sr0(Integer(x0), Integer(x1)) 37.21/18.37 new_esEs35(x0, x1, ty_Ordering) 37.21/18.37 new_gt(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_ltEs24(x0, x1, ty_Bool) 37.21/18.37 new_esEs39(x0, x1, ty_Float) 37.21/18.37 new_esEs5(x0, x1, ty_Double) 37.21/18.37 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 37.21/18.37 new_ltEs5(x0, x1, ty_Bool) 37.21/18.37 new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.21/18.37 new_esEs40(x0, x1, ty_Ordering) 37.21/18.37 new_ltEs21(x0, x1, ty_Ordering) 37.21/18.37 new_ltEs17(x0, x1) 37.21/18.37 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.21/18.37 new_ltEs13(Just(x0), Just(x1), ty_Float) 37.21/18.37 new_ltEs19(x0, x1, app(ty_[], x2)) 37.21/18.37 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.21/18.37 new_compare7(x0, x1, app(ty_Ratio, x2)) 37.21/18.37 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) 37.21/18.37 new_primCmpNat0(Zero, Zero) 37.21/18.37 new_esEs31(x0, x1, ty_Float) 37.21/18.37 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) 37.21/18.37 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 37.21/18.37 new_esEs35(x0, x1, app(ty_[], x2)) 37.21/18.37 37.21/18.37 We have to consider all minimal (P,Q,R)-chains. 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (30) QDPSizeChangeProof (EQUIVALENT) 37.21/18.37 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. 37.21/18.37 37.21/18.37 From the DPs we obtained the following set of size-change graphs: 37.21/18.37 *new_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) 37.21/18.37 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 37.21/18.37 37.21/18.37 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (31) 37.21/18.37 YES 37.21/18.37 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (32) 37.21/18.37 Obligation: 37.21/18.37 Q DP problem: 37.21/18.37 The TRS P consists of the following rules: 37.21/18.37 37.21/18.37 new_primMulNat(Succ(xuu400000), Succ(xuu30100)) -> new_primMulNat(xuu400000, Succ(xuu30100)) 37.21/18.37 37.21/18.37 R is empty. 37.21/18.37 Q is empty. 37.21/18.37 We have to consider all minimal (P,Q,R)-chains. 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (33) QDPSizeChangeProof (EQUIVALENT) 37.21/18.37 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. 37.21/18.37 37.21/18.37 From the DPs we obtained the following set of size-change graphs: 37.21/18.37 *new_primMulNat(Succ(xuu400000), Succ(xuu30100)) -> new_primMulNat(xuu400000, Succ(xuu30100)) 37.21/18.37 The graph contains the following edges 1 > 1, 2 >= 2 37.21/18.37 37.21/18.37 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (34) 37.21/18.37 YES 37.21/18.37 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (35) 37.21/18.37 Obligation: 37.21/18.37 Q DP problem: 37.21/18.37 The TRS P consists of the following rules: 37.21/18.37 37.21/18.37 new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) 37.21/18.37 37.21/18.37 R is empty. 37.21/18.37 Q is empty. 37.21/18.37 We have to consider all minimal (P,Q,R)-chains. 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (36) QDPSizeChangeProof (EQUIVALENT) 37.21/18.37 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. 37.21/18.37 37.21/18.37 From the DPs we obtained the following set of size-change graphs: 37.21/18.37 *new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) 37.21/18.37 The graph contains the following edges 1 > 1, 2 > 2 37.21/18.37 37.21/18.37 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (37) 37.21/18.37 YES 37.21/18.37 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (38) 37.21/18.37 Obligation: 37.21/18.37 Q DP problem: 37.21/18.37 The TRS P consists of the following rules: 37.21/18.37 37.21/18.37 new_primMinusNat(Succ(xuu39200), Succ(xuu13400)) -> new_primMinusNat(xuu39200, xuu13400) 37.21/18.37 37.21/18.37 R is empty. 37.21/18.37 Q is empty. 37.21/18.37 We have to consider all minimal (P,Q,R)-chains. 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (39) QDPSizeChangeProof (EQUIVALENT) 37.21/18.37 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. 37.21/18.37 37.21/18.37 From the DPs we obtained the following set of size-change graphs: 37.21/18.37 *new_primMinusNat(Succ(xuu39200), Succ(xuu13400)) -> new_primMinusNat(xuu39200, xuu13400) 37.21/18.37 The graph contains the following edges 1 > 1, 2 > 2 37.21/18.37 37.21/18.37 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (40) 37.21/18.37 YES 37.21/18.37 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (41) 37.21/18.37 Obligation: 37.21/18.37 Q DP problem: 37.21/18.37 The TRS P consists of the following rules: 37.21/18.37 37.21/18.37 new_primPlusNat(Succ(xuu39200), Succ(xuu13400)) -> new_primPlusNat(xuu39200, xuu13400) 37.21/18.37 37.21/18.37 R is empty. 37.21/18.37 Q is empty. 37.21/18.37 We have to consider all minimal (P,Q,R)-chains. 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (42) QDPSizeChangeProof (EQUIVALENT) 37.21/18.37 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. 37.21/18.37 37.21/18.37 From the DPs we obtained the following set of size-change graphs: 37.21/18.37 *new_primPlusNat(Succ(xuu39200), Succ(xuu13400)) -> new_primPlusNat(xuu39200, xuu13400) 37.21/18.37 The graph contains the following edges 1 > 1, 2 > 2 37.21/18.37 37.21/18.37 37.21/18.37 ---------------------------------------- 37.21/18.37 37.21/18.37 (43) 37.21/18.37 YES 37.30/18.40 EOF